{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/d1dpbpF7eWnaDMhbXZFR/hsIceIG7b82ewTahN4HO/Smooth_Scroll.js", "ssg:https://framerusercontent.com/modules/rofp3mS0LNY15cjhHzia/mqQEarGIByho1rG31aTv/BlurGradient_Prod.js", "ssg:https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js", "ssg:https://framerusercontent.com/modules/xMwdg92UK5v7PUMlF5NV/Z93reUFSRdlt7H2pXNrx/CgcunOQS6.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useEffect,useRef,useState}from\"react\";/**\n * @framerDisableUnlink\n */export default function OptimizedSmoothScroll(props){// Destructure props at the top level\nconst{intensity=10,enabled=true,disableOnTouch=true}=props;// Component state\nconst lenisRef=useRef(null);const[isLenisLoaded,setIsLenisLoaded]=useState(false);const rafRef=useRef(null);const[isTouchDevice,setIsTouchDevice]=useState(false);const[isOverlayOpen,setIsOverlayOpen]=useState(false);const isInitialLoadRef=useRef(true);const lastScrollPosition=useRef(0);// Check if the device is a touch device - function defined outside hooks\nconst checkTouchDevice=()=>{if(typeof window!==\"undefined\"){return\"ontouchstart\"in window||navigator.maxTouchPoints>0||navigator.msMaxTouchPoints>0;}return false;};// Set touch device state on first render\nuseEffect(()=>{setIsTouchDevice(checkTouchDevice());},[]);// Determine if smooth scroll should be active\n// Now it also considers if an overlay is open\nconst shouldActivate=enabled&&!(disableOnTouch&&isTouchDevice)&&!isOverlayOpen;// Priority load styles to ensure smooth scroll is active from the start\nuseEffect(()=>{const addInitialStyles=()=>{// Add initial styles to ensure smooth scrolling is active from the start\nconst styleEl=document.createElement(\"style\");styleEl.id=\"lenis-initial-styles\";styleEl.innerHTML=`\n                html.lenis {\n                    height: auto;\n                }\n                \n                .lenis.lenis-smooth {\n                    scroll-behavior: auto !important;\n                }\n                \n                .lenis.lenis-smooth [data-lenis-prevent] {\n                    overscroll-behavior: contain;\n                }\n                \n                .lenis.lenis-stopped {\n                    overflow: hidden;\n                }\n                \n                .lenis.lenis-scrolling iframe {\n                    pointer-events: none;\n                }\n            `;document.head.appendChild(styleEl);return()=>{const existingStyle=document.getElementById(\"lenis-initial-styles\");if(existingStyle){existingStyle.remove();}};};// If we should activate, add styles right away\nif(shouldActivate){return addInitialStyles();}},[shouldActivate]);// Dynamically load Lenis to avoid issues during initial rendering\nuseEffect(()=>{if(!shouldActivate)return;let isMounted=true;// Load Lenis dynamically\nconst loadLenis=async()=>{try{// Use dynamic import to load Lenis only when needed\nconst Lenis=(await import(\"@studio-freight/lenis\")).default;if(isMounted){// Initialize Lenis with smoother settings\nlenisRef.current=new Lenis({duration:intensity/10,smoothWheel:true,syncTouch:!disableOnTouch,touchMultiplier:2,wheelMultiplier:1.5,orientation:\"vertical\",gestureOrientation:\"vertical\",smoothTouch:!disableOnTouch,easing:t=>Math.min(1,1.001-Math.pow(2,-10*t)),immediate:false});// Start the lenis instance immediately\nlenisRef.current.start();// Make sure to set up RAF loop immediately\nconst raf=time=>{if(lenisRef.current){lenisRef.current.raf(time);}rafRef.current=requestAnimationFrame(raf);};rafRef.current=requestAnimationFrame(raf);setIsLenisLoaded(true);}}catch(error){console.warn(\"Failed to load Lenis:\",error);}};// Load Lenis with higher priority\nsetTimeout(loadLenis,0);return()=>{isMounted=false;// Proper cleanup\nif(lenisRef.current){lenisRef.current.destroy();lenisRef.current=null;}if(rafRef.current){cancelAnimationFrame(rafRef.current);rafRef.current=null;}setIsLenisLoaded(false);};},[shouldActivate,intensity,disableOnTouch]);// Set up animation loop only when Lenis is loaded - Now this is handled in the initialization\nuseEffect(()=>{// Only handle stopping the RAF loop here, starting is done in the init\nif(!isLenisLoaded||!shouldActivate)return;return()=>{if(rafRef.current){cancelAnimationFrame(rafRef.current);rafRef.current=null;}};},[isLenisLoaded,shouldActivate]);// Only reset scroll position on initial load, not when closing overlay\nuseEffect(()=>{if(lenisRef.current&&isLenisLoaded){if(isInitialLoadRef.current){lenisRef.current.scrollTo(0,{immediate:true});isInitialLoadRef.current=false;}}},[isLenisLoaded]);// Save scroll position periodically\nuseEffect(()=>{if(!shouldActivate)return;const saveScrollPosition=()=>{lastScrollPosition.current=window.scrollY;};// Save position every 300ms\nconst interval=setInterval(saveScrollPosition,300);// Also save on scroll\nwindow.addEventListener(\"scroll\",saveScrollPosition,{passive:true});return()=>{clearInterval(interval);window.removeEventListener(\"scroll\",saveScrollPosition);};},[shouldActivate]);// Handle overlays and modals - Enhanced version\nuseEffect(()=>{// Function to check if overlay is open\nconst checkOverlayState=()=>{const overlayElement=document.getElementById(\"overlay\");if(overlayElement){// Check if the overlay has children (which means it's active)\nconst hasChildren=overlayElement.children.length>0;// Only update if the state actually changed to prevent unnecessary effects\nif(hasChildren!==isOverlayOpen){setIsOverlayOpen(hasChildren);if(hasChildren){// If overlay is opened, save current position first\nlastScrollPosition.current=window.scrollY;// Then stop Lenis\nif(lenisRef.current){lenisRef.current.stop();}}else if(enabled&&!(disableOnTouch&&isTouchDevice)){// If overlay is closed and should be active, restart Lenis\nif(lenisRef.current){// Get saved position before restart\nconst savedPosition=lastScrollPosition.current;lenisRef.current.start();// After a small delay, restore position\nsetTimeout(()=>{window.scrollTo({top:savedPosition,behavior:\"auto\"});},10);}}}}};// Run the check immediately\ncheckOverlayState();// Observe changes to the overlay element\nconst overlayElement=document.getElementById(\"overlay\");if(overlayElement){const observer=new MutationObserver(()=>{checkOverlayState();});observer.observe(overlayElement,{childList:true});return()=>{observer.disconnect();};}// Also observe the HTML element for overflow changes\n// This catches modals that might not use the overlay element\nconst htmlElement=document.documentElement;const bodyObserver=new MutationObserver(()=>{const isOverflowHidden=window.getComputedStyle(htmlElement).overflow===\"hidden\";if(isOverflowHidden){// Save position before stopping\nlastScrollPosition.current=window.scrollY;if(lenisRef.current){lenisRef.current.stop();}}else if(enabled&&!(disableOnTouch&&isTouchDevice)&&!isOverlayOpen){if(lenisRef.current){// Get saved position\nconst savedPosition=lastScrollPosition.current;lenisRef.current.start();// Restore position\nsetTimeout(()=>{window.scrollTo({top:savedPosition,behavior:\"auto\"});},10);}}});bodyObserver.observe(htmlElement,{attributes:true,attributeFilter:[\"style\"]});return()=>{bodyObserver.disconnect();};},[isOverlayOpen,enabled,disableOnTouch,isTouchDevice]);// Debug info for development purposes\nconst debugInfo=process.env.NODE_ENV===\"development\"?/*#__PURE__*/_jsxs(\"div\",{style:{display:\"none\"},children:[`Touch device: ${isTouchDevice?\"Yes\":\"No\"}`,`Smooth scroll active: ${shouldActivate?\"Yes\":\"No\"}`,`Overlay open: ${isOverlayOpen?\"Yes\":\"No\"}`,`Last scroll position: ${lastScrollPosition.current}`]}):null;return /*#__PURE__*/_jsxs(_Fragment,{children:[debugInfo,isLenisLoaded&&shouldActivate&&/*#__PURE__*/_jsx(\"style\",{children:`\n                    html.lenis {\n                        height: auto;\n                    }\n                    \n                    .lenis.lenis-smooth {\n                        scroll-behavior: auto !important;\n                    }\n                    \n                    .lenis.lenis-smooth [data-lenis-prevent] {\n                        overscroll-behavior: contain;\n                    }\n                    \n                    .lenis.lenis-stopped {\n                        overflow: hidden;\n                    }\n                    \n                    .lenis.lenis-scrolling iframe {\n                        pointer-events: none;\n                    }\n                    `})]});}OptimizedSmoothScroll.displayName=\"Smooth Scroll\";addPropertyControls(OptimizedSmoothScroll,{intensity:{title:\"Intensity\",type:ControlType.Number,defaultValue:10,min:1,max:20,step:1},enabled:{title:\"Enabled\",type:ControlType.Boolean,defaultValue:true},disableOnTouch:{title:\"Disable on touch devices\",type:ControlType.Boolean,defaultValue:true,description:\"Smooth Scroll v4 automatically disables smooth scrolling on phones and tablets and is now enhanced to disable automatically when overlays are open.\\n\\nBy [Andr\\xe9s Marciales](https://www.x.com/aamarciales)\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"OptimizedSmoothScroll\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Smooth_Scroll.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMemo}from\"react\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 240\n * @framerIntrinsicHeight 240\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */function BlurGradient({blur,borderRadius,direction,transition}){const blurSteps=useMemo(()=>[{blur:`${blur/2/2/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 1) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 0) 37.5%`},{blur:`${blur/2/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 12.5%, rgba(0, 0, 0, 1) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 0) 50%`},{blur:`${blur/2/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 25%, rgba(0, 0, 0, 1) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 0) 62.5%`},{blur:`${blur/2/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 37.5%, rgba(0, 0, 0, 1) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 0) 75%`},{blur:`${blur/2/2/2}px`,gradient:`rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 1) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 0) 87.5%`},{blur:`${blur/2/2}px`,gradient:`rgba(0, 0, 0, 0) 62.5%, rgba(0, 0, 0, 1) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 0) 100%`},{blur:`${blur/2}px`,gradient:`rgba(0, 0, 0, 0) 75%, rgba(0, 0, 0, 1) 87.5%, rgba(0, 0, 0, 1) 100%`},{blur:`${blur}px`,gradient:`rgba(0, 0, 0, 0) 87.5%, rgba(0, 0, 0, 1) 100%`}],[blur]);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",inset:0,overflow:\"hidden\"},children:blurSteps.map((step,index)=>/*#__PURE__*/_jsx(motion.div,{transition:transition,initial:{backdropFilter:`blur(${step.blur})`},animate:{backdropFilter:`blur(${step.blur})`},style:{opacity:1,position:\"absolute\",inset:0,zIndex:index+1,maskImage:`linear-gradient(${direction}, ${step.gradient})`,WebkitMaskImage:`linear-gradient(${direction}, ${step.gradient})`,borderRadius:borderRadius,pointerEvents:\"none\"}},index))});}BlurGradient.defaultProps={blur:10,borderRadius:\"0px\",direction:\"toBottom\",transition:{duration:.3}};addPropertyControls(BlurGradient,{blur:{title:\"Blur\",type:ControlType.Number,defaultValue:10,min:0,max:100,step:1,description:\"Large blur values (10<) can impact performance.\"},borderRadius:{title:\"Radius\",type:ControlType.BorderRadius,defaultValue:\"0px\",description:\"Blur Gradient component's parent frame can't have border radius (it will break the component). If you need corner radius, apply it directly to the Blur Gradient component here.\"},direction:{title:\"Direction\",type:ControlType.SegmentedEnum,options:[\"to bottom\",\"to top\",\"to left\",\"to right\"],optionTitles:[\"\u2193\",\"\u2191\",\"\u2190\",\"\u2192\"],defaultValue:\"to bottom\"},transition:{type:ControlType.Transition,defaultValue:{duration:.3},title:\"Transition\",description:\"Control how the blur animates when used on hover states or any othe interaction.\\n\\nMore components at [Framer University](https://frameruni.link/cc).\"}});BlurGradient.displayName=\"Blur Gradient\";export default BlurGradient;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BlurGradient\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"240\",\"framerIntrinsicWidth\":\"240\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BlurGradient_Prod.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";const currentYear=new Date().getFullYear();/**\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-auto\n * @framerSupportedLayoutHeight any-prefer-auto\n */export default function AutoCopyright(props){const{name,statement,dateRange,startYear,font,color,fontSize}=props;const yearDisplay=dateRange?`${startYear}-${currentYear}`:currentYear;let displayText=`\\xa9 ${yearDisplay} ${name.trim()}`;if(statement.trim()){displayText+=` ${statement.trim()}`;}const textStyle={fontSize:`${fontSize}px`,color:color,...font};return /*#__PURE__*/_jsx(\"div\",{style:textStyle,children:displayText});}AutoCopyright.defaultProps={name:\"Your Name\",statement:\"All rights reserved.\",dateRange:false,startYear:currentYear-1,color:\"#999999\",fontSize:14,font:{family:\"Inter\"}};AutoCopyright.displayName=\"Auto Copyright\";addPropertyControls(AutoCopyright,{font:{type:ControlType.Font,title:\"Font\",defaultValue:\"Inter\",controls:\"extended\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#999999\"},dateRange:{type:ControlType.Boolean,title:\"Date Range\",defaultValue:false,enabledTitle:\"Yes\",disabledTitle:\"No\"},startYear:{type:ControlType.Number,title:\"Start Year\",min:1e3,max:currentYear-1,defaultValue:currentYear-2,displayStepper:true,hidden:({dateRange})=>!dateRange},name:{type:ControlType.String,title:\"Name\",defaultValue:\"Your Name\"},statement:{type:ControlType.String,title:\"Statement\",defaultValue:\"All rights reserved.\",description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AutoCopyright\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-auto\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-auto\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AutoCopyright_Prod.map", "// Generated by Framer (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AutoCopyright from\"https://framerusercontent.com/modules/DVYtI0I60utFDv4RKjrL/vS0JVzPfVZXqcrY9nI7B/AutoCopyright_Prod.js\";const AutoCopyrightFonts=getFonts(AutoCopyright);const cycleOrder=[\"jjS0HLeKY\",\"nKCDXBDiu\",\"oi5LtJm3M\"];const serializationHash=\"framer-E1PjJ\";const variantClassNames={jjS0HLeKY:\"framer-v-8u7ua2\",nKCDXBDiu:\"framer-v-8cebeb\",oi5LtJm3M:\"framer-v-17hacir\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.15,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={delay:0,duration:.2,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 transition3={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition3};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"jjS0HLeKY\",Phone:\"nKCDXBDiu\",Tablet:\"oi5LtJm3M\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"jjS0HLeKY\"};};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:\"jjS0HLeKY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapr9ysa3=activeVariantCallback(async(...args)=>{setVariant(\"jjS0HLeKY\");});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(motion.footer,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8u7ua2\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"jjS0HLeKY\",ref:refBinding,style:{backgroundColor:\"var(--token-e47fb6c6-443e-4d44-a462-d7d40015b08d, rgb(249, 250, 252))\",...style},...addPropertyOverrides({nKCDXBDiu:{\"data-framer-name\":\"Phone\"},oi5LtJm3M:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10e7a09\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"BIEirOFs1\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14fbter\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"VDYZ9f_Sy\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-177qvfl\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"JvaYr8SgP\",children:[/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-bkoksc\",layoutDependency:layoutDependency,layoutId:\"w0QUECZi2\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-q3h75m\",\"data-framer-name\":\"Static Logo\",layoutDependency:layoutDependency,layoutId:\"IAkZKQaVt\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ex1ash\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WVScECc4t\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 12\"><path d=\"M 1.342 10.949 C 17.581 3.786 18.225 0.285 14.393 1.051 C 10.561 1.818 7.899 3.682 6.553 5.353 C 5.207 7.025 6.885 7.525 10.267 6.508 C 13.648 5.492 22.157 2.605 22.157 2.605 C 22.157 2.605 6.192 7.495 6.553 10.253 C 6.914 13.01 16.71 7.624 16.71 7.624 C 16.71 7.624 14.178 9.609 15.456 10.66 C 16.734 11.711 22.159 9.041 22.159 9.041\" fill=\"transparent\" stroke-width=\"1.53\" stroke=\"var(--token-beb64356-2dab-4c92-a4b3-ba6a8c351ef9, rgb(25, 31, 40))\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12613557153,withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17vf3p9\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"WvVIgiui0\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"v950Dwwkk\"},motionChild:true,nodeId:\"U9b3sRXTq\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-2ityog framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"U9b3sRXTq\",whileTap:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"HOME\"})}),className:\"framer-va7bvf\",fonts:[\"CUSTOM;Wanted Sans Variable\"],layoutDependency:layoutDependency,layoutId:\"sabcX0orj\",style:{\"--extracted-2gg91v\":'\"wght\" 500',\"--extracted-r6o4lv\":\"var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oi5LtJm3M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"HOME\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"pe3meem6y\"},motionChild:true,nodeId:\"QebSQkxSE\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-4s09bp framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"QebSQkxSE\",whileTap:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"ABOUT\"})}),className:\"framer-ecfkon\",fonts:[\"CUSTOM;Wanted Sans Variable\"],layoutDependency:layoutDependency,layoutId:\"fCErYdLyF\",style:{\"--extracted-2gg91v\":'\"wght\" 500',\"--extracted-r6o4lv\":\"var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oi5LtJm3M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"ABOUT\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"mbPJl20i5\"},motionChild:true,nodeId:\"FzkMUOtUO\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-gercbr framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"FzkMUOtUO\",whileTap:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"PROJECT\"})}),className:\"framer-ekb679\",fonts:[\"CUSTOM;Wanted Sans Variable\"],layoutDependency:layoutDependency,layoutId:\"O_PIRsprl\",style:{\"--extracted-2gg91v\":'\"wght\" 500',\"--extracted-r6o4lv\":\"var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oi5LtJm3M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"PROJECT\"})})}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"c6FCdDr03\"},motionChild:true,nodeId:\"ypWY9ApH3\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-bcojrx framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"ypWY9ApH3\",whileTap:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"LOG\"})}),className:\"framer-hlni6t\",fonts:[\"CUSTOM;Wanted Sans Variable\"],layoutDependency:layoutDependency,layoutId:\"SZ8__ePYy\",style:{\"--extracted-2gg91v\":'\"wght\" 500',\"--extracted-r6o4lv\":\"var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({oi5LtJm3M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxlVkY9SW5kbmFIUWlJRFV3TUE9PQ==\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-variation-axes\":'var(--extracted-2gg91v, \"wght\" 500)',\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-404430be-570b-4d4f-879a-2bb59c98d278, rgb(51, 61, 75)))\"},children:\"LOG\"})})}},baseVariant,gestureVariant)})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-pvcmr4\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"uIBNgekMq\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1wg5el5\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"s7gWElmfh\",children:[/*#__PURE__*/_jsx(Link,{href:\"matilto:kisejun@icloud.com\",motionChild:true,nodeId:\"w0YeRqRCK\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1q6rkc8 framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"w0YeRqRCK\",style:{backgroundColor:\"var(--token-a7e7a64c-b254-400c-9a6b-c2d2d6490a6d, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1f5ibo1\",\"data-framer-name\":\"Unknown\",fill:\"var(--token-936d9212-b17c-4f4b-b254-624696879089, rgb(176, 184, 193))\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"uIXg5WNLD\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M4 20q-.825 0-1.412-.587T2 18V6q0-.825.588-1.412T4 4h16q.825 0 1.413.588T22 6v12q0 .825-.587 1.413T20 20zm8-7.175q.125 0 .263-.038t.262-.112L19.6 8.25q.2-.125.3-.312t.1-.413q0-.5-.425-.75T18.7 6.8L12 11 5.3 6.8q-.45-.275-.875-.012T4 7.525q0 .25.1.438t.3.287l7.075 4.425q.125.075.263.113t.262.037\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"www.instagram.com/sejunki\",motionChild:true,nodeId:\"Fj_FPXdzw\",openInNewTab:true,scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hmvci4 framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"Fj_FPXdzw\",style:{backgroundColor:\"var(--token-a7e7a64c-b254-400c-9a6b-c2d2d6490a6d, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zufaxn\",\"data-framer-name\":\"Unknown\",fill:\"var(--token-936d9212-b17c-4f4b-b254-624696879089, rgb(176, 184, 193))\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"WrRRlJUMg\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M13.028 2c1.125.003 1.696.009 2.189.023l.194.007c.224.008.445.018.712.03 1.064.05 1.79.218 2.427.465.66.254 1.216.598 1.772 1.153a4.9 4.9 0 0 1 1.153 1.772c.247.637.415 1.363.465 2.428.012.266.022.487.03.712l.006.194c.015.492.021 1.063.023 2.188l.001.746v1.31a79 79 0 0 1-.023 2.188l-.006.194c-.008.225-.018.446-.03.712-.05 1.065-.22 1.79-.466 2.428a4.9 4.9 0 0 1-1.153 1.772 4.9 4.9 0 0 1-1.772 1.153c-.637.247-1.363.415-2.427.465l-.712.03-.194.006c-.493.014-1.064.021-2.189.023l-.746.001h-1.309a78 78 0 0 1-2.189-.023l-.194-.006a63 63 0 0 1-.712-.031c-1.064-.05-1.79-.218-2.428-.465a4.9 4.9 0 0 1-1.771-1.153 4.9 4.9 0 0 1-1.154-1.772c-.247-.637-.415-1.363-.465-2.428l-.03-.712-.005-.194A79 79 0 0 1 2 13.028v-2.056a79 79 0 0 1 .022-2.188l.007-.194c.008-.225.018-.446.03-.712.05-1.065.218-1.79.465-2.428A4.9 4.9 0 0 1 3.68 3.678a4.9 4.9 0 0 1 1.77-1.153c.638-.247 1.363-.415 2.428-.465.266-.012.488-.022.712-.03l.194-.006a79 79 0 0 1 2.188-.023zM12 7a5 5 0 1 0 0 10 5 5 0 0 0 0-10m0 2a3 3 0 1 1 .001 6 3 3 0 0 1 0-6m5.25-3.5a1.25 1.25 0 0 0 0 2.5 1.25 1.25 0 0 0 0-2.5\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://open.kakao.com/o/sVOhVbmh\",motionChild:true,nodeId:\"ymXBALCNe\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1lzrepf framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"ymXBALCNe\",style:{backgroundColor:\"var(--token-a7e7a64c-b254-400c-9a6b-c2d2d6490a6d, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-zb72v4\",\"data-framer-name\":\"Unknown\",fill:\"var(--token-936d9212-b17c-4f4b-b254-624696879089, rgb(176, 184, 193))\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"WG_J12VAY\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 24 24\"><path fill=\"currentColor\" d=\"M12 3c5.8 0 10.501 3.664 10.501 8.185 0 4.52-4.701 8.184-10.5 8.184a14 14 0 0 1-1.727-.11l-4.408 2.883c-.501.265-.678.236-.472-.413l.892-3.678c-2.88-1.46-4.785-3.99-4.785-6.866 0-4.52 4.7-8.185 10.5-8.185m5.908 8.06 1.47-1.424a.472.472 0 0 0-.656-.678l-1.928 1.866V9.282a.472.472 0 0 0-.944 0v2.557a.5.5 0 0 0 0 .222V13.5a.472.472 0 0 0 .944 0v-1.363l.427-.413 1.428 2.033a.472.472 0 1 0 .773-.543zm-2.958 1.924h-1.46V9.297a.472.472 0 0 0-.943 0v4.159c0 .26.21.472.471.472h1.932a.472.472 0 1 0 0-.944m-5.857-1.091.696-1.708.638 1.707zm2.523.487.002-.016a.47.47 0 0 0-.127-.32l-1.046-2.8a.69.69 0 0 0-.627-.474.7.7 0 0 0-.653.447l-1.662 4.075a.472.472 0 0 0 .874.357l.332-.813h2.07l.298.8a.472.472 0 1 0 .884-.33zM8.294 9.302a.47.47 0 0 0-.471-.472H4.578a.472.472 0 1 0 0 .944h1.16v3.736a.472.472 0 0 0 .944 0V9.774h1.14a.47.47 0 0 0 .472-.472\"/></svg>',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"blog.naver.com/kisejun\",motionChild:true,nodeId:\"cQdzgrvgC\",scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-6vv9fo framer-4wvwx7\",layoutDependency:layoutDependency,layoutId:\"cQdzgrvgC\",style:{backgroundColor:\"var(--token-a7e7a64c-b254-400c-9a6b-c2d2d6490a6d, rgb(255, 255, 255))\",borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a7y6vm\",\"data-framer-name\":\"Naver blog\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"CSzUmQUQv\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><g transform=\"translate(0.84 1.879)\" id=\"ss8925161072_1\"><path d=\"M 4.52 2.725 C 4.52 2.814 4.52 2.903 4.52 2.992 C 4.52 3.215 4.517 3.439 4.525 3.663 C 4.529 3.712 4.531 3.762 4.544 3.81 C 4.557 3.865 4.584 3.918 4.625 3.959 C 4.663 3.999 4.712 4.026 4.767 4.035 C 4.808 4.061 4.844 4.096 4.878 4.13 L 4.92 4.173 L 4.92 6.841 L 6.286 6.841 L 6.259 3.803 C 6.232 3.749 6.205 3.695 6.179 3.641 C 6.129 3.538 6.08 3.435 6.02 3.338 C 5.884 3.122 5.687 2.951 5.454 2.846 C 5.417 2.829 5.38 2.813 5.342 2.799 C 5.201 2.747 5.052 2.717 4.904 2.693 C 4.854 2.685 4.804 2.677 4.754 2.669 L 4.52 2.631 Z M 1.479 2.881 L 1.485 4.218 C 1.487 4.69 1.49 5.163 1.493 5.636 C 1.495 5.927 1.497 6.219 1.499 6.511 L 1.502 6.815 L 1.716 6.82 L 1.73 6.821 L 1.784 6.822 L 1.791 6.822 L 1.852 6.824 C 2.046 6.83 2.24 6.836 2.434 6.838 L 2.441 6.838 C 2.463 6.838 2.486 6.837 2.508 6.836 C 2.561 6.834 2.612 6.824 2.661 6.805 C 2.681 6.797 2.7 6.786 2.717 6.774 C 2.78 6.81 2.846 6.842 2.915 6.864 C 2.963 6.879 3.011 6.892 3.06 6.902 C 3.21 6.931 3.364 6.932 3.515 6.909 C 3.655 6.888 3.792 6.848 3.921 6.79 C 3.987 6.762 4.051 6.728 4.112 6.69 C 4.283 6.579 4.429 6.435 4.543 6.265 C 4.564 6.233 4.585 6.2 4.604 6.165 C 4.652 6.074 4.686 5.975 4.704 5.873 C 4.745 5.65 4.751 5.421 4.732 5.195 C 4.727 5.12 4.717 5.046 4.704 4.972 C 4.68 4.843 4.64 4.716 4.578 4.6 C 4.558 4.562 4.536 4.526 4.512 4.49 C 4.415 4.338 4.295 4.199 4.153 4.087 C 4.129 4.068 4.104 4.051 4.079 4.034 C 3.966 3.963 3.841 3.914 3.713 3.881 C 3.509 3.826 3.295 3.816 3.087 3.853 C 3.002 3.868 2.919 3.892 2.84 3.924 L 2.84 2.801 L 1.479 2.801 Z M 11.053 3.827 C 10.961 3.829 10.869 3.839 10.778 3.856 C 10.604 3.889 10.437 3.951 10.282 4.039 C 10.09 4.151 9.929 4.311 9.817 4.504 C 9.782 4.563 9.752 4.625 9.727 4.689 C 9.675 4.819 9.641 4.955 9.622 5.094 C 9.581 4.914 9.506 4.743 9.402 4.591 C 9.306 4.45 9.189 4.325 9.053 4.221 C 8.761 3.999 8.409 3.872 8.042 3.856 C 7.978 3.854 7.913 3.856 7.849 3.861 C 7.539 3.887 7.242 3.996 6.988 4.177 C 6.849 4.276 6.727 4.398 6.626 4.537 C 6.53 4.668 6.458 4.816 6.414 4.973 C 6.397 5.038 6.385 5.105 6.379 5.172 C 6.368 5.295 6.359 5.419 6.364 5.543 C 6.365 5.577 6.368 5.611 6.373 5.644 C 6.387 5.734 6.416 5.82 6.451 5.904 C 6.472 5.953 6.495 6.001 6.519 6.05 C 6.648 6.285 6.826 6.49 7.042 6.649 C 7.169 6.742 7.311 6.811 7.462 6.856 C 7.614 6.902 7.773 6.926 7.932 6.931 C 7.993 6.932 8.055 6.931 8.117 6.927 C 8.306 6.915 8.492 6.873 8.668 6.803 C 8.694 6.793 8.719 6.782 8.744 6.769 C 8.855 6.712 8.958 6.643 9.054 6.565 C 9.142 6.494 9.223 6.415 9.299 6.331 C 9.348 6.278 9.392 6.219 9.431 6.158 C 9.516 6.026 9.579 5.88 9.616 5.726 C 9.633 5.881 9.669 6.035 9.733 6.177 C 9.773 6.266 9.824 6.351 9.887 6.426 C 9.972 6.526 10.072 6.613 10.183 6.683 C 10.298 6.756 10.423 6.814 10.55 6.865 C 10.605 6.886 10.662 6.902 10.72 6.913 L 10.72 8.179 L 10.933 8.17 L 10.955 8.169 L 10.976 8.168 L 10.983 8.168 L 11.029 8.166 C 11.228 8.159 11.427 8.153 11.626 8.14 C 11.762 8.13 11.897 8.099 12.02 8.04 C 12.054 8.023 12.088 8.006 12.121 7.988 C 12.248 7.914 12.365 7.822 12.468 7.716 C 12.481 7.703 12.493 7.689 12.505 7.674 C 12.589 7.576 12.662 7.468 12.713 7.349 C 12.735 7.296 12.753 7.241 12.766 7.184 C 12.801 7.039 12.815 6.889 12.822 6.74 C 12.826 6.663 12.829 6.587 12.832 6.511 C 12.843 6.028 12.84 5.544 12.84 5.06 C 12.84 4.941 12.84 4.823 12.84 4.704 L 12.84 3.881 L 11.52 3.881 L 11.52 3.916 C 11.372 3.855 11.213 3.825 11.053 3.827 Z M 8.064 5.121 C 8.08 5.122 8.096 5.122 8.11 5.129 C 8.115 5.132 8.12 5.137 8.124 5.14 C 8.177 5.187 8.227 5.237 8.271 5.292 C 8.277 5.303 8.278 5.315 8.279 5.327 C 8.281 5.358 8.279 5.388 8.276 5.419 C 8.265 5.497 8.225 5.569 8.163 5.619 C 8.133 5.643 8.097 5.661 8.059 5.67 C 8.011 5.684 7.958 5.679 7.911 5.662 C 7.85 5.64 7.799 5.599 7.764 5.545 C 7.751 5.524 7.741 5.502 7.734 5.478 C 7.716 5.413 7.723 5.345 7.752 5.284 C 7.762 5.262 7.775 5.242 7.791 5.223 C 7.818 5.183 7.856 5.153 7.901 5.137 C 7.915 5.131 7.93 5.129 7.945 5.127 C 7.979 5.122 8.013 5.12 8.048 5.121 C 8.053 5.121 8.058 5.121 8.064 5.121 Z M 11.273 5.124 C 11.298 5.124 11.323 5.127 11.346 5.135 C 11.415 5.158 11.474 5.21 11.504 5.276 C 11.513 5.296 11.521 5.316 11.526 5.337 C 11.539 5.388 11.539 5.442 11.521 5.491 C 11.514 5.51 11.504 5.529 11.492 5.545 L 11.488 5.55 C 11.456 5.591 11.414 5.623 11.366 5.643 C 11.333 5.658 11.298 5.669 11.262 5.675 C 11.238 5.674 11.215 5.669 11.193 5.66 C 11.168 5.65 11.144 5.639 11.12 5.627 C 11.079 5.599 11.047 5.56 11.03 5.514 C 11.005 5.455 11 5.39 11.015 5.328 C 11.023 5.299 11.035 5.271 11.052 5.247 C 11.092 5.183 11.16 5.138 11.234 5.127 C 11.247 5.125 11.26 5.124 11.273 5.124 Z M 3.139 5.168 C 3.166 5.168 3.194 5.173 3.219 5.184 C 3.277 5.208 3.325 5.256 3.347 5.315 C 3.359 5.346 3.363 5.381 3.361 5.414 C 3.358 5.463 3.341 5.511 3.313 5.551 C 3.281 5.584 3.241 5.609 3.198 5.623 C 3.148 5.639 3.096 5.645 3.043 5.64 C 3.003 5.634 2.966 5.613 2.941 5.58 C 2.909 5.542 2.89 5.494 2.885 5.444 C 2.879 5.388 2.891 5.331 2.918 5.281 C 2.936 5.251 2.961 5.224 2.991 5.207 C 3.035 5.181 3.087 5.167 3.139 5.168 Z\" fill=\"var(--token-e47fb6c6-443e-4d44-a462-d7d40015b08d, rgb(249, 250, 252))\"></path><path d=\"M 7.024 13.233 C 6.956 13.169 6.72 12.657 6.276 11.613 L 5.628 10.081 L 3.7 10.081 C 2.584 10.081 1.68 10.065 1.556 10.041 C 1.236 9.981 0.804 9.753 0.572 9.521 C 0.336 9.285 0.108 8.873 0.044 8.569 C 0.012 8.425 0 7.313 0 5.029 C 0 2.165 0.008 1.665 0.06 1.461 C 0.252 0.725 0.864 0.161 1.6 0.045 C 1.96 -0.015 12.364 -0.015 12.72 0.045 C 13.436 0.157 14.028 0.669 14.24 1.349 C 14.316 1.601 14.32 1.717 14.32 5.017 C 14.32 7.165 14.304 8.485 14.276 8.597 C 14.168 9.073 13.76 9.601 13.328 9.833 C 12.884 10.069 12.776 10.081 10.656 10.081 L 8.732 10.081 L 8.084 11.613 C 7.724 12.453 7.404 13.169 7.368 13.205 C 7.248 13.325 7.136 13.333 7.024 13.233 Z M 12 7.781 C 12.12 7.713 12.276 7.585 12.348 7.489 C 12.584 7.177 12.6 7.061 12.6 5.513 L 12.6 4.121 L 11.76 4.121 L 11.76 4.373 L 11.672 4.293 C 11.452 4.093 11.156 4.025 10.816 4.093 C 10.176 4.225 9.84 4.681 9.84 5.417 C 9.84 6.033 10.008 6.341 10.464 6.565 C 10.668 6.665 10.772 6.693 10.952 6.693 C 11.24 6.689 11.48 6.625 11.62 6.513 L 11.732 6.425 L 11.704 6.601 C 11.648 6.949 11.464 7.121 11.144 7.121 L 10.96 7.121 L 10.96 7.929 L 11.372 7.913 C 11.732 7.901 11.804 7.885 12 7.781 Z M 3.864 6.553 C 4.092 6.449 4.312 6.225 4.416 6.005 C 4.528 5.753 4.532 5.157 4.424 4.845 C 4.344 4.609 4.1 4.313 3.904 4.209 C 3.496 3.997 2.976 4.033 2.692 4.293 L 2.6 4.373 L 2.6 3.041 L 1.72 3.041 L 1.728 4.813 L 1.74 6.581 L 2.172 6.593 C 2.58 6.605 2.6 6.601 2.6 6.521 C 2.6 6.421 2.612 6.421 2.796 6.541 C 3.076 6.729 3.484 6.733 3.864 6.553 Z M 8.548 6.593 C 8.792 6.505 9.124 6.221 9.256 5.985 C 9.692 5.225 9.196 4.305 8.252 4.121 C 7.66 4.005 7.02 4.293 6.74 4.805 C 6.652 4.973 6.62 5.085 6.608 5.325 C 6.592 5.593 6.604 5.657 6.7 5.873 C 6.816 6.133 7.08 6.417 7.32 6.541 C 7.668 6.721 8.148 6.741 8.548 6.593 Z M 6.032 5.229 L 6.02 3.861 L 5.888 3.593 C 5.704 3.221 5.412 3.021 4.932 2.941 L 4.76 2.913 L 4.76 3.357 C 4.76 3.737 4.768 3.801 4.824 3.801 C 4.86 3.801 4.948 3.861 5.024 3.937 L 5.16 4.073 L 5.16 6.601 L 6.044 6.601 Z\" fill=\"var(--token-936d9212-b17c-4f4b-b254-624696879089, rgb(176, 184, 193))\"></path><path d=\"M 11.052 5.861 C 10.788 5.749 10.684 5.389 10.84 5.133 C 11.056 4.777 11.56 4.809 11.728 5.189 C 11.852 5.473 11.728 5.765 11.428 5.877 C 11.28 5.933 11.208 5.929 11.052 5.861 Z M 2.848 5.817 C 2.552 5.613 2.584 5.133 2.904 4.981 C 3.344 4.773 3.764 5.209 3.54 5.641 C 3.428 5.861 3.048 5.957 2.848 5.817 Z M 7.732 5.841 C 7.611 5.769 7.526 5.65 7.496 5.513 C 7.466 5.376 7.493 5.233 7.572 5.117 C 7.688 4.945 7.812 4.881 8.036 4.881 C 8.184 4.881 8.232 4.901 8.364 5.037 C 8.496 5.169 8.52 5.217 8.52 5.365 C 8.52 5.793 8.084 6.057 7.732 5.841 Z\" fill=\"var(--token-936d9212-b17c-4f4b-b254-624696879089, rgb(176, 184, 193))\"></path></g></svg>',svgContentId:8925161072,withExternalLayout:true})})})]})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-k5g5v7\",\"data-framer-name\":\"Copyright\",layoutDependency:layoutDependency,layoutId:\"H3fRDA58c\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cq2grm\",layoutDependency:layoutDependency,layoutId:\"abm_v9rV5\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nj0iox\",\"data-framer-name\":\"Ver\",layoutDependency:layoutDependency,layoutId:\"SWW1gee4F\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxl\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss02' on\",\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132)))\"},children:\"V\"})}),className:\"framer-19x2doi\",\"data-framer-name\":\"SEJUN KI\",\"data-highlight\":true,fonts:[\"CUSTOM;Wanted Sans Variable\"],layoutDependency:layoutDependency,layoutId:\"XX8MZgY9c\",onTap:onTapr9ysa3,style:{\"--extracted-r6o4lv\":\"var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nKCDXBDiu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxl\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss02' on\",\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132)))\"},children:\"V\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxl\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss02' on, 'cv11' on, 'cv12' on, 'cv10' on, 'cv08' on\",\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132)))\"},children:\"4.6.9\"})}),className:\"framer-1pda0q6\",\"data-framer-name\":\"SEJUN KI\",\"data-highlight\":true,fonts:[\"CUSTOM;Wanted Sans Variable\"],layoutDependency:layoutDependency,layoutId:\"ow3NETo2q\",onTap:onTapr9ysa3,style:{\"--extracted-r6o4lv\":\"var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({nKCDXBDiu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1dhbnRlZCBTYW5zIFZhcmlhYmxl\",\"--framer-font-family\":'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',\"--framer-font-open-type-features\":\"'ss02' on, 'cv11' on, 'cv12' on, 'cv10' on, 'cv08' on\",\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132)))\"},children:\"4.6.9\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-okptxc-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"e1DV0v4Qs-container\",nodeId:\"e1DV0v4Qs\",rendersWithMotion:true,scopeId:\"CgcunOQS6\",children:/*#__PURE__*/_jsx(AutoCopyright,{color:\"var(--token-906fd3b7-61e0-4666-b498-a53b331e3fa5, rgb(107, 118, 132))\",dateRange:false,font:{fontFamily:'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',fontFeatureSettings:\"'cv08' on, 'cv10' on, 'cv11' on, 'cv12' on\",fontSize:\"14px\",letterSpacing:\"-0.02em\",lineHeight:\"150%\",textAlign:\"right\"},height:\"100%\",id:\"e1DV0v4Qs\",layoutId:\"e1DV0v4Qs\",name:\"SEJUN KI\",startYear:2023,statement:\"All rights reserved.\",style:{width:\"100%\"},width:\"100%\",...addPropertyOverrides({nKCDXBDiu:{font:{fontFamily:'\"Wanted Sans Variable\", \"Wanted Sans Placeholder\", sans-serif',fontFeatureSettings:\"'cv08' on, 'cv10' on, 'cv11' on, 'cv12' on\",fontSize:\"12px\",letterSpacing:\"-0.02em\",lineHeight:\"150%\",textAlign:\"right\"}}},baseVariant,gestureVariant)})})})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-E1PjJ.framer-4wvwx7, .framer-E1PjJ .framer-4wvwx7 { display: block; }\",\".framer-E1PjJ.framer-8u7ua2 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-E1PjJ .framer-10e7a09 { -webkit-user-select: none; align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 200px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 100%; }\",\".framer-E1PjJ .framer-14fbter { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-E1PjJ .framer-177qvfl { align-content: center; align-items: center; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-E1PjJ .framer-bkoksc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-E1PjJ .framer-q3h75m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-E1PjJ .framer-ex1ash { flex: none; height: 12px; position: relative; width: 23px; }\",\".framer-E1PjJ .framer-17vf3p9, .framer-E1PjJ .framer-pvcmr4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-E1PjJ .framer-2ityog { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 6px 8px 6px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E1PjJ .framer-va7bvf, .framer-E1PjJ .framer-ecfkon, .framer-E1PjJ .framer-ekb679, .framer-E1PjJ .framer-hlni6t { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E1PjJ .framer-4s09bp, .framer-E1PjJ .framer-gercbr, .framer-E1PjJ .framer-bcojrx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 6px 8px 6px 8px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-E1PjJ .framer-1wg5el5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-E1PjJ .framer-1q6rkc8, .framer-E1PjJ .framer-hmvci4, .framer-E1PjJ .framer-1lzrepf, .framer-E1PjJ .framer-6vv9fo { 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: 4px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-E1PjJ .framer-1f5ibo1, .framer-E1PjJ .framer-zufaxn, .framer-E1PjJ .framer-zb72v4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 16px); position: relative; width: 16px; }\",\".framer-E1PjJ .framer-1a7y6vm { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-E1PjJ .framer-k5g5v7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-E1PjJ .framer-cq2grm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-E1PjJ .framer-nj0iox { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-E1PjJ .framer-19x2doi, .framer-E1PjJ .framer-1pda0q6 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-E1PjJ .framer-okptxc-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E1PjJ.framer-8u7ua2, .framer-E1PjJ .framer-10e7a09, .framer-E1PjJ .framer-14fbter, .framer-E1PjJ .framer-177qvfl, .framer-E1PjJ .framer-bkoksc, .framer-E1PjJ .framer-q3h75m, .framer-E1PjJ .framer-17vf3p9, .framer-E1PjJ .framer-2ityog, .framer-E1PjJ .framer-4s09bp, .framer-E1PjJ .framer-gercbr, .framer-E1PjJ .framer-bcojrx, .framer-E1PjJ .framer-pvcmr4, .framer-E1PjJ .framer-1wg5el5, .framer-E1PjJ .framer-1q6rkc8, .framer-E1PjJ .framer-hmvci4, .framer-E1PjJ .framer-1lzrepf, .framer-E1PjJ .framer-6vv9fo, .framer-E1PjJ .framer-k5g5v7, .framer-E1PjJ .framer-cq2grm, .framer-E1PjJ .framer-nj0iox { gap: 0px; } .framer-E1PjJ.framer-8u7ua2 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E1PjJ.framer-8u7ua2 > :first-child, .framer-E1PjJ .framer-10e7a09 > :first-child, .framer-E1PjJ .framer-bkoksc > :first-child, .framer-E1PjJ .framer-k5g5v7 > :first-child { margin-top: 0px; } .framer-E1PjJ.framer-8u7ua2 > :last-child, .framer-E1PjJ .framer-10e7a09 > :last-child, .framer-E1PjJ .framer-bkoksc > :last-child, .framer-E1PjJ .framer-k5g5v7 > :last-child { margin-bottom: 0px; } .framer-E1PjJ .framer-10e7a09 > * { margin: 0px; margin-bottom: calc(200px / 2); margin-top: calc(200px / 2); } .framer-E1PjJ .framer-14fbter > *, .framer-E1PjJ .framer-17vf3p9 > *, .framer-E1PjJ .framer-pvcmr4 > *, .framer-E1PjJ .framer-cq2grm > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-E1PjJ .framer-14fbter > :first-child, .framer-E1PjJ .framer-177qvfl > :first-child, .framer-E1PjJ .framer-q3h75m > :first-child, .framer-E1PjJ .framer-17vf3p9 > :first-child, .framer-E1PjJ .framer-2ityog > :first-child, .framer-E1PjJ .framer-4s09bp > :first-child, .framer-E1PjJ .framer-gercbr > :first-child, .framer-E1PjJ .framer-bcojrx > :first-child, .framer-E1PjJ .framer-pvcmr4 > :first-child, .framer-E1PjJ .framer-1wg5el5 > :first-child, .framer-E1PjJ .framer-1q6rkc8 > :first-child, .framer-E1PjJ .framer-hmvci4 > :first-child, .framer-E1PjJ .framer-1lzrepf > :first-child, .framer-E1PjJ .framer-6vv9fo > :first-child, .framer-E1PjJ .framer-cq2grm > :first-child, .framer-E1PjJ .framer-nj0iox > :first-child { margin-left: 0px; } .framer-E1PjJ .framer-14fbter > :last-child, .framer-E1PjJ .framer-177qvfl > :last-child, .framer-E1PjJ .framer-q3h75m > :last-child, .framer-E1PjJ .framer-17vf3p9 > :last-child, .framer-E1PjJ .framer-2ityog > :last-child, .framer-E1PjJ .framer-4s09bp > :last-child, .framer-E1PjJ .framer-gercbr > :last-child, .framer-E1PjJ .framer-bcojrx > :last-child, .framer-E1PjJ .framer-pvcmr4 > :last-child, .framer-E1PjJ .framer-1wg5el5 > :last-child, .framer-E1PjJ .framer-1q6rkc8 > :last-child, .framer-E1PjJ .framer-hmvci4 > :last-child, .framer-E1PjJ .framer-1lzrepf > :last-child, .framer-E1PjJ .framer-6vv9fo > :last-child, .framer-E1PjJ .framer-cq2grm > :last-child, .framer-E1PjJ .framer-nj0iox > :last-child { margin-right: 0px; } .framer-E1PjJ .framer-177qvfl > *, .framer-E1PjJ .framer-1wg5el5 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-E1PjJ .framer-bkoksc > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-E1PjJ .framer-q3h75m > *, .framer-E1PjJ .framer-2ityog > *, .framer-E1PjJ .framer-4s09bp > *, .framer-E1PjJ .framer-gercbr > *, .framer-E1PjJ .framer-bcojrx > *, .framer-E1PjJ .framer-1q6rkc8 > *, .framer-E1PjJ .framer-hmvci4 > *, .framer-E1PjJ .framer-1lzrepf > *, .framer-E1PjJ .framer-6vv9fo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-E1PjJ .framer-k5g5v7 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-E1PjJ .framer-nj0iox > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",\".framer-E1PjJ.framer-v-8cebeb.framer-8u7ua2 { width: 370px; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-10e7a09 { gap: 48px; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-14fbter { flex-direction: column; gap: 64px; padding: 6px 4px 12px 12px; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-177qvfl { flex: none; gap: unset; justify-content: space-between; order: 0; width: 100%; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-17vf3p9 { flex: none; width: min-content; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-pvcmr4 { flex: none; flex-direction: column; gap: 16px; order: 1; width: 100%; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-1wg5el5 { flex: none; justify-content: center; width: 100%; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-k5g5v7 { gap: 8px; }\",\".framer-E1PjJ.framer-v-8cebeb .framer-cq2grm { order: 0; padding: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-E1PjJ.framer-v-8cebeb .framer-10e7a09, .framer-E1PjJ.framer-v-8cebeb .framer-14fbter, .framer-E1PjJ.framer-v-8cebeb .framer-177qvfl, .framer-E1PjJ.framer-v-8cebeb .framer-pvcmr4, .framer-E1PjJ.framer-v-8cebeb .framer-k5g5v7 { gap: 0px; } .framer-E1PjJ.framer-v-8cebeb .framer-10e7a09 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-E1PjJ.framer-v-8cebeb .framer-10e7a09 > :first-child, .framer-E1PjJ.framer-v-8cebeb .framer-14fbter > :first-child, .framer-E1PjJ.framer-v-8cebeb .framer-pvcmr4 > :first-child, .framer-E1PjJ.framer-v-8cebeb .framer-k5g5v7 > :first-child { margin-top: 0px; } .framer-E1PjJ.framer-v-8cebeb .framer-10e7a09 > :last-child, .framer-E1PjJ.framer-v-8cebeb .framer-14fbter > :last-child, .framer-E1PjJ.framer-v-8cebeb .framer-pvcmr4 > :last-child, .framer-E1PjJ.framer-v-8cebeb .framer-k5g5v7 > :last-child { margin-bottom: 0px; } .framer-E1PjJ.framer-v-8cebeb .framer-14fbter > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-E1PjJ.framer-v-8cebeb .framer-177qvfl > *, .framer-E1PjJ.framer-v-8cebeb .framer-177qvfl > :first-child, .framer-E1PjJ.framer-v-8cebeb .framer-177qvfl > :last-child { margin: 0px; } .framer-E1PjJ.framer-v-8cebeb .framer-pvcmr4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-E1PjJ.framer-v-8cebeb .framer-k5g5v7 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-E1PjJ.framer-v-17hacir.framer-8u7ua2 { width: 800px; }\",\".framer-E1PjJ.framer-v-17hacir .framer-10e7a09 { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 327\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"nKCDXBDiu\":{\"layout\":[\"fixed\",\"auto\"]},\"oi5LtJm3M\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCgcunOQS6=withCSS(Component,css,\"framer-E1PjJ\");export default FramerCgcunOQS6;FramerCgcunOQS6.displayName=\"Footer\";FramerCgcunOQS6.defaultProps={height:327,width:1440};addPropertyControls(FramerCgcunOQS6,{variant:{options:[\"jjS0HLeKY\",\"nKCDXBDiu\",\"oi5LtJm3M\"],optionTitles:[\"Desktop\",\"Phone\",\"Tablet\"],title:\"Variant\",type:ControlType.Enum}});const variationAxes=[{defaultValue:400,maxValue:1e3,minValue:400,name:\"Weight\",tag:\"wght\"}];addFonts(FramerCgcunOQS6,[{explicitInter:true,fonts:[{family:\"Wanted Sans Variable\",source:\"custom\",url:\"https://framerusercontent.com/assets/AySKrtb91bkqiQOiDwzA7Nwx0iE.woff2\",variationAxes}]},...AutoCopyrightFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCgcunOQS6\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"327\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nKCDXBDiu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oi5LtJm3M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CgcunOQS6.map"],
  "mappings": "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",
  "names": ["OptimizedSmoothScroll", "props", "intensity", "enabled", "disableOnTouch", "lenisRef", "pe", "isLenisLoaded", "setIsLenisLoaded", "ye", "rafRef", "isTouchDevice", "setIsTouchDevice", "isOverlayOpen", "setIsOverlayOpen", "isInitialLoadRef", "lastScrollPosition", "checkTouchDevice", "window", "navigator", "ue", "shouldActivate", "addInitialStyles", "styleEl", "existingStyle", "isMounted", "Lenis", "t", "raf", "time", "error", "saveScrollPosition", "interval", "checkOverlayState", "overlayElement", "hasChildren", "savedPosition", "observer", "htmlElement", "bodyObserver", "u", "l", "p", "addPropertyControls", "ControlType", "BlurGradient", "blur", "borderRadius", "direction", "transition", "blurSteps", "se", "p", "step", "index", "motion", "addPropertyControls", "ControlType", "BlurGradient_Prod_default", "currentYear", "AutoCopyright", "props", "name", "statement", "dateRange", "startYear", "font", "color", "fontSize", "displayText", "textStyle", "p", "addPropertyControls", "ControlType", "AutoCopyrightFonts", "getFonts", "AutoCopyright", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "transition3", "animation", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapr9ysa3", "args", "scopingClassNames", "cx", "LayoutGroup", "u", "SVG", "Link", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerCgcunOQS6", "withCSS", "CgcunOQS6_default", "addPropertyControls", "ControlType", "variationAxes", "addFonts"]
}
