{"version":3,"file":"O_KF61hLa.CNoFT-kB.mjs","names":["t","i","e","s","u","p","o","n","l","r","h","a","c","d","addPropertyOverrides","enabledGestures","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","Image","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","t","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","Image","css","Image"],"sources":["https:/ga.jspm.io/npm:lenis@1.1.9/dist/lenis.mjs","https:/framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js","https:/framerusercontent.com/modules/b2JEM7wGO3zgz7Wk62gf/VuS3qaLbvV6BaMrbyGMe/fYUE1TtQ2.js","https:/framerusercontent.com/modules/DsECk413Dwq7b6IzDG9N/56ZDw6OiTBDZPNwZ4cn4/fZvKGVjOC.js","https:/framerusercontent.com/modules/euaSFFs8a9DAURHKD8ng/hPWor2UTBn0m7wjYoHnG/O_KF61hLa.js"],"sourcesContent":["function clamp(t,i,e){return Math.max(t,Math.min(i,e))}class Animate{constructor(){this.isRunning=!1,this.value=0,this.from=0,this.to=0,this.duration=0,this.currentTime=0}advance(t){var i;if(!this.isRunning)return;let e=!1;if(this.duration&&this.easing){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}else this.lerp?(this.value=function damp(t,i,e,s){return function lerp(t,i,e){return(1-e)*t+e*i}(t,i,1-Math.exp(-e*s))}(this.value,this.to,60*this.lerp,t),Math.round(this.value)===this.to&&(this.value=this.to,e=!0)):(this.value=this.to,e=!0);e&&this.stop(),null===(i=this.onUpdate)||void 0===i||i.call(this,this.value,e)}stop(){this.isRunning=!1}fromTo(t,i,{lerp:e,duration:s,easing:o,onStart:n,onUpdate:l}){this.from=this.value=t,this.to=i,this.lerp=e,this.duration=s,this.easing=o,this.currentTime=0,this.isRunning=!0,null==n||n(),this.onUpdate=l}}class Dimensions{constructor({wrapper:t,content:i,autoResize:e=!0,debounce:s=250}={}){this.width=0,this.height=0,this.scrollWidth=0,this.scrollHeight=0,this.resize=()=>{this.onWrapperResize(),this.onContentResize()},this.onWrapperResize=()=>{this.wrapper===window?(this.width=window.innerWidth,this.height=window.innerHeight):this.wrapper instanceof HTMLElement&&(this.width=this.wrapper.clientWidth,this.height=this.wrapper.clientHeight)},this.onContentResize=()=>{this.wrapper===window?(this.scrollHeight=this.content.scrollHeight,this.scrollWidth=this.content.scrollWidth):this.wrapper instanceof HTMLElement&&(this.scrollHeight=this.wrapper.scrollHeight,this.scrollWidth=this.wrapper.scrollWidth)},this.wrapper=t,this.content=i,e&&(this.debouncedResize=function debounce(t,i){let e;return function(){let s=arguments,o=this;clearTimeout(e),e=setTimeout((function(){t.apply(o,s)}),i)}}(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(){var t,i;null===(t=this.wrapperResizeObserver)||void 0===t||t.disconnect(),null===(i=this.contentResizeObserver)||void 0===i||i.disconnect(),window.removeEventListener(\"resize\",this.debouncedResize,!1)}get limit(){return{x:this.scrollWidth-this.width,y:this.scrollHeight-this.height}}}class Emitter{constructor(){this.events={}}emit(t,...i){let e=this.events[t]||[];for(let t=0,s=e.length;t<s;t++)e[t](...i)}on(t,i){var e;return(null===(e=this.events[t])||void 0===e?void 0:e.push(i))||(this.events[t]=[i]),()=>{var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}}off(t,i){var e;this.events[t]=null===(e=this.events[t])||void 0===e?void 0:e.filter((t=>i!==t))}destroy(){this.events={}}}const t=100/6;class VirtualScroll{constructor(i,{wheelMultiplier:e=1,touchMultiplier:s=1}){this.lastDelta={x:0,y:0},this.windowWidth=0,this.windowHeight=0,this.onTouchStart=t=>{const{clientX:i,clientY:e}=t.targetTouches?t.targetTouches[0]:t;this.touchStart.x=i,this.touchStart.y=e,this.lastDelta={x:0,y:0},this.emitter.emit(\"scroll\",{deltaX:0,deltaY:0,event:t})},this.onTouchMove=t=>{var i,e,s,o;const{clientX:n,clientY:l}=t.targetTouches?t.targetTouches[0]:t,r=-(n-(null!==(e=null===(i=this.touchStart)||void 0===i?void 0:i.x)&&void 0!==e?e:0))*this.touchMultiplier,h=-(l-(null!==(o=null===(s=this.touchStart)||void 0===s?void 0:s.y)&&void 0!==o?o:0))*this.touchMultiplier;this.touchStart.x=n,this.touchStart.y=l,this.lastDelta={x:r,y:h},this.emitter.emit(\"scroll\",{deltaX:r,deltaY:h,event:t})},this.onTouchEnd=t=>{this.emitter.emit(\"scroll\",{deltaX:this.lastDelta.x,deltaY:this.lastDelta.y,event:t})},this.onWheel=i=>{let{deltaX:e,deltaY:s,deltaMode:o}=i;e*=1===o?t:2===o?this.windowWidth:1,s*=1===o?t:2===o?this.windowHeight:1,e*=this.wheelMultiplier,s*=this.wheelMultiplier,this.emitter.emit(\"scroll\",{deltaX:e,deltaY:s,event:i})},this.onWindowResize=()=>{this.windowWidth=window.innerWidth,this.windowHeight=window.innerHeight},this.element=i,this.wheelMultiplier=e,this.touchMultiplier=s,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,i){return this.emitter.on(t,i)}destroy(){this.emitter.destroy(),window.removeEventListener(\"resize\",this.onWindowResize,!1),this.element.removeEventListener(\"wheel\",this.onWheel),this.element.removeEventListener(\"touchstart\",this.onTouchStart),this.element.removeEventListener(\"touchmove\",this.onTouchMove),this.element.removeEventListener(\"touchend\",this.onTouchEnd)}}class Lenis{constructor({wrapper:t=window,content:i=document.documentElement,wheelEventsTarget:e=t,eventsTarget:s=e,smoothWheel:o=!0,syncTouch:n=!1,syncTouchLerp:l=.075,touchInertiaMultiplier:r=35,duration:h,easing:a=(t=>Math.min(1,1.001-Math.pow(2,-10*t))),lerp:c=.1,infinite:d=!1,orientation:u=\"vertical\",gestureOrientation:p=\"vertical\",touchMultiplier:m=1,wheelMultiplier:v=1,autoResize:g=!0,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f=!1}={}){this.__isScrolling=!1,this.__isStopped=!1,this.__isLocked=!1,this.userData={},this.lastVelocity=0,this.velocity=0,this.direction=0,this.onPointerDown=t=>{1===t.button&&this.reset()},this.onVirtualScroll=t=>{if(\"function\"==typeof this.options.virtualScroll&&!1===this.options.virtualScroll(t))return;const{deltaX:i,deltaY:e,event:s}=t;if(this.emitter.emit(\"virtual-scroll\",{deltaX:i,deltaY:e,event:s}),s.ctrlKey)return;const o=s.type.includes(\"touch\"),n=s.type.includes(\"wheel\");this.isTouching=\"touchstart\"===s.type||\"touchmove\"===s.type;if(this.options.syncTouch&&o&&\"touchstart\"===s.type&&!this.isStopped&&!this.isLocked)return void this.reset();const l=0===i&&0===e,r=\"vertical\"===this.options.gestureOrientation&&0===e||\"horizontal\"===this.options.gestureOrientation&&0===i;if(l||r)return;let h=s.composedPath();h=h.slice(0,h.indexOf(this.rootElement));const a=this.options.prevent;if(h.find((t=>{var i,e,s,l,r;return t instanceof Element&&(\"function\"==typeof a&&(null==a?void 0:a(t))||(null===(i=t.hasAttribute)||void 0===i?void 0:i.call(t,\"data-lenis-prevent\"))||o&&(null===(e=t.hasAttribute)||void 0===e?void 0:e.call(t,\"data-lenis-prevent-touch\"))||n&&(null===(s=t.hasAttribute)||void 0===s?void 0:s.call(t,\"data-lenis-prevent-wheel\"))||(null===(l=t.classList)||void 0===l?void 0:l.contains(\"lenis\"))&&!(null===(r=t.classList)||void 0===r?void 0:r.contains(\"lenis-stopped\")))})))return;if(this.isStopped||this.isLocked)return void s.preventDefault();if(!(this.options.syncTouch&&o||this.options.smoothWheel&&n))return this.isScrolling=\"native\",void this.animate.stop();s.preventDefault();let c=e;\"both\"===this.options.gestureOrientation?c=Math.abs(e)>Math.abs(i)?e:i:\"horizontal\"===this.options.gestureOrientation&&(c=i);const d=o&&this.options.syncTouch,u=o&&\"touchend\"===s.type&&Math.abs(c)>5;u&&(c=this.velocity*this.options.touchInertiaMultiplier),this.scrollTo(this.targetScroll+c,Object.assign({programmatic:!1},d?{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.9\",t&&t!==document.documentElement&&t!==document.body||(t=window),this.options={wrapper:t,content:i,wheelEventsTarget:e,eventsTarget:s,smoothWheel:o,syncTouch:n,syncTouchLerp:l,touchInertiaMultiplier:r,duration:h,easing:a,lerp:c,infinite:d,gestureOrientation:p,orientation:u,touchMultiplier:m,wheelMultiplier:v,autoResize:g,prevent:w,virtualScroll:S,__experimental__naiveDimensions:f},this.animate=new Animate,this.emitter=new Emitter,this.dimensions=new Dimensions({wrapper:t,content:i,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.options.wrapper.addEventListener(\"pointerdown\",this.onPointerDown,!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.options.wrapper.removeEventListener(\"pointerdown\",this.onPointerDown,!1),this.virtualScroll.destroy(),this.dimensions.destroy(),this.cleanUpClassName()}on(t,i){return this.emitter.on(t,i)}off(t,i){return this.emitter.off(t,i)}setScroll(t){this.isHorizontal?this.rootElement.scrollLeft=t:this.rootElement.scrollTop=t}resize(){this.dimensions.resize()}emit(){this.emitter.emit(\"scroll\",this)}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 i=t-(this.time||t);this.time=t,this.animate.advance(.001*i)}scrollTo(t,{offset:i=0,immediate:e=!1,lock:s=!1,duration:o=this.options.duration,easing:n=this.options.easing,lerp:l=this.options.lerp,onStart:r,onComplete:h,force:a=!1,programmatic:c=!0,userData:d={}}={}){if(!this.isStopped&&!this.isLocked||a){if(\"string\"==typeof t&&[\"top\",\"left\",\"start\"].includes(t))t=0;else if(\"string\"==typeof t&&[\"bottom\",\"right\",\"end\"].includes(t))t=this.limit;else{let e;if(\"string\"==typeof t?e=document.querySelector(t):t instanceof HTMLElement&&(null==t?void 0:t.nodeType)&&(e=t),e){if(this.options.wrapper!==window){const t=this.rootElement.getBoundingClientRect();i-=this.isHorizontal?t.left:t.top}const s=e.getBoundingClientRect();t=(this.isHorizontal?s.left:s.top)+this.animatedScroll}}if(\"number\"==typeof t&&(t+=i,t=Math.round(t),this.options.infinite?c&&(this.targetScroll=this.animatedScroll=this.scroll):t=clamp(0,t,this.limit),t!==this.targetScroll)){if(this.userData=d,e)return this.animatedScroll=this.targetScroll=t,this.setScroll(this.scroll),this.reset(),this.preventNextNativeScrollEvent(),this.emit(),null==h||h(this),void(this.userData={});c||(this.targetScroll=t),this.animate.fromTo(this.animatedScroll,t,{duration:o,easing:n,lerp:l,onStart:()=>{s&&(this.isLocked=!0),this.isScrolling=\"smooth\",null==r||r(this)},onUpdate:(t,i)=>{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),i||this.emit(),i&&(this.reset(),this.emit(),null==h||h(this),this.userData={},this.preventNextNativeScrollEvent())}})}}}preventNextNativeScrollEvent(){this.__preventNextNativeScrollEvent=!0,requestAnimationFrame((()=>{delete this.__preventNextNativeScrollEvent}))}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,i){return(t%i+i)%i}(this.animatedScroll,this.limit):this.animatedScroll}get progress(){return 0===this.limit?1:this.scroll/this.limit}get isScrolling(){return this.__isScrolling}set isScrolling(t){this.__isScrolling!==t&&(this.__isScrolling=t,this.updateClassName())}get isStopped(){return this.__isStopped}set isStopped(t){this.__isStopped!==t&&(this.__isStopped=t,this.updateClassName())}get isLocked(){return this.__isLocked}set isLocked(t){this.__isLocked!==t&&(this.__isLocked=t,this.updateClassName())}get isSmooth(){return\"smooth\"===this.isScrolling}get className(){let t=\"lenis\";return this.isStopped&&(t+=\" lenis-stopped\"),this.isLocked&&(t+=\" lenis-locked\"),this.isScrolling&&(t+=\" lenis-scrolling\"),\"smooth\"===this.isScrolling&&(t+=\" lenis-smooth\"),t}updateClassName(){this.cleanUpClassName(),this.rootElement.className=`${this.rootElement.className} ${this.className}`.trim()}cleanUpClassName(){this.rootElement.className=this.rootElement.className.replace(/lenis(-\\w+)?/g,\"\").trim()}}export{Lenis as default};\n//# sourceMappingURL=lenis.mjs.map\n","import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,withCSS}from\"framer\";import Lenis from\"lenis\";import{useEffect,useRef}from\"react\";function SmoothScrollComponent(props){const{intensity}=props;const lenis=useRef(null);useEffect(()=>{if(lenis.current){try{lenis.current.scrollTo(0,{immediate:true});}catch(error){console.error(\"Error scrolling to top:\",error);}}},[lenis]);// Watch for stop scroll elements\nuseEffect(()=>{const checkForStopScroll=()=>{try{const stopScrollElement=document.querySelector(\"[data-frameruni-stop-scroll]\");const htmlElement=document.documentElement;const hasHiddenOverflow=htmlElement&&htmlElement.style&&htmlElement.style.overflow===\"hidden\";if(lenis.current){if(stopScrollElement||hasHiddenOverflow){lenis.current.stop();}else{lenis.current.start();}}}catch(error){console.error(\"Error in checkForStopScroll:\",error);}};// Initial check\ncheckForStopScroll();// Set up observers\nlet stopScrollObserver;let htmlStyleObserver;try{stopScrollObserver=new MutationObserver(checkForStopScroll);htmlStyleObserver=new MutationObserver(checkForStopScroll);// Observe document for data-frameruni-stop-scroll attribute\nif(document&&document.documentElement){stopScrollObserver.observe(document.documentElement,{childList:true,subtree:true,attributes:true,attributeFilter:[\"data-frameruni-stop-scroll\"]});// Observe only the HTML element for style changes\nhtmlStyleObserver.observe(document.documentElement,{attributes:true,attributeFilter:[\"style\"]});}}catch(error){console.error(\"Error setting up observers:\",error);}return()=>{try{if(stopScrollObserver)stopScrollObserver.disconnect();if(htmlStyleObserver)htmlStyleObserver.disconnect();}catch(error){console.error(\"Error disconnecting observers:\",error);}};},[]);useEffect(()=>{try{if(!document)return;const allElements=document.getElementsByTagName(\"*\");for(let i=0;i<allElements.length;i++){const element=allElements[i];if(!element)continue;try{const computedStyle=window.getComputedStyle(element);if(computedStyle&&computedStyle.getPropertyValue(\"overflow\")===\"auto\"){element.setAttribute(\"data-lenis-prevent\",\"true\");}}catch(styleError){console.error(\"Error getting computed style:\",styleError);}}}catch(error){console.error(\"Error in overflow detection:\",error);}},[]);useEffect(()=>{try{if(typeof Lenis!==\"function\"){console.error(\"Lenis is not available\");return;}lenis.current=new Lenis({duration:(intensity||10)/10});const raf=time=>{if(lenis.current){try{lenis.current.raf(time);requestAnimationFrame(raf);}catch(error){console.error(\"Error in animation frame:\",error);}}};const animationId=requestAnimationFrame(raf);return()=>{cancelAnimationFrame(animationId);if(lenis.current){try{lenis.current.destroy();lenis.current=null;}catch(error){console.error(\"Error destroying Lenis:\",error);}}};}catch(error){console.error(\"Error initializing Lenis:\",error);return()=>{};}},[intensity]);//https://github.com/darkroomengineering/lenis?tab=readme-ov-file#anchor-links\nuseEffect(()=>{try{if(!document||!lenis.current)return;// Get all anchor links and store click handlers with their targets\nconst anchorLinksData=Array.from(document.querySelectorAll(\"a[href]\")||[]).filter(element=>{if(!element)return false;const anchor=element;if(!anchor.href)return false;// Only handle internal anchor links\nconst isInternalLink=anchor.href.startsWith(window.location.origin)||anchor.href.startsWith(\"./\")||anchor.href.startsWith(\"/\");const hasHash=anchor.href.includes(\"#\");return isInternalLink&&hasHash;}).map(anchor=>{try{const anchorElement=anchor;const href=anchorElement.href.includes(\"#\")?`#${anchorElement.href.split(\"#\").pop()}`:\"\";const decodedHref=href?decodeURIComponent(href):\"\";let scrollMargin=0;try{if(decodedHref){const targetElement=document.querySelector(decodedHref);if(targetElement){const marginStyle=window.getComputedStyle(targetElement).scrollMarginTop;scrollMargin=marginStyle?parseInt(marginStyle)||0:0;}}}catch(targetError){console.error(\"Error finding target element:\",targetError);}return{href,scrollMargin,anchorElement:anchorElement};}catch(anchorError){console.error(\"Error processing anchor:\",anchorError);return null;}}).filter(Boolean);const handleClick=(e,href,scrollMargin)=>{try{if(e&&e.preventDefault)e.preventDefault();if(lenis.current&&href){lenis.current.scrollTo(href,{offset:-(scrollMargin||0)});}}catch(error){console.error(\"Error in anchor click handler:\",error);}};const handlers=anchorLinksData.map(({href,scrollMargin})=>e=>handleClick(e,href,scrollMargin));anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.addEventListener(\"click\",handlers[index]);}});return()=>{anchorLinksData.forEach(({anchorElement},index)=>{if(anchorElement&&handlers[index]){anchorElement.removeEventListener(\"click\",handlers[index]);}});};}catch(error){console.error(\"Error setting up anchor links:\",error);return()=>{};}},[lenis]);return /*#__PURE__*/_jsx(\"div\",{style:props.style});}/**\n * @framerSupportedLayoutWidth auto\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n */const SmoothScroll=withCSS(SmoothScrollComponent,[\"html.lenis { height: auto; }\",\".lenis.lenis-smooth { scroll-behavior: auto !important; }\",\".lenis.lenis-smooth [data-lenis-prevent] { overscroll-behavior: contain; }\",\".lenis.lenis-stopped { overflow: hidden; }\",\".lenis.lenis-scrolling iframe { pointer-events: none; }\"],\"\");export default SmoothScroll;SmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(SmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:0,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SmoothScroll\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"auto\",\"framerDisableUnlink\":\"\",\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SmoothScroll_Prod.map","// Generated by Framer (6c2a425)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={Ofs979erm:{hover:true}};const serializationHash=\"framer-mec6y\";const variantClassNames={Ofs979erm:\"framer-v-1gttpbz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}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:[.12,.23,.5,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 getProps=({height,id,image,width,...props})=>{return{...props,VTly1OISj:image??props.VTly1OISj};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,VTly1OISj,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"Ofs979erm\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VTly1OISj)},className:cx(scopingClassNames,\"framer-1gttpbz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Ofs979erm\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",filter:\"invert(0)\",WebkitFilter:\"invert(0)\",...style},variants:{\"Ofs979erm-hover\":{\"--border-bottom-width\":\"30px\",\"--border-left-width\":\"30px\",\"--border-right-width\":\"30px\",\"--border-top-width\":\"30px\"}},...addPropertyOverrides({\"Ofs979erm-hover\":{\"data-framer-name\":undefined,background:{alt:\"\",fit:\"fill\",intrinsicHeight:1e3,intrinsicWidth:1e3,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VTly1OISj)}}},baseVariant,gestureVariant)})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mec6y.framer-n2bl7l, .framer-mec6y .framer-n2bl7l { display: block; }\",\".framer-mec6y.framer-1gttpbz { cursor: pointer; height: 440px; position: relative; width: 469px; }\",\".framer-mec6y.framer-v-1gttpbz.hover.framer-1gttpbz { gap: 10px; overflow: hidden; }\",'.framer-mec6y[data-border=\"true\"]::after, .framer-mec6y [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 440\n * @framerIntrinsicWidth 469\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"cRbHVDiF7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"VTly1OISj\":\"image\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfYUE1TtQ2=withCSS(Component,css,\"framer-mec6y\");export default FramerfYUE1TtQ2;FramerfYUE1TtQ2.displayName=\"Effects/Hover effect\";FramerfYUE1TtQ2.defaultProps={height:440,width:469};addPropertyControls(FramerfYUE1TtQ2,{VTly1OISj:{title:\"Image\",type:ControlType.ResponsiveImage}});addFonts(FramerfYUE1TtQ2,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfYUE1TtQ2\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"440\",\"framerVariables\":\"{\\\"VTly1OISj\\\":\\\"image\\\"}\",\"framerIntrinsicWidth\":\"469\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"cRbHVDiF7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fYUE1TtQ2.map","// Generated by Framer (4cdda18)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,Link,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ScrambleAppear from\"https://framerusercontent.com/modules/x9N74fQKlr6QLCpcJIqg/ItbrXvATfgkGTI2S7SIM/ScrambleAppear_Prod.js\";const ScrambleAppearFonts=getFonts(ScrambleAppear);const cycleOrder=[\"gy2sp0wRm\",\"A4zS8q_Lw\",\"OnFBz_k_3\"];const serializationHash=\"framer-it2xG\";const variantClassNames={A4zS8q_Lw:\"framer-v-lqkzar\",gy2sp0wRm:\"framer-v-xkc1tq\",OnFBz_k_3:\"framer-v-w3fqdi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:1,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"gy2sp0wRm\",\"Variant 2\":\"A4zS8q_Lw\",\"Variant 3\":\"OnFBz_k_3\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"gy2sp0wRm\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"gy2sp0wRm\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1bbjgm2=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"A4zS8q_Lw\");});const onMouseLeavei2k0iw=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"gy2sp0wRm\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"A4zS8q_Lw\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":lg3RvHHYp\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"gy2sp0wRm\",openInNewTab:false,scopeId:\"fZvKGVjOC\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-xkc1tq\",className,classNames)} framer-lkihcn`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"gy2sp0wRm\",onMouseEnter:onMouseEnter1bbjgm2,ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.14)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(255, 255, 255, 0.1)\",borderBottomLeftRadius:64,borderBottomRightRadius:64,borderTopLeftRadius:64,borderTopRightRadius:64,...style},variants:{A4zS8q_Lw:{borderBottomLeftRadius:36,borderBottomRightRadius:36,borderTopLeftRadius:36,borderTopRightRadius:36},OnFBz_k_3:{\"--border-bottom-width\":\"0.3px\",\"--border-left-width\":\"0.3px\",\"--border-right-width\":\"0.3px\",\"--border-top-width\":\"0.3px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}},...addPropertyOverrides({A4zS8q_Lw:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavei2k0iw},OnFBz_k_3:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jp2ihk\",layoutDependency:layoutDependency,layoutId:\"sNI45E0VB\",style:{background:\"radial-gradient(50% 50% at 50% 50%, rgb(15, 9, 5) 0%, rgb(84, 40, 14) 23.46213400900901%, rgb(255, 128, 0) 60.376196509009006%, rgb(255, 0, 0) 100%)\",borderBottomLeftRadius:104,borderBottomRightRadius:104,borderTopLeftRadius:104,borderTopRightRadius:104,filter:\"blur(20px)\",WebkitFilter:\"blur(20px)\"},variants:{OnFBz_k_3:{borderBottomLeftRadius:31.15,borderBottomRightRadius:31.15,borderTopLeftRadius:31.15,borderTopRightRadius:31.15,filter:\"blur(6px)\",WebkitFilter:\"blur(6px)\"}}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:227,intrinsicWidth:227,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:454,pixelWidth:454,src:\"https://framerusercontent.com/images/tnyHSEiQdafqKLTwTo2HiftfNI.png\"},className:\"framer-1ararqv\",\"data-framer-name\":\"Profile def\",layoutDependency:layoutDependency,layoutId:\"xT5CTmsXk\",style:{opacity:1},variants:{OnFBz_k_3:{opacity:0}},...addPropertyOverrides({A4zS8q_Lw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:227,intrinsicWidth:227,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||227)-108),pixelHeight:454,pixelWidth:454,src:\"https://framerusercontent.com/images/tnyHSEiQdafqKLTwTo2HiftfNI.png\"},transformTemplate:transformTemplate1},OnFBz_k_3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:227,intrinsicWidth:227,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||68)- -7.19),pixelHeight:454,pixelWidth:454,src:\"https://framerusercontent.com/images/tnyHSEiQdafqKLTwTo2HiftfNI.png\"},transformTemplate:transformTemplate1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+112.5),pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/LBNjea9ASyj8nHaU31l0wO7sAg.png\"},className:\"framer-16wn1qp\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"dstmOghOX\",transformTemplate:transformTemplate2,...addPropertyOverrides({A4zS8q_Lw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||227)-108+68.196),pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/LBNjea9ASyj8nHaU31l0wO7sAg.png\"}},OnFBz_k_3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||68)- -7.19+17.7458),pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/LBNjea9ASyj8nHaU31l0wO7sAg.png\"}}},baseVariant,gestureVariant)})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u18rc5-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"zp2qL59EI-container\",nodeId:\"zp2qL59EI\",rendersWithMotion:true,scopeId:\"fZvKGVjOC\",children:/*#__PURE__*/_jsx(ScrambleAppear,{animation:{delay:0,replay:true,trigger:\"layerInView\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Mintsoda - Lime Green 13x16 Regular\", \"Mintsoda - Lime Green 13x16 Regular Placeholder\", sans-serif',fontSize:\"21px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},from:\"left\",height:\"100%\",id:\"zp2qL59EI\",layoutId:\"zp2qL59EI\",options:{keepSpaces:false,matchCase:true},scrambledLetters:10,speed:75,style:{height:\"100%\",width:\"100%\"},tag:\"p\",text:\"Website design\",userSelect:true,width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ts9v18-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"KxopzFaK6-container\",nodeId:\"KxopzFaK6\",rendersWithMotion:true,scopeId:\"fZvKGVjOC\",children:/*#__PURE__*/_jsx(ScrambleAppear,{animation:{delay:0,replay:true,trigger:\"layerInView\"},characters:\"ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789!@#$%^&*()_+[]{}|;:,.<>?~\",color:\"rgb(255, 255, 255)\",font:{fontFamily:'\"Mintsoda - Lime Green 13x16 Regular\", \"Mintsoda - Lime Green 13x16 Regular Placeholder\", sans-serif',fontSize:\"21px\",letterSpacing:\"0em\",lineHeight:\"1.4em\"},from:\"left\",height:\"100%\",id:\"KxopzFaK6\",layoutId:\"KxopzFaK6\",options:{keepSpaces:false,matchCase:true},scrambledLetters:10,speed:75,style:{height:\"100%\",width:\"100%\"},tag:\"p\",text:\"UI/UX\",userSelect:true,width:\"100%\"})})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(componentViewport?.height||227)- -1.5),pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/LBNjea9ASyj8nHaU31l0wO7sAg.png\"},className:\"framer-6i3kzm\",\"data-framer-name\":\"Frame 72\",layoutDependency:layoutDependency,layoutId:\"GGpJ93tv_\",transformTemplate:transformTemplate1,...addPropertyOverrides({OnFBz_k_3:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||68)*.5000000000000002-24)),pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/LBNjea9ASyj8nHaU31l0wO7sAg.png\"},transformTemplate:transformTemplate2}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-it2xG.framer-lkihcn, .framer-it2xG .framer-lkihcn { display: block; }\",\".framer-it2xG.framer-xkc1tq { height: 227px; overflow: hidden; position: relative; text-decoration: none; width: 227px; will-change: var(--framer-will-change-override, transform); }\",\".framer-it2xG .framer-1jp2ihk { bottom: -200px; flex: none; height: 186px; left: calc(49.33920704845817% - 212px / 2); overflow: visible; position: absolute; width: 212px; }\",\".framer-it2xG .framer-1ararqv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 227px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-it2xG .framer-16wn1qp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1px); left: 47%; overflow: visible; position: absolute; top: 50%; width: 1px; }\",\".framer-it2xG .framer-1u18rc5-container { flex: none; height: 14px; left: calc(50.22026431718064% - 180px / 2); position: absolute; top: 62px; width: 180px; }\",\".framer-it2xG .framer-1ts9v18-container { flex: none; height: 14px; left: 24px; position: absolute; top: 90px; width: 68px; }\",\".framer-it2xG .framer-6i3kzm { aspect-ratio: 1 / 1; bottom: -114px; flex: none; height: var(--framer-aspect-ratio-supported, 113px); left: 46%; overflow: visible; position: absolute; width: 113px; }\",\".framer-it2xG.framer-v-lqkzar .framer-1jp2ihk { bottom: -100px; }\",\".framer-it2xG.framer-v-lqkzar .framer-1ararqv { bottom: -30px; height: var(--framer-aspect-ratio-supported, 138px); left: 50%; right: unset; top: unset; width: 138px; }\",\".framer-it2xG.framer-v-w3fqdi.framer-xkc1tq { height: 68px; width: 68px; }\",\".framer-it2xG.framer-v-w3fqdi .framer-1jp2ihk { bottom: unset; height: 52px; left: calc(49.77973568281941% - 59.01px / 2); top: calc(52.4229074889868% - 51.82px / 2); width: 59px; }\",\".framer-it2xG.framer-v-w3fqdi .framer-1ararqv { bottom: -43px; height: var(--framer-aspect-ratio-supported, 36px); left: 50%; right: unset; top: unset; width: 36px; }\",\".framer-it2xG.framer-v-w3fqdi .framer-16wn1qp { width: 0px; }\",\".framer-it2xG.framer-v-w3fqdi .framer-6i3kzm { bottom: unset; height: var(--framer-aspect-ratio-supported, 48px); left: 50%; top: 50%; width: 48px; }\",'.framer-it2xG[data-border=\"true\"]::after, .framer-it2xG [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 227\n * @framerIntrinsicWidth 227\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"A4zS8q_Lw\":{\"layout\":[\"fixed\",\"fixed\"]},\"OnFBz_k_3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerfZvKGVjOC=withCSS(Component,css,\"framer-it2xG\");export default FramerfZvKGVjOC;FramerfZvKGVjOC.displayName=\"Profile\";FramerfZvKGVjOC.defaultProps={height:227,width:227};addPropertyControls(FramerfZvKGVjOC,{variant:{options:[\"gy2sp0wRm\",\"A4zS8q_Lw\",\"OnFBz_k_3\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerfZvKGVjOC,[{explicitInter:true,fonts:[{family:\"Mintsoda - Lime Green 13x16 Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/ZtGB45MQJYYECPHqLTH1kqNrE0.woff2\"}]},...ScrambleAppearFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerfZvKGVjOC\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"A4zS8q_Lw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OnFBz_k_3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"227\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"227\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./fZvKGVjOC.map","// Generated by Framer (b4533c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const enabledGestures={R4f5yJC0j:{hover:true}};const cycleOrder=[\"HB8T5SpjI\",\"wjDzzc5V2\",\"R4f5yJC0j\",\"Hr8QRiYqy\"];const serializationHash=\"framer-0yqtw\";const variantClassNames={HB8T5SpjI:\"framer-v-el6nbq\",Hr8QRiYqy:\"framer-v-jigqbe\",R4f5yJC0j:\"framer-v-1hg8rl4\",wjDzzc5V2:\"framer-v-gg1sgx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={\"Variant 1\":\"HB8T5SpjI\",\"Variant 2\":\"wjDzzc5V2\",\"Variant 3\":\"R4f5yJC0j\",Small:\"Hr8QRiYqy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HB8T5SpjI\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HB8T5SpjI\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(gestureVariant===\"R4f5yJC0j-hover\")return true;if(baseVariant===\"R4f5yJC0j\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"Hr8QRiYqy\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"Hr8QRiYqy\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-el6nbq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HB8T5SpjI\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:\"blur(10px)\",background:\"linear-gradient(111deg, rgba(255, 255, 255, 0.17) 0%, rgba(217, 217, 217, 0.13) 100%)\",WebkitBackdropFilter:\"blur(10px)\",...style},...addPropertyOverrides({\"R4f5yJC0j-hover\":{\"data-framer-name\":undefined},Hr8QRiYqy:{\"data-framer-name\":\"Small\"},R4f5yJC0j:{\"data-framer-name\":\"Variant 3\"},wjDzzc5V2:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x3n6ck\",layoutDependency:layoutDependency,layoutId:\"yfAC3cbcd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-33b2v8\",layoutDependency:layoutDependency,layoutId:\"qfomEXAbq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 0.6))\"},children:\"Want to\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\" \"}),\"uplift your design carrer\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-c9yw3e, rgba(255, 255, 255, 0.6))\"},children:\"?\"})]})}),className:\"framer-kbsvkp\",fonts:[\"GF;Figtree-500\",\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"Z4pdDtt1h\",style:{\"--extracted-1w3ko1f\":\"rgba(255, 255, 255, 0.6)\",\"--extracted-c9yw3e\":\"rgba(255, 255, 255, 0.6)\",\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Hr8QRiYqy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS01MDA=\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-1w3ko1f, rgba(255, 255, 255, 0.6))\"},children:\"Want to\"}),/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\"},children:\" \"}),\"uplift your design carrer\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--extracted-c9yw3e, rgba(255, 255, 255, 0.6))\"},children:\"?\"})]})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y53scm\",layoutDependency:layoutDependency,layoutId:\"UgxMzOUDU\",children:/*#__PURE__*/_jsxs(SVG,{className:\"framer-14ojb24\",layoutDependency:layoutDependency,layoutId:\"W_cKJ9AfB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\" overflow=\"visible\"><path d=\"M 15.75 18 C 16.993 18 18 16.993 18 15.75 L 18 2.25 C 18 1.007 16.993 0 15.75 0 L 2.25 0 C 1.007 0 0 1.007 0 2.25 L 0 15.75 C 0 16.993 1.007 18 2.25 18 Z M 6.642 5.847 L 11.25 10.455 L 11.25 7.341 C 11.25 7.03 11.502 6.778 11.812 6.778 C 12.123 6.778 12.375 7.03 12.375 7.341 L 12.375 11.812 C 12.375 12.123 12.123 12.375 11.812 12.375 L 7.341 12.375 C 7.03 12.375 6.778 12.123 6.778 11.812 C 6.778 11.502 7.03 11.25 7.341 11.25 L 10.455 11.25 L 5.847 6.642 C 5.633 6.421 5.637 6.07 5.853 5.853 C 6.07 5.637 6.421 5.633 6.642 5.847\" fill=\"rgb(122, 122, 122)\"></path></svg>',withExternalLayout:true,...addPropertyOverrides({\"R4f5yJC0j-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\" overflow=\"visible\"><path d=\"M 15.75 18 C 16.993 18 18 16.993 18 15.75 L 18 2.25 C 18 1.007 16.993 0 15.75 0 L 2.25 0 C 1.007 0 0 1.007 0 2.25 L 0 15.75 C 0 16.993 1.007 18 2.25 18 Z M 6.642 5.847 L 11.25 10.455 L 11.25 7.341 C 11.25 7.03 11.502 6.778 11.812 6.778 C 12.123 6.778 12.375 7.03 12.375 7.341 L 12.375 11.812 C 12.375 12.123 12.123 12.375 11.812 12.375 L 7.341 12.375 C 7.03 12.375 6.778 12.123 6.778 11.812 C 6.778 11.502 7.03 11.25 7.341 11.25 L 10.455 11.25 L 5.847 6.642 C 5.633 6.421 5.637 6.07 5.853 5.853 C 6.07 5.637 6.421 5.633 6.642 5.847\" fill=\"rgb(255, 255, 255)\"></path></svg>'}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-arr63b\",layoutDependency:layoutDependency,layoutId:\"qimDJ98y8\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\" overflow=\"visible\"><path d=\"M 15.75 18 C 16.993 18 18 16.993 18 15.75 L 18 2.25 C 18 1.007 16.993 0 15.75 0 L 2.25 0 C 1.007 0 0 1.007 0 2.25 L 0 15.75 C 0 16.993 1.007 18 2.25 18 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1qiul53\",layoutDependency:layoutDependency,layoutId:\"Uqwwhmr6i\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.686 6.686\" overflow=\"visible\"><path d=\"M 0.953 0.158 L 5.561 4.766 L 5.561 1.652 C 5.561 1.341 5.813 1.089 6.124 1.089 C 6.434 1.089 6.686 1.341 6.686 1.652 L 6.686 6.124 C 6.686 6.434 6.434 6.686 6.124 6.686 L 1.652 6.686 C 1.341 6.686 1.089 6.434 1.089 6.124 C 1.089 5.813 1.341 5.561 1.652 5.561 L 4.766 5.561 L 0.158 0.953 C -0.055 0.733 -0.052 0.382 0.165 0.165 C 0.382 -0.052 0.733 -0.055 0.953 0.158\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7scc5o\",layoutDependency:layoutDependency,layoutId:\"lKbHxaLNm\",style:{backgroundColor:\"rgba(255, 255, 255, 0)\",borderBottomLeftRadius:52,borderBottomRightRadius:52,borderTopLeftRadius:52,borderTopRightRadius:52,filter:\"blur(5px)\",WebkitFilter:\"blur(5px)\"},variants:{\"R4f5yJC0j-hover\":{filter:\"blur(45px)\",WebkitFilter:\"blur(45px)\"},R4f5yJC0j:{backgroundColor:\"rgb(255, 255, 255)\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jcepjg\",layoutDependency:layoutDependency,layoutId:\"HwU1cT0nt\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-13qlxq9\",layoutDependency:layoutDependency,layoutId:\"aFpWYs9_z\",style:{background:\"linear-gradient(111deg, rgba(255, 255, 255, 0.17) 0%, rgba(217, 217, 217, 0.13) 100%)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-zfgp3z\",layoutDependency:layoutDependency,layoutId:\"lIfx3C4ly\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Join the waitlist\"})}),className:\"framer-zujivb\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"ljvWxsUMY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Hr8QRiYqy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Discover more\"})})}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jmdivb\",layoutDependency:layoutDependency,layoutId:\"VdeRJAknd\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-30be62\",layoutDependency:layoutDependency,layoutId:\"tIpYRcF9b\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-105matl\",layoutDependency:layoutDependency,layoutId:\"TSAWd6cLl\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-srpys4\",layoutDependency:layoutDependency,layoutId:\"KbohvRGhc\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:25,pixelHeight:49,pixelWidth:50,src:\"https://framerusercontent.com/images/5nmlDMSIeYkAge6NvzRuLFfyJzk.png\"},className:\"framer-122qg98\",\"data-framer-name\":\"Ellipse 67\",layoutDependency:layoutDependency,layoutId:\"nwKcwwK6X\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1u8gz86\",layoutDependency:layoutDependency,layoutId:\"GwPbbJ3Cs\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:25,pixelHeight:49,pixelWidth:50,src:\"https://framerusercontent.com/images/OowkNBPHiwAc1jAcDtd3993Wo.png\"},className:\"framer-7s6z8e\",\"data-framer-name\":\"Ellipse 66\",layoutDependency:layoutDependency,layoutId:\"bdyfSPeqW\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/IrElsYk14UB9nJ35J64aLEGNs.png\"},className:\"framer-ydd9y9\",\"data-framer-name\":\"Ellipse 65\",layoutDependency:layoutDependency,layoutId:\"QoXtSpHBe\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"20+ people joined\"})}),className:\"framer-1psl7ry\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"X171LIjGI\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ts1x6w\",layoutDependency:layoutDependency,layoutId:\"UhND3pHZK\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7gi1py\",layoutDependency:layoutDependency,layoutId:\"HRw5qBim0\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-szdslv\",layoutDependency:layoutDependency,layoutId:\"mWFY2WJU6\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-x2adam\",layoutDependency:layoutDependency,layoutId:\"GyrNAF045\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:25,pixelHeight:49,pixelWidth:50,src:\"https://framerusercontent.com/images/5nmlDMSIeYkAge6NvzRuLFfyJzk.png\"},className:\"framer-1i1fjfd\",\"data-framer-name\":\"Ellipse 67\",layoutDependency:layoutDependency,layoutId:\"YOysZJ2vY\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vi9zms\",layoutDependency:layoutDependency,layoutId:\"t7W7NLmpb\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:25,pixelHeight:49,pixelWidth:50,src:\"https://framerusercontent.com/images/OowkNBPHiwAc1jAcDtd3993Wo.png\"},className:\"framer-165w3b8\",\"data-framer-name\":\"Ellipse 66\",layoutDependency:layoutDependency,layoutId:\"Fy5GQySN4\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:24.5,intrinsicWidth:24.5,pixelHeight:49,pixelWidth:49,src:\"https://framerusercontent.com/images/IrElsYk14UB9nJ35J64aLEGNs.png\"},className:\"framer-7c8nhp\",\"data-framer-name\":\"Ellipse 65\",layoutDependency:layoutDependency,layoutId:\"hC1pbBnmP\"})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:\"20+ people joined\"})}),className:\"framer-tjgnvi\",fonts:[\"GF;Figtree-regular\"],layoutDependency:layoutDependency,layoutId:\"vpTs7cwg8\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0yqtw.framer-1m96423, .framer-0yqtw .framer-1m96423 { display: block; }\",\".framer-0yqtw.framer-el6nbq { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; }\",\".framer-0yqtw .framer-x3n6ck { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 10px 10px 0px 10px; position: relative; width: 370px; }\",\".framer-0yqtw .framer-33b2v8 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0yqtw .framer-kbsvkp, .framer-0yqtw .framer-zujivb, .framer-0yqtw .framer-1psl7ry, .framer-0yqtw .framer-tjgnvi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0yqtw .framer-1y53scm { flex: none; height: 31px; overflow: hidden; position: relative; width: 19px; }\",\".framer-0yqtw .framer-14ojb24 { height: 18px; left: 1px; position: absolute; top: 1px; width: 18px; }\",\".framer-0yqtw .framer-arr63b { height: 18px; left: 0px; position: absolute; top: 0px; width: 18px; }\",\".framer-0yqtw .framer-1qiul53 { height: 7px; left: 6px; position: absolute; top: 6px; width: 7px; }\",\".framer-0yqtw .framer-7scc5o { bottom: -106px; flex: none; height: 104px; left: 0px; overflow: hidden; position: absolute; width: 297px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-0yqtw .framer-1jcepjg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 370px; }\",\".framer-0yqtw .framer-13qlxq9, .framer-0yqtw .framer-1jmdivb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 18px; position: relative; width: 1px; }\",\".framer-0yqtw .framer-zfgp3z { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-0yqtw .framer-30be62 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0yqtw .framer-105matl, .framer-0yqtw .framer-szdslv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 0px; height: 25px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 59px; }\",\".framer-0yqtw .framer-srpys4, .framer-0yqtw .framer-x2adam { flex: none; height: 25px; overflow: visible; position: relative; width: 16px; }\",\".framer-0yqtw .framer-122qg98, .framer-0yqtw .framer-1i1fjfd { aspect-ratio: 1.0204081632653061 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; overflow: visible; position: absolute; right: -9px; }\",\".framer-0yqtw .framer-1u8gz86, .framer-0yqtw .framer-1vi9zms { flex: none; height: 25px; overflow: visible; position: relative; width: 18px; }\",\".framer-0yqtw .framer-7s6z8e, .framer-0yqtw .framer-165w3b8 { aspect-ratio: 1.0204081632653061 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 25px); left: 0px; overflow: visible; position: absolute; right: -7px; }\",\".framer-0yqtw .framer-ydd9y9, .framer-0yqtw .framer-7c8nhp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 25px; }\",\".framer-0yqtw .framer-1ts1x6w { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 7px 18px 7px 18px; position: relative; width: 1px; }\",\".framer-0yqtw .framer-7gi1py { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-0yqtw.framer-v-gg1sgx .framer-1jcepjg { height: 61px; }\",\".framer-0yqtw.framer-v-1hg8rl4.framer-el6nbq { cursor: pointer; height: 61px; }\",\".framer-0yqtw.framer-v-1hg8rl4 .framer-x3n6ck { flex: 1 0 0px; gap: 0px; height: 1px; justify-content: center; order: 0; width: min-content; }\",\".framer-0yqtw.framer-v-1hg8rl4 .framer-33b2v8 { align-content: flex-start; align-items: flex-start; flex: none; gap: 16px; height: 100%; justify-content: center; order: 0; width: min-content; }\",\".framer-0yqtw.framer-v-1hg8rl4 .framer-7scc5o, .framer-0yqtw.framer-v-jigqbe .framer-1ts1x6w { order: 1; }\",\".framer-0yqtw.framer-v-1hg8rl4 .framer-1jcepjg { bottom: 10px; height: 0px; left: calc(50.00000000000002% - 370px / 2); order: 2; position: absolute; z-index: 1; }\",\".framer-0yqtw.framer-v-jigqbe.framer-el6nbq { align-content: center; align-items: center; gap: 7px; padding: 5px 10px 5px 10px; width: 284px; }\",\".framer-0yqtw.framer-v-jigqbe .framer-x3n6ck { gap: 0px; justify-content: center; width: min-content; }\",\".framer-0yqtw.framer-v-jigqbe .framer-33b2v8 { flex: none; width: min-content; }\",\".framer-0yqtw.framer-v-jigqbe .framer-1jcepjg { align-content: flex-end; align-items: flex-end; height: 46px; padding: 0px 0px 5px 0px; width: 100%; }\",\".framer-0yqtw.framer-v-jigqbe .framer-13qlxq9 { align-content: flex-end; align-items: flex-end; order: 0; padding: 13px 18px 13px 18px; }\",\".framer-0yqtw.framer-v-1hg8rl4.hover .framer-7scc5o { bottom: -86px; left: calc(49.92101105845184% - 297px / 2); }\",'.framer-0yqtw[data-border=\"true\"]::after, .framer-0yqtw [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 122\n * @framerIntrinsicWidth 390\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wjDzzc5V2\":{\"layout\":[\"auto\",\"auto\"]},\"R4f5yJC0j\":{\"layout\":[\"auto\",\"fixed\"]},\"Hr8QRiYqy\":{\"layout\":[\"fixed\",\"auto\"]},\"QaR_vs0kj\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerO_KF61hLa=withCSS(Component,css,\"framer-0yqtw\");export default FramerO_KF61hLa;FramerO_KF61hLa.displayName=\"Waitlist\";FramerO_KF61hLa.defaultProps={height:122,width:390};addPropertyControls(FramerO_KF61hLa,{variant:{options:[\"HB8T5SpjI\",\"wjDzzc5V2\",\"R4f5yJC0j\",\"Hr8QRiYqy\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Small\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerO_KF61hLa,[{explicitInter:true,fonts:[{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_dNQF5bwkEU4HTy.woff2\",weight:\"500\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v8/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerO_KF61hLa\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"122\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"390\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wjDzzc5V2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"R4f5yJC0j\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Hr8QRiYqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QaR_vs0kj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./O_KF61hLa.map"],"mappings":"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"}