{"version":3,"file":"Uf4IdddVD.D9pC7DNL.mjs","names":["t","i","e","s","l","h","c","u","d","p","m","g","o","n","r","a","useRef","_Fragment","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transitions","transformTemplate1","t","Transition","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","addPropertyOverrides","ElementsTooltip","cycleOrder","serializationHash","variantClassNames","transitions","transformTemplate1","t","transition1","Transition","toResponsiveImage","humanReadableEnumMap","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","addPropertyOverrides","NavNavLink","MotionDivWithFX","cycleOrder","serializationHash","variantClassNames","transition1","transition2","animation","animation1","addImageAlt","transformTemplate1","t","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","_Fragment","Image","css","t","i","e","r","d","x","l","u","s","p","o","n","a","addPropertyOverrides","Arc","cycleOrder","serializationHash","variantClassNames","transitions","animation","transition1","animation1","t","Transition","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","fonts","css","className","addPropertyOverrides","Image","cycleOrder","serializationHash","variantClassNames","transitions","toResponsiveImage","transition1","animation","Transition","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","Transition","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","ElementsCTAProfileImages","ButtonsGreyButton","className","Image"],"sources":["https:/ga.jspm.io/npm:lenis@1.1.2/dist/lenis.mjs","https:/framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/CzcVr5U1VFk6uNcyYvJq/SmoothScroll_Prod.js","https:/framerusercontent.com/modules/ppn1VgIsYtbX0huqu9uR/y2dAU7HvM8fxbNnqmsap/MOKTycafz.js","https:/framerusercontent.com/modules/wMrgfshvfyytnh5Ozz45/zobxrT7ADV7jq5CTni8B/M_iAxkYkN.js","https:/framerusercontent.com/modules/A0leJDro2CRf5ay33505/qWiN3pWSWcuYEaIeJBZB/G7aD3Goux.js","https:/framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/2ycm7HJhFdePAmCNAAJd/Arc.js","https:/framerusercontent.com/modules/ktL0rXlO9TkcyBt7D6BI/v0gPTmMZXdRywgdR88Jf/NQntNGg_C.js","https:/framerusercontent.com/modules/uoQNxdCIJsdRypKDUw3q/ZGXjqnk57aqHGl0SBlyY/D0vO5agkj.js","https:/framerusercontent.com/modules/3FC359HwoljXZ2rSKkCp/o7pcuSBQkxW50Z5BGZVr/umaQMXmsE.js","https:/framerusercontent.com/modules/agCh4YXHMInMtvZOLiEQ/jgeChtfVdqBKBpVdJFqW/gb8HYP7Fv.js","https:/framerusercontent.com/modules/865Xp11wEWVOA9jhDeJO/i4QRIBaWhYUuXGHbBH16/YR_4zWxIG.js","https:/framerusercontent.com/modules/vfangJqWucXJGKATyGCi/FnhVHU2eyphznPsGXJN2/Uf4IdddVD.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 (83eb5d8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"rKiICBFi7\",\"gc7tWm459\",\"waw8ETxY4\",\"I8tYCFcDB\"];const serializationHash=\"framer-Hb1xM\";const variantClassNames={gc7tWm459:\"framer-v-1mtkprh\",I8tYCFcDB:\"framer-v-1rjiolr\",rKiICBFi7:\"framer-v-yq4gvb\",waw8ETxY4:\"framer-v-1jdobej\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Bottom:\"waw8ETxY4\",Left:\"I8tYCFcDB\",Right:\"gc7tWm459\",Top:\"rKiICBFi7\"};const getProps=({color,fontSize,height,id,title,title1,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_humanReadableVariantMap_props_variant,_ref4;return{...props,dvR17uw_x:(_ref=color!==null&&color!==void 0?color:props.dvR17uw_x)!==null&&_ref!==void 0?_ref:'var(--token-8c2e2696-2294-47af-a0cd-8fd8990b2d78, rgb(17, 17, 17)) /* {\"name\":\"Background Dark\"} */',fbMfNnZqF:(_ref1=fontSize!==null&&fontSize!==void 0?fontSize:props.fbMfNnZqF)!==null&&_ref1!==void 0?_ref1:16,hNHgX251k:(_ref2=title!==null&&title!==void 0?title:props.hNHgX251k)!==null&&_ref2!==void 0?_ref2:\"Tooltip\",Jmoryo6og:(_ref3=title1!==null&&title1!==void 0?title1:props.Jmoryo6og)!==null&&_ref3!==void 0?_ref3:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255)) \",variant:(_ref4=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref4!==void 0?_ref4:\"rKiICBFi7\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hNHgX251k,Jmoryo6og,dvR17uw_x,fbMfNnZqF,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"rKiICBFi7\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-yq4gvb\",className,classNames),\"data-framer-name\":\"Top\",initial:variant,layoutDependency:layoutDependency,layoutId:\"rKiICBFi7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({gc7tWm459:{\"data-framer-name\":\"Right\"},I8tYCFcDB:{\"data-framer-name\":\"Left\"},waw8ETxY4:{\"data-framer-name\":\"Bottom\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-7f968s\",layoutDependency:layoutDependency,layoutId:\"YbqLLVQDZ\",style:{backgroundColor:dvR17uw_x,borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,rotate:45},transformTemplate:transformTemplate1,...addPropertyOverrides({gc7tWm459:{transformTemplate:transformTemplate2},I8tYCFcDB:{transformTemplate:transformTemplate2}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wpxi6x\",\"data-framer-name\":\"Tooltip\",layoutDependency:layoutDependency,layoutId:\"kTyiKfqnC\",style:{backgroundColor:dvR17uw_x,borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-fbMfNnZqF-MOKTycafz) * 1px)\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-Jmoryo6og))\"},children:\"Tooltip\"})}),className:\"framer-zdeyf1\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"hd0Jm4jO3\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-Jmoryo6og)\",\"--framer-link-current-text-color\":'var(--token-bd71055c-0a2c-4476-8cc9-4310acba652d, rgb(0, 136, 255)) /* {\"name\":\"Blue\"} */',\"--framer-paragraph-spacing\":\"0px\",\"--variable-reference-fbMfNnZqF-MOKTycafz\":fbMfNnZqF,\"--variable-reference-Jmoryo6og\":Jmoryo6og},text:hNHgX251k,verticalAlignment:\"top\",withExternalLayout:true})})]})})});});const css=['.framer-Hb1xM[data-border=\"true\"]::after, .framer-Hb1xM [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hb1xM.framer-1ljm2po, .framer-Hb1xM .framer-1ljm2po { display: block; }\",\".framer-Hb1xM.framer-yq4gvb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-Hb1xM .framer-7f968s { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 13px); left: 50%; overflow: hidden; position: absolute; top: -5px; width: 13px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-Hb1xM .framer-wpxi6x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 10px 6px 10px; position: relative; width: min-content; }\",\".framer-Hb1xM .framer-zdeyf1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hb1xM.framer-yq4gvb, .framer-Hb1xM .framer-wpxi6x { gap: 0px; } .framer-Hb1xM.framer-yq4gvb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Hb1xM.framer-yq4gvb > :first-child { margin-top: 0px; } .framer-Hb1xM.framer-yq4gvb > :last-child { margin-bottom: 0px; } .framer-Hb1xM .framer-wpxi6x > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-Hb1xM .framer-wpxi6x > :first-child { margin-left: 0px; } .framer-Hb1xM .framer-wpxi6x > :last-child { margin-right: 0px; } }\",\".framer-Hb1xM.framer-v-1mtkprh.framer-yq4gvb, .framer-Hb1xM.framer-v-1rjiolr.framer-yq4gvb { flex-direction: row; }\",\".framer-Hb1xM.framer-v-1mtkprh .framer-7f968s { left: unset; right: -4px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hb1xM.framer-v-1mtkprh.framer-yq4gvb { gap: 0px; } .framer-Hb1xM.framer-v-1mtkprh.framer-yq4gvb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Hb1xM.framer-v-1mtkprh.framer-yq4gvb > :first-child { margin-left: 0px; } .framer-Hb1xM.framer-v-1mtkprh.framer-yq4gvb > :last-child { margin-right: 0px; } }\",\".framer-Hb1xM.framer-v-1jdobej .framer-7f968s { bottom: -5px; top: unset; }\",\".framer-Hb1xM.framer-v-1rjiolr .framer-7f968s { left: -4px; top: 50%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hb1xM.framer-v-1rjiolr.framer-yq4gvb { gap: 0px; } .framer-Hb1xM.framer-v-1rjiolr.framer-yq4gvb > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Hb1xM.framer-v-1rjiolr.framer-yq4gvb > :first-child { margin-left: 0px; } .framer-Hb1xM.framer-v-1rjiolr.framer-yq4gvb > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 28\n * @framerIntrinsicWidth 74\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"gc7tWm459\":{\"layout\":[\"auto\",\"auto\"]},\"waw8ETxY4\":{\"layout\":[\"auto\",\"auto\"]},\"I8tYCFcDB\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"hNHgX251k\":\"title\",\"Jmoryo6og\":\"title1\",\"dvR17uw_x\":\"color\",\"fbMfNnZqF\":\"fontSize\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerMOKTycafz=withCSS(Component,css,\"framer-Hb1xM\");export default FramerMOKTycafz;FramerMOKTycafz.displayName=\"Elements/Tooltip\";FramerMOKTycafz.defaultProps={height:28,width:74};addPropertyControls(FramerMOKTycafz,{variant:{options:[\"rKiICBFi7\",\"gc7tWm459\",\"waw8ETxY4\",\"I8tYCFcDB\"],optionTitles:[\"Top\",\"Right\",\"Bottom\",\"Left\"],title:\"Variant\",type:ControlType.Enum},hNHgX251k:{defaultValue:\"Tooltip\",displayTextArea:false,title:\"Title\",type:ControlType.String},Jmoryo6og:{defaultValue:\"var(--token-d76e7120-d27d-4da8-b15f-04234125e89d, rgb(255, 255, 255)) \",title:\"Title\",type:ControlType.Color},dvR17uw_x:{defaultValue:'var(--token-8c2e2696-2294-47af-a0cd-8fd8990b2d78, rgb(17, 17, 17)) /* {\"name\":\"Background Dark\"} */',title:\"Color\",type:ControlType.Color},fbMfNnZqF:{defaultValue:16,title:\"Font Size\",type:ControlType.Number}});addFonts(FramerMOKTycafz,[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMOKTycafz\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"28\",\"framerVariables\":\"{\\\"hNHgX251k\\\":\\\"title\\\",\\\"Jmoryo6og\\\":\\\"title1\\\",\\\"dvR17uw_x\\\":\\\"color\\\",\\\"fbMfNnZqF\\\":\\\"fontSize\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"gc7tWm459\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"waw8ETxY4\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"I8tYCFcDB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"74\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MOKTycafz.map","// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,RichText,useActiveVariantCallback,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ElementsTooltip from\"https://framerusercontent.com/modules/ppn1VgIsYtbX0huqu9uR/y2dAU7HvM8fxbNnqmsap/MOKTycafz.js\";const ElementsTooltipFonts=getFonts(ElementsTooltip);const cycleOrder=[\"arZyZBKE6\",\"PLXhMB7Vx\",\"zNXDNIuG2\",\"bWwRfMhCa\",\"lV_22ydgo\"];const serializationHash=\"framer-NgCo3\";const variantClassNames={arZyZBKE6:\"framer-v-1u3u8mu\",bWwRfMhCa:\"framer-v-v7zcay\",lV_22ydgo:\"framer-v-8qr0d9\",PLXhMB7Vx:\"framer-v-dss2q6\",zNXDNIuG2:\"framer-v-15g0ixk\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{duration:0,type:\"tween\"}};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={damping:50,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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const humanReadableEnumMap={Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Visible Text Active\":\"lV_22ydgo\",\"Visible Text\":\"bWwRfMhCa\",Active:\"zNXDNIuG2\",Hover:\"PLXhMB7Vx\",Main:\"arZyZBKE6\"};const getProps=({align,fontSize,height,icon,icon20,icon24,id,link,newTab,padding,tooltipText,width,...props})=>{var _ref,_ref1,_ref2,_humanReadableEnumMap_align,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,CEcm37bdw:(_ref=padding!==null&&padding!==void 0?padding:props.CEcm37bdw)!==null&&_ref!==void 0?_ref:14,D2feWBmxs:(_ref1=icon!==null&&icon!==void 0?icon:props.D2feWBmxs)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/9wgZoG5CpoFZf2sWjMDw8PjUaUw.svg\"},HyHneT18S:icon20!==null&&icon20!==void 0?icon20:props.HyHneT18S,iegh_lwC2:newTab!==null&&newTab!==void 0?newTab:props.iegh_lwC2,jx7jdqBPt:(_ref2=fontSize!==null&&fontSize!==void 0?fontSize:props.jx7jdqBPt)!==null&&_ref2!==void 0?_ref2:16,M04edO_K_:(_ref4=(_ref3=(_humanReadableEnumMap_align=humanReadableEnumMap[align])!==null&&_humanReadableEnumMap_align!==void 0?_humanReadableEnumMap_align:align)!==null&&_ref3!==void 0?_ref3:props.M04edO_K_)!==null&&_ref4!==void 0?_ref4:\"center\",p7mCVAIYy:(_ref5=icon24!==null&&icon24!==void 0?icon24:props.p7mCVAIYy)!==null&&_ref5!==void 0?_ref5:true,variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"arZyZBKE6\",z2jVyNt2T:link!==null&&link!==void 0?link:props.z2jVyNt2T,ZgUO8ubE6:(_ref7=tooltipText!==null&&tooltipText!==void 0?tooltipText:props.ZgUO8ubE6)!==null&&_ref7!==void 0?_ref7:\"Home\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,D2feWBmxs,ZgUO8ubE6,jx7jdqBPt,z2jVyNt2T,iegh_lwC2,HyHneT18S,p7mCVAIYy,M04edO_K_,CEcm37bdw,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"arZyZBKE6\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1fvpfqu=activeVariantCallback(async(...args)=>{setVariant(\"PLXhMB7Vx\");});const onMouseLeave11r0nmn=activeVariantCallback(async(...args)=>{setVariant(\"arZyZBKE6\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"bWwRfMhCa\",\"lV_22ydgo\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:z2jVyNt2T,openInNewTab:iegh_lwC2,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1u3u8mu\",className,classNames)} framer-1r63t9`,\"data-border\":true,\"data-framer-name\":\"Main\",\"data-highlight\":true,initial:variant,layoutDependency:layoutDependency,layoutId:\"arZyZBKE6\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onMouseEnter:onMouseEnter1fvpfqu,onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40)) /* {\"name\":\"Dark 16\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",\"--gw4dxq\":CEcm37bdw,\"--tkonxk\":M04edO_K_,backgroundColor:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},variants:{bWwRfMhCa:{backgroundColor:\"var(--token-0804a504-c15d-4559-840d-158498cee19f, rgb(28, 28, 28))\"},lV_22ydgo:{backgroundColor:\"var(--token-ee2a5331-1f72-4635-9262-4d11077fc132, rgb(35, 35, 35))\"},PLXhMB7Vx:{backgroundColor:\"var(--token-0804a504-c15d-4559-840d-158498cee19f, rgb(28, 28, 28))\"},zNXDNIuG2:{backgroundColor:\"var(--token-0804a504-c15d-4559-840d-158498cee19f, rgb(28, 28, 28))\"}},...addPropertyOverrides({bWwRfMhCa:{\"data-framer-name\":\"Visible Text\",\"data-highlight\":undefined,onMouseEnter:undefined},lV_22ydgo:{\"data-framer-name\":\"Visible Text Active\",\"data-highlight\":undefined,onMouseEnter:undefined},PLXhMB7Vx:{\"data-framer-name\":\"Hover\",onMouseLeave:onMouseLeave11r0nmn},zNXDNIuG2:{\"data-framer-name\":\"Active\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1od0tpk-container\",layoutDependency:layoutDependency,layoutId:\"WyJ2XpT27-container\",style:{opacity:0},transformTemplate:transformTemplate1,variants:{PLXhMB7Vx:{opacity:1}},children:/*#__PURE__*/_jsx(ElementsTooltip,{dvR17uw_x:'var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40)) /* {\"name\":\"Dark 16\"} */',fbMfNnZqF:jx7jdqBPt,height:\"100%\",hNHgX251k:ZgUO8ubE6,id:\"WyJ2XpT27\",Jmoryo6og:'var(--token-ca5d3a8e-45d8-4d16-98d9-0d0771f3c5b5, rgb(176, 177, 180)) /* {\"name\":\"Grey 70\"} */',layoutId:\"WyJ2XpT27\",variant:\"rKiICBFi7\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19mnble\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"OUU206gn3\",children:[p7mCVAIYy&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,sizes:\"24px\",...toResponsiveImage(D2feWBmxs)},className:\"framer-undlop\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"STO1Uo1Kz\"}),HyHneT18S&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,sizes:\"20px\",...toResponsiveImage(D2feWBmxs)},className:\"framer-kgf5i6\",\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"zae1h5huu\"}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7TWFucm9wZS01MDA=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, rgb(228, 229, 230)))\"},children:\"Home\"})}),className:\"framer-3hlfx5\",fonts:[\"GF;Manrope-500\"],layoutDependency:layoutDependency,layoutId:\"SV9z1u0oU\",style:{\"--extracted-r6o4lv\":\"var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, rgb(228, 229, 230))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ZgUO8ubE6,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=['.framer-NgCo3[data-border=\"true\"]::after, .framer-NgCo3 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NgCo3.framer-1r63t9, .framer-NgCo3 .framer-1r63t9 { display: block; }\",\".framer-NgCo3.framer-1u3u8mu { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: calc(max(0, var(--gw4dxq)) * 1px); position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-NgCo3 .framer-1od0tpk-container { bottom: -30px; flex: none; height: auto; left: 50%; position: absolute; width: auto; z-index: 3; }\",\".framer-NgCo3 .framer-19mnble { 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 0px 0px 0px; position: relative; width: min-content; }\",\".framer-NgCo3 .framer-undlop { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; width: 24px; }\",\".framer-NgCo3 .framer-kgf5i6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-NgCo3 .framer-3hlfx5 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NgCo3.framer-1u3u8mu, .framer-NgCo3 .framer-19mnble { gap: 0px; } .framer-NgCo3.framer-1u3u8mu > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NgCo3.framer-1u3u8mu > :first-child { margin-top: 0px; } .framer-NgCo3.framer-1u3u8mu > :last-child { margin-bottom: 0px; } .framer-NgCo3 .framer-19mnble > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-NgCo3 .framer-19mnble > :first-child { margin-left: 0px; } .framer-NgCo3 .framer-19mnble > :last-child { margin-right: 0px; } }\",\".framer-NgCo3.framer-v-dss2q6.framer-1u3u8mu { overflow: visible; }\",\".framer-NgCo3.framer-v-dss2q6 .framer-1od0tpk-container { bottom: -40px; }\",\".framer-NgCo3.framer-v-v7zcay.framer-1u3u8mu, .framer-NgCo3.framer-v-8qr0d9.framer-1u3u8mu { align-content: var(--tkonxk); align-items: var(--tkonxk); }\",\".framer-NgCo3.framer-v-v7zcay .framer-19mnble, .framer-NgCo3.framer-v-8qr0d9 .framer-19mnble { gap: 6px; padding: 0px 4px 0px 4px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NgCo3.framer-v-v7zcay .framer-19mnble { gap: 0px; } .framer-NgCo3.framer-v-v7zcay .framer-19mnble > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-NgCo3.framer-v-v7zcay .framer-19mnble > :first-child { margin-left: 0px; } .framer-NgCo3.framer-v-v7zcay .framer-19mnble > :last-child { margin-right: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NgCo3.framer-v-8qr0d9 .framer-19mnble { gap: 0px; } .framer-NgCo3.framer-v-8qr0d9 .framer-19mnble > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-NgCo3.framer-v-8qr0d9 .framer-19mnble > :first-child { margin-left: 0px; } .framer-NgCo3.framer-v-8qr0d9 .framer-19mnble > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 52\n * @framerIntrinsicWidth 52\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"PLXhMB7Vx\":{\"layout\":[\"auto\",\"auto\"]},\"zNXDNIuG2\":{\"layout\":[\"auto\",\"auto\"]},\"bWwRfMhCa\":{\"layout\":[\"auto\",\"auto\"]},\"lV_22ydgo\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"D2feWBmxs\":\"icon\",\"ZgUO8ubE6\":\"tooltipText\",\"jx7jdqBPt\":\"fontSize\",\"z2jVyNt2T\":\"link\",\"iegh_lwC2\":\"newTab\",\"HyHneT18S\":\"icon20\",\"p7mCVAIYy\":\"icon24\",\"M04edO_K_\":\"align\",\"CEcm37bdw\":\"padding\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerM_iAxkYkN=withCSS(Component,css,\"framer-NgCo3\");export default FramerM_iAxkYkN;FramerM_iAxkYkN.displayName=\"Nav/Nav Link\";FramerM_iAxkYkN.defaultProps={height:52,width:52};addPropertyControls(FramerM_iAxkYkN,{variant:{options:[\"arZyZBKE6\",\"PLXhMB7Vx\",\"zNXDNIuG2\",\"bWwRfMhCa\",\"lV_22ydgo\"],optionTitles:[\"Main\",\"Hover\",\"Active\",\"Visible Text\",\"Visible Text Active\"],title:\"Variant\",type:ControlType.Enum},D2feWBmxs:{__defaultAssetReference:\"data:framer/asset-reference,9wgZoG5CpoFZf2sWjMDw8PjUaUw.svg?originalFilename=Home+Angle.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},ZgUO8ubE6:{defaultValue:\"Home\",displayTextArea:false,title:\"Tooltip Text\",type:ControlType.String},jx7jdqBPt:{defaultValue:16,title:\"Font Size\",type:ControlType.Number},z2jVyNt2T:{title:\"Link\",type:ControlType.Link},iegh_lwC2:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},HyHneT18S:{defaultValue:false,title:\"Icon 20\",type:ControlType.Boolean},p7mCVAIYy:{defaultValue:true,title:\"Icon 24\",type:ControlType.Boolean},M04edO_K_:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\"],optionTitles:[\"Start\",\"Center\",\"End\"],title:\"Align\",type:ControlType.Enum},CEcm37bdw:{defaultValue:14,min:0,title:\"Padding\",type:ControlType.Number}});addFonts(FramerM_iAxkYkN,[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_A87jxeN7B.woff2\",weight:\"500\"},...ElementsTooltipFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerM_iAxkYkN\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"PLXhMB7Vx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zNXDNIuG2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"bWwRfMhCa\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lV_22ydgo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"52\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"52\",\"framerVariables\":\"{\\\"D2feWBmxs\\\":\\\"icon\\\",\\\"ZgUO8ubE6\\\":\\\"tooltipText\\\",\\\"jx7jdqBPt\\\":\\\"fontSize\\\",\\\"z2jVyNt2T\\\":\\\"link\\\",\\\"iegh_lwC2\\\":\\\"newTab\\\",\\\"HyHneT18S\\\":\\\"icon20\\\",\\\"p7mCVAIYy\\\":\\\"icon24\\\",\\\"M04edO_K_\\\":\\\"align\\\",\\\"CEcm37bdw\\\":\\\"padding\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./M_iAxkYkN.map","// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getLoadingLazyAtYPosition,getPropertyControls,Image,Link,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import NavNavLink from\"https://framerusercontent.com/modules/wMrgfshvfyytnh5Ozz45/zobxrT7ADV7jq5CTni8B/M_iAxkYkN.js\";const NavNavLinkFonts=getFonts(NavNavLink);const MotionDivWithFX=withFX(motion.div);const NavNavLinkControls=getPropertyControls(NavNavLink);const cycleOrder=[\"WnhqqZBhO\",\"OjbQmOEYL\",\"of0J3Esdg\",\"c0dIc60fZ\"];const serializationHash=\"framer-NyDFG\";const variantClassNames={c0dIc60fZ:\"framer-v-19lrock\",of0J3Esdg:\"framer-v-f0k01w\",OjbQmOEYL:\"framer-v-2vy7sm\",WnhqqZBhO:\"framer-v-18u3lcq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Visible Text Active\":\"lV_22ydgo\",\"Visible Text\":\"bWwRfMhCa\",Active:\"zNXDNIuG2\",Hover:\"PLXhMB7Vx\",Main:\"arZyZBKE6\"};const humanReadableVariantMap={Desktop:\"WnhqqZBhO\",Laptop:\"OjbQmOEYL\",Mobile:\"c0dIc60fZ\",Tablet:\"of0J3Esdg\"};const getProps=({about,contact,height,home,id,width,...props})=>{return{...props,Eap6GvSvw:humanReadableEnumMap[contact]??contact??props.Eap6GvSvw??\"arZyZBKE6\",iifwVojCV:humanReadableEnumMap[about]??about??props.iifwVojCV??\"arZyZBKE6\",L9H1S4VAY:humanReadableEnumMap[home]??home??props.L9H1S4VAY??\"zNXDNIuG2\",variant:humanReadableVariantMap[props.variant]??props.variant??\"WnhqqZBhO\"};};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,L9H1S4VAY,iifwVojCV,Eap6GvSvw,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"WnhqqZBhO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"c0dIc60fZ\")return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const router=useRouter();const isDisplayed1=()=>{if(baseVariant===\"c0dIc60fZ\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-18u3lcq\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"WnhqqZBhO\",ref:ref??ref1,style:{backgroundColor:\"rgb(25, 25, 25)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,...style},...addPropertyOverrides({c0dIc60fZ:{\"data-framer-name\":\"Mobile\"},of0J3Esdg:{\"data-framer-name\":\"Tablet\"},OjbQmOEYL:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1214w6c\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",\"data-highlight\":true,id:`${layoutId}-1214w6c`,layoutDependency:layoutDependency,layoutId:\"y1vDW2hSV\",onTap:onTaptxyyif({overlay}),ref:ref2,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/fHRS8vNpvEyFE1gflZVZ4SiueM.svg\"},className:\"framer-1thekav\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"vdCGgmMIV\",...addPropertyOverrides({c0dIc60fZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24,intrinsicWidth:24,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||67)-24-43)/2)+10),pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/fHRS8vNpvEyFE1gflZVZ4SiueM.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1214w6c`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({c0dIc60fZ:{alignment:\"end\",collisionDetectionPadding:10,offsetY:6,safeArea:false,zIndex:10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-19cblva\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"Aikc605D_\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},variants:{c0dIc60fZ:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-893me6\",\"data-border\":true,\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"X_Huve6X5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(40, 40, 40)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(28, 28, 28)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"none\"},variants:{c0dIc60fZ:{boxShadow:\"0px 1px 4px 3px rgba(0, 0, 0, 0.15)\"}},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19zfn2u-container\",layoutDependency:layoutDependency,layoutId:\"zvrflHs9L-container\",nodeId:\"zvrflHs9L\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:13,height:\"100%\",HyHneT18S:true,id:\"zvrflHs9L\",iegh_lwC2:false,jx7jdqBPt:14,layoutId:\"zvrflHs9L\",M04edO_K_:\"center\",p7mCVAIYy:false,variant:\"bWwRfMhCa\",width:\"100%\",z2jVyNt2T:resolvedLinks[0],ZgUO8ubE6:\"Home\",...addPropertyOverrides({c0dIc60fZ:{M04edO_K_:\"flex-start\",style:{width:\"100%\"},variant:L9H1S4VAY,z2jVyNt2T:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18c6cv8-container\",layoutDependency:layoutDependency,layoutId:\"nQM9DXSwn-container\",nodeId:\"nQM9DXSwn\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:13,D2feWBmxs:addImageAlt({src:\"https://framerusercontent.com/images/nwFzjlmn7uLYur7Uio1lFr3vM8.svg\"},\"\"),height:\"100%\",HyHneT18S:true,id:\"nQM9DXSwn\",iegh_lwC2:false,jx7jdqBPt:14,layoutId:\"nQM9DXSwn\",M04edO_K_:\"center\",p7mCVAIYy:false,variant:\"arZyZBKE6\",width:\"100%\",ZgUO8ubE6:\"About\",...addPropertyOverrides({c0dIc60fZ:{M04edO_K_:\"flex-start\",style:{width:\"100%\"},variant:iifwVojCV,z2jVyNt2T:resolvedLinks1[0]}},baseVariant,gestureVariant)})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1xvqabq-container\",layoutDependency:layoutDependency,layoutId:\"lwyUMl2Zh-container\",nodeId:\"lwyUMl2Zh\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:13,D2feWBmxs:addImageAlt({src:\"https://framerusercontent.com/images/4N3A1bfO8HjdrXwtXzgkjZAltkY.svg\"},\"\"),height:\"100%\",HyHneT18S:true,id:\"lwyUMl2Zh\",iegh_lwC2:false,jx7jdqBPt:14,layoutId:\"lwyUMl2Zh\",M04edO_K_:\"center\",p7mCVAIYy:false,variant:\"arZyZBKE6\",width:\"100%\",ZgUO8ubE6:\"Membership\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jq36u1-container\",layoutDependency:layoutDependency,layoutId:\"ndVfcxi3g-container\",nodeId:\"ndVfcxi3g\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:13,D2feWBmxs:addImageAlt({src:\"https://framerusercontent.com/images/u9yojg7JeAHOTozSjlkpTJfU3w.svg\"},\"\"),height:\"100%\",HyHneT18S:true,id:\"ndVfcxi3g\",iegh_lwC2:false,jx7jdqBPt:14,layoutId:\"ndVfcxi3g\",M04edO_K_:\"center\",p7mCVAIYy:false,variant:\"arZyZBKE6\",width:\"100%\",ZgUO8ubE6:\"Classes\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b078k-container\",layoutDependency:layoutDependency,layoutId:\"JbFGRfQri-container\",nodeId:\"JbFGRfQri\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:13,D2feWBmxs:addImageAlt({src:\"https://framerusercontent.com/images/l1Y9JOgAHXK4sjlCVuDNPjIFuE.svg\"},\"\"),height:\"100%\",HyHneT18S:true,id:\"JbFGRfQri\",iegh_lwC2:false,jx7jdqBPt:14,layoutId:\"JbFGRfQri\",M04edO_K_:\"center\",p7mCVAIYy:false,variant:\"arZyZBKE6\",width:\"100%\",ZgUO8ubE6:\"Contact\",...addPropertyOverrides({c0dIc60fZ:{M04edO_K_:\"flex-start\",style:{width:\"100%\"},variant:Eap6GvSvw,z2jVyNt2T:resolvedLinks2[0]}},baseVariant,gestureVariant)})})})})]})})})})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16l4v9q\",\"data-border\":true,\"data-framer-name\":\"Background\",layoutDependency:layoutDependency,layoutId:\"bO2wnJlRA\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"hkum9ua9J\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"Strategy as a Service\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||80)-40-40)/2)),pixelHeight:2265,pixelWidth:2265,positionX:\"center\",positionY:\"center\",sizes:\"50px\",src:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512 512w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png 2265w\"},className:\"framer-10tl77l framer-1xe4uk9\",\"data-framer-name\":\"Nav Logo\",layoutDependency:layoutDependency,layoutId:\"hkum9ua9J\",...addPropertyOverrides({c0dIc60fZ:{background:{alt:\"Strategy as a Service\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(12+((componentViewport?.height||67)-24-30)/2)),pixelHeight:2265,pixelWidth:2265,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512 512w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png 2265w\"}},of0J3Esdg:{background:{alt:\"Strategy as a Service\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||70)-40-30)/2)),pixelHeight:2265,pixelWidth:2265,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512 512w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png 2265w\"}},OjbQmOEYL:{background:{alt:\"Strategy as a Service\",fit:\"fit\",intrinsicHeight:40,intrinsicWidth:163,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(20+((componentViewport?.height||70)-40-30)/2)),pixelHeight:2265,pixelWidth:2265,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=512 512w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/GHvFdaXkP5i29nbQpqZ98sYs7c.png 2265w\"}}},baseVariant,gestureVariant)})}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-n6t2ym\",\"data-framer-name\":\"Nav Links Container\",layoutDependency:layoutDependency,layoutId:\"ejbXH8gXG\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16jqum6-container\",layoutDependency:layoutDependency,layoutId:\"oDQkK8dob-container\",nodeId:\"oDQkK8dob\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:14,height:\"100%\",HyHneT18S:false,id:\"oDQkK8dob\",iegh_lwC2:false,jx7jdqBPt:16,layoutId:\"oDQkK8dob\",M04edO_K_:\"center\",p7mCVAIYy:true,variant:L9H1S4VAY,width:\"100%\",z2jVyNt2T:resolvedLinks3[0],ZgUO8ubE6:\"Home\",...addPropertyOverrides({of0J3Esdg:{CEcm37bdw:13,HyHneT18S:true,jx7jdqBPt:14,p7mCVAIYy:false,z2jVyNt2T:resolvedLinks3[2]},OjbQmOEYL:{CEcm37bdw:10,HyHneT18S:true,jx7jdqBPt:14,p7mCVAIYy:false,style:{width:\"100%\"},z2jVyNt2T:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined},{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined},{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-i6l3j-container\",layoutDependency:layoutDependency,layoutId:\"rh1ETkwlX-container\",nodeId:\"rh1ETkwlX\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:14,D2feWBmxs:addImageAlt({src:\"https://framerusercontent.com/images/nwFzjlmn7uLYur7Uio1lFr3vM8.svg\"},\"\"),height:\"100%\",HyHneT18S:false,id:\"rh1ETkwlX\",iegh_lwC2:false,jx7jdqBPt:16,layoutId:\"rh1ETkwlX\",M04edO_K_:\"center\",p7mCVAIYy:true,variant:iifwVojCV,width:\"100%\",z2jVyNt2T:resolvedLinks4[0],ZgUO8ubE6:\"About\",...addPropertyOverrides({of0J3Esdg:{CEcm37bdw:13,HyHneT18S:true,jx7jdqBPt:14,p7mCVAIYy:false,z2jVyNt2T:resolvedLinks4[2]},OjbQmOEYL:{CEcm37bdw:10,HyHneT18S:true,jx7jdqBPt:14,p7mCVAIYy:false,style:{width:\"100%\"},z2jVyNt2T:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined},{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined},{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ijr09w-container\",layoutDependency:layoutDependency,layoutId:\"sOBvmky4v-container\",nodeId:\"sOBvmky4v\",rendersWithMotion:true,scopeId:\"G7aD3Goux\",children:/*#__PURE__*/_jsx(NavNavLink,{CEcm37bdw:14,D2feWBmxs:addImageAlt({src:\"https://framerusercontent.com/images/l1Y9JOgAHXK4sjlCVuDNPjIFuE.svg\"},\"\"),height:\"100%\",HyHneT18S:false,id:\"sOBvmky4v\",iegh_lwC2:false,jx7jdqBPt:16,layoutId:\"sOBvmky4v\",M04edO_K_:\"center\",p7mCVAIYy:true,variant:Eap6GvSvw,width:\"100%\",z2jVyNt2T:resolvedLinks5[0],ZgUO8ubE6:\"Contact\",...addPropertyOverrides({of0J3Esdg:{CEcm37bdw:13,HyHneT18S:true,jx7jdqBPt:14,p7mCVAIYy:false,z2jVyNt2T:resolvedLinks5[2]},OjbQmOEYL:{CEcm37bdw:10,HyHneT18S:true,jx7jdqBPt:14,p7mCVAIYy:false,style:{width:\"100%\"},z2jVyNt2T:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-NyDFG.framer-1xe4uk9, .framer-NyDFG .framer-1xe4uk9 { display: block; }\",\".framer-NyDFG.framer-18u3lcq { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 20px; position: relative; width: 845px; }\",\".framer-NyDFG .framer-1214w6c { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 10px 16px 10px 16px; position: relative; width: min-content; z-index: 1; }\",\".framer-NyDFG .framer-1thekav { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); overflow: visible; position: relative; width: 23px; }\",\".framer-NyDFG .framer-19cblva { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-NyDFG .framer-893me6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 14px; position: absolute; top: 0px; width: 236px; }\",\".framer-NyDFG .framer-19zfn2u-container, .framer-NyDFG .framer-18c6cv8-container, .framer-NyDFG .framer-1xvqabq-container, .framer-NyDFG .framer-jq36u1-container, .framer-NyDFG .framer-b078k-container, .framer-NyDFG .framer-16jqum6-container, .framer-NyDFG .framer-i6l3j-container, .framer-NyDFG .framer-ijr09w-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-NyDFG .framer-16l4v9q { bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-NyDFG .framer-10tl77l { flex: none; height: 40px; overflow: hidden; position: relative; text-decoration: none; width: 50px; z-index: 1; }\",\".framer-NyDFG .framer-n6t2ym { 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: absolute; right: 20px; top: 50%; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NyDFG .framer-1214w6c, .framer-NyDFG .framer-893me6, .framer-NyDFG .framer-n6t2ym { gap: 0px; } .framer-NyDFG .framer-1214w6c > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-NyDFG .framer-1214w6c > :first-child, .framer-NyDFG .framer-n6t2ym > :first-child { margin-left: 0px; } .framer-NyDFG .framer-1214w6c > :last-child, .framer-NyDFG .framer-n6t2ym > :last-child { margin-right: 0px; } .framer-NyDFG .framer-893me6 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NyDFG .framer-893me6 > :first-child { margin-top: 0px; } .framer-NyDFG .framer-893me6 > :last-child { margin-bottom: 0px; } .framer-NyDFG .framer-n6t2ym > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\",\".framer-NyDFG.framer-v-2vy7sm.framer-18u3lcq { width: 743px; }\",\".framer-NyDFG.framer-v-2vy7sm .framer-10tl77l, .framer-NyDFG.framer-v-f0k01w .framer-10tl77l { height: 30px; width: 122px; }\",\".framer-NyDFG.framer-v-2vy7sm .framer-16jqum6-container, .framer-NyDFG.framer-v-2vy7sm .framer-i6l3j-container, .framer-NyDFG.framer-v-2vy7sm .framer-ijr09w-container { width: 60px; }\",\".framer-NyDFG.framer-v-f0k01w.framer-18u3lcq { width: 600px; }\",\".framer-NyDFG.framer-v-19lrock.framer-18u3lcq { padding: 12px; width: 400px; }\",\".framer-NyDFG.framer-v-19lrock .framer-1214w6c { order: 1; }\",\".framer-NyDFG.framer-v-19lrock .framer-19cblva { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; width: min-content; }\",\".framer-NyDFG.framer-v-19lrock .framer-893me6 { left: unset; position: relative; top: unset; width: 229px; }\",\".framer-NyDFG.framer-v-19lrock .framer-19zfn2u-container, .framer-NyDFG.framer-v-19lrock .framer-18c6cv8-container, .framer-NyDFG.framer-v-19lrock .framer-b078k-container { width: 100%; }\",\".framer-NyDFG.framer-v-19lrock .framer-16l4v9q { order: 3; }\",\".framer-NyDFG.framer-v-19lrock .framer-10tl77l { height: 30px; order: 0; width: 122px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-NyDFG.framer-v-19lrock .framer-19cblva { gap: 0px; } .framer-NyDFG.framer-v-19lrock .framer-19cblva > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-NyDFG.framer-v-19lrock .framer-19cblva > :first-child { margin-top: 0px; } .framer-NyDFG.framer-v-19lrock .framer-19cblva > :last-child { margin-bottom: 0px; } }\",'.framer-NyDFG[data-border=\"true\"]::after, .framer-NyDFG [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 80\n * @framerIntrinsicWidth 845\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OjbQmOEYL\":{\"layout\":[\"fixed\",\"auto\"]},\"of0J3Esdg\":{\"layout\":[\"fixed\",\"auto\"]},\"c0dIc60fZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"L9H1S4VAY\":\"home\",\"iifwVojCV\":\"about\",\"Eap6GvSvw\":\"contact\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerG7aD3Goux=withCSS(Component,css,\"framer-NyDFG\");export default FramerG7aD3Goux;FramerG7aD3Goux.displayName=\"Nav/Navbar\";FramerG7aD3Goux.defaultProps={height:80,width:845};addPropertyControls(FramerG7aD3Goux,{variant:{options:[\"WnhqqZBhO\",\"OjbQmOEYL\",\"of0J3Esdg\",\"c0dIc60fZ\"],optionTitles:[\"Desktop\",\"Laptop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},L9H1S4VAY:NavNavLinkControls?.[\"variant\"]&&{...NavNavLinkControls[\"variant\"],defaultValue:\"zNXDNIuG2\",description:undefined,hidden:undefined,title:\"Home\"},iifwVojCV:NavNavLinkControls?.[\"variant\"]&&{...NavNavLinkControls[\"variant\"],defaultValue:\"arZyZBKE6\",description:undefined,hidden:undefined,title:\"About\"},Eap6GvSvw:NavNavLinkControls?.[\"variant\"]&&{...NavNavLinkControls[\"variant\"],defaultValue:\"arZyZBKE6\",description:undefined,hidden:undefined,title:\"Contact\"}});addFonts(FramerG7aD3Goux,[{explicitInter:true,fonts:[]},...NavNavLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerG7aD3Goux\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"845\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OjbQmOEYL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"of0J3Esdg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c0dIc60fZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"80\",\"framerVariables\":\"{\\\"L9H1S4VAY\\\":\\\"home\\\",\\\"iifwVojCV\\\":\\\"about\\\",\\\"Eap6GvSvw\\\":\\\"contact\\\"}\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./G7aD3Goux.map","import{jsx as e,jsxs as t}from\"react/jsx-runtime\";import{Children as i}from\"react\";import{addPropertyControls as n,ControlType as a,RenderTarget as l,withCSS as r}from\"framer\";import{motion as o}from\"framer-motion\";import p from\"@emotion/hash\";import{renderToString as s}from\"react-dom/server\";/**\n * ARC TEXT\n * By Adam and Benjamin\n *\n * @framerIntrinsicWidth 150\n * @framerIntrinsicHeight 150\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */let d=r(function(n){let a,r,d;// Checks\nlet x=i.count(n.slots)>0,b=l.current()===l.canvas,$=x&&\"graphic\"===n.type,w=\"circle\"===n.type,S=\"ellipse\"===n.type,v=S?n.cylinderHeight/2:0,V=f(n.flip,v);// If graphic is connected\nif($){let i=m(n.slots),l=m(i.props.svg),o=m(i.props.children);// Show placeholder on canvas if connected layer isn’t a graphic\nif(b&&!o.props.frame)return /*#__PURE__*/t(\"div\",{style:u,children:[/*#__PURE__*/e(\"div\",{style:h,children:\"💎\"}),/*#__PURE__*/e(\"p\",{style:g,children:\"Please connect to Graphic\"}),/*#__PURE__*/e(\"p\",{style:y,children:\"You can only connect the Arc to a Graphic with a single path.\"})]});// Grab the react element from the canvas and turn it into SVG\nif(b&&o){let e=s(o),t=o.props.frame;for(let i of(r=`0 0 ${t.width} ${t.height}`,e.match(/[\\w-]+=\"[^\"]*\"/g)))i.includes(\"d=\")&&(a=c(i));}// On the preview/deploy we already get the SVG string\nif(!b&&l){let e=l.match(/[\\w-]+=\"[^\"]*\"/g);for(let t of(r=(r=(r=l.split(\"viewBox=\")[1]).split(\">\")[0]).replace(/^\"(.+(?=\"$))\"$/,\"$1\"),e))t.includes(\"d=\")&&(a=c(t));}}// Unique IDs to avoid multiple instances on the canvas sharing a single path\nlet C=`curve-${p(a||V)}`;return\"top\"===n.alignmentBaseline&&(d=\"Text Top\"),\"center\"===n.alignmentBaseline&&(d=\"Central\"),\"bottom\"===n.alignmentBaseline&&(d=\"Hanging\"),/*#__PURE__*/e(o.div,{style:{width:\"100%\",height:\"100%\",// userSelect: \"none\",\n// pointerEvents: \"none\",\nposition:\"relative\"},draggable:\"false\",children:/*#__PURE__*/t(o.svg,{className:\"transform-origin-center-center\",style:{width:\"100%\",height:\"100%\",position:\"absolute\",inset:0,transformOrigin:\"center\",willChange:n.rotate&&\"transform\"},viewBox:$?r:\"0 0 100 100\",overflow:\"visible\",animate:w&&n.rotate&&{rotate:360},transition:w&&n.rotate&&{duration:100/n.rotateSpeed,repeat:1/0,ease:\"linear\"},children:[/*#__PURE__*/e(\"path\",{id:C,d:$?a:V,strokeWidth:\"none\",fill:\"transparent\"}),/*#__PURE__*/e(\"text\",{children:/*#__PURE__*/t(\"textPath\",{href:`#${C}`,startOffset:n.startOffset,dominantBaseline:d,style:{...n.font,wordSpacing:n.wordSpacing,fill:n.color},children:[n.text,!b&&n.animate&&/*#__PURE__*/e(\"animate\",{attributeName:\"startOffset\",from:`${n.animateStart}%`,to:`${n.animateEnd}%`,begin:\"0s\",dur:`${n.animateDuration}s`,repeatCount:\"indefinite\"})]})})]})});},// Work around a bug with framer-motion that calculates a px origin when animating SVG elements.\n[\".transform-origin-center-center { transform-origin: center center !important; }\"]);export default d;/* Method to get the first child */function m(e){let t;return i.map(e,e=>{void 0===t&&(t=e);}),t;}d.defaultProps={height:50,width:50},n(d,{text:{title:\"Content\",type:a.String,defaultValue:\"✦ THANK YOU ✦ FOR VISITING\",displayTextArea:!0},type:{title:\"Type\",type:a.Enum,options:[\"circle\",\"ellipse\",\"graphic\"],optionTitles:[\"Circle\",\"Ellipse\",\"Graphic\"],defaultValue:!0},cylinderHeight:{title:\"Height\",type:a.Number,unit:\"px\",min:0,max:1e3,hidden:({type:e})=>\"ellipse\"!==e},rotate:{type:a.Boolean,title:\"Rotate\",defaultValue:!1,hidden:({type:e})=>\"circle\"!==e},rotateSpeed:{type:a.Number,title:\"Speed\",min:0,max:50,defaultValue:5,displayStepper:!0,step:1,hidden:({type:e,rotate:t})=>\"circle\"!==e||!t},slots:{type:a.ComponentInstance,title:\"Graphic\",hidden:({type:e})=>\"graphic\"!==e},alignmentBaseline:{title:\"Align\",type:a.Enum,options:[\"top\",\"center\",\"bottom\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:\"bottom\",displaySegmentedControl:!0},flip:{type:a.Boolean,defaultValue:!1,title:\"Direction\",enabledTitle:\"CW\",disabledTitle:\"CCW\",hidden:({type:e})=>\"graphic\"===e},startOffset:{title:\"Offset\",type:a.Number,defaultValue:0,max:360,unit:\"\\xb0\",step:.5},color:{title:\"Color\",type:a.Color,defaultValue:\"#999\"},font:{type:a.Font,title:\"Font\",controls:\"extended\",displayTextAlignment:!1},wordSpacing:{type:a.Number,step:1,defaultValue:0,title:\"Word\",displayStepper:!0},animate:{type:a.Boolean,defaultValue:!1,title:\"Animate\"},animateStart:{type:a.Number,min:-200,max:200,step:.1,defaultValue:-50,title:\"From\",unit:\"%\",hidden:e=>!e.animate},animateEnd:{type:a.Number,min:-200,max:200,step:.1,defaultValue:150,title:\"To\",unit:\"%\",hidden:e=>!e.animate},animateDuration:{type:a.Number,min:0,max:50,defaultValue:5,title:\"Time\",unit:\"s\",displayStepper:!0,hidden:e=>!e.animate}});/* Method to get stringless attributes */let c=e=>e.split(\"=\")[1].replace(/['\"]+/g,\"\"),f=(e,t)=>{let i=50-t,n=50+t;return e?`M 0 50 L 0 ${n} A 1 1 0 1 0 100 ${n} L 100 ${i} A 1 1 0 1 0 0 ${i} L 0 50`:`M 0 50 L 0 ${i} A 1 1 0 0 1 100 ${i} L 100 50 L 100 ${n} A 1 1 0 0 1 0 ${n} L 0 ${i}`;},u={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"},h={fontSize:32,marginBottom:10},g={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"},y={margin:0,opacity:.7,maxWidth:160,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Arc\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"150\",\"framerIntrinsicHeight\":\"150\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Arc.map","// Generated by Framer (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFonts,Image,Link,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Arc from\"https://framerusercontent.com/modules/4S4SnR1GdEzX95H1h5mT/2ycm7HJhFdePAmCNAAJd/Arc.js\";const ArcFonts=getFonts(Arc);const MotionAWithFX=withFX(motion.a);const cycleOrder=[\"Wo97b9S8c\",\"G93EI4Rt8\"];const serializationHash=\"framer-3APOa\";const variantClassNames={G93EI4Rt8:\"framer-v-5ye5op\",Wo97b9S8c:\"framer-v-f3lbkm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const animation={opacity:0,rotate:0,scale:1,x:0,y:0};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:0,rotate:0,scale:1,transition:transition1,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={Big:\"Wo97b9S8c\",Small:\"G93EI4Rt8\"};const getProps=({height,id,link,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:\"Wo97b9S8c\",WSTCddrpC:link!==null&&link!==void 0?link:props.WSTCddrpC};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){var _restProps_transformTemplate;const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,WSTCddrpC,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"Wo97b9S8c\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);var _restProps_transformTemplate1;const transforms=(_restProps_transformTemplate1=(_restProps_transformTemplate=restProps.transformTemplate)===null||_restProps_transformTemplate===void 0?void 0:_restProps_transformTemplate.call(restProps,undefined,\"\"))!==null&&_restProps_transformTemplate1!==void 0?_restProps_transformTemplate1:\"\";const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:WSTCddrpC,openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(MotionAWithFX,{...restProps,__framer__animate:{transition:transition1},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:variants,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-f3lbkm\",className,classNames)} framer-11pxtoq`,\"data-framer-name\":\"Big\",initial:variant,layoutDependency:layoutDependency,layoutId:\"Wo97b9S8c\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-2d460091-be4e-4cf9-8c79-226760d8abc7, rgb(25, 25, 25))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},transformTemplate:(_,t)=>`${transforms} perspective(1200px) ${t}`,...addPropertyOverrides({G93EI4Rt8:{\"data-framer-name\":\"Small\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ft2dvu-container\",layoutDependency:layoutDependency,layoutId:\"C_8I0pYtw-container\",children:/*#__PURE__*/_jsx(Arc,{alignmentBaseline:\"bottom\",animate:false,animateDuration:5,animateEnd:150,animateStart:-50,color:'var(--token-332a9cfd-08b8-4424-a721-adfe08983d29, rgb(104, 106, 110)) /* {\"name\":\"Grey 42\"} */',cylinderHeight:0,flip:false,font:{fontFamily:'\"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0.12em\",lineHeight:\"1em\"},height:\"100%\",id:\"C_8I0pYtw\",layoutId:\"C_8I0pYtw\",rotate:true,rotateSpeed:5,slots:[],startOffset:0,style:{height:\"100%\",width:\"100%\"},text:\"✦ Go to Top ✦ Go to Top ✦ Go to Top\",type:\"circle\",width:\"100%\",wordSpacing:0})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10rrcqt\",\"data-border\":true,\"data-framer-name\":\"Icon Container\",layoutDependency:layoutDependency,layoutId:\"Ph8Vv2jrW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":'var(--token-d18b5a8b-31c1-47f9-a612-dd6e705b1656, rgb(40, 40, 40)) /* {\"name\":\"Dark 16\"} */',\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:30,pixelHeight:30,pixelWidth:30,src:\"https://framerusercontent.com/images/DGRTHHBSbqQGEmEqxiDc15PhBqo.svg\"},className:\"framer-14ps6we\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"XHEp7MS4j\"})})]})})})});});const css=['.framer-3APOa[data-border=\"true\"]::after, .framer-3APOa [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-3APOa.framer-11pxtoq, .framer-3APOa .framer-11pxtoq { display: block; }\",\".framer-3APOa.framer-f3lbkm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: visible; padding: 7px 7px 7px 7px; position: relative; text-decoration: none; width: auto; }\",\".framer-3APOa .framer-ft2dvu-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 110px); position: relative; width: 110px; }\",\".framer-3APOa .framer-10rrcqt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; left: 50%; overflow: hidden; padding: 20px 20px 20px 20px; position: absolute; top: 50%; width: auto; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-3APOa .framer-14ps6we { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); overflow: hidden; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-3APOa.framer-f3lbkm, .framer-3APOa .framer-10rrcqt { gap: 0px; } .framer-3APOa.framer-f3lbkm > *, .framer-3APOa .framer-10rrcqt > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-3APOa.framer-f3lbkm > :first-child, .framer-3APOa .framer-10rrcqt > :first-child { margin-left: 0px; } .framer-3APOa.framer-f3lbkm > :last-child, .framer-3APOa .framer-10rrcqt > :last-child { margin-right: 0px; } }\",\".framer-3APOa.framer-v-5ye5op .framer-ft2dvu-container { height: var(--framer-aspect-ratio-supported, 90px); width: 90px; }\",\".framer-3APOa.framer-v-5ye5op .framer-10rrcqt { padding: 14px 14px 14px 14px; }\",\".framer-3APOa.framer-v-5ye5op .framer-14ps6we { height: var(--framer-aspect-ratio-supported, 24px); width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 124\n * @framerIntrinsicWidth 124\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"G93EI4Rt8\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"WSTCddrpC\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerNQntNGg_C=withCSS(Component,css,\"framer-3APOa\");export default FramerNQntNGg_C;FramerNQntNGg_C.displayName=\"Buttons/Go Top Button\";FramerNQntNGg_C.defaultProps={height:124,width:124};addPropertyControls(FramerNQntNGg_C,{variant:{options:[\"Wo97b9S8c\",\"G93EI4Rt8\"],optionTitles:[\"Big\",\"Small\"],title:\"Variant\",type:ControlType.Enum},WSTCddrpC:{title:\"Link\",type:ControlType.Link}});addFonts(FramerNQntNGg_C,[...ArcFonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerNQntNGg_C\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"WSTCddrpC\\\":\\\"link\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"124\",\"framerIntrinsicHeight\":\"124\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"G93EI4Rt8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./NQntNGg_C.map","import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Manrope-600\",\"GF;Manrope-700\"]);export const fonts=[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}];export const css=['.framer-21QXV .framer-styles-preset-gr8rv1:not(.rich-text-wrapper), .framer-21QXV .framer-styles-preset-gr8rv1.rich-text-wrapper h1 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 48px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1799px) and (min-width: 1440px) { .framer-21QXV .framer-styles-preset-gr8rv1:not(.rich-text-wrapper), .framer-21QXV .framer-styles-preset-gr8rv1.rich-text-wrapper h1 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 810px) { .framer-21QXV .framer-styles-preset-gr8rv1:not(.rich-text-wrapper), .framer-21QXV .framer-styles-preset-gr8rv1.rich-text-wrapper h1 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-21QXV .framer-styles-preset-gr8rv1:not(.rich-text-wrapper), .framer-21QXV .framer-styles-preset-gr8rv1.rich-text-wrapper h1 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 26px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-21QXV\";\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 (c75d380)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const ImageWithFX=withFX(Image);const cycleOrder=[\"DspXYjFtI\",\"dkxS__o5a\"];const serializationHash=\"framer-DR02W\";const variantClassNames={dkxS__o5a:\"framer-v-1c8fpgq\",DspXYjFtI:\"framer-v-tycy1p\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition1={delay:0,duration:6,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,scale:1,x:0,y:0};const animation1={opacity:1,rotate:-360,scale:1,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={ACW:\"dkxS__o5a\",CW:\"DspXYjFtI\"};const getProps=({height,id,shape,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,agVTEIRMx:(_ref=shape!==null&&shape!==void 0?shape:props.agVTEIRMx)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/sKbSmAPSGcwT8mItuNSYs3zCvQ.svg\"},variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"DspXYjFtI\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,agVTEIRMx,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"DspXYjFtI\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-tycy1p\",className,classNames),\"data-framer-name\":\"CW\",initial:variant,layoutDependency:layoutDependency,layoutId:\"DspXYjFtI\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({dkxS__o5a:{\"data-framer-name\":\"ACW\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:22,pixelHeight:22,pixelWidth:22,sizes:\"min(24px, 100vw)\",...toResponsiveImage(agVTEIRMx)},className:\"framer-bt0nm4\",\"data-framer-name\":\"Shape\",layoutDependency:layoutDependency,layoutId:\"PI8ZA9aKJ\",...addPropertyOverrides({dkxS__o5a:{__framer__loop:animation1}},baseVariant,gestureVariant)})})})});});const css=['.framer-DR02W[data-border=\"true\"]::after, .framer-DR02W [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DR02W.framer-rfxas3, .framer-DR02W .framer-rfxas3 { display: block; }\",\".framer-DR02W.framer-tycy1p { height: 24px; overflow: visible; position: relative; width: 24px; }\",\".framer-DR02W .framer-bt0nm4 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-DR02W.framer-v-1c8fpgq.framer-tycy1p { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"dkxS__o5a\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"agVTEIRMx\":\"shape\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerumaQMXmsE=withCSS(Component,css,\"framer-DR02W\");export default FramerumaQMXmsE;FramerumaQMXmsE.displayName=\"Elements/Shape Rotation\";FramerumaQMXmsE.defaultProps={height:24,width:24};addPropertyControls(FramerumaQMXmsE,{variant:{options:[\"DspXYjFtI\",\"dkxS__o5a\"],optionTitles:[\"CW\",\"ACW\"],title:\"Variant\",type:ControlType.Enum},agVTEIRMx:{__defaultAssetReference:\"data:framer/asset-reference,sKbSmAPSGcwT8mItuNSYs3zCvQ.svg?originalFilename=Shapes.svg&preferredSize=auto\",title:\"Shape\",type:ControlType.ResponsiveImage}});addFonts(FramerumaQMXmsE,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerumaQMXmsE\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"agVTEIRMx\\\":\\\"shape\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"24\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dkxS__o5a\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./umaQMXmsE.map","import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Manrope-600\",\"GF;Manrope-700\"]);export const fonts=[{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_A87jxeN7B.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/manrope/v15/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_A87jxeN7B.woff2\",weight:\"700\"}];export const css=['.framer-UEoLS .framer-styles-preset-1u03xcc:not(.rich-text-wrapper), .framer-UEoLS .framer-styles-preset-1u03xcc.rich-text-wrapper h2 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 38px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1799px) and (min-width: 1440px) { .framer-UEoLS .framer-styles-preset-1u03xcc:not(.rich-text-wrapper), .framer-UEoLS .framer-styles-preset-1u03xcc.rich-text-wrapper h2 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 1439px) and (min-width: 810px) { .framer-UEoLS .framer-styles-preset-1u03xcc:not(.rich-text-wrapper), .framer-UEoLS .framer-styles-preset-1u03xcc.rich-text-wrapper h2 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-UEoLS .framer-styles-preset-1u03xcc:not(.rich-text-wrapper), .framer-UEoLS .framer-styles-preset-1u03xcc.rich-text-wrapper h2 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 0px; --framer-text-alignment: center; --framer-text-color: var(--token-7e00eafe-e3bb-4baa-adf0-5dc83d985d64, #e4e5e6); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-UEoLS\";\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 (c75d380)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"iDu7ME1Dh\",\"YkJO_uJif\",\"RbreAMfip\",\"x76xgS1KU\"];const serializationHash=\"framer-PIiXJ\";const variantClassNames={iDu7ME1Dh:\"framer-v-1dwyv02\",RbreAMfip:\"framer-v-9qz7gy\",x76xgS1KU:\"framer-v-jvnt0i\",YkJO_uJif:\"framer-v-gscgll\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Big Close\":\"iDu7ME1Dh\",\"Big Open\":\"YkJO_uJif\",\"Small Close\":\"RbreAMfip\",\"Small Open\":\"x76xgS1KU\"};const getProps=({height,id,image1,image2,image3,image4,image5,image6,image7,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6,_ref7;return{...props,Au67oC1LN:(_ref=image3!==null&&image3!==void 0?image3:props.Au67oC1LN)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/1o4drXhkVC3IlAlsq8NS7fZXEMg.png\"},f0yim9QHQ:(_ref1=image1!==null&&image1!==void 0?image1:props.f0yim9QHQ)!==null&&_ref1!==void 0?_ref1:{src:\"https://framerusercontent.com/images/zMcAYh49tM5tLY4RK0Q8m2FPmw.png\"},ftZtrCNKE:(_ref2=image2!==null&&image2!==void 0?image2:props.ftZtrCNKE)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/MuJhzqrZEFTafiMD6kzH8vHudA.png\"},M6QtqMO1O:(_ref3=image5!==null&&image5!==void 0?image5:props.M6QtqMO1O)!==null&&_ref3!==void 0?_ref3:{src:\"https://framerusercontent.com/images/n2J8daCzV4wAAWCJAfqOL6u8TNY.png\"},owWJ8LkHL:(_ref4=image7!==null&&image7!==void 0?image7:props.owWJ8LkHL)!==null&&_ref4!==void 0?_ref4:{src:\"https://framerusercontent.com/images/CcoHiN685ynxJIYVpOqHXuQxltI.png\"},sxZT00D6I:(_ref5=image6!==null&&image6!==void 0?image6:props.sxZT00D6I)!==null&&_ref5!==void 0?_ref5:{src:\"https://framerusercontent.com/images/te7u5glq1go8YnSy1au9cyTUys.png\"},variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"iDu7ME1Dh\",VMsWfbBJz:(_ref7=image4!==null&&image4!==void 0?image4:props.VMsWfbBJz)!==null&&_ref7!==void 0?_ref7:{src:\"https://framerusercontent.com/images/1DzImFsgYsiuNnIfEC1EWUBc7s.png\"}};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,f0yim9QHQ,ftZtrCNKE,Au67oC1LN,VMsWfbBJz,M6QtqMO1O,sxZT00D6I,owWJ8LkHL,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"iDu7ME1Dh\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1dwyv02\",className,classNames),\"data-framer-name\":\"Big Close\",initial:variant,layoutDependency:layoutDependency,layoutId:\"iDu7ME1Dh\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({RbreAMfip:{\"data-framer-name\":\"Small Close\"},x76xgS1KU:{\"data-framer-name\":\"Small Open\"},YkJO_uJif:{\"data-framer-name\":\"Big Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(f0yim9QHQ),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1xxfsgj\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"eeAreO8Sk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(f0yim9QHQ),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(f0yim9QHQ),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(ftZtrCNKE),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-zt82ys\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"B9QPfeoOv\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(ftZtrCNKE),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(ftZtrCNKE),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(Au67oC1LN),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-kkrm8w\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"GLl2QwtO7\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(Au67oC1LN),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(Au67oC1LN),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(VMsWfbBJz),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-7jxzos\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"Erhuxm6yW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(VMsWfbBJz),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(VMsWfbBJz),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(M6QtqMO1O),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-6wf1cp\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"D0OilhnmW\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(M6QtqMO1O),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(M6QtqMO1O),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(sxZT00D6I),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1843qv2\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xhQGn5dIV\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(sxZT00D6I),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(sxZT00D6I),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",sizes:\"50px\",...toResponsiveImage(owWJ8LkHL),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-17do1k\",\"data-border\":true,\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"PM17d67h5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(104, 106, 110)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},...addPropertyOverrides({RbreAMfip:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(owWJ8LkHL),...{positionX:\"center\",positionY:\"center\"}}},x76xgS1KU:{background:{alt:\"\",fit:\"stretch\",sizes:\"40px\",...toResponsiveImage(owWJ8LkHL),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})})});});const css=['.framer-PIiXJ[data-border=\"true\"]::after, .framer-PIiXJ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PIiXJ.framer-1dfbdou, .framer-PIiXJ .framer-1dfbdou { display: block; }\",\".framer-PIiXJ.framer-1dwyv02 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: flex-start; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 50px; }\",\".framer-PIiXJ .framer-1xxfsgj, .framer-PIiXJ .framer-zt82ys, .framer-PIiXJ .framer-kkrm8w, .framer-PIiXJ .framer-7jxzos, .framer-PIiXJ .framer-6wf1cp, .framer-PIiXJ .framer-1843qv2, .framer-PIiXJ .framer-17do1k { flex: none; height: 50px; left: calc(50.00000000000002% - 50px / 2); position: absolute; top: calc(50.00000000000002% - 50px / 2); width: 50px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PIiXJ.framer-1dwyv02 { gap: 0px; } .framer-PIiXJ.framer-1dwyv02 > * { margin: 0px; margin-left: calc(-16px / 2); margin-right: calc(-16px / 2); } .framer-PIiXJ.framer-1dwyv02 > :first-child { margin-left: 0px; } .framer-PIiXJ.framer-1dwyv02 > :last-child { margin-right: 0px; } }\",\".framer-PIiXJ.framer-v-gscgll .framer-1xxfsgj { left: unset; right: 90px; }\",\".framer-PIiXJ.framer-v-gscgll .framer-zt82ys { left: unset; right: 60px; }\",\".framer-PIiXJ.framer-v-gscgll .framer-kkrm8w { left: unset; right: 30px; }\",\".framer-PIiXJ.framer-v-gscgll .framer-6wf1cp { left: 30px; }\",\".framer-PIiXJ.framer-v-gscgll .framer-1843qv2 { left: 60px; }\",\".framer-PIiXJ.framer-v-gscgll .framer-17do1k { left: 90px; }\",\".framer-PIiXJ.framer-v-9qz7gy.framer-1dwyv02 { height: 40px; width: 40px; }\",\".framer-PIiXJ.framer-v-9qz7gy .framer-1xxfsgj, .framer-PIiXJ.framer-v-9qz7gy .framer-zt82ys, .framer-PIiXJ.framer-v-9qz7gy .framer-kkrm8w, .framer-PIiXJ.framer-v-9qz7gy .framer-7jxzos, .framer-PIiXJ.framer-v-9qz7gy .framer-6wf1cp, .framer-PIiXJ.framer-v-9qz7gy .framer-1843qv2, .framer-PIiXJ.framer-v-9qz7gy .framer-17do1k, .framer-PIiXJ.framer-v-jvnt0i .framer-7jxzos { height: 40px; left: calc(50.00000000000002% - 40px / 2); top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-PIiXJ.framer-v-jvnt0i .framer-1xxfsgj { height: 40px; left: unset; right: 90px; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-PIiXJ.framer-v-jvnt0i .framer-zt82ys { height: 40px; left: unset; right: 60px; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-PIiXJ.framer-v-jvnt0i .framer-kkrm8w { height: 40px; left: unset; right: 30px; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-PIiXJ.framer-v-jvnt0i .framer-6wf1cp { height: 40px; left: 30px; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-PIiXJ.framer-v-jvnt0i .framer-1843qv2 { height: 40px; left: 60px; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\",\".framer-PIiXJ.framer-v-jvnt0i .framer-17do1k { height: 40px; left: 90px; top: calc(50.00000000000002% - 40px / 2); width: 40px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 50\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YkJO_uJif\":{\"layout\":[\"fixed\",\"fixed\"]},\"RbreAMfip\":{\"layout\":[\"fixed\",\"fixed\"]},\"x76xgS1KU\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"f0yim9QHQ\":\"image1\",\"ftZtrCNKE\":\"image2\",\"Au67oC1LN\":\"image3\",\"VMsWfbBJz\":\"image4\",\"M6QtqMO1O\":\"image5\",\"sxZT00D6I\":\"image6\",\"owWJ8LkHL\":\"image7\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerYR_4zWxIG=withCSS(Component,css,\"framer-PIiXJ\");export default FramerYR_4zWxIG;FramerYR_4zWxIG.displayName=\"Elements/CTA Profile Images\";FramerYR_4zWxIG.defaultProps={height:50,width:50};addPropertyControls(FramerYR_4zWxIG,{variant:{options:[\"iDu7ME1Dh\",\"YkJO_uJif\",\"RbreAMfip\",\"x76xgS1KU\"],optionTitles:[\"Big Close\",\"Big Open\",\"Small Close\",\"Small Open\"],title:\"Variant\",type:ControlType.Enum},f0yim9QHQ:{__defaultAssetReference:\"data:framer/asset-reference,zMcAYh49tM5tLY4RK0Q8m2FPmw.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 1\",type:ControlType.ResponsiveImage},ftZtrCNKE:{__defaultAssetReference:\"data:framer/asset-reference,MuJhzqrZEFTafiMD6kzH8vHudA.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 2\",type:ControlType.ResponsiveImage},Au67oC1LN:{__defaultAssetReference:\"data:framer/asset-reference,1o4drXhkVC3IlAlsq8NS7fZXEMg.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 3\",type:ControlType.ResponsiveImage},VMsWfbBJz:{__defaultAssetReference:\"data:framer/asset-reference,1DzImFsgYsiuNnIfEC1EWUBc7s.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 4\",type:ControlType.ResponsiveImage},M6QtqMO1O:{__defaultAssetReference:\"data:framer/asset-reference,n2J8daCzV4wAAWCJAfqOL6u8TNY.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 5\",type:ControlType.ResponsiveImage},sxZT00D6I:{__defaultAssetReference:\"data:framer/asset-reference,te7u5glq1go8YnSy1au9cyTUys.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 6\",type:ControlType.ResponsiveImage},owWJ8LkHL:{__defaultAssetReference:\"data:framer/asset-reference,CcoHiN685ynxJIYVpOqHXuQxltI.png?originalFilename=Image.png&preferredSize=auto\",title:\"Image 7\",type:ControlType.ResponsiveImage}});addFonts(FramerYR_4zWxIG,[]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerYR_4zWxIG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerVariables\":\"{\\\"f0yim9QHQ\\\":\\\"image1\\\",\\\"ftZtrCNKE\\\":\\\"image2\\\",\\\"Au67oC1LN\\\":\\\"image3\\\",\\\"VMsWfbBJz\\\":\\\"image4\\\",\\\"M6QtqMO1O\\\":\\\"image5\\\",\\\"sxZT00D6I\\\":\\\"image6\\\",\\\"owWJ8LkHL\\\":\\\"image7\\\"}\",\"framerIntrinsicWidth\":\"50\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YkJO_uJif\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"RbreAMfip\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"x76xgS1KU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./YR_4zWxIG.map","// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/agCh4YXHMInMtvZOLiEQ/jgeChtfVdqBKBpVdJFqW/gb8HYP7Fv.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/7OYHNkkilANFsWbHWLzN/kNSLOSZQVrZgSHhIwmvt/jAMYnCt2y.js\";import ButtonsGreyButton from\"https://framerusercontent.com/modules/6UBwPQkZYZyD6UmLsK3r/Kb1OEjSBojMAduxNuXST/C1qGjhzHy.js\";import ElementsCTAProfileImages from\"https://framerusercontent.com/modules/865Xp11wEWVOA9jhDeJO/i4QRIBaWhYUuXGHbBH16/YR_4zWxIG.js\";const ElementsCTAProfileImagesFonts=getFonts(ElementsCTAProfileImages);const ElementsCTAProfileImagesWithVariantAppearEffect=withVariantAppearEffect(ElementsCTAProfileImages);const RichTextWithFX=withFX(RichText);const ButtonsGreyButtonFonts=getFonts(ButtonsGreyButton);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"EI1occwSI\",\"UewPw6YhU\",\"Dr3qsDLI_\"];const serializationHash=\"framer-0pLks\";const variantClassNames={Dr3qsDLI_:\"framer-v-ngendv\",EI1occwSI:\"framer-v-1fa8eg0\",UewPw6YhU:\"framer-v-1r3du83\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={delay:.3,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition3={delay:.4,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"EI1occwSI\",Laptop:\"UewPw6YhU\",Mobile:\"Dr3qsDLI_\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"EI1occwSI\"};};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:\"EI1occwSI\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const router=useRouter();const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fa8eg0\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"EI1occwSI\",ref:ref??ref1,style:{...style},...addPropertyOverrides({Dr3qsDLI_:{\"data-framer-name\":\"Mobile\"},UewPw6YhU:{\"data-framer-name\":\"Laptop\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h6phnd\",\"data-border\":true,\"data-framer-name\":\"Sub Container\",layoutDependency:layoutDependency,layoutId:\"egXH0sgQM\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(40, 40, 40)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(25, 25, 25)\",borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},variants:{Dr3qsDLI_:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},children:[/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,src:\"https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg\",srcSet:\"https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg 800w\"},className:\"framer-19ozn7x\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"vfhzv_rdt\",...addPropertyOverrides({Dr3qsDLI_:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg\",srcSet:\"https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg 800w\"}},UewPw6YhU:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:800,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,src:\"https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg\",srcSet:\"https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/FWCc5ijkeQQS5797oAU4mLJ1Z8.svg 800w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+60+0),pixelHeight:3543,pixelWidth:3543,sizes:\"400px\",src:\"https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png\",srcSet:\"https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png 3543w\"},className:\"framer-9wh1qn\",layoutDependency:layoutDependency,layoutId:\"HqM8fmLUR\",...addPropertyOverrides({Dr3qsDLI_:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+30+0),pixelHeight:3543,pixelWidth:3543,sizes:\"400px\",src:\"https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png\",srcSet:\"https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png 3543w\"}},UewPw6YhU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+50+0),pixelHeight:3543,pixelWidth:3543,sizes:\"400px\",src:\"https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png\",srcSet:\"https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Quecb4DV5qOXSFROlSgmbLQVg.png 3543w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xuxl7e\",\"data-framer-name\":\"Bottom Overlay\",layoutDependency:layoutDependency,layoutId:\"CdyHsE0mU\",style:{background:\"linear-gradient(180deg, rgba(84, 84, 84, 0) 0%, rgb(26, 26, 26) 94.5945945945946%)\"}})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h3xt9v\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Qg614ra__\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c61l00\",\"data-framer-name\":\"Text Container\",layoutDependency:layoutDependency,layoutId:\"LfBGDSJoo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1u03xcc\",\"data-styles-preset\":\"gb8HYP7Fv\",children:\"Ready to Take the First Step Towards Launching Your Startup?\"})}),className:\"framer-6uw2uu\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"niMZ4WLur\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g799sy\",\"data-framer-name\":\"Frame 2608410\",layoutDependency:layoutDependency,layoutId:\"x1HOWUk3S\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x91k11-container\",layoutDependency:layoutDependency,layoutId:\"p7RWRaNCt-container\",nodeId:\"p7RWRaNCt\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",children:/*#__PURE__*/_jsx(ElementsCTAProfileImagesWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"iDu7ME1Dh\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"YkJO_uJif\",Au67oC1LN:addImageAlt({src:\"https://framerusercontent.com/images/6yZAPh1D9I8OQVLPJ1yo9giafg.png\",srcSet:\"https://framerusercontent.com/images/6yZAPh1D9I8OQVLPJ1yo9giafg.png 768w\"},\"\"),f0yim9QHQ:addImageAlt({src:\"https://framerusercontent.com/images/KkdzpRSSVGMJuRqMNupmHHFWxc.png\"},\"\"),ftZtrCNKE:addImageAlt({src:\"https://framerusercontent.com/images/D5goz0DyVQQZM7X4kuB5P3cjQ.png\"},\"\"),height:\"100%\",id:\"p7RWRaNCt\",layoutId:\"p7RWRaNCt\",M6QtqMO1O:addImageAlt({src:\"https://framerusercontent.com/images/upC1TWaEQbXEE5c213TyfNzEQ.png\"},\"\"),owWJ8LkHL:addImageAlt({src:\"https://framerusercontent.com/images/dapYRxd3i6DcH8ma8jMP9Dibn0Y.png\"},\"\"),sxZT00D6I:addImageAlt({src:\"https://framerusercontent.com/images/EmNHLWh2zrsIAPEbb4Pf5iUog8.jpeg\"},\"\"),variant:\"iDu7ME1Dh\",VMsWfbBJz:addImageAlt({src:\"https://framerusercontent.com/images/CERUirQKdvBkIQLSdf5Ec550R7Q.png\",srcSet:\"https://framerusercontent.com/images/CERUirQKdvBkIQLSdf5Ec550R7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/CERUirQKdvBkIQLSdf5Ec550R7Q.png 612w\"},\"\"),width:\"100%\",...addPropertyOverrides({Dr3qsDLI_:{variant:\"RbreAMfip\"},UewPw6YhU:{__framer__obscuredVariantId:\"RbreAMfip\",__framer__visibleVariantId:\"x76xgS1KU\",variant:\"RbreAMfip\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1grydmv\",\"data-styles-preset\":\"jAMYnCt2y\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-468e00d1-b4c2-464f-8315-4890e75fa018, rgb(144, 147, 150)))\"},children:\"Join 10k+ Members\"})}),className:\"framer-adiabt\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z6MuRp6mb\",style:{\"--extracted-r6o4lv\":\"var(--token-468e00d1-b4c2-464f-8315-4890e75fa018, rgb(144, 147, 150))\",\"--framer-paragraph-spacing\":\"0px\",transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-mp5skh-container\",layoutDependency:layoutDependency,layoutId:\"YCmrogZBh-container\",nodeId:\"YCmrogZBh\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonsGreyButton,{C_8SyT8OK:\"var(--token-cbea8a69-43da-4531-a2e8-15ade8fe86ff, rgb(254, 126, 72))\",eX2obQguk:\"var(--token-7d9ce215-85d0-4999-a9d4-17f3fc64eb30, rgb(255, 255, 255))\",FrNIJqikn:addImageAlt({src:\"https://framerusercontent.com/images/n94EpGxBmIPF8asGc5vbbMrAWYk.svg\"},\"\"),height:\"100%\",hQePwdHhJ:false,id:\"YCmrogZBh\",IoJQBj3uE:18,J0ltawpfY:true,K6k3tVMRz:\"var(--token-70eaf33b-917b-40f4-be4a-839c8fa5171e, rgb(254, 183, 153))\",KcbXy0Tij:false,layoutId:\"YCmrogZBh\",Rm4TWaDq2:\"go.fsbb.io\",width:\"100%\",XQ2L2AXGl:true,xuznKpd_B:\"Join Community\",xYFufL_26:14,ZWFfuRNwC:6,zxVv1U3J6:12,...addPropertyOverrides({Dr3qsDLI_:{hQePwdHhJ:true,IoJQBj3uE:14,style:{width:\"100%\"},XQ2L2AXGl:false},UewPw6YhU:{hQePwdHhJ:true,IoJQBj3uE:14,XQ2L2AXGl:false}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-hbvjvc\",\"data-border\":true,\"data-framer-name\":\"Footer\",layoutDependency:layoutDependency,layoutId:\"mDIRnYMzR\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(40, 40, 40)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(25, 25, 25)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,transformPerspective:1200},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9pvhq9\",\"data-framer-name\":\"Buttons Container\",layoutDependency:layoutDependency,layoutId:\"LhouGBGIw\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-drrx39-container\",layoutDependency:layoutDependency,layoutId:\"H1_TLJEzx-container\",nodeId:\"H1_TLJEzx\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",children:/*#__PURE__*/_jsx(ButtonsGreyButton,{C_8SyT8OK:\"rgb(40, 40, 40)\",eX2obQguk:\"var(--token-438315b6-f49f-4c04-a3d1-080296612a9a, rgb(160, 162, 165))\",FrNIJqikn:addImageAlt({src:\"https://framerusercontent.com/images/9wgZoG5CpoFZf2sWjMDw8PjUaUw.svg\"},\"\"),height:\"100%\",hQePwdHhJ:false,id:\"H1_TLJEzx\",IoJQBj3uE:18,J0ltawpfY:true,K6k3tVMRz:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",KcbXy0Tij:false,layoutId:\"H1_TLJEzx\",Rm4TWaDq2:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\",XQ2L2AXGl:true,xuznKpd_B:\"Home\",xYFufL_26:14,ZWFfuRNwC:6,zxVv1U3J6:12,...addPropertyOverrides({Dr3qsDLI_:{hQePwdHhJ:true,IoJQBj3uE:14,Rm4TWaDq2:resolvedLinks[2],XQ2L2AXGl:false,xYFufL_26:12},UewPw6YhU:{hQePwdHhJ:true,IoJQBj3uE:14,Rm4TWaDq2:resolvedLinks[1],XQ2L2AXGl:false,xYFufL_26:12}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined},{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined},{href:{webPageId:\"zOazUjKoK\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1qrjjmv-container\",layoutDependency:layoutDependency,layoutId:\"mFSnc3dFV-container\",nodeId:\"mFSnc3dFV\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",children:/*#__PURE__*/_jsx(ButtonsGreyButton,{C_8SyT8OK:\"rgb(40, 40, 40)\",eX2obQguk:\"var(--token-438315b6-f49f-4c04-a3d1-080296612a9a, rgb(160, 162, 165))\",FrNIJqikn:addImageAlt({src:\"https://framerusercontent.com/images/nwFzjlmn7uLYur7Uio1lFr3vM8.svg\"},\"\"),height:\"100%\",hQePwdHhJ:false,id:\"mFSnc3dFV\",IoJQBj3uE:18,J0ltawpfY:true,K6k3tVMRz:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",KcbXy0Tij:false,layoutId:\"mFSnc3dFV\",Rm4TWaDq2:resolvedLinks1[0],style:{width:\"100%\"},width:\"100%\",XQ2L2AXGl:true,xuznKpd_B:\"About\",xYFufL_26:14,ZWFfuRNwC:6,zxVv1U3J6:12,...addPropertyOverrides({Dr3qsDLI_:{hQePwdHhJ:true,IoJQBj3uE:14,Rm4TWaDq2:resolvedLinks1[2],XQ2L2AXGl:false,xYFufL_26:12},UewPw6YhU:{hQePwdHhJ:true,IoJQBj3uE:14,Rm4TWaDq2:resolvedLinks1[1],XQ2L2AXGl:false,xYFufL_26:12}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bo5qgg-container\",layoutDependency:layoutDependency,layoutId:\"GUtG3se_Y-container\",nodeId:\"GUtG3se_Y\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",children:/*#__PURE__*/_jsx(ButtonsGreyButton,{C_8SyT8OK:\"rgb(40, 40, 40)\",eX2obQguk:\"var(--token-438315b6-f49f-4c04-a3d1-080296612a9a, rgb(160, 162, 165))\",FrNIJqikn:addImageAlt({src:\"https://framerusercontent.com/images/4N3A1bfO8HjdrXwtXzgkjZAltkY.svg\"},\"\"),height:\"100%\",hQePwdHhJ:false,id:\"GUtG3se_Y\",IoJQBj3uE:18,J0ltawpfY:true,K6k3tVMRz:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",KcbXy0Tij:true,layoutId:\"GUtG3se_Y\",Rm4TWaDq2:\"fsbb.io\",style:{width:\"100%\"},width:\"100%\",XQ2L2AXGl:true,xuznKpd_B:\"VIPs Only\",xYFufL_26:14,ZWFfuRNwC:6,zxVv1U3J6:12,...addPropertyOverrides({Dr3qsDLI_:{hQePwdHhJ:true,IoJQBj3uE:14,XQ2L2AXGl:false,xYFufL_26:12},UewPw6YhU:{hQePwdHhJ:true,IoJQBj3uE:14,XQ2L2AXGl:false,xYFufL_26:12}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-c425vm-container\",layoutDependency:layoutDependency,layoutId:\"St98BnsX8-container\",nodeId:\"St98BnsX8\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",children:/*#__PURE__*/_jsx(ButtonsGreyButton,{C_8SyT8OK:\"rgb(40, 40, 40)\",eX2obQguk:\"var(--token-438315b6-f49f-4c04-a3d1-080296612a9a, rgb(160, 162, 165))\",FrNIJqikn:addImageAlt({src:\"https://framerusercontent.com/images/Y997NZ3MUHcOR49YO9lXka8ElA4.svg\"},\"\"),height:\"100%\",hQePwdHhJ:false,id:\"St98BnsX8\",IoJQBj3uE:18,J0ltawpfY:true,K6k3tVMRz:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",KcbXy0Tij:true,layoutId:\"St98BnsX8\",Rm4TWaDq2:\"theagilevc.substack.com\",style:{width:\"100%\"},width:\"100%\",XQ2L2AXGl:true,xuznKpd_B:\"Newsletter\",xYFufL_26:14,ZWFfuRNwC:6,zxVv1U3J6:12,...addPropertyOverrides({Dr3qsDLI_:{hQePwdHhJ:true,IoJQBj3uE:14,XQ2L2AXGl:false,xYFufL_26:12},UewPw6YhU:{hQePwdHhJ:true,IoJQBj3uE:14,XQ2L2AXGl:false,xYFufL_26:12}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined},{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined},{href:{webPageId:\"VdU6SGNv7\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ax7rum-container\",layoutDependency:layoutDependency,layoutId:\"M_O2u5CU9-container\",nodeId:\"M_O2u5CU9\",rendersWithMotion:true,scopeId:\"Uf4IdddVD\",children:/*#__PURE__*/_jsx(ButtonsGreyButton,{C_8SyT8OK:\"rgb(40, 40, 40)\",eX2obQguk:\"var(--token-438315b6-f49f-4c04-a3d1-080296612a9a, rgb(160, 162, 165))\",FrNIJqikn:addImageAlt({src:\"https://framerusercontent.com/images/l1Y9JOgAHXK4sjlCVuDNPjIFuE.svg\"},\"\"),height:\"100%\",hQePwdHhJ:false,id:\"M_O2u5CU9\",IoJQBj3uE:18,J0ltawpfY:true,K6k3tVMRz:\"var(--token-c0c2d81e-44fe-4250-b177-b87e360191a1, rgb(22, 22, 22))\",KcbXy0Tij:false,layoutId:\"M_O2u5CU9\",Rm4TWaDq2:resolvedLinks2[0],style:{width:\"100%\"},width:\"100%\",XQ2L2AXGl:true,xuznKpd_B:\"Contact\",xYFufL_26:14,ZWFfuRNwC:6,zxVv1U3J6:12,...addPropertyOverrides({Dr3qsDLI_:{hQePwdHhJ:true,IoJQBj3uE:14,Rm4TWaDq2:resolvedLinks2[2],XQ2L2AXGl:false,xYFufL_26:12},UewPw6YhU:{hQePwdHhJ:true,IoJQBj3uE:14,Rm4TWaDq2:resolvedLinks2[1],XQ2L2AXGl:false,xYFufL_26:12}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-aqr9jf\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"QlCtafihz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1grydmv\",\"data-styles-preset\":\"jAMYnCt2y\",style:{\"--framer-text-alignment\":\"left\"},children:\"@2025 All Rights Reserved\"})}),className:\"framer-1d5sitg\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TI16Pyb5I\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Dr3qsDLI_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1grydmv\",\"data-styles-preset\":\"jAMYnCt2y\",style:{\"--framer-text-alignment\":\"center\"},children:\"@2025 All Rights Reserved\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15ii67o\",layoutDependency:layoutDependency,layoutId:\"aShZjtPtb\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1grydmv\",\"data-styles-preset\":\"jAMYnCt2y\",style:{\"--framer-text-alignment\":\"right\"},children:\"The Bitcoin Lambo | Bitcoin Bro | Dogelord\"})}),className:\"framer-101bb1l\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"hMFHhCQUJ\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Dr3qsDLI_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1grydmv\",\"data-styles-preset\":\"jAMYnCt2y\",style:{\"--framer-text-alignment\":\"center\"},children:\"The Bitcoin Lambo | Bitcoin Bro | Dogelord\"})})}},baseVariant,gestureVariant)})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0pLks.framer-1c3z8s6, .framer-0pLks .framer-1c3z8s6 { display: block; }\",\".framer-0pLks.framer-1fa8eg0 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 865px; }\",\".framer-0pLks .framer-1h6phnd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 60px 60px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0pLks .framer-19ozn7x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-0pLks .framer-9wh1qn { flex: none; height: 300px; position: relative; width: 400px; }\",\".framer-0pLks .framer-1xuxl7e { -webkit-user-select: none; bottom: 0px; flex: none; height: 170px; left: 0px; overflow: hidden; position: absolute; right: 0px; user-select: none; z-index: 0; }\",\".framer-0pLks .framer-1h3xt9v, .framer-0pLks .framer-c61l00 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0pLks .framer-6uw2uu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-0pLks .framer-1g799sy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-0pLks .framer-x91k11-container, .framer-0pLks .framer-mp5skh-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-0pLks .framer-adiabt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0pLks .framer-hbvjvc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-0pLks .framer-9pvhq9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0pLks .framer-drrx39-container, .framer-0pLks .framer-1qrjjmv-container, .framer-0pLks .framer-bo5qgg-container, .framer-0pLks .framer-c425vm-container, .framer-0pLks .framer-1ax7rum-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-0pLks .framer-aqr9jf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-0pLks .framer-1d5sitg, .framer-0pLks .framer-101bb1l { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-0pLks .framer-15ii67o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; min-width: 52px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0pLks.framer-1fa8eg0, .framer-0pLks .framer-1h6phnd, .framer-0pLks .framer-19ozn7x, .framer-0pLks .framer-1h3xt9v, .framer-0pLks .framer-c61l00, .framer-0pLks .framer-1g799sy, .framer-0pLks .framer-hbvjvc, .framer-0pLks .framer-9pvhq9, .framer-0pLks .framer-15ii67o { gap: 0px; } .framer-0pLks.framer-1fa8eg0 > *, .framer-0pLks .framer-1h3xt9v > *, .framer-0pLks .framer-c61l00 > *, .framer-0pLks .framer-hbvjvc > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-0pLks.framer-1fa8eg0 > :first-child, .framer-0pLks .framer-1h6phnd > :first-child, .framer-0pLks .framer-19ozn7x > :first-child, .framer-0pLks .framer-1h3xt9v > :first-child, .framer-0pLks .framer-c61l00 > :first-child, .framer-0pLks .framer-1g799sy > :first-child, .framer-0pLks .framer-hbvjvc > :first-child { margin-top: 0px; } .framer-0pLks.framer-1fa8eg0 > :last-child, .framer-0pLks .framer-1h6phnd > :last-child, .framer-0pLks .framer-19ozn7x > :last-child, .framer-0pLks .framer-1h3xt9v > :last-child, .framer-0pLks .framer-c61l00 > :last-child, .framer-0pLks .framer-1g799sy > :last-child, .framer-0pLks .framer-hbvjvc > :last-child { margin-bottom: 0px; } .framer-0pLks .framer-1h6phnd > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-0pLks .framer-19ozn7x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0pLks .framer-1g799sy > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-0pLks .framer-9pvhq9 > *, .framer-0pLks .framer-15ii67o > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-0pLks .framer-9pvhq9 > :first-child, .framer-0pLks .framer-15ii67o > :first-child { margin-left: 0px; } .framer-0pLks .framer-9pvhq9 > :last-child, .framer-0pLks .framer-15ii67o > :last-child { margin-right: 0px; } }\",\".framer-0pLks.framer-v-1r3du83.framer-1fa8eg0 { width: 700px; }\",\".framer-0pLks.framer-v-1r3du83 .framer-1h6phnd { padding: 0px 40px 40px 40px; }\",\".framer-0pLks.framer-v-1r3du83 .framer-19ozn7x { padding: 50px 0px 50px 0px; }\",\".framer-0pLks.framer-v-1r3du83 .framer-1h3xt9v { gap: 20px; max-width: 600px; }\",\".framer-0pLks.framer-v-1r3du83 .framer-c61l00, .framer-0pLks.framer-v-ngendv .framer-c61l00 { gap: 20px; }\",\".framer-0pLks.framer-v-1r3du83 .framer-hbvjvc, .framer-0pLks.framer-v-ngendv .framer-hbvjvc { gap: 20px; padding: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0pLks.framer-v-1r3du83 .framer-1h3xt9v, .framer-0pLks.framer-v-1r3du83 .framer-c61l00, .framer-0pLks.framer-v-1r3du83 .framer-hbvjvc { gap: 0px; } .framer-0pLks.framer-v-1r3du83 .framer-1h3xt9v > *, .framer-0pLks.framer-v-1r3du83 .framer-c61l00 > *, .framer-0pLks.framer-v-1r3du83 .framer-hbvjvc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0pLks.framer-v-1r3du83 .framer-1h3xt9v > :first-child, .framer-0pLks.framer-v-1r3du83 .framer-c61l00 > :first-child, .framer-0pLks.framer-v-1r3du83 .framer-hbvjvc > :first-child { margin-top: 0px; } .framer-0pLks.framer-v-1r3du83 .framer-1h3xt9v > :last-child, .framer-0pLks.framer-v-1r3du83 .framer-c61l00 > :last-child, .framer-0pLks.framer-v-1r3du83 .framer-hbvjvc > :last-child { margin-bottom: 0px; } }\",\".framer-0pLks.framer-v-ngendv.framer-1fa8eg0 { gap: 20px; width: 408px; }\",\".framer-0pLks.framer-v-ngendv .framer-1h6phnd { padding: 0px 0px 20px 0px; }\",\".framer-0pLks.framer-v-ngendv .framer-19ozn7x { padding: 30px 0px 30px 0px; }\",\".framer-0pLks.framer-v-ngendv .framer-1h3xt9v { gap: 10px; padding: 0px 30px 0px 30px; }\",\".framer-0pLks.framer-v-ngendv .framer-1g799sy { gap: 4px; }\",\".framer-0pLks.framer-v-ngendv .framer-mp5skh-container { width: 100%; }\",\".framer-0pLks.framer-v-ngendv .framer-9pvhq9 { align-content: unset; align-items: unset; display: grid; gap: 8px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }\",\".framer-0pLks.framer-v-ngendv .framer-drrx39-container, .framer-0pLks.framer-v-ngendv .framer-1qrjjmv-container, .framer-0pLks.framer-v-ngendv .framer-bo5qgg-container, .framer-0pLks.framer-v-ngendv .framer-c425vm-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; }\",\".framer-0pLks.framer-v-ngendv .framer-1ax7rum-container { align-self: start; flex: none; grid-column: auto / span 2; height: 100%; justify-self: start; width: 100%; }\",\".framer-0pLks.framer-v-ngendv .framer-aqr9jf { flex-direction: column; gap: 14px; justify-content: flex-start; }\",\".framer-0pLks.framer-v-ngendv .framer-1d5sitg { flex: none; order: 2; width: 100%; }\",\".framer-0pLks.framer-v-ngendv .framer-15ii67o { order: 0; }\",\".framer-0pLks.framer-v-ngendv .framer-101bb1l { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0pLks.framer-v-ngendv.framer-1fa8eg0, .framer-0pLks.framer-v-ngendv .framer-1h3xt9v, .framer-0pLks.framer-v-ngendv .framer-c61l00, .framer-0pLks.framer-v-ngendv .framer-1g799sy, .framer-0pLks.framer-v-ngendv .framer-hbvjvc, .framer-0pLks.framer-v-ngendv .framer-9pvhq9, .framer-0pLks.framer-v-ngendv .framer-aqr9jf { gap: 0px; } .framer-0pLks.framer-v-ngendv.framer-1fa8eg0 > *, .framer-0pLks.framer-v-ngendv .framer-c61l00 > *, .framer-0pLks.framer-v-ngendv .framer-hbvjvc > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-0pLks.framer-v-ngendv.framer-1fa8eg0 > :first-child, .framer-0pLks.framer-v-ngendv .framer-1h3xt9v > :first-child, .framer-0pLks.framer-v-ngendv .framer-c61l00 > :first-child, .framer-0pLks.framer-v-ngendv .framer-1g799sy > :first-child, .framer-0pLks.framer-v-ngendv .framer-hbvjvc > :first-child, .framer-0pLks.framer-v-ngendv .framer-aqr9jf > :first-child { margin-top: 0px; } .framer-0pLks.framer-v-ngendv.framer-1fa8eg0 > :last-child, .framer-0pLks.framer-v-ngendv .framer-1h3xt9v > :last-child, .framer-0pLks.framer-v-ngendv .framer-c61l00 > :last-child, .framer-0pLks.framer-v-ngendv .framer-1g799sy > :last-child, .framer-0pLks.framer-v-ngendv .framer-hbvjvc > :last-child, .framer-0pLks.framer-v-ngendv .framer-aqr9jf > :last-child { margin-bottom: 0px; } .framer-0pLks.framer-v-ngendv .framer-1h3xt9v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-0pLks.framer-v-ngendv .framer-1g799sy > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-0pLks.framer-v-ngendv .framer-9pvhq9 > *, .framer-0pLks.framer-v-ngendv .framer-9pvhq9 > :first-child, .framer-0pLks.framer-v-ngendv .framer-9pvhq9 > :last-child { margin: 0px; } .framer-0pLks.framer-v-ngendv .framer-aqr9jf > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-0pLks[data-border=\"true\"]::after, .framer-0pLks [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 1009\n * @framerIntrinsicWidth 865\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UewPw6YhU\":{\"layout\":[\"fixed\",\"auto\"]},\"Dr3qsDLI_\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUf4IdddVD=withCSS(Component,css,\"framer-0pLks\");export default FramerUf4IdddVD;FramerUf4IdddVD.displayName=\"Sections/CTA & Footer\";FramerUf4IdddVD.defaultProps={height:1009,width:865};addPropertyControls(FramerUf4IdddVD,{variant:{options:[\"EI1occwSI\",\"UewPw6YhU\",\"Dr3qsDLI_\"],optionTitles:[\"Desktop\",\"Laptop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUf4IdddVD,[{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\"}]},...ElementsCTAProfileImagesFonts,...ButtonsGreyButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUf4IdddVD\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1009\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UewPw6YhU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dr3qsDLI_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"865\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Uf4IdddVD.map"],"mappings":"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"}