{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/k8QmsEkRZq09uw7YQiiv/lRmyjyLxGDc74JThbz2q/ctUoTtD9K.js", "ssg:https://framerusercontent.com/modules/t1bZDw6FcwBNm6174ezp/XbwmMjY45lNtg0r8S9Ky/DHtNFmCEk.js", "ssg:https://framerusercontent.com/modules/HHRP3TDmbg1XUKa8tpij/2DYAjlg0swopxIdWQekW/FJBf46eAM.js", "ssg:https://framerusercontent.com/modules/UG8MOPHX01eMOPdkII1B/1wt4VzPkI2swV1KUCW0L/RFV7Ii2Rz.js", "ssg:https://framerusercontent.com/modules/WB0h2Gjtq75Ili2LvjnB/JcHWe7ryyhscOuIyeUDB/uUyy3gorq.js", "ssg:https://framerusercontent.com/modules/DMN7W2nHGNrnL1OKsLzr/mcPsbm6UupbTJYBMux4r/zO7Dvw_Jb.js", "ssg:https://framerusercontent.com/modules/WsposPBX5NhDry65O2Tg/pfjCPUOZeErA4TAQqoKU/y9DKpcRhW.js", "ssg:https://framerusercontent.com/modules/PnUMSE9kqz6S2wsbPBY4/r6HjXnQJjK1r1gwV6mTo/EPw6ZR00a.js", "ssg:https://framerusercontent.com/modules/ZXcBxmEIqEKXKqyPgzLH/RwLZRTYn1mWkaTOYzT7L/EPw6ZR00a.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ca9141d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const RichTextWithFX=withFX(RichText);const enabledGestures={MonU3J4__:{hover:true},wvvSTKBwN:{hover:true},y6D__Sre4:{hover:true}};const cycleOrder=[\"MonU3J4__\",\"Jl7fmI4gx\",\"wvvSTKBwN\",\"I6KL60oXd\",\"y6D__Sre4\",\"ihZQ1hw_l\"];const serializationHash=\"framer-K0ZQh\";const variantClassNames={I6KL60oXd:\"framer-v-8u9973\",ihZQ1hw_l:\"framer-v-1pgc1o0\",Jl7fmI4gx:\"framer-v-er7fej\",MonU3J4__:\"framer-v-8hgolv\",wvvSTKBwN:\"framer-v-1p0am04\",y6D__Sre4:\"framer-v-fu74va\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Active Mobile\":\"ihZQ1hw_l\",\"Active Tablet\":\"I6KL60oXd\",\"Inactive Mobile\":\"y6D__Sre4\",\"Inactive Tablet\":\"wvvSTKBwN\",Active:\"Jl7fmI4gx\",Inactive:\"MonU3J4__\"};const getProps=({caption,click,description,details1,details2,details3,height,id,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_humanReadableVariantMap_props_variant,_ref6;return{...props,DoXvliMeN:(_ref=description!==null&&description!==void 0?description:props.DoXvliMeN)!==null&&_ref!==void 0?_ref:\"That\u2019s Why We Leverage AI to Create Impactful, Lasting Experiences that Engage, and Transform Every Interaction.\",FNZgohIiP:(_ref1=title!==null&&title!==void 0?title:props.FNZgohIiP)!==null&&_ref1!==void 0?_ref1:\"Title\",IgVfH_hGE:(_ref2=caption!==null&&caption!==void 0?caption:props.IgVfH_hGE)!==null&&_ref2!==void 0?_ref2:\"47% increase in new customers.\",j2EDaaH5u:click!==null&&click!==void 0?click:props.j2EDaaH5u,jS9cPcgpU:(_ref3=details2!==null&&details2!==void 0?details2:props.jS9cPcgpU)!==null&&_ref3!==void 0?_ref3:\"\uAE30\uC5C5 \uB370\uC774\uD130 \uBD84\uC11D\uAC00\",LOYl6Xc1C:(_ref4=details1!==null&&details1!==void 0?details1:props.LOYl6Xc1C)!==null&&_ref4!==void 0?_ref4:\"\uB0B4\uBD80 \uAC10\uC0AC\uD300\",Nhxa_6KMd:(_ref5=details3!==null&&details3!==void 0?details3:props.Nhxa_6KMd)!==null&&_ref5!==void 0?_ref5:\"\uAE30\uC5C5 \uD22C\uC790 \uBC0F \uC790\uC0B0\uC6B4\uC6A9\uD300\",variant:(_ref6=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref6!==void 0?_ref6:\"MonU3J4__\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,FNZgohIiP,IgVfH_hGE,DoXvliMeN,j2EDaaH5u,LOYl6Xc1C,jS9cPcgpU,Nhxa_6KMd,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"MonU3J4__\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap3o08fa=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(j2EDaaH5u){const res=await j2EDaaH5u(...args);if(res===false)return false;}});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Jl7fmI4gx\",\"I6KL60oXd\",\"ihZQ1hw_l\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"Jl7fmI4gx\",\"I6KL60oXd\",\"ihZQ1hw_l\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"Jl7fmI4gx\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-8hgolv\",className,classNames),\"data-framer-name\":\"Inactive\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MonU3J4__\",onTap:onTap3o08fa,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({\"MonU3J4__-hover\":{\"data-framer-name\":undefined},\"wvvSTKBwN-hover\":{\"data-framer-name\":undefined},\"y6D__Sre4-hover\":{\"data-framer-name\":undefined},I6KL60oXd:{\"data-framer-name\":\"Active Tablet\"},ihZQ1hw_l:{\"data-framer-name\":\"Active Mobile\"},Jl7fmI4gx:{\"data-framer-name\":\"Active\"},wvvSTKBwN:{\"data-framer-name\":\"Inactive Tablet\"},y6D__Sre4:{\"data-framer-name\":\"Inactive Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v7n5f1\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"sp3StKOoP\",style:{backgroundColor:\"var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61))\"},variants:{\"MonU3J4__-hover\":{backgroundColor:\"var(--token-6a6f93a8-2dfe-4546-a943-2546f735a119, rgb(232, 120, 17))\"},\"wvvSTKBwN-hover\":{backgroundColor:\"var(--token-6a6f93a8-2dfe-4546-a943-2546f735a119, rgb(232, 120, 17))\"},\"y6D__Sre4-hover\":{backgroundColor:\"var(--token-6a6f93a8-2dfe-4546-a943-2546f735a119, rgb(232, 120, 17))\"},I6KL60oXd:{backgroundColor:\"var(--token-6a6f93a8-2dfe-4546-a943-2546f735a119, rgb(232, 120, 17))\"},ihZQ1hw_l:{backgroundColor:\"var(--token-6a6f93a8-2dfe-4546-a943-2546f735a119, rgb(232, 120, 17))\"},Jl7fmI4gx:{backgroundColor:\"var(--token-6a6f93a8-2dfe-4546-a943-2546f735a119, rgb(232, 120, 17))\"}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-deyl0f\",\"data-framer-name\":\"Tabs Content\",layoutDependency:layoutDependency,layoutId:\"NVekLpvwr\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yxm8tt\",\"data-framer-name\":\"Heading\",layoutDependency:layoutDependency,layoutId:\"Usmcvk0UR\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Title\"})}),className:\"framer-3q01a5\",fonts:[\"CUSTOM;Pretendard Medium\"],layoutDependency:layoutDependency,layoutId:\"DgvLHsSee\",style:{\"--extracted-a0htzi\":\"var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:FNZgohIiP,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ihZQ1hw_l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Title\"})})},y6D__Sre4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Title\"})})}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175)))\"},children:\"47% increase in new customers.\"})}),className:\"framer-1ds5oda\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"TlKLkPe84\",style:{\"--extracted-r6o4lv\":\"var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:IgVfH_hGE,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({y6D__Sre4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175)))\"},children:\"47% increase in new customers.\"})})}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175)))\"},children:\"That\u2019s Why We Leverage AI to Create Impactful, Lasting Experiences that Engage, and Transform Every Interaction.\"})}),className:\"framer-u1w4fm\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"xNFGAJga2\",style:{\"--extracted-r6o4lv\":\"var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:DoXvliMeN,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({I6KL60oXd:{__framer__animateOnce:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175)))\"},children:\"That\u2019s Why We Leverage AI to Create Impactful, Lasting Experiences that Engage, and Transform Every Interaction.\"})}),fonts:[\"CUSTOM;Pretendard Light\"]},ihZQ1hw_l:{__framer__animateOnce:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175)))\"},children:\"That\u2019s Why We Leverage AI to Create Impactful, Lasting Experiences that Engage, and Transform Every Interaction.\"})}),fonts:[\"CUSTOM;Pretendard Light\"]},Jl7fmI4gx:{__framer__animateOnce:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-0bd91f44-2ee2-49df-bd1a-78a1b1ec8984, rgb(175, 175, 175)))\"},children:\"That\u2019s Why We Leverage AI to Create Impactful, Lasting Experiences that Engage, and Transform Every Interaction.\"})}),fonts:[\"CUSTOM;Pretendard Light\"]}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-599uim\",layoutDependency:layoutDependency,layoutId:\"evJeoqtdf\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l65j9n\",layoutDependency:layoutDependency,layoutId:\"TWCQwqfBU\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"\uB0B4\uBD80 \uAC10\uC0AC\uD300\"})}),className:\"framer-79shn8\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"hJ3O2Wgw9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LOYl6Xc1C,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-59fgbb\",layoutDependency:layoutDependency,layoutId:\"FsiHWDttC\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"\uAE30\uC5C5 \uB370\uC774\uD130 \uBD84\uC11D\uAC00\"})}),className:\"framer-1hre5ab\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"gldp8E0LP\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:jS9cPcgpU,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nw7hf8\",layoutDependency:layoutDependency,layoutId:\"rDVMQGYfj\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:50,borderBottomRightRadius:50,borderTopLeftRadius:50,borderTopRightRadius:50},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"\uAE30\uC5C5 \uD22C\uC790 \uBC0F \uC790\uC0B0\uC6B4\uC6A9\uD300\"})}),className:\"framer-y5utu2\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"QGEylZsgT\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Nhxa_6KMd,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-K0ZQh.framer-1dchh8, .framer-K0ZQh .framer-1dchh8 { display: block; }\",\".framer-K0ZQh.framer-8hgolv { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 580px; }\",\".framer-K0ZQh .framer-1v7n5f1 { bottom: 1px; flex: none; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 1px; z-index: 1; }\",\".framer-K0ZQh .framer-deyl0f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 40px 20px 40px 40px; position: relative; width: 100%; }\",\".framer-K0ZQh .framer-yxm8tt { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K0ZQh .framer-3q01a5, .framer-K0ZQh .framer-79shn8, .framer-K0ZQh .framer-1hre5ab, .framer-K0ZQh .framer-y5utu2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-K0ZQh .framer-1ds5oda { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-K0ZQh .framer-u1w4fm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-K0ZQh .framer-599uim { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-K0ZQh .framer-1l65j9n, .framer-K0ZQh .framer-59fgbb, .framer-K0ZQh .framer-nw7hf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 5px 15px 5px 15px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K0ZQh.framer-8hgolv, .framer-K0ZQh .framer-deyl0f, .framer-K0ZQh .framer-yxm8tt, .framer-K0ZQh .framer-599uim, .framer-K0ZQh .framer-1l65j9n, .framer-K0ZQh .framer-59fgbb, .framer-K0ZQh .framer-nw7hf8 { gap: 0px; } .framer-K0ZQh.framer-8hgolv > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-K0ZQh.framer-8hgolv > :first-child, .framer-K0ZQh .framer-deyl0f > :first-child, .framer-K0ZQh .framer-599uim > :first-child, .framer-K0ZQh .framer-1l65j9n > :first-child, .framer-K0ZQh .framer-59fgbb > :first-child, .framer-K0ZQh .framer-nw7hf8 > :first-child { margin-top: 0px; } .framer-K0ZQh.framer-8hgolv > :last-child, .framer-K0ZQh .framer-deyl0f > :last-child, .framer-K0ZQh .framer-599uim > :last-child, .framer-K0ZQh .framer-1l65j9n > :last-child, .framer-K0ZQh .framer-59fgbb > :last-child, .framer-K0ZQh .framer-nw7hf8 > :last-child { margin-bottom: 0px; } .framer-K0ZQh .framer-deyl0f > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-K0ZQh .framer-yxm8tt > * { margin: 0px; margin-left: calc(34px / 2); margin-right: calc(34px / 2); } .framer-K0ZQh .framer-yxm8tt > :first-child { margin-left: 0px; } .framer-K0ZQh .framer-yxm8tt > :last-child { margin-right: 0px; } .framer-K0ZQh .framer-599uim > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-K0ZQh .framer-1l65j9n > *, .framer-K0ZQh .framer-59fgbb > *, .framer-K0ZQh .framer-nw7hf8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-K0ZQh.framer-v-er7fej.framer-8hgolv, .framer-K0ZQh.framer-v-8u9973.framer-8hgolv, .framer-K0ZQh.framer-v-1pgc1o0.framer-8hgolv { overflow: visible; }\",\".framer-K0ZQh.framer-v-er7fej .framer-1v7n5f1, .framer-K0ZQh.framer-v-8u9973 .framer-1v7n5f1, .framer-K0ZQh.framer-v-1pgc1o0 .framer-1v7n5f1 { bottom: -2px; top: -2px; }\",\".framer-K0ZQh.framer-v-er7fej .framer-599uim { flex-direction: row; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K0ZQh.framer-v-er7fej .framer-599uim { gap: 0px; } .framer-K0ZQh.framer-v-er7fej .framer-599uim > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-K0ZQh.framer-v-er7fej .framer-599uim > :first-child { margin-left: 0px; } .framer-K0ZQh.framer-v-er7fej .framer-599uim > :last-child { margin-right: 0px; } }\",\".framer-K0ZQh.framer-v-1p0am04 .framer-deyl0f, .framer-K0ZQh.framer-v-8u9973 .framer-deyl0f { padding: 32px; }\",\".framer-K0ZQh.framer-v-1p0am04 .framer-yxm8tt { align-content: center; align-items: center; gap: 28px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K0ZQh.framer-v-1p0am04 .framer-yxm8tt { gap: 0px; } .framer-K0ZQh.framer-v-1p0am04 .framer-yxm8tt > * { margin: 0px; margin-left: calc(28px / 2); margin-right: calc(28px / 2); } .framer-K0ZQh.framer-v-1p0am04 .framer-yxm8tt > :first-child { margin-left: 0px; } .framer-K0ZQh.framer-v-1p0am04 .framer-yxm8tt > :last-child { margin-right: 0px; } }\",\".framer-K0ZQh.framer-v-fu74va .framer-deyl0f, .framer-K0ZQh.framer-v-1pgc1o0 .framer-deyl0f { padding: 24px; }\",\".framer-K0ZQh.framer-v-fu74va .framer-yxm8tt { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 3px; }\",\".framer-K0ZQh.framer-v-fu74va .framer-1ds5oda { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-K0ZQh.framer-v-fu74va .framer-yxm8tt { gap: 0px; } .framer-K0ZQh.framer-v-fu74va .framer-yxm8tt > * { margin: 0px; margin-bottom: calc(3px / 2); margin-top: calc(3px / 2); } .framer-K0ZQh.framer-v-fu74va .framer-yxm8tt > :first-child { margin-top: 0px; } .framer-K0ZQh.framer-v-fu74va .framer-yxm8tt > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 111\n * @framerIntrinsicWidth 580\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Jl7fmI4gx\":{\"layout\":[\"fixed\",\"auto\"]},\"wvvSTKBwN\":{\"layout\":[\"fixed\",\"auto\"]},\"I6KL60oXd\":{\"layout\":[\"fixed\",\"auto\"]},\"y6D__Sre4\":{\"layout\":[\"fixed\",\"auto\"]},\"ihZQ1hw_l\":{\"layout\":[\"fixed\",\"auto\"]},\"c9KnUFxPs\":{\"layout\":[\"fixed\",\"auto\"]},\"EYnntJdpQ\":{\"layout\":[\"fixed\",\"auto\"]},\"jxwF2SFLV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"FNZgohIiP\":\"title\",\"IgVfH_hGE\":\"caption\",\"DoXvliMeN\":\"description\",\"j2EDaaH5u\":\"click\",\"LOYl6Xc1C\":\"details1\",\"jS9cPcgpU\":\"details2\",\"Nhxa_6KMd\":\"details3\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerctUoTtD9K=withCSS(Component,css,\"framer-K0ZQh\");export default FramerctUoTtD9K;FramerctUoTtD9K.displayName=\"Tab-user Item\";FramerctUoTtD9K.defaultProps={height:111,width:580};addPropertyControls(FramerctUoTtD9K,{variant:{options:[\"MonU3J4__\",\"Jl7fmI4gx\",\"wvvSTKBwN\",\"I6KL60oXd\",\"y6D__Sre4\",\"ihZQ1hw_l\"],optionTitles:[\"Inactive\",\"Active\",\"Inactive Tablet\",\"Active Tablet\",\"Inactive Mobile\",\"Active Mobile\"],title:\"Variant\",type:ControlType.Enum},FNZgohIiP:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},IgVfH_hGE:{defaultValue:\"47% increase in new customers.\",displayTextArea:false,title:\"Caption\",type:ControlType.String},DoXvliMeN:{defaultValue:\"That\u2019s Why We Leverage AI to Create Impactful, Lasting Experiences that Engage, and Transform Every Interaction.\",displayTextArea:false,title:\"Description\",type:ControlType.String},j2EDaaH5u:{title:\"Click\",type:ControlType.EventHandler},LOYl6Xc1C:{defaultValue:\"\uB0B4\uBD80 \uAC10\uC0AC\uD300\",displayTextArea:false,title:\"details 1\",type:ControlType.String},jS9cPcgpU:{defaultValue:\"\uAE30\uC5C5 \uB370\uC774\uD130 \uBD84\uC11D\uAC00\",displayTextArea:false,title:\"details 2\",type:ControlType.String},Nhxa_6KMd:{defaultValue:\"\uAE30\uC5C5 \uD22C\uC790 \uBC0F \uC790\uC0B0\uC6B4\uC6A9\uD300\",displayTextArea:false,title:\"details 3\",type:ControlType.String}});addFonts(FramerctUoTtD9K,[{explicitInter:true,fonts:[{family:\"Pretendard Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/P2PJKk0r3P2rBRbT0fNX64L4.woff\"},{family:\"Pretendard Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/G3FL4LTaa96H8ca4MBoVwAQ4M.woff\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Pretendard Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xDyoC8MeZr1IcsrowiTgCB1zz8.woff\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerctUoTtD9K\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jl7fmI4gx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wvvSTKBwN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"I6KL60oXd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"y6D__Sre4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ihZQ1hw_l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"c9KnUFxPs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EYnntJdpQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jxwF2SFLV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"FNZgohIiP\\\":\\\"title\\\",\\\"IgVfH_hGE\\\":\\\"caption\\\",\\\"DoXvliMeN\\\":\\\"description\\\",\\\"j2EDaaH5u\\\":\\\"click\\\",\\\"LOYl6Xc1C\\\":\\\"details1\\\",\\\"jS9cPcgpU\\\":\\\"details2\\\",\\\"Nhxa_6KMd\\\":\\\"details3\\\"}\",\"framerIntrinsicHeight\":\"111\",\"framerIntrinsicWidth\":\"580\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ctUoTtD9K.map", "// Generated by Framer (be619af)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import TabUserItem from\"https://framerusercontent.com/modules/k8QmsEkRZq09uw7YQiiv/lRmyjyLxGDc74JThbz2q/ctUoTtD9K.js\";const TabUserItemFonts=getFonts(TabUserItem);const MotionDivWithFX=withFX(motion.div);const ImageWithFX=withFX(Image);const cycleOrder=[\"V39pdWwlg\",\"JYSDnjB8s\",\"p6Ljcfsie\",\"b5Kz59tXc\",\"YdKiWhAcP\",\"Mfkvm5s3P\",\"rFf3yh507\",\"h9w46JQPL\",\"OguiCsy6k\",\"dYyzqvLxs\",\"gTk1r8clM\",\"sMJReq2nz\"];const serializationHash=\"framer-dBmFW\";const variantClassNames={b5Kz59tXc:\"framer-v-12gny5q\",dYyzqvLxs:\"framer-v-191i70i\",gTk1r8clM:\"framer-v-9toc86\",h9w46JQPL:\"framer-v-1xg1rf8\",JYSDnjB8s:\"framer-v-1rg46ak\",Mfkvm5s3P:\"framer-v-m7e4zg\",OguiCsy6k:\"framer-v-1ppqci7\",p6Ljcfsie:\"framer-v-uaqf11\",rFf3yh507:\"framer-v-1ncgle\",sMJReq2nz:\"framer-v-jizdjz\",V39pdWwlg:\"framer-v-bt4e49\",YdKiWhAcP:\"framer-v-1yc9gcv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition2={damping:70,delay:.4,mass:1,stiffness:210,type:\"spring\"};const transition3={damping:70,delay:.6,mass:1,stiffness:210,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,x:0,y:0};const transition4={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const transition5={damping:70,delay:.8,mass:1,stiffness:210,type:\"spring\"};const transition6={damping:70,delay:.5,mass:1,stiffness:210,type:\"spring\"};const transition7={bounce:.2,delay:.5,duration:.4,type:\"spring\"};const transition8={damping:70,delay:1,mass:1,stiffness:210,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.98,skewX:0,skewY:0,transition:transition4,x:0,y:0};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop Tab 1\":\"V39pdWwlg\",\"Desktop Tab 2\":\"JYSDnjB8s\",\"Desktop Tab 3\":\"p6Ljcfsie\",\"Mobile Tab 1\":\"rFf3yh507\",\"Mobile Tab 2\":\"h9w46JQPL\",\"Mobile Tab 3\":\"OguiCsy6k\",\"Responsive Tab 1\":\"b5Kz59tXc\",\"Responsive Tab 2\":\"YdKiWhAcP\",\"Responsive Tab 3\":\"Mfkvm5s3P\",\"Variant 10\":\"dYyzqvLxs\",\"Variant 11\":\"gTk1r8clM\",\"Variant 12\":\"sMJReq2nz\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"V39pdWwlg\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"V39pdWwlg\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const j2EDaaH5u2fc3g1=activeVariantCallback(async(...args)=>{setVariant(\"V39pdWwlg\");});const j2EDaaH5umrd546=activeVariantCallback(async(...args)=>{setVariant(\"b5Kz59tXc\");});const j2EDaaH5u29i0r0=activeVariantCallback(async(...args)=>{setVariant(\"rFf3yh507\");});const j2EDaaH5u1f3zruq=activeVariantCallback(async(...args)=>{setVariant(\"JYSDnjB8s\");});const j2EDaaH5u18u9q4x=activeVariantCallback(async(...args)=>{setVariant(\"YdKiWhAcP\");});const j2EDaaH5uxvvrkq=activeVariantCallback(async(...args)=>{setVariant(\"h9w46JQPL\");});const j2EDaaH5u1f0goqk=activeVariantCallback(async(...args)=>{setVariant(\"p6Ljcfsie\");});const j2EDaaH5uczm3rz=activeVariantCallback(async(...args)=>{setVariant(\"Mfkvm5s3P\");});const j2EDaaH5ucv6vky=activeVariantCallback(async(...args)=>{setVariant(\"OguiCsy6k\");});const j2EDaaH5upacqer=activeVariantCallback(async(...args)=>{setVariant(\"dYyzqvLxs\");});const j2EDaaH5ubheol7=activeVariantCallback(async(...args)=>{setVariant(\"gTk1r8clM\");});const j2EDaaH5u1aen1jy=activeVariantCallback(async(...args)=>{setVariant(\"sMJReq2nz\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"JYSDnjB8s\",\"p6Ljcfsie\",\"YdKiWhAcP\",\"Mfkvm5s3P\",\"h9w46JQPL\",\"OguiCsy6k\",\"dYyzqvLxs\",\"gTk1r8clM\",\"sMJReq2nz\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"JYSDnjB8s\",\"YdKiWhAcP\",\"h9w46JQPL\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"p6Ljcfsie\",\"Mfkvm5s3P\",\"OguiCsy6k\",\"dYyzqvLxs\",\"gTk1r8clM\",\"sMJReq2nz\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-bt4e49\",className,classNames),\"data-framer-name\":\"Desktop Tab 1\",layoutDependency:layoutDependency,layoutId:\"V39pdWwlg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({b5Kz59tXc:{\"data-framer-name\":\"Responsive Tab 1\"},dYyzqvLxs:{\"data-framer-name\":\"Variant 10\"},gTk1r8clM:{\"data-framer-name\":\"Variant 11\"},h9w46JQPL:{\"data-framer-name\":\"Mobile Tab 2\"},JYSDnjB8s:{\"data-framer-name\":\"Desktop Tab 2\"},Mfkvm5s3P:{\"data-framer-name\":\"Responsive Tab 3\"},OguiCsy6k:{\"data-framer-name\":\"Mobile Tab 3\"},p6Ljcfsie:{\"data-framer-name\":\"Desktop Tab 3\"},rFf3yh507:{\"data-framer-name\":\"Mobile Tab 1\"},sMJReq2nz:{\"data-framer-name\":\"Variant 12\"},YdKiWhAcP:{\"data-framer-name\":\"Responsive Tab 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-15lh1s3\",\"data-framer-name\":\"Tabs Wrapper\",layoutDependency:layoutDependency,layoutId:\"OHb48s1Kw\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-447)/2)+0+0,...addPropertyOverrides({b5Kz59tXc:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+605+40)+0+0},dYyzqvLxs:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-447)/2)+0+0},gTk1r8clM:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+0},h9w46JQPL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+0},JYSDnjB8s:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-447)/2)+0+0},Mfkvm5s3P:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+0},OguiCsy6k:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+0},p6Ljcfsie:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-447)/2)+0+0},rFf3yh507:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+0},sMJReq2nz:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+0},YdKiWhAcP:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+605+40)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xjtmm4-container\",layoutDependency:layoutDependency,layoutId:\"p2C0siwdw-container\",children:/*#__PURE__*/_jsx(TabUserItem,{DoXvliMeN:\"\uAE30\uC5C5 \uB0B4\uBD80\uC5D0\uC11C \uB370\uC774\uD130\uB97C \uAE30\uBC18\uC73C\uB85C \uC758\uC0AC\uACB0\uC815\uC744 \uB0B4\uB9AC\uB294 \uC2E4\uBB34\uC790\uC640 \uB9AC\uB354\uB294 \uBE60\uB974\uACE0 \uC815\uD655\uD55C \uB370\uC774\uD130 \uBD84\uC11D\uACFC \uBCF4\uACE0\uAC00 \uD544\uC218\uC785\uB2C8\uB2E4. finex\uB294 \uB370\uC774\uD130\uC758 \uBCF5\uC7A1\uC131\uC744 \uB2E8\uC21C\uD654\uD558\uACE0, \uC2E4\uC2DC\uAC04\uC73C\uB85C \uD1B5\uCC30\uB825 \uC788\uB294 \uC815\uBCF4\uB97C \uC81C\uACF5\uD569\uB2C8\uB2E4.\",FNZgohIiP:\"\uC7AC\uBB34\uD300 \uBC0F FP&A \uC2E4\uBB34\uC790\",height:\"100%\",id:\"p2C0siwdw\",IgVfH_hGE:\"\uB370\uC774\uD130\uC758 \uD6A8\uC728\uC801 \uBD84\uC11D\uACFC \uC608\uCE21, \uB370\uC774\uD130 \uAE30\uBC18 \uACBD\uC601\uC758 \uC2DC\uC791\",jS9cPcgpU:\"\uAE30\uC5C5 \uB370\uC774\uD130 \uBD84\uC11D\uAC00\",layoutId:\"p2C0siwdw\",LOYl6Xc1C:\"CFO \uBC0F \uC7AC\uBB34\uD300\uC7A5\",Nhxa_6KMd:\"\uAE30\uC5C5 \uACBD\uC601\uC9C4 (C-level)\",style:{width:\"100%\"},variant:\"Jl7fmI4gx\",width:\"100%\",...addPropertyOverrides({b5Kz59tXc:{j2EDaaH5u:j2EDaaH5umrd546,variant:\"I6KL60oXd\"},dYyzqvLxs:{j2EDaaH5u:j2EDaaH5u2fc3g1,variant:\"MonU3J4__\"},gTk1r8clM:{j2EDaaH5u:j2EDaaH5umrd546,variant:\"wvvSTKBwN\"},h9w46JQPL:{j2EDaaH5u:j2EDaaH5u29i0r0,variant:\"y6D__Sre4\"},JYSDnjB8s:{j2EDaaH5u:j2EDaaH5u2fc3g1,variant:\"MonU3J4__\"},Mfkvm5s3P:{j2EDaaH5u:j2EDaaH5umrd546,variant:\"wvvSTKBwN\"},OguiCsy6k:{j2EDaaH5u:j2EDaaH5u29i0r0,variant:\"y6D__Sre4\"},p6Ljcfsie:{j2EDaaH5u:j2EDaaH5u2fc3g1,variant:\"MonU3J4__\"},rFf3yh507:{variant:\"ihZQ1hw_l\"},sMJReq2nz:{j2EDaaH5u:j2EDaaH5u29i0r0,variant:\"y6D__Sre4\"},YdKiWhAcP:{j2EDaaH5u:j2EDaaH5umrd546,variant:\"wvvSTKBwN\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1106aim\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"fGnYoMY3y\",style:{background:'linear-gradient(90deg, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {\"name\":\"Dark/200\"} */ 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {\"name\":\"Dark/200\"} */ 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) /* {\"name\":\"Transparent\"} */ 100%)'}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-447)/2)+0+112,...addPropertyOverrides({b5Kz59tXc:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+605+40)+0+112},dYyzqvLxs:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-447)/2)+0+112},gTk1r8clM:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+112},h9w46JQPL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+112},JYSDnjB8s:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-447)/2)+0+112},Mfkvm5s3P:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+112},OguiCsy6k:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+112},p6Ljcfsie:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-447)/2)+0+112},rFf3yh507:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+112},sMJReq2nz:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+112},YdKiWhAcP:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+605+40)+0+112}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-o74g5a-container\",layoutDependency:layoutDependency,layoutId:\"K2RVrTl8M-container\",children:/*#__PURE__*/_jsx(TabUserItem,{DoXvliMeN:\"M&A, \uD22C\uC790, \uCEE8\uC124\uD305\uACFC \uAC19\uC774 \uC678\uBD80 \uACE0\uAC1D\uC5D0\uAC8C \uC11C\uBE44\uC2A4\uB97C \uC81C\uACF5\uD558\uAC70\uB098 \uAE30\uC5C5 \uAC00\uCE58\uB97C \uD3C9\uAC00\uD558\uB294 \uC804\uBB38\uAC00\uB4E4\uC740 \uC2E0\uB8B0\uD560 \uC218 \uC788\uB294 \uC7AC\uBB34 \uB370\uC774\uD130\uC640 \uBD84\uC11D \uD234\uC774 \uD544\uC694\uD569\uB2C8\uB2E4. finex\uB294 \uAE4A\uC774 \uC788\uB294 \uB370\uC774\uD130 \uBD84\uC11D\uACFC \uB9DE\uCDA4\uD615 \uC194\uB8E8\uC158\uC744 \uD1B5\uD574 \uC804\uBB38\uC131\uC744 \uAC15\uD654\uD569\uB2C8\uB2E4.\",FNZgohIiP:\"M&A / \uC804\uBB38\uD22C\uC790\uC0AC\",height:\"100%\",id:\"K2RVrTl8M\",IgVfH_hGE:\"\uC2E0\uB8B0\uC640 \uC804\uBB38\uC131\uC744 \uB192\uC774\uB294 \uAC15\uB825\uD55C \uB3C4\uAD6C\",j2EDaaH5u:j2EDaaH5u1f3zruq,jS9cPcgpU:\"\uACBD\uC601 \uCEE8\uC124\uD134\uD2B8\",layoutId:\"K2RVrTl8M\",LOYl6Xc1C:\"\uD68C\uACC4\uC0AC\",Nhxa_6KMd:\"\uAE30\uC5C5 \uD22C\uC790 \uBC0F \uC790\uC0B0\uC6B4\uC6A9\uD300\",style:{width:\"100%\"},variant:\"MonU3J4__\",width:\"100%\",...addPropertyOverrides({b5Kz59tXc:{j2EDaaH5u:j2EDaaH5u18u9q4x,variant:\"wvvSTKBwN\"},gTk1r8clM:{j2EDaaH5u:j2EDaaH5u18u9q4x,variant:\"wvvSTKBwN\"},h9w46JQPL:{j2EDaaH5u:undefined,variant:\"ihZQ1hw_l\"},JYSDnjB8s:{Nhxa_6KMd:\"VC/\uC804\uBB38\uD22C\uC790\uC0AC\",variant:\"Jl7fmI4gx\"},Mfkvm5s3P:{j2EDaaH5u:j2EDaaH5u18u9q4x,variant:\"wvvSTKBwN\"},OguiCsy6k:{j2EDaaH5u:j2EDaaH5uxvvrkq,variant:\"y6D__Sre4\"},rFf3yh507:{j2EDaaH5u:j2EDaaH5uxvvrkq,variant:\"y6D__Sre4\"},sMJReq2nz:{j2EDaaH5u:j2EDaaH5uxvvrkq,variant:\"y6D__Sre4\"},YdKiWhAcP:{j2EDaaH5u:undefined,variant:\"I6KL60oXd\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i9kx0x\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"rr3KQoTdI\",style:{background:'linear-gradient(90deg, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {\"name\":\"Dark/200\"} */ 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {\"name\":\"Dark/200\"} */ 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) /* {\"name\":\"Transparent\"} */ 100%)'}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-447)/2)+0+224,...addPropertyOverrides({b5Kz59tXc:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+605+40)+0+224},dYyzqvLxs:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-447)/2)+0+224},gTk1r8clM:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+224},h9w46JQPL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+224},JYSDnjB8s:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-447)/2)+0+224},Mfkvm5s3P:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+224},OguiCsy6k:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+224},p6Ljcfsie:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-447)/2)+0+224},rFf3yh507:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+224},sMJReq2nz:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+224},YdKiWhAcP:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+605+40)+0+224}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14h5cbn-container\",layoutDependency:layoutDependency,layoutId:\"Jj2kliLg9-container\",children:/*#__PURE__*/_jsx(TabUserItem,{DoXvliMeN:\"IT \uC778\uD504\uB77C\uB97C \uAC1C\uC120\uD558\uAC70\uB098 \uB514\uC9C0\uD138 \uC804\uD658\uC744 \uCD94\uC9C4\uD558\uB294 \uC870\uC9C1\uC740 \uC7AC\uBB34\uB370\uC774\uD130\uC758 \uD1B5\uD569\uACFC \uC790\uB3D9\uD654\uB41C \uD504\uB85C\uC138\uC2A4\uAC00 \uD575\uC2EC\uC785\uB2C8\uB2E4. finex\uB294 \uD6A8\uC728\uC801\uC778 ERP \uB370\uC774\uD130 \uB3C4\uC785, \uAD00\uB9AC\uC640 \uC790\uB3D9\uD654\uB41C \uC7AC\uBB34\uC194\uB8E8\uC158\uC73C\uB85C \uB514\uC9C0\uD138 \uC804\uD658\uC744 \uAC00\uC18D\uD654\uD569\uB2C8\uB2E4.\",FNZgohIiP:\"IT \uBC0F \uB514\uC9C0\uD138 \uC804\uD658 \uD300\",height:\"100%\",id:\"Jj2kliLg9\",IgVfH_hGE:\"\uC7AC\uBB34 \uC790\uB3D9\uD654 (DX), finex\uB85C \uD601\uC2E0\uD558\uB2E4\",j2EDaaH5u:j2EDaaH5u1f0goqk,jS9cPcgpU:\"\uAE30\uC5C5 \uB370\uC774\uD130 \uBD84\uC11D\uAC00\",layoutId:\"Jj2kliLg9\",LOYl6Xc1C:\"\uB514\uC9C0\uD138 \uD601\uC2E0 DX\uD300\",Nhxa_6KMd:\"\uAE30\uC5C5 \uD22C\uC790 \uBC0F \uC790\uC0B0\uC6B4\uC6A9\uD300\",style:{width:\"100%\"},variant:\"wvvSTKBwN\",width:\"100%\",...addPropertyOverrides({b5Kz59tXc:{j2EDaaH5u:j2EDaaH5uczm3rz},dYyzqvLxs:{variant:\"MonU3J4__\"},gTk1r8clM:{j2EDaaH5u:j2EDaaH5uczm3rz},h9w46JQPL:{j2EDaaH5u:j2EDaaH5ucv6vky,variant:\"y6D__Sre4\"},Mfkvm5s3P:{j2EDaaH5u:j2EDaaH5uczm3rz,variant:\"I6KL60oXd\"},OguiCsy6k:{j2EDaaH5u:undefined,variant:\"ihZQ1hw_l\"},p6Ljcfsie:{j2EDaaH5u:undefined,jS9cPcgpU:\"\uADDC\uC81C\uC900\uC218 \uD544\uC218 \uC0B0\uC5C5\uAD70\",Nhxa_6KMd:\"\uBE44\uC601\uB9AC \uB2E8\uCCB4 \uBC0F \uACF5\uACF5\uAE30\uAD00\",variant:\"Jl7fmI4gx\"},rFf3yh507:{j2EDaaH5u:j2EDaaH5ucv6vky,variant:\"y6D__Sre4\"},sMJReq2nz:{j2EDaaH5u:j2EDaaH5ucv6vky,variant:\"y6D__Sre4\"},YdKiWhAcP:{j2EDaaH5u:j2EDaaH5uczm3rz}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ebg6lo\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"QlsONQj27\",style:{background:'linear-gradient(90deg, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {\"name\":\"Dark/200\"} */ 0%, var(--token-fab99bb1-2362-471f-8f94-4719e8b35bc0, rgb(61, 61, 61)) /* {\"name\":\"Dark/200\"} */ 75.82584415470158%, var(--token-ca0eb946-0278-4b5f-be23-d71665cd022d, rgba(17, 17, 17, 0)) /* {\"name\":\"Transparent\"} */ 100%)'}}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:`max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px)`,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-447)/2)+0+336,...addPropertyOverrides({b5Kz59tXc:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+605+40)+0+336},dYyzqvLxs:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-447)/2)+0+336},gTk1r8clM:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+336},h9w46JQPL:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+336},JYSDnjB8s:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-447)/2)+0+336},Mfkvm5s3P:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+603+40)+0+336},OguiCsy6k:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+336},p6Ljcfsie:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-447)/2)+0+336},rFf3yh507:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+336},sMJReq2nz:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+605+32)+0+336},YdKiWhAcP:{width:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+605+40)+0+336}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4j2xrs-container\",layoutDependency:layoutDependency,layoutId:\"gDQl96khG-container\",children:/*#__PURE__*/_jsx(TabUserItem,{DoXvliMeN:\"\uBE60\uB974\uAC8C \uC131\uC7A5\uD558\uAC70\uB098 \uAE00\uB85C\uBC8C \uD655\uC7A5\uC744 \uC900\uBE44\uD558\uB294 \uAE30\uC5C5\uC740 \uC7AC\uBB34 \uAD00\uB9AC\uC758 \uD6A8\uC728\uC131\uC744 \uB192\uC5EC\uC57C \uD569\uB2C8\uB2E4. finex\uB294 \uBE44\uC6A9 \uD6A8\uC728\uC801\uC778 \uAD00\uB9AC\uC640 \uAE00\uB85C\uBC8C \uD45C\uC900\uC5D0 \uB9DE\uCD98 \uB370\uC774\uD130 \uBD84\uC11D\uC744 \uC9C0\uC6D0\uD558\uBA70 IR\uB97C \uC704\uD55C \uC7AC\uBB34\uACC4\uD68D (\uCD94\uC815\uC7AC\uBB34\uC81C\uD45C) \uC218\uB9BD\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4. \",FNZgohIiP:\"\uC2A4\uD0C0\uD2B8\uC5C5 / \uAE00\uB85C\uBC8C \uD655\uC7A5\",height:\"100%\",id:\"gDQl96khG\",IgVfH_hGE:\"\uC131\uC7A5\uD558\uB294 \uAE30\uC5C5\uACFC \uC2A4\uD0C0\uD2B8\uC5C5\uC758 \uD544\uC218 \uD30C\uD2B8\uB108\",j2EDaaH5u:j2EDaaH5upacqer,jS9cPcgpU:\"\uAE30\uC5C5 \uB370\uC774\uD130 \uBD84\uC11D\uAC00\",layoutId:\"gDQl96khG\",LOYl6Xc1C:\"\uB0B4\uBD80 \uAC10\uC0AC\uD300\",Nhxa_6KMd:\"\uAE30\uC5C5 \uD22C\uC790 \uBC0F \uC790\uC0B0\uC6B4\uC6A9\uD300\",style:{width:\"100%\"},variant:\"wvvSTKBwN\",width:\"100%\",...addPropertyOverrides({b5Kz59tXc:{j2EDaaH5u:j2EDaaH5ubheol7},dYyzqvLxs:{FNZgohIiP:\"\uC911\uC18C\uAE30\uC5C5 \uBC0F \uAE00\uB85C\uBC8C \uD655\uC7A5 \",j2EDaaH5u:undefined,jS9cPcgpU:\"\uD574\uC678 \uC9C4\uCD9C \uAE30\uC5C5\",LOYl6Xc1C:\"\uC2A4\uD0C0\uD2B8\uC5C5 \uACBD\uC601\uC9C4\",Nhxa_6KMd:\"\uD22C\uC790 IR \uB2F4\uB2F9\uC790\",variant:\"Jl7fmI4gx\"},gTk1r8clM:{j2EDaaH5u:undefined,variant:\"I6KL60oXd\"},h9w46JQPL:{j2EDaaH5u:j2EDaaH5u1aen1jy,variant:\"y6D__Sre4\"},Mfkvm5s3P:{j2EDaaH5u:j2EDaaH5ubheol7},OguiCsy6k:{j2EDaaH5u:j2EDaaH5u1aen1jy,variant:\"y6D__Sre4\"},p6Ljcfsie:{variant:\"MonU3J4__\"},rFf3yh507:{j2EDaaH5u:j2EDaaH5u1aen1jy,variant:\"y6D__Sre4\"},sMJReq2nz:{j2EDaaH5u:undefined,variant:\"ihZQ1hw_l\"},YdKiWhAcP:{j2EDaaH5u:j2EDaaH5ubheol7}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1mnml5b\",\"data-framer-name\":\"Image Frame\",layoutDependency:layoutDependency,layoutId:\"Q7Ty71ezC\",style:{background:'linear-gradient(180deg, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {\"name\":\"Dark/300\"} */ 0%, var(--token-4d67072c-df86-41a3-8260-1a48b41c6ca7, rgb(17, 17, 17)) /* {\"name\":\"Dark/400\"} */ 100%)',borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3m7v3y\",\"data-framer-name\":\"Image Wrapper\",layoutDependency:layoutDependency,layoutId:\"OmqZC70p7\",style:{background:'radial-gradient(63% 46% at -3.9% -1.7999999999999998%, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {\"name\":\"Dark/300\"} */ 0%, var(--token-4d67072c-df86-41a3-8260-1a48b41c6ca7, rgb(17, 17, 17)) /* {\"name\":\"Dark/400\"} */ 100%)',borderBottomLeftRadius:23,borderBottomRightRadius:23,borderTopLeftRadius:23,borderTopRightRadius:23},children:[isDisplayed()&&/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-397.5)/2)+1+32),pixelHeight:1984,pixelWidth:2400,sizes:`max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png\",srcSet:\"https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png 2400w\"},className:\"framer-z1hqop\",\"data-border\":true,\"data-framer-name\":\"Image Tab 1\",layoutDependency:layoutDependency,layoutId:\"PcQt1bDhH\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},...addPropertyOverrides({b5Kz59tXc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+0+0)+1+24),pixelHeight:1984,pixelWidth:2400,sizes:`max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png\",srcSet:\"https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png 2400w\"}},rFf3yh507:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24),pixelHeight:1984,pixelWidth:2400,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png\",srcSet:\"https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=512 512w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VyfRp8CeTis10RZl29zHVvUzSD0.png 2400w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f2lfj9\",\"data-framer-name\":\"Vignette Bottom\",layoutDependency:layoutDependency,layoutId:\"aOUokfAUu\",style:{background:\"linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)\",borderBottomLeftRadius:17,borderBottomRightRadius:17},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-397.5)/2)+1+32+331.5-172+172-49),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.1708)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"},className:\"framer-189v9p2\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"gYVYAzJG4\",style:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},...addPropertyOverrides({b5Kz59tXc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+0+0)+1+24+555-172+172-49),pixelHeight:3375,pixelWidth:6e3,sizes:`min(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 48px, 1px) * 0.1708, 160px)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},rFf3yh507:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-172+172-51),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.2596)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wwqp3u\",\"data-framer-name\":\"Vignette Top\",layoutDependency:layoutDependency,layoutId:\"WIfhnS6Bl\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)\",borderTopLeftRadius:17,borderTopRightRadius:17}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||570)-0-397.5)/2)+1+32+331.5-223),pixelHeight:820,pixelWidth:646,positionX:\"center\",positionY:\"top\",sizes:`min(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.3596, 300px)`,src:\"https://framerusercontent.com/images/2F1zXIV3FQNn0U7gZ63A6Ox2CYI.png\",srcSet:\"https://framerusercontent.com/images/2F1zXIV3FQNn0U7gZ63A6Ox2CYI.png 646w\"},className:\"framer-v42kf5\",\"data-framer-name\":\"Chart\",layoutDependency:layoutDependency,layoutId:\"DaNCn1QqZ\",...addPropertyOverrides({b5Kz59tXc:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||868)-0-1092)/2+0+0)+1+24+555-223),pixelHeight:820,pixelWidth:646,positionX:\"center\",positionY:\"top\",sizes:`min(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 48px, 1px) * 0.3596, 150px)`,src:\"https://framerusercontent.com/images/2F1zXIV3FQNn0U7gZ63A6Ox2CYI.png\",srcSet:\"https://framerusercontent.com/images/2F1zXIV3FQNn0U7gZ63A6Ox2CYI.png 646w\"}},rFf3yh507:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-166),pixelHeight:820,pixelWidth:646,positionX:\"center\",positionY:\"top\",sizes:`min(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.3853, 300px)`,src:\"https://framerusercontent.com/images/2F1zXIV3FQNn0U7gZ63A6Ox2CYI.png\",srcSet:\"https://framerusercontent.com/images/2F1zXIV3FQNn0U7gZ63A6Ox2CYI.png 646w\"}}},baseVariant,gestureVariant)})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:724,pixelWidth:954,src:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png\",srcSet:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png 954w\"},className:\"framer-1ee9983\",\"data-border\":true,\"data-framer-name\":\"Image Tab 2\",layoutDependency:layoutDependency,layoutId:\"ZOdYtfgWF\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},...addPropertyOverrides({h9w46JQPL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24),pixelHeight:724,pixelWidth:954,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png\",srcSet:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png 954w\"}},JYSDnjB8s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-222.03448275862067)/2)+1+32),pixelHeight:724,pixelWidth:954,sizes:`max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png\",srcSet:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png 954w\"}},YdKiWhAcP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+0+0)+1+24),pixelHeight:724,pixelWidth:954,sizes:`max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png\",srcSet:\"https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png?scale-down-to=512 512w,https://framerusercontent.com/images/TicZwKkKfj8dgOSInTu9Swk2Om4.png 954w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hpf6gg\",\"data-framer-name\":\"Vignette Bottom\",layoutDependency:layoutDependency,layoutId:\"QmlsO_MGE\",style:{background:\"linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)\",borderBottomLeftRadius:17,borderBottomRightRadius:17},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:3375,pixelWidth:6e3,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"},className:\"framer-1cxatc3\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"fNdwc0p0_\",style:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},...addPropertyOverrides({h9w46JQPL:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-172.03448275862067+172-57),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.218)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},JYSDnjB8s:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-222.03448275862067)/2)+1+32+156.03448275862067-172.03448275862067+172-52),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.1685)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},YdKiWhAcP:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+0+0)+1+24+555-172.03448275862067+172-57),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 48px, 1px) * 0.218)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-197hyhd\",\"data-framer-name\":\"Vignette Top\",layoutDependency:layoutDependency,layoutId:\"Xg4bSqok5\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)\",borderTopLeftRadius:17,borderTopRightRadius:17}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:266,pixelWidth:187,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/5vITKs06yKGS0708QTGl8Ucw.svg\"},className:\"framer-12cjbp8\",\"data-framer-name\":\"Chart\",layoutDependency:layoutDependency,layoutId:\"JuU9FMfWy\",...addPropertyOverrides({h9w46JQPL:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-204),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.4029)`,src:\"https://framerusercontent.com/images/HK1550VsfNV4NnAkSmnwws2i3w.png\",srcSet:\"https://framerusercontent.com/images/HK1550VsfNV4NnAkSmnwws2i3w.png 646w\"}},JYSDnjB8s:{__framer__animate:{transition:transition6},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||616)-0-222.03448275862067)/2)+1+32+156.03448275862067-236),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`min(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.3371, 300px)`,src:\"https://framerusercontent.com/images/HK1550VsfNV4NnAkSmnwws2i3w.png\",srcSet:\"https://framerusercontent.com/images/HK1550VsfNV4NnAkSmnwws2i3w.png 646w\"}},YdKiWhAcP:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||893)-0-1092)/2+0+0)+1+24+555-222),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`min(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 48px, 1px) * 0.375, 150px)`,src:\"https://framerusercontent.com/images/HK1550VsfNV4NnAkSmnwws2i3w.png\",srcSet:\"https://framerusercontent.com/images/HK1550VsfNV4NnAkSmnwws2i3w.png 646w\"}}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(ImageWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:false,__framer__enter:animation1,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:724,pixelWidth:954,src:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png\",srcSet:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png 954w\"},className:\"framer-13j5pnm\",\"data-border\":true,\"data-framer-name\":\"Image Tab 3\",layoutDependency:layoutDependency,layoutId:\"uXI_OydCi\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:17,borderBottomRightRadius:17,borderTopLeftRadius:17,borderTopRightRadius:17},...addPropertyOverrides({dYyzqvLxs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-222.03448275862067)/2)+1+32),pixelHeight:1664,pixelWidth:2912,sizes:`max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/cjE8VrmHqMnPzy91rl54j6g27U.png\",srcSet:\"https://framerusercontent.com/images/cjE8VrmHqMnPzy91rl54j6g27U.png?scale-down-to=512 512w,https://framerusercontent.com/images/cjE8VrmHqMnPzy91rl54j6g27U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cjE8VrmHqMnPzy91rl54j6g27U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cjE8VrmHqMnPzy91rl54j6g27U.png 2912w\"}},gTk1r8clM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+0+0)+1+23),pixelHeight:724,pixelWidth:954,sizes:`max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 46px, 1px)`,src:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png\",srcSet:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png 954w\"}},Mfkvm5s3P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+0+0)+1+23),pixelHeight:724,pixelWidth:954,sizes:`max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 46px, 1px)`,src:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png\",srcSet:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png 954w\"}},OguiCsy6k:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24),pixelHeight:724,pixelWidth:954,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png\",srcSet:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png 954w\"}},p6Ljcfsie:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-222.03448275862067)/2)+1+32),pixelHeight:928,pixelWidth:1232,sizes:`max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px)`,src:\"https://framerusercontent.com/images/lrPCbVbg7BM6TvdybeEFMQro6hw.png\",srcSet:\"https://framerusercontent.com/images/lrPCbVbg7BM6TvdybeEFMQro6hw.png?scale-down-to=512 512w,https://framerusercontent.com/images/lrPCbVbg7BM6TvdybeEFMQro6hw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/lrPCbVbg7BM6TvdybeEFMQro6hw.png 1232w\"}},sMJReq2nz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24),pixelHeight:724,pixelWidth:954,sizes:`max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px)`,src:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png\",srcSet:\"https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/FCRjxeNGu6u6CDbZ53xZjN0A5c.png 954w\"}}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v52q3i\",\"data-framer-name\":\"Vignette Bottom\",layoutDependency:layoutDependency,layoutId:\"O3XzGCobN\",style:{background:\"linear-gradient(0deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)\",borderBottomLeftRadius:17,borderBottomRightRadius:17},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:3375,pixelWidth:6e3,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"},className:\"framer-1abklxv\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"v0NPoq4ma\",style:{filter:\"contrast(0)\",WebkitFilter:\"contrast(0)\"},...addPropertyOverrides({dYyzqvLxs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-222.03448275862067)/2)+1+32+156.03448275862067-172.03448275862067+172-49),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.1708)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},gTk1r8clM:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+0+0)+1+23+555-172.03448275862067+172-57),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 46px, 1px) * 0.218)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},Mfkvm5s3P:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+0+0)+1+23+555-172.03448275862067+172-57),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 46px, 1px) * 0.218)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},OguiCsy6k:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-172.03448275862067+172-57),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.218)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},p6Ljcfsie:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-222.03448275862067)/2)+1+32+156.03448275862067-172.03448275862067+172-45),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.1708)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}},sMJReq2nz:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-172.03448275862067+172-57),pixelHeight:3375,pixelWidth:6e3,sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.218)`,src:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png\",srcSet:\"https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=512 512w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Vv5aRtR3FKbJNMrslTCUAZSdQg.png 6000w\"}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y2dw7m\",\"data-framer-name\":\"Vignette Top\",layoutDependency:layoutDependency,layoutId:\"zzakMTKfY\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 100%)\",borderTopLeftRadius:17,borderTopRightRadius:17}}),/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:186,pixelWidth:189,positionX:\"left\",positionY:\"center\",src:\"https://framerusercontent.com/images/azmyUMlXe9wTCJlIkAJkf3qR9R4.svg\"},className:\"framer-160azom\",\"data-framer-name\":\"Chart\",layoutDependency:layoutDependency,layoutId:\"el11ho5in\",...addPropertyOverrides({dYyzqvLxs:{__framer__animate:{transition:transition6},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||602)-0-222.03448275862067)/2)+1+32+156.03448275862067-215),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`min(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.3371, 300px)`,src:\"https://framerusercontent.com/images/WJkIBDJxWcul6cRl7oUsDUQJsbw.png\",srcSet:\"https://framerusercontent.com/images/WJkIBDJxWcul6cRl7oUsDUQJsbw.png 646w\"}},gTk1r8clM:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+0+0)+1+23+555-231),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`min(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 46px, 1px) / 2.68, 150px)`,src:\"https://framerusercontent.com/images/WJkIBDJxWcul6cRl7oUsDUQJsbw.png\",srcSet:\"https://framerusercontent.com/images/WJkIBDJxWcul6cRl7oUsDUQJsbw.png 646w\"}},Mfkvm5s3P:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||867)-0-1090)/2+0+0)+1+23+555-213),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`min(max(max(min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 450px) - 2px, 1px) - 46px, 1px) / 2.68, 150px)`,src:\"https://framerusercontent.com/images/mPTYNp2xlgTbdwj0o0o0pDDKb94.png\",srcSet:\"https://framerusercontent.com/images/mPTYNp2xlgTbdwj0o0o0pDDKb94.png 646w\"}},OguiCsy6k:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-179),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.3912)`,src:\"https://framerusercontent.com/images/mPTYNp2xlgTbdwj0o0o0pDDKb94.png\",srcSet:\"https://framerusercontent.com/images/mPTYNp2xlgTbdwj0o0o0pDDKb94.png 646w\"}},p6Ljcfsie:{__framer__animate:{transition:transition6},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(0+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||622)-0-222.03448275862067)/2)+1+32+156.03448275862067-204),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`min(max(max(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 60px) / 2, 1px) - 2px, 1px) - 64px, 1px) * 0.3371, 300px)`,src:\"https://framerusercontent.com/images/mPTYNp2xlgTbdwj0o0o0pDDKb94.png\",srcSet:\"https://framerusercontent.com/images/mPTYNp2xlgTbdwj0o0o0pDDKb94.png 646w\"}},sMJReq2nz:{__framer__animate:{transition:transition7},background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+((((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||836)-0-1084)/2+0+0)+1+24+555-199),pixelHeight:820,pixelWidth:646,positionX:\"left\",positionY:\"center\",sizes:`calc(max(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 2px, 1px) - 48px, 1px) * 0.3912)`,src:\"https://framerusercontent.com/images/WJkIBDJxWcul6cRl7oUsDUQJsbw.png\",srcSet:\"https://framerusercontent.com/images/WJkIBDJxWcul6cRl7oUsDUQJsbw.png 646w\"}}},baseVariant,gestureVariant)})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dBmFW.framer-mfr24h, .framer-dBmFW .framer-mfr24h { display: block; }\",\".framer-dBmFW.framer-bt4e49 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1080px; }\",\".framer-dBmFW .framer-15lh1s3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dBmFW .framer-1xjtmm4-container, .framer-dBmFW .framer-o74g5a-container, .framer-dBmFW .framer-14h5cbn-container, .framer-dBmFW .framer-4j2xrs-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dBmFW .framer-1106aim, .framer-dBmFW .framer-1i9kx0x, .framer-dBmFW .framer-ebg6lo { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dBmFW .framer-1mnml5b { 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: center; padding: 1px; position: relative; width: 1px; }\",\".framer-dBmFW .framer-3m7v3y { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dBmFW .framer-z1hqop { aspect-ratio: 1.281767955801105 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 347px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dBmFW .framer-f2lfj9, .framer-dBmFW .framer-1hpf6gg, .framer-dBmFW .framer-1v52q3i { bottom: 0px; flex: none; height: 172px; left: 0px; position: absolute; right: 0px; }\",\".framer-dBmFW .framer-189v9p2 { aspect-ratio: 2.6216216216216215 / 1; bottom: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 20px; overflow: visible; position: absolute; width: 17%; }\",\".framer-dBmFW .framer-1wwqp3u, .framer-dBmFW .framer-197hyhd, .framer-dBmFW .framer-1y2dw7m { flex: none; height: 172px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-dBmFW .framer-v42kf5 { aspect-ratio: 0.788546255506608 / 1; bottom: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 203px); max-width: 300px; overflow: visible; position: absolute; right: 20px; width: 36%; }\",\".framer-dBmFW .framer-1ee9983, .framer-dBmFW .framer-13j5pnm { aspect-ratio: 1.281767955801105 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 156px); overflow: hidden; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dBmFW .framer-1cxatc3, .framer-dBmFW .framer-1abklxv { aspect-ratio: 2.6216216216216215 / 1; bottom: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 76px); left: 20px; overflow: visible; position: absolute; width: 22%; }\",\".framer-dBmFW .framer-12cjbp8 { aspect-ratio: 0.7030075187969925 / 1; bottom: 6px; flex: none; height: var(--framer-aspect-ratio-supported, 284px); overflow: visible; position: absolute; right: 6px; width: 40%; }\",\".framer-dBmFW .framer-160azom { aspect-ratio: 1.0161290322580645 / 1; bottom: 36px; flex: none; height: var(--framer-aspect-ratio-supported, 197px); overflow: visible; position: absolute; right: 16px; width: 41%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-bt4e49, .framer-dBmFW .framer-15lh1s3, .framer-dBmFW .framer-1mnml5b, .framer-dBmFW .framer-3m7v3y { gap: 0px; } .framer-dBmFW.framer-bt4e49 > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-dBmFW.framer-bt4e49 > :first-child, .framer-dBmFW .framer-1mnml5b > :first-child, .framer-dBmFW .framer-3m7v3y > :first-child { margin-left: 0px; } .framer-dBmFW.framer-bt4e49 > :last-child, .framer-dBmFW .framer-1mnml5b > :last-child, .framer-dBmFW .framer-3m7v3y > :last-child { margin-right: 0px; } .framer-dBmFW .framer-15lh1s3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-dBmFW .framer-15lh1s3 > :first-child { margin-top: 0px; } .framer-dBmFW .framer-15lh1s3 > :last-child { margin-bottom: 0px; } .framer-dBmFW .framer-1mnml5b > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-dBmFW .framer-3m7v3y > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-dBmFW.framer-v-1rg46ak .framer-1ee9983 { height: var(--framer-aspect-ratio-supported, 348px); }\",\".framer-dBmFW.framer-v-1rg46ak .framer-1cxatc3 { bottom: 23px; height: var(--framer-aspect-ratio-supported, 29px); left: 21px; width: 17%; }\",\".framer-dBmFW.framer-v-1rg46ak .framer-12cjbp8 { bottom: 23px; height: var(--framer-aspect-ratio-supported, 214px); max-width: 300px; right: 29px; width: 34%; }\",\".framer-dBmFW.framer-v-uaqf11 .framer-13j5pnm, .framer-dBmFW.framer-v-191i70i .framer-13j5pnm { height: var(--framer-aspect-ratio-supported, 347px); }\",\".framer-dBmFW.framer-v-uaqf11 .framer-1abklxv { bottom: 16px; height: var(--framer-aspect-ratio-supported, 29px); left: 24px; width: 17%; }\",\".framer-dBmFW.framer-v-uaqf11 .framer-160azom { aspect-ratio: 0.7978723404255319 / 1; bottom: 16px; height: var(--framer-aspect-ratio-supported, 188px); max-width: 300px; right: 37px; width: 34%; }\",\".framer-dBmFW.framer-v-12gny5q.framer-bt4e49, .framer-dBmFW.framer-v-1yc9gcv.framer-bt4e49, .framer-dBmFW.framer-v-m7e4zg.framer-bt4e49, .framer-dBmFW.framer-v-9toc86.framer-bt4e49 { flex-direction: column; gap: 40px; width: 740px; }\",\".framer-dBmFW.framer-v-12gny5q .framer-15lh1s3, .framer-dBmFW.framer-v-1yc9gcv .framer-15lh1s3, .framer-dBmFW.framer-v-m7e4zg .framer-15lh1s3, .framer-dBmFW.framer-v-1ncgle .framer-15lh1s3, .framer-dBmFW.framer-v-1xg1rf8 .framer-15lh1s3, .framer-dBmFW.framer-v-1ppqci7 .framer-15lh1s3, .framer-dBmFW.framer-v-9toc86 .framer-15lh1s3, .framer-dBmFW.framer-v-jizdjz .framer-15lh1s3 { flex: none; order: 1; width: 100%; }\",\".framer-dBmFW.framer-v-12gny5q .framer-1mnml5b, .framer-dBmFW.framer-v-1yc9gcv .framer-1mnml5b, .framer-dBmFW.framer-v-m7e4zg .framer-1mnml5b, .framer-dBmFW.framer-v-9toc86 .framer-1mnml5b { flex: none; max-width: 450px; order: 0; width: 100%; }\",\".framer-dBmFW.framer-v-12gny5q .framer-3m7v3y, .framer-dBmFW.framer-v-1yc9gcv .framer-3m7v3y, .framer-dBmFW.framer-v-1ncgle .framer-3m7v3y, .framer-dBmFW.framer-v-1xg1rf8 .framer-3m7v3y, .framer-dBmFW.framer-v-1ppqci7 .framer-3m7v3y, .framer-dBmFW.framer-v-jizdjz .framer-3m7v3y { padding: 24px; }\",\".framer-dBmFW.framer-v-12gny5q .framer-z1hqop, .framer-dBmFW.framer-v-1yc9gcv .framer-1ee9983 { aspect-ratio: 1.2252252252252251 / 1; height: var(--framer-aspect-ratio-supported, 326px); }\",\".framer-dBmFW.framer-v-12gny5q .framer-189v9p2 { height: var(--framer-aspect-ratio-supported, 26px); max-width: 160px; }\",\".framer-dBmFW.framer-v-12gny5q .framer-v42kf5 { height: var(--framer-aspect-ratio-supported, 182px); max-width: 150px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-12gny5q.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-12gny5q.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dBmFW.framer-v-12gny5q.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-12gny5q.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-1yc9gcv .framer-1cxatc3, .framer-dBmFW.framer-v-m7e4zg .framer-1abklxv, .framer-dBmFW.framer-v-9toc86 .framer-1abklxv { height: var(--framer-aspect-ratio-supported, 33px); }\",\".framer-dBmFW.framer-v-1yc9gcv .framer-12cjbp8 { bottom: 9px; height: var(--framer-aspect-ratio-supported, 213px); max-width: 150px; right: 25px; width: 38%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-1yc9gcv.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-1yc9gcv.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dBmFW.framer-v-1yc9gcv.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-1yc9gcv.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-m7e4zg .framer-3m7v3y, .framer-dBmFW.framer-v-9toc86 .framer-3m7v3y { padding: 23px; }\",\".framer-dBmFW.framer-v-m7e4zg .framer-13j5pnm, .framer-dBmFW.framer-v-9toc86 .framer-13j5pnm { aspect-ratio: 1.2252252252252251 / 1; height: var(--framer-aspect-ratio-supported, 328px); }\",\".framer-dBmFW.framer-v-m7e4zg .framer-160azom { aspect-ratio: 0.7772020725388601 / 1; bottom: 20px; height: var(--framer-aspect-ratio-supported, 193px); max-width: 150px; right: 38px; width: 37%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-m7e4zg.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-m7e4zg.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dBmFW.framer-v-m7e4zg.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-m7e4zg.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-1ncgle.framer-bt4e49, .framer-dBmFW.framer-v-1xg1rf8.framer-bt4e49, .framer-dBmFW.framer-v-1ppqci7.framer-bt4e49, .framer-dBmFW.framer-v-jizdjz.framer-bt4e49 { flex-direction: column; gap: 32px; width: 390px; }\",\".framer-dBmFW.framer-v-1ncgle .framer-1mnml5b, .framer-dBmFW.framer-v-1xg1rf8 .framer-1mnml5b, .framer-dBmFW.framer-v-1ppqci7 .framer-1mnml5b, .framer-dBmFW.framer-v-jizdjz .framer-1mnml5b { flex: none; order: 0; width: 100%; }\",\".framer-dBmFW.framer-v-1ncgle .framer-z1hqop, .framer-dBmFW.framer-v-1xg1rf8 .framer-1ee9983, .framer-dBmFW.framer-v-1ppqci7 .framer-13j5pnm, .framer-dBmFW.framer-v-jizdjz .framer-13j5pnm { aspect-ratio: 1.2252252252252251 / 1; height: var(--framer-aspect-ratio-supported, 278px); }\",\".framer-dBmFW.framer-v-1ncgle .framer-189v9p2 { bottom: 24px; height: var(--framer-aspect-ratio-supported, 34px); left: 24px; width: 26%; }\",\".framer-dBmFW.framer-v-1ncgle .framer-v42kf5 { bottom: 0px; height: var(--framer-aspect-ratio-supported, 167px); right: 24px; width: 39%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-1ncgle.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-1ncgle.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dBmFW.framer-v-1ncgle.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-1ncgle.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-1xjtmm4-container, .framer-dBmFW.framer-v-191i70i .framer-1xjtmm4-container { order: 0; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-1106aim, .framer-dBmFW.framer-v-191i70i .framer-1106aim { order: 1; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-o74g5a-container, .framer-dBmFW.framer-v-191i70i .framer-o74g5a-container { order: 2; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-1i9kx0x, .framer-dBmFW.framer-v-191i70i .framer-1i9kx0x { order: 3; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-14h5cbn-container, .framer-dBmFW.framer-v-191i70i .framer-14h5cbn-container { order: 4; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-ebg6lo, .framer-dBmFW.framer-v-191i70i .framer-ebg6lo { order: 5; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-4j2xrs-container, .framer-dBmFW.framer-v-191i70i .framer-4j2xrs-container { order: 6; }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-1cxatc3, .framer-dBmFW.framer-v-1ppqci7 .framer-1abklxv, .framer-dBmFW.framer-v-jizdjz .framer-1abklxv { height: var(--framer-aspect-ratio-supported, 28px); }\",\".framer-dBmFW.framer-v-1xg1rf8 .framer-12cjbp8 { bottom: 9px; height: var(--framer-aspect-ratio-supported, 195px); right: 22px; width: 40%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-1xg1rf8.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-1xg1rf8.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dBmFW.framer-v-1xg1rf8.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-1xg1rf8.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-1ppqci7 .framer-160azom { aspect-ratio: 0.7916666666666666 / 1; bottom: 11px; height: var(--framer-aspect-ratio-supported, 168px); right: 24px; width: 39%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-1ppqci7.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-1ppqci7.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dBmFW.framer-v-1ppqci7.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-1ppqci7.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-191i70i .framer-1abklxv { height: var(--framer-aspect-ratio-supported, 29px); width: 17%; }\",\".framer-dBmFW.framer-v-191i70i .framer-160azom { aspect-ratio: 0.7731958762886598 / 1; bottom: 21px; height: var(--framer-aspect-ratio-supported, 194px); max-width: 300px; right: 19px; width: 34%; }\",\".framer-dBmFW.framer-v-9toc86 .framer-160azom { aspect-ratio: 0.7692307692307693 / 1; height: var(--framer-aspect-ratio-supported, 195px); max-width: 150px; right: 15px; width: 37%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-9toc86.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-9toc86.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-dBmFW.framer-v-9toc86.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-9toc86.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",\".framer-dBmFW.framer-v-jizdjz .framer-160azom { aspect-ratio: 0.7150537634408602 / 1; bottom: 13px; height: var(--framer-aspect-ratio-supported, 186px); width: 39%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-dBmFW.framer-v-jizdjz.framer-bt4e49 { gap: 0px; } .framer-dBmFW.framer-v-jizdjz.framer-bt4e49 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-dBmFW.framer-v-jizdjz.framer-bt4e49 > :first-child { margin-top: 0px; } .framer-dBmFW.framer-v-jizdjz.framer-bt4e49 > :last-child { margin-bottom: 0px; } }\",'.framer-dBmFW[data-border=\"true\"]::after, .framer-dBmFW [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 570\n * @framerIntrinsicWidth 1080\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"JYSDnjB8s\":{\"layout\":[\"fixed\",\"auto\"]},\"p6Ljcfsie\":{\"layout\":[\"fixed\",\"auto\"]},\"b5Kz59tXc\":{\"layout\":[\"fixed\",\"auto\"]},\"YdKiWhAcP\":{\"layout\":[\"fixed\",\"auto\"]},\"Mfkvm5s3P\":{\"layout\":[\"fixed\",\"auto\"]},\"rFf3yh507\":{\"layout\":[\"fixed\",\"auto\"]},\"h9w46JQPL\":{\"layout\":[\"fixed\",\"auto\"]},\"OguiCsy6k\":{\"layout\":[\"fixed\",\"auto\"]},\"dYyzqvLxs\":{\"layout\":[\"fixed\",\"auto\"]},\"gTk1r8clM\":{\"layout\":[\"fixed\",\"auto\"]},\"sMJReq2nz\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerDHtNFmCEk=withCSS(Component,css,\"framer-dBmFW\");export default FramerDHtNFmCEk;FramerDHtNFmCEk.displayName=\"Tabs-user\";FramerDHtNFmCEk.defaultProps={height:570,width:1080};addPropertyControls(FramerDHtNFmCEk,{variant:{options:[\"V39pdWwlg\",\"JYSDnjB8s\",\"p6Ljcfsie\",\"b5Kz59tXc\",\"YdKiWhAcP\",\"Mfkvm5s3P\",\"rFf3yh507\",\"h9w46JQPL\",\"OguiCsy6k\",\"dYyzqvLxs\",\"gTk1r8clM\",\"sMJReq2nz\"],optionTitles:[\"Desktop Tab 1\",\"Desktop Tab 2\",\"Desktop Tab 3\",\"Responsive Tab 1\",\"Responsive Tab 2\",\"Responsive Tab 3\",\"Mobile Tab 1\",\"Mobile Tab 2\",\"Mobile Tab 3\",\"Variant 10\",\"Variant 11\",\"Variant 12\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerDHtNFmCEk,[{explicitInter:true,fonts:[]},...TabUserItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDHtNFmCEk\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"570\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1080\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"JYSDnjB8s\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p6Ljcfsie\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"b5Kz59tXc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YdKiWhAcP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Mfkvm5s3P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rFf3yh507\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"h9w46JQPL\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OguiCsy6k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dYyzqvLxs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gTk1r8clM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"sMJReq2nz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./DHtNFmCEk.map", "// Generated by Framer (575e68f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const RichTextWithFX=withFX(RichText);const FeatherControls=getPropertyControls(Feather);const cycleOrder=[\"NLAv3_qpb\",\"LU678UefB\",\"MYcyiNI7w\"];const serializationHash=\"framer-rsz9h\";const variantClassNames={LU678UefB:\"framer-v-1wgfo5d\",MYcyiNI7w:\"framer-v-1cbqt30\",NLAv3_qpb:\"framer-v-rlnhre\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition2={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableEnumMap={\"Alert-circle\":\"alert-circle\",\"Alert-octagon\":\"alert-octagon\",\"Alert-triangle\":\"alert-triangle\",\"Align-center\":\"align-center\",\"Align-justify\":\"align-justify\",\"Align-left\":\"align-left\",\"Align-right\":\"align-right\",\"Arrow-down-circle\":\"arrow-down-circle\",\"Arrow-down-left\":\"arrow-down-left\",\"Arrow-down-right\":\"arrow-down-right\",\"Arrow-down\":\"arrow-down\",\"Arrow-left-circle\":\"arrow-left-circle\",\"Arrow-left\":\"arrow-left\",\"Arrow-right-circle\":\"arrow-right-circle\",\"Arrow-right\":\"arrow-right\",\"Arrow-up-circle\":\"arrow-up-circle\",\"Arrow-up-left\":\"arrow-up-left\",\"Arrow-up-right\":\"arrow-up-right\",\"Arrow-up\":\"arrow-up\",\"At-sign\":\"at-sign\",\"Bar-chart-2\":\"bar-chart-2\",\"Bar-chart\":\"bar-chart\",\"Battery-charging\":\"battery-charging\",\"Bell-off\":\"bell-off\",\"Book-open\":\"book-open\",\"Camera-off\":\"camera-off\",\"Check-circle\":\"check-circle\",\"Check-square\":\"check-square\",\"Chevron-down\":\"chevron-down\",\"Chevron-left\":\"chevron-left\",\"Chevron-right\":\"chevron-right\",\"Chevron-up\":\"chevron-up\",\"Chevrons-down\":\"chevrons-down\",\"Chevrons-left\":\"chevrons-left\",\"Chevrons-right\":\"chevrons-right\",\"Chevrons-up\":\"chevrons-up\",\"Cloud-drizzle\":\"cloud-drizzle\",\"Cloud-lightning\":\"cloud-lightning\",\"Cloud-off\":\"cloud-off\",\"Cloud-rain\":\"cloud-rain\",\"Cloud-snow\":\"cloud-snow\",\"Corner-down-left\":\"corner-down-left\",\"Corner-down-right\":\"corner-down-right\",\"Corner-left-down\":\"corner-left-down\",\"Corner-left-up\":\"corner-left-up\",\"Corner-right-down\":\"corner-right-down\",\"Corner-right-up\":\"corner-right-up\",\"Corner-up-left\":\"corner-up-left\",\"Corner-up-right\":\"corner-up-right\",\"Credit-card\":\"credit-card\",\"Divide-circle\":\"divide-circle\",\"Divide-square\":\"divide-square\",\"Dollar-sign\":\"dollar-sign\",\"Download-cloud\":\"download-cloud\",\"Edit-2\":\"edit-2\",\"Edit-3\":\"edit-3\",\"External-link\":\"external-link\",\"Eye-off\":\"eye-off\",\"Fast-forward\":\"fast-forward\",\"File-minus\":\"file-minus\",\"File-plus\":\"file-plus\",\"File-text\":\"file-text\",\"Folder-minus\":\"folder-minus\",\"Folder-plus\":\"folder-plus\",\"Git-branch\":\"git-branch\",\"Git-commit\":\"git-commit\",\"Git-merge\":\"git-merge\",\"Git-pull-request\":\"git-pull-request\",\"Hard-drive\":\"hard-drive\",\"Help-circle\":\"help-circle\",\"Life-buoy\":\"life-buoy\",\"Link-2\":\"link-2\",\"Log-in\":\"log-in\",\"Log-out\":\"log-out\",\"Map-pin\":\"map-pin\",\"Maximize-2\":\"maximize-2\",\"Message-circle\":\"message-circle\",\"Message-square\":\"message-square\",\"Mic-off\":\"mic-off\",\"Minimize-2\":\"minimize-2\",\"Minus-circle\":\"minus-circle\",\"Minus-square\":\"minus-square\",\"More-horizontal\":\"more-horizontal\",\"More-vertical\":\"more-vertical\",\"Mouse-pointer\":\"mouse-pointer\",\"Navigation-2\":\"navigation-2\",\"Pause-circle\":\"pause-circle\",\"Pen-tool\":\"pen-tool\",\"Phone-call\":\"phone-call\",\"Phone-forwarded\":\"phone-forwarded\",\"Phone-incoming\":\"phone-incoming\",\"Phone-missed\":\"phone-missed\",\"Phone-off\":\"phone-off\",\"Phone-outgoing\":\"phone-outgoing\",\"Pie-chart\":\"pie-chart\",\"Play-circle\":\"play-circle\",\"Plus-circle\":\"plus-circle\",\"Plus-square\":\"plus-square\",\"Refresh-ccw\":\"refresh-ccw\",\"Refresh-cw\":\"refresh-cw\",\"Rotate-ccw\":\"rotate-ccw\",\"Rotate-cw\":\"rotate-cw\",\"Share-2\":\"share-2\",\"Shield-off\":\"shield-off\",\"Shopping-bag\":\"shopping-bag\",\"Shopping-cart\":\"shopping-cart\",\"Skip-back\":\"skip-back\",\"Skip-forward\":\"skip-forward\",\"Stop-circle\":\"stop-circle\",\"Thumbs-down\":\"thumbs-down\",\"Thumbs-up\":\"thumbs-up\",\"Toggle-left\":\"toggle-left\",\"Toggle-right\":\"toggle-right\",\"Trash-2\":\"trash-2\",\"Trending-down\":\"trending-down\",\"Trending-up\":\"trending-up\",\"Upload-cloud\":\"upload-cloud\",\"User-check\":\"user-check\",\"User-minus\":\"user-minus\",\"User-plus\":\"user-plus\",\"User-x\":\"user-x\",\"Video-off\":\"video-off\",\"Volume-1\":\"volume-1\",\"Volume-2\":\"volume-2\",\"Volume-x\":\"volume-x\",\"Wifi-off\":\"wifi-off\",\"X-circle\":\"x-circle\",\"X-octagon\":\"x-octagon\",\"X-square\":\"x-square\",\"Zap-off\":\"zap-off\",\"Zoom-in\":\"zoom-in\",\"Zoom-out\":\"zoom-out\",Activity:\"activity\",Airplay:\"airplay\",Anchor:\"anchor\",Aperture:\"aperture\",Archive:\"archive\",Award:\"award\",Battery:\"battery\",Bell:\"bell\",Bluetooth:\"bluetooth\",Bold:\"bold\",Book:\"book\",Bookmark:\"bookmark\",Box:\"box\",Briefcase:\"briefcase\",Calendar:\"calendar\",Camera:\"camera\",Cast:\"cast\",Check:\"check\",Chrome:\"chrome\",Circle:\"circle\",Clipboard:\"clipboard\",Clock:\"clock\",Cloud:\"cloud\",Code:\"code\",Codepen:\"codepen\",Codesandbox:\"codesandbox\",Coffee:\"coffee\",Columns:\"columns\",Command:\"command\",Compass:\"compass\",Copy:\"copy\",Cpu:\"cpu\",Crop:\"crop\",Crosshair:\"crosshair\",Database:\"database\",Delete:\"delete\",Disc:\"disc\",Divide:\"divide\",Download:\"download\",Dribbble:\"dribbble\",Droplet:\"droplet\",Edit:\"edit\",Eye:\"eye\",Facebook:\"facebook\",Feather:\"feather\",Figma:\"figma\",File:\"file\",Film:\"film\",Filter:\"filter\",Flag:\"flag\",Folder:\"folder\",Framer:\"framer\",Frown:\"frown\",Gift:\"gift\",Github:\"github\",Gitlab:\"gitlab\",Globe:\"globe\",Grid:\"grid\",Hash:\"hash\",Headphones:\"headphones\",Heart:\"heart\",Hexagon:\"hexagon\",Home:\"home\",Image:\"image\",Inbox:\"inbox\",Info:\"info\",Instagram:\"instagram\",Italic:\"italic\",Key:\"key\",Layers:\"layers\",Layout:\"layout\",Link:\"link\",Linkedin:\"linkedin\",List:\"list\",Loader:\"loader\",Lock:\"lock\",Mail:\"mail\",Map:\"map\",Maximize:\"maximize\",Meh:\"meh\",Menu:\"menu\",Mic:\"mic\",Minimize:\"minimize\",Minus:\"minus\",Monitor:\"monitor\",Moon:\"moon\",Move:\"move\",Music:\"music\",Navigation:\"navigation\",Octagon:\"octagon\",Package:\"package\",Paperclip:\"paperclip\",Pause:\"pause\",Percent:\"percent\",Phone:\"phone\",Play:\"play\",Plus:\"plus\",Pocket:\"pocket\",Power:\"power\",Printer:\"printer\",Radio:\"radio\",Repeat:\"repeat\",Rewind:\"rewind\",Rss:\"rss\",Save:\"save\",Scissors:\"scissors\",Search:\"search\",Send:\"send\",Server:\"server\",Settings:\"settings\",Share:\"share\",Shield:\"shield\",Shuffle:\"shuffle\",Sidebar:\"sidebar\",Slack:\"slack\",Slash:\"slash\",Sliders:\"sliders\",Smartphone:\"smartphone\",Smile:\"smile\",Speaker:\"speaker\",Square:\"square\",Star:\"star\",Sun:\"sun\",Sunrise:\"sunrise\",Sunset:\"sunset\",Tablet:\"tablet\",Tag:\"tag\",Target:\"target\",Terminal:\"terminal\",Thermometer:\"thermometer\",Tool:\"tool\",Trash:\"trash\",Trello:\"trello\",Triangle:\"triangle\",Truck:\"truck\",Tv:\"tv\",Twitch:\"twitch\",Twitter:\"twitter\",Type:\"type\",Umbrella:\"umbrella\",Underline:\"underline\",Unlock:\"unlock\",Upload:\"upload\",User:\"user\",Users:\"users\",Video:\"video\",Voicemail:\"voicemail\",Volume:\"volume\",Watch:\"watch\",Wifi:\"wifi\",Wind:\"wind\",X:\"x\",Youtube:\"youtube\",Zap:\"zap\"};const humanReadableVariantMap={\"No Border\":\"MYcyiNI7w\",Highlight:\"LU678UefB\",Standard:\"NLAv3_qpb\"};const getProps=({color,description,fontSize,fontSize2,height,icon2,id,title,width,...props})=>{var _ref,_humanReadableEnumMap_icon2,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5,_ref6,_ref7;return{...props,gIr0VvvDR:(_ref=title!==null&&title!==void 0?title:props.gIr0VvvDR)!==null&&_ref!==void 0?_ref:\"Title\",I36D_5Y1i:(_ref2=(_ref1=(_humanReadableEnumMap_icon2=humanReadableEnumMap[icon2])!==null&&_humanReadableEnumMap_icon2!==void 0?_humanReadableEnumMap_icon2:icon2)!==null&&_ref1!==void 0?_ref1:props.I36D_5Y1i)!==null&&_ref2!==void 0?_ref2:\"arrow-up-right\",MFVA7ij9u:(_ref3=fontSize2!==null&&fontSize2!==void 0?fontSize2:props.MFVA7ij9u)!==null&&_ref3!==void 0?_ref3:20,QENiZ8anS:(_ref4=description!==null&&description!==void 0?description:props.QENiZ8anS)!==null&&_ref4!==void 0?_ref4:\"Pick a plan and load up as many requests as you like.\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"NLAv3_qpb\",z8uHQkOla:(_ref6=fontSize!==null&&fontSize!==void 0?fontSize:props.z8uHQkOla)!==null&&_ref6!==void 0?_ref6:35,ZNdiKURdO:(_ref7=color!==null&&color!==void 0?color:props.ZNdiKURdO)!==null&&_ref7!==void 0?_ref7:\"var(--token-3b9b1f86-72cb-4f21-ac70-116c191c1939, rgb(17, 25, 34))\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gIr0VvvDR,QENiZ8anS,I36D_5Y1i,ZNdiKURdO,z8uHQkOla,MFVA7ij9u,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NLAv3_qpb\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rlnhre\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Standard\",layoutDependency:layoutDependency,layoutId:\"NLAv3_qpb\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-77a3af5c-f1f7-45a7-9b38-4967690b5f4d, rgb(138, 138, 138))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",...style},variants:{LU678UefB:{\"--border-color\":\"rgb(255, 255, 255)\"},MYcyiNI7w:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({LU678UefB:{\"data-framer-name\":\"Highlight\"},MYcyiNI7w:{\"data-framer-name\":\"No Border\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kqkcro-container\",layoutDependency:layoutDependency,layoutId:\"wZwyT2Osz-container\",children:/*#__PURE__*/_jsx(Feather,{color:ZNdiKURdO,height:\"100%\",iconSearch:\"Home\",iconSelection:I36D_5Y1i,id:\"wZwyT2Osz\",layoutId:\"wZwyT2Osz\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wp5nsa\",layoutDependency:layoutDependency,layoutId:\"YdfKa35iZ\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-z8uHQkOla-FJBf46eAM) * 1px)\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"Title\"})})}),className:\"framer-z9qti8\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"lH1el6uHy\",style:{\"--extracted-1of0zx5\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\",\"--variable-reference-z8uHQkOla-FJBf46eAM\":z8uHQkOla,transformPerspective:1200},text:gIr0VvvDR,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LU678UefB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(168, 168, 168) 0%, var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40)) 100%)\"},children:\"Title\"})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-MFVA7ij9u-FJBf46eAM) * 1px)\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-182fadc0-97cb-4d14-b0e6-df41b89be08b, rgb(221, 214, 197)))\"},children:\"Pick a plan and load up as many requests as you like.\"})}),className:\"framer-12aah61\",fonts:[\"CUSTOM;Pretendard Thin\"],layoutDependency:layoutDependency,layoutId:\"e7Z_h4HCL\",style:{\"--extracted-r6o4lv\":\"var(--token-182fadc0-97cb-4d14-b0e6-df41b89be08b, rgb(221, 214, 197))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-MFVA7ij9u-FJBf46eAM\":MFVA7ij9u,textShadow:\"0px 0px 8px rgba(155, 221, 237, 0)\"},text:QENiZ8anS,variants:{LU678UefB:{\"--extracted-r6o4lv\":\"var(--token-04cac395-0457-40b8-8ff4-6a09f2402fcb, rgb(13, 13, 13))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({LU678UefB:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"calc(var(--variable-reference-MFVA7ij9u-FJBf46eAM) * 1px)\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-04cac395-0457-40b8-8ff4-6a09f2402fcb, rgb(13, 13, 13)))\"},children:\"Pick a plan and load up as many requests as you like.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rsz9h.framer-9oralg, .framer-rsz9h .framer-9oralg { display: block; }\",\".framer-rsz9h.framer-rlnhre { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 400px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 300px; }\",\".framer-rsz9h .framer-1kqkcro-container { flex: none; height: 32px; position: absolute; right: 24px; top: 22px; width: 32px; z-index: 1; }\",\".framer-rsz9h .framer-wp5nsa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-rsz9h .framer-z9qti8, .framer-rsz9h .framer-12aah61 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rsz9h.framer-rlnhre, .framer-rsz9h .framer-wp5nsa { gap: 0px; } .framer-rsz9h.framer-rlnhre > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-rsz9h.framer-rlnhre > :first-child, .framer-rsz9h .framer-wp5nsa > :first-child { margin-top: 0px; } .framer-rsz9h.framer-rlnhre > :last-child, .framer-rsz9h .framer-wp5nsa > :last-child { margin-bottom: 0px; } .framer-rsz9h .framer-wp5nsa > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }\",'.framer-rsz9h[data-border=\"true\"]::after, .framer-rsz9h [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 400\n * @framerIntrinsicWidth 300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"LU678UefB\":{\"layout\":[\"fixed\",\"fixed\"]},\"MYcyiNI7w\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gIr0VvvDR\":\"title\",\"QENiZ8anS\":\"description\",\"I36D_5Y1i\":\"icon2\",\"ZNdiKURdO\":\"color\",\"z8uHQkOla\":\"fontSize\",\"MFVA7ij9u\":\"fontSize2\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerFJBf46eAM=withCSS(Component,css,\"framer-rsz9h\");export default FramerFJBf46eAM;FramerFJBf46eAM.displayName=\"Stack\";FramerFJBf46eAM.defaultProps={height:400,width:300};addPropertyControls(FramerFJBf46eAM,{variant:{options:[\"NLAv3_qpb\",\"LU678UefB\",\"MYcyiNI7w\"],optionTitles:[\"Standard\",\"Highlight\",\"No Border\"],title:\"Variant\",type:ControlType.Enum},gIr0VvvDR:{defaultValue:\"Title\",displayTextArea:false,title:\"Title\",type:ControlType.String},QENiZ8anS:{defaultValue:\"Pick a plan and load up as many requests as you like.\",displayTextArea:false,title:\"Description\",type:ControlType.String},I36D_5Y1i:(FeatherControls===null||FeatherControls===void 0?void 0:FeatherControls[\"iconSelection\"])&&{...FeatherControls[\"iconSelection\"],defaultValue:\"arrow-up-right\",description:undefined,hidden:undefined,title:\"Icon-2\"},ZNdiKURdO:{defaultValue:'var(--token-3b9b1f86-72cb-4f21-ac70-116c191c1939, rgb(17, 25, 34)) /* {\"name\":\"Neutral 500\"} */',title:\"Color\",type:ControlType.Color},z8uHQkOla:{defaultValue:35,title:\"Font Size\",type:ControlType.Number},MFVA7ij9u:{defaultValue:20,title:\"Font Size 2\",type:ControlType.Number}});addFonts(FramerFJBf46eAM,[{explicitInter:true,fonts:[{family:\"Pretendard Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/G3FL4LTaa96H8ca4MBoVwAQ4M.woff\"},{family:\"Pretendard Thin\",source:\"custom\",url:\"https://framerusercontent.com/assets/3UMg8tMu0hDqDQXaDHkYB3lCI.woff\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerFJBf46eAM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"LU678UefB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MYcyiNI7w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"gIr0VvvDR\\\":\\\"title\\\",\\\"QENiZ8anS\\\":\\\"description\\\",\\\"I36D_5Y1i\\\":\\\"icon2\\\",\\\"ZNdiKURdO\\\":\\\"color\\\",\\\"z8uHQkOla\\\":\\\"fontSize\\\",\\\"MFVA7ij9u\\\":\\\"fontSize2\\\"}\",\"framerIntrinsicWidth\":\"300\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FJBf46eAM.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"fbHR092X1\",\"O_vCHZHFO\"];const serializationHash=\"framer-Rurki\";const variantClassNames={fbHR092X1:\"framer-v-10q2zca\",O_vCHZHFO:\"framer-v-ekhebl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"fbHR092X1\",Secondary:\"O_vCHZHFO\"};const getProps=({height,id,label,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,tWUpRXPNf:(_ref=label!==null&&label!==void 0?label:props.tWUpRXPNf)!==null&&_ref!==void 0?_ref:\"Label Name\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"fbHR092X1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,tWUpRXPNf,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"fbHR092X1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-10q2zca\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"fbHR092X1\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:'linear-gradient(180deg, var(--token-4d6fb0aa-347b-4d07-918a-f12b70b08ad3, rgb(33, 33, 33)) /* {\"name\":\"Dark/300\"} */ 0%, rgba(35, 35, 35, 0.2) 100%)',borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33,...style},...addPropertyOverrides({O_vCHZHFO:{\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1l809um\",\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"p1uGScA_o\",style:{backgroundColor:\"var(--token-c311f7eb-2396-4f7f-8edd-f790b3c42ec3, rgb(5, 5, 5))\",borderBottomLeftRadius:33,borderBottomRightRadius:33,borderTopLeftRadius:33,borderTopRightRadius:33},variants:{O_vCHZHFO:{backgroundColor:\"var(--token-70b4ad58-9042-4a72-8dea-68d8a9efadf0, rgb(13, 13, 13))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-467df59d-ad96-42c2-b183-427729ddbbee, rgb(175, 175, 175)))\"},children:\"Label Name\"})}),className:\"framer-jz0q1x\",\"data-framer-name\":\"label\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"KpsfobUjj\",style:{\"--extracted-r6o4lv\":\"var(--token-467df59d-ad96-42c2-b183-427729ddbbee, rgb(175, 175, 175))\",\"--framer-paragraph-spacing\":\"0px\"},text:tWUpRXPNf,verticalAlignment:\"top\",withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rurki.framer-5lfrqv, .framer-Rurki .framer-5lfrqv { display: block; }\",\".framer-Rurki.framer-10q2zca { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 1.3px; position: relative; width: min-content; }\",\".framer-Rurki .framer-1l809um { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: flex-start; overflow: visible; padding: 7px 20px 7px 20px; position: relative; width: min-content; }\",\".framer-Rurki .framer-jz0q1x { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Rurki.framer-10q2zca, .framer-Rurki .framer-1l809um { gap: 0px; } .framer-Rurki.framer-10q2zca > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Rurki.framer-10q2zca > :first-child, .framer-Rurki .framer-1l809um > :first-child { margin-left: 0px; } .framer-Rurki.framer-10q2zca > :last-child, .framer-Rurki .framer-1l809um > :last-child { margin-right: 0px; } .framer-Rurki .framer-1l809um > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 31\n * @framerIntrinsicWidth 117\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"O_vCHZHFO\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"tWUpRXPNf\":\"label\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRFV7Ii2Rz=withCSS(Component,css,\"framer-Rurki\");export default FramerRFV7Ii2Rz;FramerRFV7Ii2Rz.displayName=\"Element/Label\";FramerRFV7Ii2Rz.defaultProps={height:31,width:117};addPropertyControls(FramerRFV7Ii2Rz,{variant:{options:[\"fbHR092X1\",\"O_vCHZHFO\"],optionTitles:[\"Default\",\"Secondary\"],title:\"Variant\",type:ControlType.Enum},tWUpRXPNf:{defaultValue:\"Label Name\",displayTextArea:false,title:\"Label\",type:ControlType.String}});addFonts(FramerRFV7Ii2Rz,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRFV7Ii2Rz\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"117\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"O_vCHZHFO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"31\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"tWUpRXPNf\\\":\\\"label\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RFV7Ii2Rz.map", "// Generated by Framer (af04cc1)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Feather}from\"https://framerusercontent.com/modules/f0DboytQenYh21kfme7W/zb1zVBMZJKgPMiedOi0y/Feather.js\";const FeatherFonts=getFonts(Feather);const enabledGestures={B_NeS98Ct:{hover:true},Bg5_MR4E5:{hover:true},rtL_v44xJ:{hover:true},tMbDCz9wv:{hover:true},Y8RbLLMHD:{hover:true}};const cycleOrder=[\"Y8RbLLMHD\",\"tMbDCz9wv\",\"B_NeS98Ct\",\"rtL_v44xJ\",\"Bg5_MR4E5\"];const serializationHash=\"framer-0Awjs\";const variantClassNames={B_NeS98Ct:\"framer-v-dqbai\",Bg5_MR4E5:\"framer-v-1cggpvg\",rtL_v44xJ:\"framer-v-13n2emn\",tMbDCz9wv:\"framer-v-13t84db\",Y8RbLLMHD:\"framer-v-p8gqo1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Primary Outline Icon\":\"B_NeS98Ct\",\"Primary Outline\":\"rtL_v44xJ\",\"Secondary Icon\":\"Bg5_MR4E5\",Primary:\"Y8RbLLMHD\",Secondary:\"tMbDCz9wv\"};const getProps=({buttonLabel,height,id,link,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,c3NOAKqXS:link!==null&&link!==void 0?link:props.c3NOAKqXS,gCmmKaF_0:(_ref=buttonLabel!==null&&buttonLabel!==void 0?buttonLabel:props.gCmmKaF_0)!==null&&_ref!==void 0?_ref:\"button\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"Y8RbLLMHD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gCmmKaF_0,c3NOAKqXS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Y8RbLLMHD\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"tMbDCz9wv-hover\",\"B_NeS98Ct-hover\",\"Bg5_MR4E5-hover\"].includes(gestureVariant))return true;if([\"tMbDCz9wv\",\"B_NeS98Ct\",\"Bg5_MR4E5\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:c3NOAKqXS,nodeId:\"Y8RbLLMHD\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-p8gqo1\",className,classNames)} framer-1k8jvic`,\"data-border\":true,\"data-framer-name\":\"Primary\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"Y8RbLLMHD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(0, 0, 0, 0.23)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"var(--token-478605a9-7d53-48cf-b49e-fa520e13d8b5, rgb(84, 37, 176))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"none\",...style},variants:{\"B_NeS98Ct-hover\":{\"--border-color\":\"var(--token-4f647512-f9f6-44f3-9e1e-5b9cd5243150, rgb(115, 56, 224))\"},\"Bg5_MR4E5-hover\":{backgroundColor:\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\"},\"rtL_v44xJ-hover\":{\"--border-color\":\"var(--token-4f647512-f9f6-44f3-9e1e-5b9cd5243150, rgb(115, 56, 224))\"},\"tMbDCz9wv-hover\":{backgroundColor:\"var(--token-c5a22e7d-eb64-4d45-8a7e-dcb725c5dbb1, rgb(255, 255, 255))\",boxShadow:\"0px 0px 9px 0px var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\"},\"Y8RbLLMHD-hover\":{backgroundColor:\"var(--token-4f647512-f9f6-44f3-9e1e-5b9cd5243150, rgb(138, 84, 247))\"},B_NeS98Ct:{\"--border-color\":\"var(--token-478605a9-7d53-48cf-b49e-fa520e13d8b5, rgb(84, 37, 176))\",backgroundColor:\"var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(175, 209, 21, 0))\"},Bg5_MR4E5:{backgroundColor:\"var(--token-c5a22e7d-eb64-4d45-8a7e-dcb725c5dbb1, rgb(255, 255, 255))\"},rtL_v44xJ:{\"--border-color\":\"var(--token-478605a9-7d53-48cf-b49e-fa520e13d8b5, rgb(84, 37, 176))\",backgroundColor:\"var(--token-466f412f-31e4-4f7f-a7e6-91a69b113f31, rgba(175, 209, 21, 0))\"},tMbDCz9wv:{\"--border-color\":\"rgba(255, 255, 255, 0.23)\",backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({\"B_NeS98Ct-hover\":{\"data-framer-name\":undefined},\"Bg5_MR4E5-hover\":{\"data-framer-name\":undefined},\"rtL_v44xJ-hover\":{\"data-framer-name\":undefined},\"tMbDCz9wv-hover\":{\"data-framer-name\":undefined},\"Y8RbLLMHD-hover\":{\"data-framer-name\":undefined},B_NeS98Ct:{\"data-framer-name\":\"Primary Outline Icon\"},Bg5_MR4E5:{\"data-framer-name\":\"Secondary Icon\"},rtL_v44xJ:{\"data-framer-name\":\"Primary Outline\"},tMbDCz9wv:{\"data-framer-name\":\"Secondary\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254)))\"},children:\"button\"})}),className:\"framer-1nijtf0\",fonts:[\"GF;Plus Jakarta Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"VYHYaQ_sq\",style:{\"--extracted-r6o4lv\":\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:gCmmKaF_0,variants:{\"tMbDCz9wv-hover\":{\"--extracted-r6o4lv\":\"var(--token-518f5c43-2a7d-48f3-9a8f-3d4fa14a1ea5, rgb(1, 1, 1))\"},Bg5_MR4E5:{\"--extracted-r6o4lv\":\"var(--token-518f5c43-2a7d-48f3-9a8f-3d4fa14a1ea5, rgb(1, 1, 1))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"tMbDCz9wv-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-518f5c43-2a7d-48f3-9a8f-3d4fa14a1ea5, rgb(1, 1, 1)))\"},children:\"button\"})})},Bg5_MR4E5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UGx1cyBKYWthcnRhIFNhbnMtcmVndWxhcg==\",\"--framer-font-family\":'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-518f5c43-2a7d-48f3-9a8f-3d4fa14a1ea5, rgb(1, 1, 1)))\"},children:\"button\"})})},tMbDCz9wv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\"},children:\"button\"})}),fonts:[\"CUSTOM;Pretendard Regular\"]}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sfzzgy\",\"data-framer-name\":\"Icon Flip\",layoutDependency:layoutDependency,layoutId:\"DXIlJuAvt\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g5qnw1-container\",layoutDependency:layoutDependency,layoutId:\"FZq4mPj_Z-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"FZq4mPj_Z\",layoutId:\"FZq4mPj_Z\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({Bg5_MR4E5:{color:\"var(--token-518f5c43-2a7d-48f3-9a8f-3d4fa14a1ea5, rgb(1, 1, 1))\"},tMbDCz9wv:{color:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-atsgs2-container\",layoutDependency:layoutDependency,layoutId:\"WmRMOnAMY-container\",children:/*#__PURE__*/_jsx(Feather,{color:\"var(--token-64f5bd03-6b7a-43e3-ba7b-3a0b2b8b7a5e, rgb(242, 249, 254))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"arrow-up-right\",id:\"WmRMOnAMY\",layoutId:\"WmRMOnAMY\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({\"tMbDCz9wv-hover\":{color:\"var(--token-dac0bec6-6acb-444c-ac02-87950f2b7f18, rgb(26, 24, 34))\"},Bg5_MR4E5:{color:\"var(--token-518f5c43-2a7d-48f3-9a8f-3d4fa14a1ea5, rgb(1, 1, 1))\"}},baseVariant,gestureVariant)})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-0Awjs.framer-1k8jvic, .framer-0Awjs .framer-1k8jvic { display: block; }\",\".framer-0Awjs.framer-p8gqo1 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 14px 32px 14px 32px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-0Awjs .framer-1nijtf0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-0Awjs .framer-sfzzgy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 20px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 20px; }\",\".framer-0Awjs .framer-1g5qnw1-container { flex: none; height: 18px; position: absolute; right: 0px; top: 0px; width: 18px; }\",\".framer-0Awjs .framer-atsgs2-container { bottom: -20px; flex: none; height: 18px; left: -20px; position: absolute; width: 18px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-0Awjs.framer-p8gqo1, .framer-0Awjs .framer-sfzzgy { gap: 0px; } .framer-0Awjs.framer-p8gqo1 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-0Awjs.framer-p8gqo1 > :first-child, .framer-0Awjs .framer-sfzzgy > :first-child { margin-left: 0px; } .framer-0Awjs.framer-p8gqo1 > :last-child, .framer-0Awjs .framer-sfzzgy > :last-child { margin-right: 0px; } .framer-0Awjs .framer-sfzzgy > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-0Awjs.framer-v-13t84db.framer-p8gqo1 { overflow: visible; padding: 10px 20px 10px 20px; }\",\".framer-0Awjs.framer-v-13t84db .framer-1g5qnw1-container, .framer-0Awjs.framer-v-dqbai .framer-1g5qnw1-container { right: 1px; top: 1px; }\",\".framer-0Awjs.framer-v-1cggpvg .framer-1g5qnw1-container { right: 1px; }\",\".framer-0Awjs.framer-v-13t84db.hover .framer-1g5qnw1-container, .framer-0Awjs.framer-v-dqbai.hover .framer-1g5qnw1-container, .framer-0Awjs.framer-v-1cggpvg.hover .framer-1g5qnw1-container { right: -20px; top: -20px; }\",\".framer-0Awjs.framer-v-13t84db.hover .framer-atsgs2-container, .framer-0Awjs.framer-v-dqbai.hover .framer-atsgs2-container, .framer-0Awjs.framer-v-1cggpvg.hover .framer-atsgs2-container { bottom: 1px; left: 1px; }\",'.framer-0Awjs[data-border=\"true\"]::after, .framer-0Awjs [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 50\n * @framerIntrinsicWidth 116\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tMbDCz9wv\":{\"layout\":[\"auto\",\"auto\"]},\"B_NeS98Ct\":{\"layout\":[\"auto\",\"auto\"]},\"rtL_v44xJ\":{\"layout\":[\"auto\",\"auto\"]},\"Bg5_MR4E5\":{\"layout\":[\"auto\",\"auto\"]},\"tPxkFIRNR\":{\"layout\":[\"auto\",\"auto\"]},\"SmwI6taUq\":{\"layout\":[\"auto\",\"auto\"]},\"AWiBVJaiw\":{\"layout\":[\"auto\",\"auto\"]},\"Il1RVYf2W\":{\"layout\":[\"auto\",\"auto\"]},\"Ut6xd0rnu\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"gCmmKaF_0\":\"buttonLabel\",\"c3NOAKqXS\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruUyy3gorq=withCSS(Component,css,\"framer-0Awjs\");export default FrameruUyy3gorq;FrameruUyy3gorq.displayName=\"Button/General\";FrameruUyy3gorq.defaultProps={height:50,width:116};addPropertyControls(FrameruUyy3gorq,{variant:{options:[\"Y8RbLLMHD\",\"tMbDCz9wv\",\"B_NeS98Ct\",\"rtL_v44xJ\",\"Bg5_MR4E5\"],optionTitles:[\"Primary\",\"Secondary\",\"Primary Outline Icon\",\"Primary Outline\",\"Secondary Icon\"],title:\"Variant\",type:ControlType.Enum},gCmmKaF_0:{defaultValue:\"button\",displayTextArea:false,title:\"Button Label\",type:ControlType.String},c3NOAKqXS:{title:\"Link\",type:ControlType.Link}});addFonts(FrameruUyy3gorq,[{explicitInter:true,fonts:[{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Pretendard Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xDyoC8MeZr1IcsrowiTgCB1zz8.woff\"}]},...FeatherFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruUyy3gorq\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tMbDCz9wv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"B_NeS98Ct\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"rtL_v44xJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Bg5_MR4E5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tPxkFIRNR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SmwI6taUq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AWiBVJaiw\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Il1RVYf2W\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Ut6xd0rnu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"116\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"50\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gCmmKaF_0\\\":\\\"buttonLabel\\\",\\\"c3NOAKqXS\\\":\\\"link\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uUyy3gorq.map", "// Generated by Framer (e010222)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"jllCX9WJ3\",\"EyBRjGrQM\",\"xqCFGxg3e\",\"NGV6iwHUH\",\"O0dBj9UMQ\"];const serializationHash=\"framer-PAEL4\";const variantClassNames={EyBRjGrQM:\"framer-v-x08rol\",jllCX9WJ3:\"framer-v-1e1pgy7\",NGV6iwHUH:\"framer-v-axrdfn\",O0dBj9UMQ:\"framer-v-1yj6bx\",xqCFGxg3e:\"framer-v-a2hn40\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.12,.23,.5,1],type:\"tween\"};const transition2={delay:0,duration:1.2,ease:[.12,.23,.5,1],type:\"tween\"};const transition3={delay:0,duration:.1,ease:[.12,.23,.5,1],type:\"tween\"};const transition4={delay:0,duration:.5,ease:[.12,.23,.5,1],type:\"tween\"};const transition5={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition6={delay:0,duration:1.5,ease:[.44,0,.56,1],type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"jllCX9WJ3\",\"Variant 2\":\"EyBRjGrQM\",\"Variant 3\":\"xqCFGxg3e\",\"Variant 4\":\"NGV6iwHUH\",\"Variant 5\":\"O0dBj9UMQ\"};const getProps=({background,height,id,link,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,B1MSzyHv4:(_ref=background!==null&&background!==void 0?background:props.B1MSzyHv4)!==null&&_ref!==void 0?_ref:\"var(--token-b1d42292-dd1a-4d81-95dc-d6ccd2a40e51, rgb(232, 149, 72))\",M25celVi6:link!==null&&link!==void 0?link:props.M25celVi6,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"jllCX9WJ3\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,M25celVi6,B1MSzyHv4,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jllCX9WJ3\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1hinlnt=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});await delay(()=>setVariant(\"EyBRjGrQM\"),100);});const onAppeargvla1e=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"xqCFGxg3e\"),1200);});const onAppear1qg1oyi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"NGV6iwHUH\"),100);});const onAppear1v918jj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"O0dBj9UMQ\"),100);});const onAppear1irj88j=activeVariantCallback(async(...args)=>{setVariant(\"jllCX9WJ3\");});const onMouseLeaveewtpfh=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});await delay(()=>setVariant(\"jllCX9WJ3\"),100);});useOnVariantChange(baseVariant,{EyBRjGrQM:onAppeargvla1e,NGV6iwHUH:onAppear1v918jj,O0dBj9UMQ:onAppear1irj88j,xqCFGxg3e:onAppear1qg1oyi});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({EyBRjGrQM:{value:transition2},NGV6iwHUH:{value:transition3},O0dBj9UMQ:{value:transition4},xqCFGxg3e:{value:transition3}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:M25celVi6,nodeId:\"jllCX9WJ3\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"scroll-down\",className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1e1pgy7\",className,classNames)} framer-1txdjzo`,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jllCX9WJ3\",onMouseEnter:onMouseEnter1hinlnt,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EyBRjGrQM:{\"data-framer-name\":\"Variant 2\",onMouseEnter:undefined},NGV6iwHUH:{\"data-framer-name\":\"Variant 4\",onMouseEnter:undefined},O0dBj9UMQ:{\"data-framer-name\":\"Variant 5\",onMouseEnter:undefined,onMouseLeave:onMouseLeaveewtpfh},xqCFGxg3e:{\"data-framer-name\":\"Variant 3\",onMouseEnter:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wfv48v\",\"data-framer-name\":\"Wrapper\",layoutDependency:layoutDependency,layoutId:\"HBnzVVv2L\",style:{mask:\"url('https://framerusercontent.com/images/Q77DT4BAeafdNrAQaK3vjiSvIqg.svg') alpha no-repeat center / cover add\",scale:.7,WebkitMask:\"url('https://framerusercontent.com/images/Q77DT4BAeafdNrAQaK3vjiSvIqg.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(Transition,{value:transition5,...addPropertyOverrides({EyBRjGrQM:{value:transition6},NGV6iwHUH:{value:transition6},xqCFGxg3e:{value:transition6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-ud0z1u\",\"data-framer-name\":\"Blur Bottom\",layoutDependency:layoutDependency,layoutId:\"FqHW_qv7J\",style:{backgroundColor:B1MSzyHv4,borderBottomLeftRadius:54,borderBottomRightRadius:54,borderTopLeftRadius:54,borderTopRightRadius:54,filter:\"blur(30px)\",WebkitFilter:\"blur(30px)\"}})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PAEL4.framer-1txdjzo, .framer-PAEL4 .framer-1txdjzo { display: block; }\",\".framer-PAEL4.framer-1e1pgy7 { cursor: pointer; height: 190px; overflow: hidden; position: relative; text-decoration: none; width: 150px; }\",\".framer-PAEL4 .framer-1wfv48v { flex: none; height: 60px; left: calc(50.00000000000002% - 44px / 2); overflow: visible; position: absolute; top: calc(53.157894736842124% - 60px / 2); width: 44px; }\",\".framer-PAEL4 .framer-ud0z1u { bottom: -30px; flex: none; height: 122px; left: -14px; overflow: visible; position: absolute; right: -14px; }\",\".framer-PAEL4.framer-v-x08rol .framer-1wfv48v, .framer-PAEL4.framer-v-a2hn40 .framer-1wfv48v, .framer-PAEL4.framer-v-axrdfn .framer-1wfv48v, .framer-PAEL4.framer-v-1yj6bx .framer-1wfv48v { bottom: 0px; top: unset; }\",\".framer-PAEL4.framer-v-x08rol .framer-ud0z1u { bottom: -29px; height: 105px; left: 0px; right: 0px; }\",\".framer-PAEL4.framer-v-a2hn40 .framer-ud0z1u { bottom: -33px; height: 109px; left: 0px; right: 0px; }\",\".framer-PAEL4.framer-v-axrdfn .framer-ud0z1u { bottom: -31px; height: 113px; left: 0px; right: 0px; }\",\".framer-PAEL4.framer-v-1yj6bx .framer-ud0z1u { bottom: -40px; height: 142px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 190\n * @framerIntrinsicWidth 150\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EyBRjGrQM\":{\"layout\":[\"fixed\",\"fixed\"]},\"xqCFGxg3e\":{\"layout\":[\"fixed\",\"fixed\"]},\"NGV6iwHUH\":{\"layout\":[\"fixed\",\"fixed\"]},\"O0dBj9UMQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"M25celVi6\":\"link\",\"B1MSzyHv4\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerzO7Dvw_Jb=withCSS(Component,css,\"framer-PAEL4\");export default FramerzO7Dvw_Jb;FramerzO7Dvw_Jb.displayName=\"Element/Scroll Arrow\";FramerzO7Dvw_Jb.defaultProps={height:190,width:150};addPropertyControls(FramerzO7Dvw_Jb,{variant:{options:[\"jllCX9WJ3\",\"EyBRjGrQM\",\"xqCFGxg3e\",\"NGV6iwHUH\",\"O0dBj9UMQ\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},M25celVi6:{title:\"Link\",type:ControlType.Link},B1MSzyHv4:{defaultValue:'var(--token-b1d42292-dd1a-4d81-95dc-d6ccd2a40e51, rgb(232, 149, 72)) /* {\"name\":\"UI Orange 300\"} */',title:\"Background\",type:ControlType.Color}});addFonts(FramerzO7Dvw_Jb,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzO7Dvw_Jb\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"M25celVi6\\\":\\\"link\\\",\\\"B1MSzyHv4\\\":\\\"background\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"190\",\"framerIntrinsicWidth\":\"150\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EyBRjGrQM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"xqCFGxg3e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NGV6iwHUH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"O0dBj9UMQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./zO7Dvw_Jb.map", "// Generated by Framer (629c622)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Button2 from\"https://framerusercontent.com/modules/DXVDmmkHJznRazVZNxFC/R0WYMyLN1bjOrcfyIYlo/pz_WUkKtk.js\";import ButtonGeneral from\"https://framerusercontent.com/modules/WB0h2Gjtq75Ili2LvjnB/JcHWe7ryyhscOuIyeUDB/uUyy3gorq.js\";import ElementScrollArrow from\"https://framerusercontent.com/modules/DMN7W2nHGNrnL1OKsLzr/mcPsbm6UupbTJYBMux4r/zO7Dvw_Jb.js\";const ButtonGeneralFonts=getFonts(ButtonGeneral);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const Button2Fonts=getFonts(Button2);const ElementScrollArrowFonts=getFonts(ElementScrollArrow);const cycleOrder=[\"r7qvgwXUY\",\"G_Jz1HsRn\",\"biPm9qro7\",\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\",\"rvvP7JzQO\",\"EnNHTw9p5\",\"hFh4POjHQ\",\"wOq7pXVwr\"];const serializationHash=\"framer-Qlf0Q\";const variantClassNames={biPm9qro7:\"framer-v-18ch93s\",CSe3vcMJW:\"framer-v-hl8iv1\",EnNHTw9p5:\"framer-v-1w7wuyq\",G_Jz1HsRn:\"framer-v-1m6go7r\",hFh4POjHQ:\"framer-v-14bo7x1\",l0D8jhLfW:\"framer-v-sth1m6\",lGCxamp2b:\"framer-v-ttyywl\",MFTeUYKkq:\"framer-v-113ugft\",r7qvgwXUY:\"framer-v-g2fbm9\",rvvP7JzQO:\"framer-v-hpyi7h\",wOq7pXVwr:\"framer-v-1ffz2nv\",zIw7DCp6G:\"framer-v-1mn3d6d\",zwB3WUKIJ:\"framer-v-93g4h5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition3={damping:40,delay:.6,mass:1,stiffness:150,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition4={damping:70,delay:.2,mass:1,stiffness:210,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={\"Desktop 2\":\"G_Jz1HsRn\",\"Variant 11\":\"EnNHTw9p5\",\"Variant 12\":\"hFh4POjHQ\",\"Variant 13\":\"wOq7pXVwr\",\"Variant 4\":\"MFTeUYKkq\",\"Variant 5\":\"CSe3vcMJW\",\"Variant 6\":\"zwB3WUKIJ\",\"Variant 7\":\"lGCxamp2b\",\"Variant 8\":\"zIw7DCp6G\",\"Variant 9\":\"l0D8jhLfW\",Desktop:\"r7qvgwXUY\",Phone:\"rvvP7JzQO\",Tablet:\"biPm9qro7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"r7qvgwXUY\"};};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:\"r7qvgwXUY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1n56pq=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"MFTeUYKkq\"),7e3);});const onAppearpwwahr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"lGCxamp2b\"),7e3);});const onAppear89a7tl=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"CSe3vcMJW\"),7e3);});const onAppear1ipwj9b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"zwB3WUKIJ\"),7e3);});const onAppear1pakryj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"r7qvgwXUY\"),7e3);});const onAppear1axelxh=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"biPm9qro7\"),7e3);});const onAppear1fcgqf3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"EnNHTw9p5\"),4e3);});const onAppear152mmtr=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hFh4POjHQ\"),4e3);});const onAppear1k8jvxx=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"wOq7pXVwr\"),4e3);});const onAppeargdcw7z=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rvvP7JzQO\"),4e3);});const onTap4qt49s=activeVariantCallback(async(...args)=>{setVariant(\"r7qvgwXUY\");});const onTapwelhuk=activeVariantCallback(async(...args)=>{setVariant(\"biPm9qro7\");});const onTap1eakkjm=activeVariantCallback(async(...args)=>{setVariant(\"rvvP7JzQO\");});const onTap1a34kqn=activeVariantCallback(async(...args)=>{setVariant(\"MFTeUYKkq\");});const onTap6x564o=activeVariantCallback(async(...args)=>{setVariant(\"lGCxamp2b\");});const onTapwqgudo=activeVariantCallback(async(...args)=>{setVariant(\"EnNHTw9p5\");});const onTapuz8zpo=activeVariantCallback(async(...args)=>{setVariant(\"CSe3vcMJW\");});const onTap46tb2c=activeVariantCallback(async(...args)=>{setVariant(\"zIw7DCp6G\");});const onTapzrci30=activeVariantCallback(async(...args)=>{setVariant(\"hFh4POjHQ\");});const onTapwrx9d6=activeVariantCallback(async(...args)=>{setVariant(\"zwB3WUKIJ\");});const onTap138jdf5=activeVariantCallback(async(...args)=>{setVariant(\"l0D8jhLfW\");});const onTapzjdrlp=activeVariantCallback(async(...args)=>{setVariant(\"wOq7pXVwr\");});useOnVariantChange(baseVariant,{biPm9qro7:onAppearpwwahr,CSe3vcMJW:onAppear1ipwj9b,default:onAppear1n56pq,EnNHTw9p5:onAppear152mmtr,hFh4POjHQ:onAppear1k8jvxx,l0D8jhLfW:onAppear1axelxh,lGCxamp2b:onAppear89a7tl,MFTeUYKkq:onAppear89a7tl,rvvP7JzQO:onAppear1fcgqf3,wOq7pXVwr:onAppeargdcw7z,zIw7DCp6G:onAppear1ipwj9b,zwB3WUKIJ:onAppear1pakryj});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"MFTeUYKkq\",\"lGCxamp2b\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\",\"EnNHTw9p5\",\"hFh4POjHQ\",\"wOq7pXVwr\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if([\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\",\"EnNHTw9p5\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"CSe3vcMJW\",\"zIw7DCp6G\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"zwB3WUKIJ\",\"l0D8jhLfW\"].includes(baseVariant))return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"EnNHTw9p5\")return true;return false;};const isDisplayed7=()=>{if(baseVariant===\"hFh4POjHQ\")return true;return false;};const isDisplayed8=()=>{if(baseVariant===\"wOq7pXVwr\")return true;return false;};const isDisplayed9=()=>{if([\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\"].includes(baseVariant))return false;return true;};const isDisplayed10=()=>{if([\"EnNHTw9p5\",\"wOq7pXVwr\"].includes(baseVariant))return false;return true;};const isDisplayed11=()=>{if([\"CSe3vcMJW\",\"zwB3WUKIJ\",\"zIw7DCp6G\",\"l0D8jhLfW\"].includes(baseVariant))return false;return true;};const isDisplayed12=()=>{if([\"MFTeUYKkq\",\"lGCxamp2b\"].includes(baseVariant))return false;return true;};const isDisplayed13=()=>{if([\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\",\"hFh4POjHQ\"].includes(baseVariant))return false;return true;};const isDisplayed14=()=>{if([\"CSe3vcMJW\",\"zIw7DCp6G\"].includes(baseVariant))return false;return true;};const isDisplayed15=()=>{if([\"zwB3WUKIJ\",\"l0D8jhLfW\"].includes(baseVariant))return false;return true;};const isDisplayed16=()=>{if([\"EnNHTw9p5\",\"hFh4POjHQ\",\"wOq7pXVwr\"].includes(baseVariant))return false;return true;};const isDisplayed17=()=>{if(baseVariant===\"rvvP7JzQO\")return true;return false;};const router=useRouter();const isDisplayed18=()=>{if([\"rvvP7JzQO\",\"EnNHTw9p5\",\"hFh4POjHQ\",\"wOq7pXVwr\"].includes(baseVariant))return false;return true;};const isDisplayed19=()=>{if([\"CSe3vcMJW\",\"rvvP7JzQO\",\"hFh4POjHQ\",\"wOq7pXVwr\"].includes(baseVariant))return false;return true;};const isDisplayed20=()=>{if(baseVariant===\"MFTeUYKkq\")return true;return false;};const isDisplayed21=()=>{if(baseVariant===\"CSe3vcMJW\")return true;return false;};const isDisplayed22=()=>{if(baseVariant===\"G_Jz1HsRn\")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,...addPropertyOverrides({EnNHTw9p5:{value:transition2},hFh4POjHQ:{value:transition2},rvvP7JzQO:{value:transition2},wOq7pXVwr:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-g2fbm9\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"r7qvgwXUY\",ref:refBinding,style:{...style},...addPropertyOverrides({biPm9qro7:{\"data-framer-name\":\"Tablet\"},CSe3vcMJW:{\"data-framer-name\":\"Variant 5\"},EnNHTw9p5:{\"data-framer-name\":\"Variant 11\"},G_Jz1HsRn:{\"data-framer-name\":\"Desktop 2\"},hFh4POjHQ:{\"data-framer-name\":\"Variant 12\"},l0D8jhLfW:{\"data-framer-name\":\"Variant 9\"},lGCxamp2b:{\"data-framer-name\":\"Variant 7\"},MFTeUYKkq:{\"data-framer-name\":\"Variant 4\"},rvvP7JzQO:{\"data-framer-name\":\"Phone\"},wOq7pXVwr:{\"data-framer-name\":\"Variant 13\"},zIw7DCp6G:{\"data-framer-name\":\"Variant 8\"},zwB3WUKIJ:{\"data-framer-name\":\"Variant 6\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9ubhja\",layoutDependency:layoutDependency,layoutId:\"kOgZNtJBT\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p99lt9\",\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"JKte18rPa\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\"},variants:{CSe3vcMJW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},EnNHTw9p5:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},hFh4POjHQ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},l0D8jhLfW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},lGCxamp2b:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},MFTeUYKkq:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},rvvP7JzQO:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},wOq7pXVwr:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},zIw7DCp6G:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},zwB3WUKIJ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"}},...addPropertyOverrides({CSe3vcMJW:{\"data-border\":true,\"data-highlight\":true,onTap:onTap4qt49s},EnNHTw9p5:{\"data-border\":true,\"data-highlight\":true,onTap:onTap1eakkjm},hFh4POjHQ:{\"data-border\":true,\"data-highlight\":true,onTap:onTap1eakkjm},l0D8jhLfW:{\"data-border\":true,\"data-highlight\":true,onTap:onTapwelhuk},lGCxamp2b:{\"data-border\":true,\"data-highlight\":true,onTap:onTapwelhuk},MFTeUYKkq:{\"data-border\":true,\"data-highlight\":true,onTap:onTap4qt49s},wOq7pXVwr:{\"data-border\":true,\"data-highlight\":true,onTap:onTap1eakkjm},zIw7DCp6G:{\"data-border\":true,\"data-highlight\":true,onTap:onTapwelhuk},zwB3WUKIJ:{\"data-border\":true,\"data-highlight\":true,onTap:onTap4qt49s}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ay2lbd\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"BkCVFlK5C\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-database\"><path d=\"M4.318 2.687C5.234 2.271 6.536 2 8 2s2.766.27 3.682.687C12.644 3.125 13 3.627 13 4c0 .374-.356.875-1.318 1.313C10.766 5.729 9.464 6 8 6s-2.766-.27-3.682-.687C3.356 4.875 3 4.373 3 4c0-.374.356-.875 1.318-1.313M13 5.698V7c0 .374-.356.875-1.318 1.313C10.766 8.729 9.464 9 8 9s-2.766-.27-3.682-.687C3.356 7.875 3 7.373 3 7V5.698c.271.202.58.378.904.525C4.978 6.711 6.427 7 8 7s3.022-.289 4.096-.777A5 5 0 0 0 13 5.698M14 4c0-1.007-.875-1.755-1.904-2.223C11.022 1.289 9.573 1 8 1s-3.022.289-4.096.777C2.875 2.245 2 2.993 2 4v9c0 1.007.875 1.755 1.904 2.223C4.978 15.71 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13zm-1 4.698V10c0 .374-.356.875-1.318 1.313C10.766 11.729 9.464 12 8 12s-2.766-.27-3.682-.687C3.356 10.875 3 10.373 3 10V8.698c.271.202.58.378.904.525C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777A5 5 0 0 0 13 8.698m0 3V13c0 .374-.356.875-1.318 1.313C10.766 14.729 9.464 15 8 15s-2.766-.27-3.682-.687C3.356 13.875 3 13.373 3 13v-1.302c.271.202.58.378.904.525C4.978 12.71 6.427 13 8 13s3.022-.289 4.096-.777c.324-.147.633-.323.904-.525\"/></svg>',withExternalLayout:true,...addPropertyOverrides({CSe3vcMJW:{fill:\"rgb(163, 163, 163)\"},l0D8jhLfW:{fill:\"rgb(163, 163, 163)\"},lGCxamp2b:{fill:\"rgb(163, 163, 163)\"},MFTeUYKkq:{fill:\"rgb(163, 163, 163)\"},zIw7DCp6G:{fill:\"rgb(163, 163, 163)\"},zwB3WUKIJ:{fill:\"rgb(163, 163, 163)\"}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"})}),className:\"framer-aa7e0v\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"oFA_o22st\",style:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{MFTeUYKkq:{\"--extracted-r6o4lv\":\"rgb(179, 179, 179)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})},MFTeUYKkq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-p6jor6\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"MMNXEAdR3\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-database-fill\"><path d=\"M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223\"/><path d=\"M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/></svg>',withExternalLayout:true}),isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})}),className:\"framer-80lnrb\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"qK0e67eQb\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{hFh4POjHQ:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\"},wOq7pXVwr:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})},hFh4POjHQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})},wOq7pXVwr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"})}),className:\"framer-7e3jip\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"mfueFKgMI\",style:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSe3vcMJW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"})}),className:\"framer-14rpx1o\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"vA4V5tu3R\",style:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})},zwB3WUKIJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})})}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uD68C\uACC4\uB370\uC774\uD130 \uBD84\uC11D \\xb7 \uAC80\uC99D\"})}),className:\"framer-dtvtz1\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"TJmry7vL_\",style:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-3jq8dj\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"KzPFSb3wk\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-database-fill\"><path d=\"M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223\"/><path d=\"M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/></svg>',withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ihuoz3\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"S2tIfWc5y\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-database-fill\"><path d=\"M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223\"/><path d=\"M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/></svg>',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1kuicht\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"T13ahVA4G\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-database-fill\"><path d=\"M3.904 1.777C4.978 1.289 6.427 1 8 1s3.022.289 4.096.777C13.125 2.245 14 2.993 14 4s-.875 1.755-1.904 2.223C11.022 6.711 9.573 7 8 7s-3.022-.289-4.096-.777C2.875 5.755 2 5.007 2 4s.875-1.755 1.904-2.223\"/><path d=\"M2 6.161V7c0 1.007.875 1.755 1.904 2.223C4.978 9.71 6.427 10 8 10s3.022-.289 4.096-.777C13.125 8.755 14 8.007 14 7v-.839c-.457.432-1.004.751-1.49.972C11.278 7.693 9.682 8 8 8s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 9.161V10c0 1.007.875 1.755 1.904 2.223C4.978 12.711 6.427 13 8 13s3.022-.289 4.096-.777C13.125 11.755 14 11.007 14 10v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/><path d=\"M2 12.161V13c0 1.007.875 1.755 1.904 2.223C4.978 15.711 6.427 16 8 16s3.022-.289 4.096-.777C13.125 14.755 14 14.007 14 13v-.839c-.457.432-1.004.751-1.49.972-1.232.56-2.828.867-4.51.867s-3.278-.307-4.51-.867c-.486-.22-1.033-.54-1.49-.972\"/></svg>',withExternalLayout:true})]}),isDisplayed9()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v8848m\",\"data-border\":true,\"data-framer-name\":\"2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"VkICczSS4\",onTap:onTap1a34kqn,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},variants:{EnNHTw9p5:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({biPm9qro7:{onTap:onTap6x564o},EnNHTw9p5:{\"data-highlight\":undefined,onTap:undefined},hFh4POjHQ:{onTap:onTapwqgudo},rvvP7JzQO:{onTap:onTapwqgudo},wOq7pXVwr:{onTap:onTapwqgudo}},baseVariant,gestureVariant),children:[isDisplayed10()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2r8wki\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"havvA_5G4\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-bar-chart-line\"><path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1zm1 12h2V2h-2zm-3 0V7H7v7zm-5 0v-3H2v3z\"/></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})}),className:\"framer-l234ee\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"jIQoyxS32\",style:{\"--extracted-r6o4lv\":\"rgb(179, 179, 179)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})},EnNHTw9p5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})},hFh4POjHQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})},wOq7pXVwr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-gxr0m4\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"r93pMriMZ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-bar-chart-line\"><path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1zm1 12h2V2h-2zm-3 0V7H7v7zm-5 0v-3H2v3z\"/></svg>',withExternalLayout:true}),isDisplayed8()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-j403y4\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"S8w6OjYbW\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-bar-chart-line\"><path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1zm1 12h2V2h-2zm-3 0V7H7v7zm-5 0v-3H2v3z\"/></svg>',withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i56uk3\",layoutDependency:layoutDependency,layoutId:\"CE1vd3qE1\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10},variants:{CSe3vcMJW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},l0D8jhLfW:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},lGCxamp2b:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},MFTeUYKkq:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},zIw7DCp6G:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},zwB3WUKIJ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({CSe3vcMJW:{\"data-border\":true,\"data-highlight\":true,onTap:onTap1a34kqn},l0D8jhLfW:{\"data-border\":true,\"data-highlight\":true,onTap:onTap6x564o},zIw7DCp6G:{\"data-border\":true,\"data-highlight\":true,onTap:onTap6x564o},zwB3WUKIJ:{\"data-border\":true,\"data-highlight\":true,onTap:onTap1a34kqn}},baseVariant,gestureVariant),children:[isDisplayed11()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-199ihb6\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"LFyt3zstx\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-bar-chart-line-fill\"><path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1z\"/></svg>',withExternalLayout:true}),isDisplayed11()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI \uBD84\uC11D\"})}),className:\"framer-1jc7br4\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"QGGlD0Ka6\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI \uBD84\uC11D\"})})},MFTeUYKkq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-dd1ol6\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"XGmpN__BQ\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-bar-chart-line\"><path d=\"M11 2a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v12h.5a.5.5 0 0 1 0 1H.5a.5.5 0 0 1 0-1H1v-3a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v3h1V7a1 1 0 0 1 1-1h2a1 1 0 0 1 1 1v7h1zm1 12h2V2h-2zm-3 0V7H7v7zm-5 0v-3H2v3z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({CSe3vcMJW:{fill:\"rgb(163, 163, 163)\"},l0D8jhLfW:{fill:\"rgb(163, 163, 163)\"},zIw7DCp6G:{fill:\"rgb(163, 163, 163)\"},zwB3WUKIJ:{fill:\"rgb(163, 163, 163)\"}},baseVariant,gestureVariant)}),isDisplayed12()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"KPI \uCC28\uC774\uBD84\uC11D\"})}),className:\"framer-1q1q5uk\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"JF0IaU9My\",style:{\"--extracted-r6o4lv\":\"rgb(130, 130, 130)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSe3vcMJW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})},l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"KPI \uBD84\uC11D\"})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"KPI \uBD84\uC11D\"})})},zwB3WUKIJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(130, 130, 130))\"},children:\"\uC7AC\uBB34\uBCF4\uACE0\uC11C \uC791\uC131\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8r0eia\",\"data-border\":true,\"data-framer-name\":\"3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wEV75tHF0\",onTap:onTapuz8zpo,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},variants:{CSe3vcMJW:{backgroundColor:\"rgb(255, 255, 255)\"},hFh4POjHQ:{backgroundColor:\"rgb(255, 255, 255)\"},zIw7DCp6G:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({biPm9qro7:{onTap:onTap46tb2c},EnNHTw9p5:{onTap:onTapzrci30},hFh4POjHQ:{\"data-highlight\":undefined,onTap:undefined},l0D8jhLfW:{onTap:onTap46tb2c},lGCxamp2b:{onTap:onTap46tb2c},rvvP7JzQO:{onTap:onTapzrci30},wOq7pXVwr:{onTap:onTapzrci30},zIw7DCp6G:{\"data-highlight\":undefined,onTap:undefined}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1rxskfb\",\"data-framer-name\":\"Icon\",fill:\"rgb(71, 71, 71)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"VyhGTSJnl\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-pencil\"><path d=\"M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325\"/></svg>',withExternalLayout:true,...addPropertyOverrides({lGCxamp2b:{fill:\"rgb(163, 163, 163)\"},MFTeUYKkq:{fill:\"rgb(163, 163, 163)\"}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-tqkmgm\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"yxGp33Yht\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-pencil-fill\"><path d=\"M12.854.146a.5.5 0 0 0-.707 0L10.5 1.793 14.207 5.5l1.647-1.646a.5.5 0 0 0 0-.708zm.646 6.061L9.793 2.5 3.293 9H3.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.207zm-7.468 7.468A.5.5 0 0 1 6 13.5V13h-.5a.5.5 0 0 1-.5-.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.5-.5V10h-.5a.5.5 0 0 1-.175-.032l-.179.178a.5.5 0 0 0-.11.168l-2 5a.5.5 0 0 0 .65.65l5-2a.5.5 0 0 0 .168-.11z\"/></svg>',withExternalLayout:true}),isDisplayed13()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1r720li\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"rmeiZ4vKd\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-pencil\"><path d=\"M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325\"/></svg>',withExternalLayout:true}),isDisplayed4()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI \uC608\uC0B0\"})}),className:\"framer-1igk1nk\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"xARWOcIE5\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({CSe3vcMJW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI \uC608\uC0B0\"})})}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1ujqid2\",\"data-framer-name\":\"Icon\",fill:\"rgb(71, 71, 71)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"RKnncaI_0\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-pencil\"><path d=\"M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325\"/></svg>',withExternalLayout:true,...addPropertyOverrides({l0D8jhLfW:{fill:\"rgb(163, 163, 163)\"},zwB3WUKIJ:{fill:\"rgb(163, 163, 163)\"}},baseVariant,gestureVariant)}),isDisplayed14()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})}),className:\"framer-1bikm3y\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"UYWBMfrDx\",style:{\"--extracted-r6o4lv\":\"rgb(179, 179, 179)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},EnNHTw9p5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},hFh4POjHQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})},wOq7pXVwr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"\uC608\uC0B0\uC218\uB9BD \uBC0F \uC7AC\uBB34\uC608\uCE21\"})})}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2yjuj4\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 0, 0)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"cqqIxiY5s\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-pencil\"><path d=\"M12.146.146a.5.5 0 0 1 .708 0l3 3a.5.5 0 0 1 0 .708l-10 10a.5.5 0 0 1-.168.11l-5 2a.5.5 0 0 1-.65-.65l2-5a.5.5 0 0 1 .11-.168zM11.207 2.5 13.5 4.793 14.793 3.5 12.5 1.207zm1.586 3L10.5 3.207 4 9.707V10h.5a.5.5 0 0 1 .5.5v.5h.5a.5.5 0 0 1 .5.5v.5h.293zm-9.761 5.175-.106.106-1.528 3.821 3.821-1.528.106-.106A.5.5 0 0 1 5 12.5V12h-.5a.5.5 0 0 1-.5-.5V11h-.5a.5.5 0 0 1-.468-.325\"/></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jicyly\",\"data-border\":true,\"data-framer-name\":\"4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"uGOhaGGOZ\",onTap:onTapwrx9d6,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.4)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(0, 0, 0, 0.7)\"},variants:{l0D8jhLfW:{backgroundColor:\"rgb(255, 255, 255)\"},wOq7pXVwr:{backgroundColor:\"rgb(255, 255, 255)\"},zwB3WUKIJ:{backgroundColor:\"rgb(255, 255, 255)\"}},...addPropertyOverrides({biPm9qro7:{onTap:onTap138jdf5},EnNHTw9p5:{onTap:onTapzjdrlp},hFh4POjHQ:{onTap:onTapzjdrlp},l0D8jhLfW:{\"data-highlight\":undefined,onTap:undefined},lGCxamp2b:{onTap:onTap138jdf5},rvvP7JzQO:{onTap:onTapzjdrlp},wOq7pXVwr:{\"data-highlight\":undefined,onTap:undefined},zIw7DCp6G:{onTap:onTap138jdf5}},baseVariant,gestureVariant),children:[isDisplayed15()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1id8isz\",\"data-framer-name\":\"Icon\",fill:\"rgb(163, 163, 163)\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"N2IcCekGi\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-file-diff\"><path d=\"M8 4a.5.5 0 0 1 .5.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5A.5.5 0 0 1 8 4m-2.5 6.5A.5.5 0 0 1 6 10h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1-.5-.5\"/><path d=\"M2 2a2 2 0 0 1 2-2h8a2 2 0 0 1 2 2v12a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2zm10-1H4a1 1 0 0 0-1 1v12a1 1 0 0 0 1 1h8a1 1 0 0 0 1-1V2a1 1 0 0 0-1-1\"/></svg>',withExternalLayout:true,...addPropertyOverrides({wOq7pXVwr:{fill:\"rgb(0, 0, 0)\"}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-eb6igt\",\"data-framer-name\":\"Icon\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:64,layoutDependency:layoutDependency,layoutId:\"spYfxLvrS\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 16 16\" width=\"64\" height=\"64\" fill=\"currentColor\" class=\"bi bi-file-diff-fill\"><path d=\"M12 0H4a2 2 0 0 0-2 2v12a2 2 0 0 0 2 2h8a2 2 0 0 0 2-2V2a2 2 0 0 0-2-2M8.5 4.5V6H10a.5.5 0 0 1 0 1H8.5v1.5a.5.5 0 0 1-1 0V7H6a.5.5 0 0 1 0-1h1.5V4.5a.5.5 0 0 1 1 0M6 10h4a.5.5 0 0 1 0 1H6a.5.5 0 0 1 0-1\"/></svg>',withExternalLayout:true}),isDisplayed5()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI \uCC28\uC774\uBD84\uC11D\"})}),className:\"framer-11epk6q\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"kVBb5vtd5\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI \uCC28\uC774\uBD84\uC11D\"})})},zwB3WUKIJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})}},baseVariant,gestureVariant)}),isDisplayed15()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})}),className:\"framer-f2pti9\",fonts:[\"CUSTOM;Pretendard Light\"],layoutDependency:layoutDependency,layoutId:\"NDCqhehAO\",style:{\"--extracted-r6o4lv\":\"rgb(179, 179, 179)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})},EnNHTw9p5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})},hFh4POjHQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})},lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})},wOq7pXVwr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.02em\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(179, 179, 179))\"},children:\"KPI\uBCC4 \uC131\uACFC\uD3C9\uAC00\"})})}},baseVariant,gestureVariant)})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-edw5db\",layoutDependency:layoutDependency,layoutId:\"dD1j4OekU\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18my8i9\",layoutDependency:layoutDependency,layoutId:\"sH1csbvwq\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qac1n7\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"fJCujQMgS\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m5kjzg\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"DtGC8aUr6\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1izv219\",layoutDependency:layoutDependency,layoutId:\"L4a0b5qP8\",children:[isDisplayed16()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"Financial Snapshot\"})}),className:\"framer-qxvvqy\",fonts:[\"GF;Questrial-regular\"],layoutDependency:layoutDependency,layoutId:\"HcMyQC6NO\",style:{\"--extracted-gdpscs\":\"rgba(255, 255, 255, 0.4)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"Financial Snapshot\"})})},CSe3vcMJW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"KPI Planning\"})})},l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"KPI Variance analysis\"})})},lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"financial analysis reporting\"})})},MFTeUYKkq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"financial analysis reporting\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"Financial Snapshot\"})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"KPI Planning\"})})},zwB3WUKIJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"KPI Variance analysis\"})})}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"KPI Variance analysis\"})}),className:\"framer-1yh732x\",fonts:[\"GF;Questrial-regular\"],layoutDependency:layoutDependency,layoutId:\"dIIEUUKqC\",style:{\"--extracted-gdpscs\":\"rgba(255, 255, 255, 0.4)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"KPI Planning\"})}),className:\"framer-wv8uls\",fonts:[\"GF;Questrial-regular\"],layoutDependency:layoutDependency,layoutId:\"FQ6_PLJBL\",style:{\"--extracted-gdpscs\":\"rgba(255, 255, 255, 0.4)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"R0Y7UXVlc3RyaWFsLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Questrial\", \"Questrial Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgba(255, 255, 255, 0.4))\"},children:\"financial analysis reporting\"})}),className:\"framer-1f7d2iy\",fonts:[\"GF;Questrial-regular\"],layoutDependency:layoutDependency,layoutId:\"vEeGt7FPp\",style:{\"--extracted-gdpscs\":\"rgba(255, 255, 255, 0.4)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed16()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"AI \uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"}),\"\\xa9\"]})}),className:\"framer-15vfuk9\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"EXz1iFdqw\",style:{\"--extracted-gdpscs\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"20px\"},children:\"AI \uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"}),\"\\xa9\"]})})},CSe3vcMJW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uC608\uC0B0\uAD00\uB9AC\"})})},G_Jz1HsRn:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"40px\"},children:\"AI \uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"}),\"\\xa9\"]})})},l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uCC28\uC774\uBD84\uC11D\"})})},lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uBD84\uC11D\"})})},MFTeUYKkq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uBD84\uC11D\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-font-size\":\"20px\"},children:\"AI \uC7AC\uBB34\uC2A4\uB0C5\uC0F7\"}),\"\\xa9\"]})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uC608\uC0B0\uAD00\uB9AC\"})})},zwB3WUKIJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"46px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uCC28\uC774\uBD84\uC11D\"})})}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uCC28\uC774\uBD84\uC11D\"})}),className:\"framer-q72l5r\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"yuBZ1nFT6\",style:{\"--extracted-gdpscs\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uC608\uC0B0\uAD00\uB9AC\"})}),className:\"framer-16tdz7u\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"bvFxe8GRU\",style:{\"--extracted-gdpscs\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(217, 217, 217))\"},children:\"KPI \uBD84\uC11D\"})}),className:\"framer-mmp9r0\",fonts:[\"CUSTOM;Pretendard Regular\"],layoutDependency:layoutDependency,layoutId:\"qdWHFwo2y\",style:{\"--extracted-gdpscs\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed16()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC601\uC5C5\uC774\uC775, \uC790\uC0B0\uACFC \uBD80\uCC44, \uC8FC\uC8FC\uC774\uC775\uB960 ROE\uAE4C\uC9C0, \uAE30\uC5C5\uC758 \uBAA8\uB4E0 \uC7AC\uBB34\uC694\uC18C\uB97C \uC2DC\uAC01\uD654\uD55C AI \uC2A4\uB0C5\uC0F7\uC785\uB2C8\uB2E4. ERP \uB370\uC774\uD130\uB97C \uBD84\uC11D\uD574 \uD604\uC7AC \uC7AC\uBB34 \uC0C1\uD0DC\uB97C \uD55C\uB208\uC5D0 \uD655\uC778\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-1g93zk4\",fonts:[\"CUSTOM;Pretendard ExtraLight\"],layoutDependency:layoutDependency,layoutId:\"e1vDzO1Xg\",style:{\"--extracted-r6o4lv\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({biPm9qro7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC601\uC5C5\uC774\uC775, \uC790\uC0B0\uACFC \uBD80\uCC44, \uC8FC\uC8FC\uC774\uC775\uB960 ROE\uAE4C\uC9C0, \uAE30\uC5C5\uC758 \uBAA8\uB4E0 \uC7AC\uBB34\uC694\uC18C\uB97C \uC2DC\uAC01\uD654\uD55C AI \uC2A4\uB0C5\uC0F7\uC785\uB2C8\uB2E4. ERP \uB370\uC774\uD130\uB97C \uBD84\uC11D\uD574 \uD604\uC7AC \uC7AC\uBB34 \uC0C1\uD0DC\uB97C \uD55C\uB208\uC5D0 \uD655\uC778\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.\"})})},CSe3vcMJW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC6D4\uBCC4 KPI\uB97C \uC124\uC815\uD558\uACE0, \uBAA9\uD45C \uB9E4\uCD9C \uAE30\uBC18\uC758 \uC608\uC0B0 \uC218\uB9BD\uC744 \uC790\uB3D9\uD654\uD569\uB2C8\uB2E4. \uBAA8\uB4E0 \uC7AC\uBB34\uC694\uC18C \uC608\uC0B0 \uC218\uB9BD\uACFC \uC2DC\uB098\uB9AC\uC624\uBCC4 \uC7AC\uBB34\uC608\uCE21, \uCD94\uC815\uC7AC\uBB34\uC81C\uD45C \uC791\uC131\uC744 \uB300\uC2E0\uD569\uB2C8\uB2E4.\"})})},l0D8jhLfW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"ERP \uB370\uC774\uD130\uB97C \uAE30\uBC18\uC73C\uB85C \uC608\uC0B0 \uB300\uBE44 \uC2E4\uC801 \uCC28\uC774\uB97C \uC2DC\uAC01\uC801\uC73C\uB85C \uBD84\uC11D\uD558\uC5EC \uD569\uB9AC\uC801\uC774\uACE0 \uD22C\uBA85\uD55C KPI \uC131\uACFC\uD3C9\uAC00\uB97C \uC9C0\uC6D0\uD569\uB2C8\uB2E4. \uBD80\uC11C \uAC04 \uD6A8\uACFC\uC801\uC778 \uB370\uC774\uD130 \uAE30\uBC18 \uC18C\uD1B5\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4.\"})}),fonts:[\"CUSTOM;Pretendard Light\"]},lGCxamp2b:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC6D4\uBCC4 \uC190\uC775\uBD80\uD130 ROE\uAE4C\uC9C0, \uC7AC\uBB34 \uAD00\uC810\uC758 +20 \uC9C0\uD45C \uBCF4\uACE0\uC11C\uB97C AI\uAC00 \uC790\uB3D9 \uC791\uC131\uD569\uB2C8\uB2E4. \uAC01 \uC9C0\uD45C\uBCC4 \uC0B0\uCD9C\uC2DD \uC870\uD68C, \uC5D1\uC140 \uB2E4\uC6B4\uB85C\uB4DC \uBC0F \uC815\uD655\uD55C \uC0B0\uCD9C\uC2DD \uC81C\uACF5\uC73C\uB85C \uC7AC\uBB34 \uB370\uC774\uD130 \uD65C\uC6A9\uACFC \uAC80\uC99D\uC744 \uCD5C\uC801\uD654\uD558\uC138\uC694\"})}),fonts:[\"CUSTOM;Pretendard Light\"]},MFTeUYKkq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC6D4\uBCC4\uC190\uC775\uBD80\uD130 \uC0AC\uC5C5\uBD80\uBCC4 \uC131\uACFC\uD45C\uAE4C\uC9C0, +20\uAC00\uC9C0\uC758 \uC7AC\uBB34\uBD84\uC11D \uBCF4\uACE0\uC11C\uB97C AI\uAC00 \uC790\uB3D9 \uC791\uC131\uD569\uB2C8\uB2E4. \uAC01 \uC9C0\uD45C\uBCC4 \uC0B0\uCD9C\uC2DD \uC870\uD68C, \uC5D1\uC140 \uB2E4\uC6B4\uB85C\uB4DC \uBC0F \uC815\uD655\uD55C \uC0B0\uCD9C\uC2DD \uC81C\uACF5\uC73C\uB85C \uC7AC\uBB34 \uB370\uC774\uD130 \uD65C\uC6A9\uACFC \uAC80\uC99D\uC744 \uCD5C\uC801\uD654\uD558\uC138\uC694.\"})})},rvvP7JzQO:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC601\uC5C5\uC774\uC775, \uC790\uC0B0\uACFC \uBD80\uCC44, \uC8FC\uC8FC\uC774\uC775\uB960 ROE\uAE4C\uC9C0, \uAE30\uC5C5\uC758 \uBAA8\uB4E0 \uC7AC\uBB34\uC694\uC18C\uB97C \uC2DC\uAC01\uD654\uD55C AI \uC2A4\uB0C5\uC0F7\uC785\uB2C8\uB2E4. ERP \uB370\uC774\uD130\uB97C \uBD84\uC11D\uD574 \uD604\uC7AC \uC7AC\uBB34 \uC0C1\uD0DC\uB97C \uD55C\uB208\uC5D0 \uD655\uC778\uD560 \uC218 \uC788\uC2B5\uB2C8\uB2E4.\"})})},zIw7DCp6G:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC6D4\uBCC4 KPI\uB97C \uC124\uC815\uD558\uACE0, \uBAA9\uD45C \uB9E4\uCD9C \uAE30\uBC18\uC758 \uC608\uC0B0 \uC218\uB9BD\uC744 \uC790\uB3D9\uD654\uD569\uB2C8\uB2E4. \uBAA8\uB4E0 \uC7AC\uBB34\uC694\uC18C \uC608\uC0B0 \uC218\uB9BD\uACFC \uC2DC\uB098\uB9AC\uC624\uBCC4 \uC7AC\uBB34\uC608\uCE21, \uCD94\uC815\uC7AC\uBB34\uC81C\uD45C \uC791\uC131\uAE4C\uC9C0 \uC790\uB3D9\uD654\uB429\uB2C8\uB2E4.\"})}),fonts:[\"CUSTOM;Pretendard Light\"]},zwB3WUKIJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"ERP \uB370\uC774\uD130\uB97C \uAE30\uBC18\uC73C\uB85C \uC608\uC0B0 \uB300\uBE44 \uC2E4\uC801 \uCC28\uC774\uB97C \uC2DC\uAC01\uC801\uC73C\uB85C \uBD84\uC11D\uD558\uC5EC \uD569\uB9AC\uC801\uC774\uACE0 \uD22C\uBA85\uD55C KPI \uC131\uACFC\uD3C9\uAC00\uB97C \uC9C0\uC6D0\uD569\uB2C8\uB2E4. \uBD80\uC11C \uAC04 \uD6A8\uACFC\uC801\uC778 \uB370\uC774\uD130 \uAE30\uBC18 \uC18C\uD1B5\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4.\"})})}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"ERP \uB370\uC774\uD130\uB97C \uAE30\uBC18\uC73C\uB85C \uC608\uC0B0 \uB300\uBE44 \uC2E4\uC801 \uCC28\uC774\uB97C \uC2DC\uAC01\uC801\uC73C\uB85C \uBD84\uC11D\uD558\uC5EC \uD569\uB9AC\uC801\uC774\uACE0 \uD22C\uBA85\uD55C KPI \uC131\uACFC\uD3C9\uAC00\uB97C \uC9C0\uC6D0\uD569\uB2C8\uB2E4. \uBD80\uC11C \uAC04 \uD6A8\uACFC\uC801\uC778 \uB370\uC774\uD130 \uAE30\uBC18 \uC18C\uD1B5\uC744 \uC9C0\uC6D0\uD569\uB2C8\uB2E4.\"})}),className:\"framer-10kwjlf\",fonts:[\"CUSTOM;Pretendard ExtraLight\"],layoutDependency:layoutDependency,layoutId:\"fK0kU131G\",style:{\"--extracted-r6o4lv\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed7()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC6D4\uBCC4 KPI\uB97C \uC124\uC815\uD558\uACE0, \uBAA9\uD45C \uB9E4\uCD9C \uAE30\uBC18\uC758 \uC608\uC0B0 \uC218\uB9BD\uC744 \uC790\uB3D9\uD654\uD569\uB2C8\uB2E4. \uBAA8\uB4E0 \uC7AC\uBB34\uC694\uC18C \uC608\uC0B0 \uC218\uB9BD\uACFC \uC2DC\uB098\uB9AC\uC624\uBCC4 \uC7AC\uBB34\uC608\uCE21, \uCD94\uC815\uC7AC\uBB34\uC81C\uD45C \uC791\uC131\uAE4C\uC9C0 \uC790\uB3D9\uD654\uB429\uB2C8\uB2E4.\"})}),className:\"framer-1271fd\",fonts:[\"CUSTOM;Pretendard ExtraLight\"],layoutDependency:layoutDependency,layoutId:\"fL1udyELy\",style:{\"--extracted-r6o4lv\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed6()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(217, 217, 217))\"},children:\"\uC6D4\uBCC4 \uC190\uC775\uBD80\uD130 ROE\uAE4C\uC9C0, \uC7AC\uBB34 \uAD00\uC810\uC758 +20 \uC9C0\uD45C \uBCF4\uACE0\uC11C\uB97C AI\uAC00 \uC790\uB3D9 \uC791\uC131\uD569\uB2C8\uB2E4. \uAC01 \uC9C0\uD45C\uBCC4 \uC0B0\uCD9C\uC2DD \uC870\uD68C, \uC5D1\uC140 \uB2E4\uC6B4\uB85C\uB4DC \uBC0F \uC815\uD655\uD55C \uC0B0\uCD9C\uC2DD \uC81C\uACF5\uC73C\uB85C \uC7AC\uBB34 \uB370\uC774\uD130 \uD65C\uC6A9\uACFC \uAC80\uC99D\uC744 \uCD5C\uC801\uD654\uD558\uC138\uC694\"})}),className:\"framer-78jhqo\",fonts:[\"CUSTOM;Pretendard ExtraLight\"],layoutDependency:layoutDependency,layoutId:\"CVz7lECHS\",style:{\"--extracted-r6o4lv\":\"rgb(217, 217, 217)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed17()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined},{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({rvvP7JzQO:{height:50,y:(componentViewport?.y||0)+0+101.9678+0+0+0+0+2+178}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1joem4a-container\",layoutDependency:layoutDependency,layoutId:\"j8F9wpqnL-container\",nodeId:\"j8F9wpqnL\",rendersWithMotion:true,scopeId:\"y9DKpcRhW\",children:/*#__PURE__*/_jsx(ButtonGeneral,{c3NOAKqXS:resolvedLinks[0],gCmmKaF_0:\"\uBB34\uB8CC \uB370\uC774\uD130 \uC9C4\uB2E8\uBC1B\uAE30\",height:\"100%\",id:\"j8F9wpqnL\",layoutId:\"j8F9wpqnL\",variant:\"tMbDCz9wv\",width:\"100%\",...addPropertyOverrides({rvvP7JzQO:{c3NOAKqXS:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),isDisplayed6()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined},{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({EnNHTw9p5:{height:50,y:(componentViewport?.y||0)+0+101.9678+0+0+0+0+2+178}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-16e3j3e-container\",layoutDependency:layoutDependency,layoutId:\"t5M_c8uWH-container\",nodeId:\"t5M_c8uWH\",rendersWithMotion:true,scopeId:\"y9DKpcRhW\",children:/*#__PURE__*/_jsx(ButtonGeneral,{c3NOAKqXS:resolvedLinks1[0],gCmmKaF_0:\"\uBB34\uB8CC \uB370\uC774\uD130 \uC9C4\uB2E8\uBC1B\uAE30\",height:\"100%\",id:\"t5M_c8uWH\",layoutId:\"t5M_c8uWH\",variant:\"tMbDCz9wv\",width:\"100%\",...addPropertyOverrides({EnNHTw9p5:{c3NOAKqXS:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),isDisplayed7()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined},{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hFh4POjHQ:{height:50,y:(componentViewport?.y||0)+0+101.9678+0+0+0+0+2+178}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-19f1r47-container\",layoutDependency:layoutDependency,layoutId:\"JhxLZoDBv-container\",nodeId:\"JhxLZoDBv\",rendersWithMotion:true,scopeId:\"y9DKpcRhW\",children:/*#__PURE__*/_jsx(ButtonGeneral,{c3NOAKqXS:resolvedLinks2[0],gCmmKaF_0:\"\uBB34\uB8CC \uB370\uC774\uD130 \uC9C4\uB2E8\uBC1B\uAE30\",height:\"100%\",id:\"JhxLZoDBv\",layoutId:\"JhxLZoDBv\",variant:\"tMbDCz9wv\",width:\"100%\",...addPropertyOverrides({hFh4POjHQ:{c3NOAKqXS:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),isDisplayed8()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined},{href:{webPageId:\"tL2nZIDsx\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({wOq7pXVwr:{height:50,y:(componentViewport?.y||0)+0+101.9678+0+0+0+0+2+178}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-2wjgis-container\",layoutDependency:layoutDependency,layoutId:\"QuLvEiwQ8-container\",nodeId:\"QuLvEiwQ8\",rendersWithMotion:true,scopeId:\"y9DKpcRhW\",children:/*#__PURE__*/_jsx(ButtonGeneral,{c3NOAKqXS:resolvedLinks3[0],gCmmKaF_0:\"\uBB34\uB8CC \uB370\uC774\uD130 \uC9C4\uB2E8\uBC1B\uAE30\",height:\"100%\",id:\"QuLvEiwQ8\",layoutId:\"QuLvEiwQ8\",variant:\"tMbDCz9wv\",width:\"100%\",...addPropertyOverrides({wOq7pXVwr:{c3NOAKqXS:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),isDisplayed18()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined},{href:{webPageId:\"ySCfKVYrh\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 4, 1px)`,y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-(298+Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-298)/1)*1))/1*0)+0+234,...addPropertyOverrides({biPm9qro7:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 3, 1px)`,y:(componentViewport?.y||0)+0+84+0+0+0+0+184.2},CSe3vcMJW:{y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-(305.2+Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-305.2)/1)*1))/1*0)+0+241.2},G_Jz1HsRn:{y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||698)-0-84)/1)*1-0)*1,619)-0-(298+0+Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||698)-0-84)/1)*1-0)*1,619)-0-298)/1)*1))/2*0)+0+234},l0D8jhLfW:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 3, 1px)`,y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||559)-0-84)/1)*1-0)*1,619)-0-254.2)/1*0)+0+184.2},lGCxamp2b:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 3, 1px)`,y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||559)-0-84)/1)*1-0)*1,619)-0-254.2)/1*0)+0+184.2},MFTeUYKkq:{y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-(305.2+0+Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-305.2)/1)*1))/2*0)+0+241.2},zIw7DCp6G:{width:`max((${componentViewport?.width||\"100vw\"} - 88px) / 3, 1px)`,y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||559)-0-84)/1)*1-0)*1,619)-0-254.2)/1*0)+0+184.2},zwB3WUKIJ:{y:(componentViewport?.y||0)+0+84+0+0+(0+0+(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-(305.2+Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||703)-0-84)/1)*1-0)*1,619)-0-305.2)/1)*1))/1*0)+0+241.2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ggd8sh-container\",layoutDependency:layoutDependency,layoutId:\"tm7LeFhHz-container\",nodeId:\"tm7LeFhHz\",rendersWithMotion:true,scopeId:\"y9DKpcRhW\",children:/*#__PURE__*/_jsx(Button2,{ac4JHN6Mf:resolvedLinks4[0],FXv52DSLw:false,height:\"100%\",id:\"tm7LeFhHz\",layoutId:\"tm7LeFhHz\",rg47ZmHbv:\"var(--token-965e5c17-6359-41cc-bd03-2fa4898e2c2b, rgb(34, 36, 38))\",style:{height:\"100%\",width:\"100%\"},variant:\"XhZkiSMYf\",vwDDD4qrl:15,width:\"100%\",Xg1a7VaWe:\"\uBB34\uB8CC ERP\\xb7\uC7AC\uBB34 \uC9C4\uB2E8 \uCEE8\uC124\uD305 \uC2E0\uCCAD\",...addPropertyOverrides({biPm9qro7:{ac4JHN6Mf:resolvedLinks4[2]},CSe3vcMJW:{ac4JHN6Mf:resolvedLinks4[4],Xg1a7VaWe:\"\uB3C4\uC785\uBB38\uC758\uD558\uAE30\"},G_Jz1HsRn:{ac4JHN6Mf:resolvedLinks4[1]},l0D8jhLfW:{ac4JHN6Mf:resolvedLinks4[8]},lGCxamp2b:{ac4JHN6Mf:resolvedLinks4[6]},MFTeUYKkq:{ac4JHN6Mf:resolvedLinks4[3],Xg1a7VaWe:\"\uB3C4\uC785 \uBB38\uC758\uD558\uAE30\"},zIw7DCp6G:{ac4JHN6Mf:resolvedLinks4[7]},zwB3WUKIJ:{ac4JHN6Mf:resolvedLinks4[5],Xg1a7VaWe:\"\uB3C4\uC785\uBB38\uC758\uD558\uAE30\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed19()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17l7h6g\",\"data-framer-name\":\"Scroll Next\",layoutDependency:layoutDependency,layoutId:\"I9e1tqwwe\"}),isDisplayed20()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-uv21u9\",\"data-framer-name\":\"Scroll Next\",layoutDependency:layoutDependency,layoutId:\"V60D8MIJk\"}),isDisplayed21()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-zb17qf\",\"data-framer-name\":\"Scroll Next\",layoutDependency:layoutDependency,layoutId:\"LPVCZsITW\"}),isDisplayed22()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gqlajj\",\"data-framer-name\":\"Scroll Next\",layoutDependency:layoutDependency,layoutId:\"UcRjiXmXG\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"EPw6ZR00a\"},implicitPathVariables:undefined},{href:{webPageId:\"EPw6ZR00a\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"58px\",...addPropertyOverrides({G_Jz1HsRn:{height:Math.max(0,(Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||698)-0-84)/1)*1-0)*1,619)-0-298)/1)*1-0-0)/1)*1,y:(componentViewport?.y||0)+0+84+0+0+(0+298+(Math.min((Math.max(0,((componentViewport?.height||698)-0-84)/1)*1-0)*1,619)-0-(298+0+Math.max(0,(Math.min((Math.max(0,((componentViewport?.height||698)-0-84)/1)*1-0)*1,619)-0-298)/1)*1))/2*2)+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1jiiro0-container\",layoutDependency:layoutDependency,layoutId:\"ow809bmSS-container\",nodeId:\"ow809bmSS\",rendersWithMotion:true,scopeId:\"y9DKpcRhW\",children:/*#__PURE__*/_jsx(ElementScrollArrow,{B1MSzyHv4:\"rgb(255, 255, 255)\",height:\"100%\",id:\"ow809bmSS\",layoutId:\"ow809bmSS\",M25celVi6:resolvedLinks5[0],style:{height:\"100%\",width:\"100%\"},variant:\"jllCX9WJ3\",width:\"100%\",...addPropertyOverrides({G_Jz1HsRn:{M25celVi6:resolvedLinks5[1]}},baseVariant,gestureVariant)})})})})})]}),isDisplayed18()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) * 0.75, 1px)`,src:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif\",srcSet:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif 1600w\"},className:\"framer-10kot4x\",layoutDependency:layoutDependency,layoutId:\"cFRTZjfm9\",style:{borderTopLeftRadius:3,borderTopRightRadius:3,filter:\"brightness(0.54)\",WebkitFilter:\"brightness(0.54)\"},...addPropertyOverrides({biPm9qro7:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) / 1.5, 1px)`,src:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif\",srcSet:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif 1600w\"}},CSe3vcMJW:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) * 0.75, 1px)`,src:\"https://framerusercontent.com/images/E8dhMXFfd7Xo00c9jS1NmVw3HI.gif\",srcSet:\"https://framerusercontent.com/images/E8dhMXFfd7Xo00c9jS1NmVw3HI.gif?scale-down-to=512 512w,https://framerusercontent.com/images/E8dhMXFfd7Xo00c9jS1NmVw3HI.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/E8dhMXFfd7Xo00c9jS1NmVw3HI.gif 1600w\"}},l0D8jhLfW:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) / 1.5, 1px)`,src:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg\",srcSet:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg 1200w\"}},lGCxamp2b:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) / 1.5, 1px)`,src:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg\",srcSet:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg 1200w\"}},MFTeUYKkq:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) * 0.75, 1px)`,src:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg\",srcSet:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg 1200w\"}},zIw7DCp6G:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) / 1.5, 1px)`,src:\"https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif\",srcSet:\"https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif 1600w\"}},zwB3WUKIJ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+84+0),pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",sizes:`max((${componentViewport?.width||\"100vw\"} - 88px) * 0.75, 1px)`,src:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg\",srcSet:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg 1200w\"}}},baseVariant,gestureVariant)})]}),isDisplayed17()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",src:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif\",srcSet:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif 1600w\"},className:\"framer-p1ebmo\",layoutDependency:layoutDependency,layoutId:\"eySQuFXPf\",style:{borderTopLeftRadius:3,borderTopRightRadius:3,filter:\"brightness(0.54)\",WebkitFilter:\"brightness(0.54)\"},...addPropertyOverrides({rvvP7JzQO:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+362.9678),pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif\",srcSet:\"https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=512 512w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/KznV754BDogNz5RJuAH0Yef6tCo.gif 1600w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",src:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg\",srcSet:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg 1200w\"},className:\"framer-2synl1\",layoutDependency:layoutDependency,layoutId:\"mSNn3mZtK\",style:{borderTopLeftRadius:3,borderTopRightRadius:3,filter:\"brightness(0.54)\",WebkitFilter:\"brightness(0.54)\"},...addPropertyOverrides({EnNHTw9p5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+341.9678),pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg\",srcSet:\"https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=512 512w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JfFCECdQLw001WvhDFSfhjI48.svg 1200w\"}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",src:\"https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif\",srcSet:\"https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif 1600w\"},className:\"framer-i3myi9\",layoutDependency:layoutDependency,layoutId:\"g3nsHmuIM\",style:{borderTopLeftRadius:3,borderTopRightRadius:3,filter:\"brightness(0.54)\",WebkitFilter:\"brightness(0.54)\"},...addPropertyOverrides({hFh4POjHQ:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+362.9678),pixelHeight:800,pixelWidth:1600,positionX:\"right\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif\",srcSet:\"https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif?scale-down-to=512 512w,https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif?scale-down-to=1024 1024w,https://framerusercontent.com/images/vw5dZ6JU9E2ApWEPg5si5qv18.gif 1600w\"}}},baseVariant,gestureVariant)}),isDisplayed8()&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",src:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg\",srcSet:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg 1200w\"},className:\"framer-3vl8fo\",layoutDependency:layoutDependency,layoutId:\"f30LEagGK\",style:{borderTopLeftRadius:3,borderTopRightRadius:3,filter:\"brightness(0.54)\",WebkitFilter:\"brightness(0.54)\"},...addPropertyOverrides({wOq7pXVwr:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+362.9678),pixelHeight:600,pixelWidth:1200,positionX:\"right\",positionY:\"top\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 60px)`,src:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg\",srcSet:\"https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=512 512w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/gUV2M53Cj1j9sGu4dmPOCaf6FM.svg 1200w\"}}},baseVariant,gestureVariant)})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Qlf0Q.framer-1252sqr, .framer-Qlf0Q .framer-1252sqr { display: block; }\",\".framer-Qlf0Q.framer-g2fbm9 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: 703px; justify-content: flex-start; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 1600px; }\",\".framer-Qlf0Q .framer-9ubhja { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Qlf0Q .framer-1p99lt9 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 35px; justify-content: center; overflow: visible; padding: 0px 15px 0px 15px; position: relative; width: 1px; }\",\".framer-Qlf0Q .framer-1ay2lbd, .framer-Qlf0Q .framer-dd1ol6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-Qlf0Q .framer-aa7e0v, .framer-Qlf0Q .framer-80lnrb, .framer-Qlf0Q .framer-7e3jip, .framer-Qlf0Q .framer-14rpx1o, .framer-Qlf0Q .framer-dtvtz1, .framer-Qlf0Q .framer-l234ee, .framer-Qlf0Q .framer-1jc7br4, .framer-Qlf0Q .framer-1q1q5uk, .framer-Qlf0Q .framer-1igk1nk, .framer-Qlf0Q .framer-1bikm3y, .framer-Qlf0Q .framer-11epk6q, .framer-Qlf0Q .framer-f2pti9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Qlf0Q .framer-p6jor6, .framer-Qlf0Q .framer-2r8wki, .framer-Qlf0Q .framer-199ihb6, .framer-Qlf0Q .framer-1rxskfb, .framer-Qlf0Q .framer-tqkmgm, .framer-Qlf0Q .framer-1r720li, .framer-Qlf0Q .framer-1ujqid2, .framer-Qlf0Q .framer-1id8isz, .framer-Qlf0Q .framer-eb6igt { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\".framer-Qlf0Q .framer-3jq8dj, .framer-Qlf0Q .framer-1ihuoz3, .framer-Qlf0Q .framer-1kuicht, .framer-Qlf0Q .framer-gxr0m4, .framer-Qlf0Q .framer-j403y4, .framer-Qlf0Q .framer-2yjuj4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); position: relative; width: 18px; }\",\".framer-Qlf0Q .framer-v8848m, .framer-Qlf0Q .framer-8r0eia, .framer-Qlf0Q .framer-1jicyly { align-content: center; align-items: center; cursor: pointer; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 35px; justify-content: center; overflow: visible; padding: 0px 10px 0px 10px; position: relative; width: 1px; }\",\".framer-Qlf0Q .framer-1i56uk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 200px; }\",\".framer-Qlf0Q .framer-edw5db { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 28px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qlf0Q .framer-18my8i9 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 100%; justify-content: space-between; max-height: 619px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Qlf0Q .framer-1qac1n7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 20px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Qlf0Q .framer-m5kjzg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 10px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-Qlf0Q .framer-1izv219 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qlf0Q .framer-qxvvqy, .framer-Qlf0Q .framer-1yh732x, .framer-Qlf0Q .framer-wv8uls, .framer-Qlf0Q .framer-1f7d2iy, .framer-Qlf0Q .framer-15vfuk9, .framer-Qlf0Q .framer-q72l5r, .framer-Qlf0Q .framer-16tdz7u, .framer-Qlf0Q .framer-mmp9r0, .framer-Qlf0Q .framer-1g93zk4, .framer-Qlf0Q .framer-10kwjlf, .framer-Qlf0Q .framer-1271fd, .framer-Qlf0Q .framer-78jhqo { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Qlf0Q .framer-1joem4a-container, .framer-Qlf0Q .framer-16e3j3e-container, .framer-Qlf0Q .framer-19f1r47-container, .framer-Qlf0Q .framer-2wjgis-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Qlf0Q .framer-ggd8sh-container { flex: none; height: 44px; position: relative; width: 100%; }\",\".framer-Qlf0Q .framer-17l7h6g, .framer-Qlf0Q .framer-uv21u9, .framer-Qlf0Q .framer-zb17qf, .framer-Qlf0Q .framer-1gqlajj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Qlf0Q .framer-1jiiro0-container { flex: 1 0 0px; height: 1px; mix-blend-mode: lighten; position: relative; width: 58px; z-index: 1; }\",\".framer-Qlf0Q .framer-10kot4x { align-content: flex-start; align-items: flex-start; display: flex; flex: 3 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 100%; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qlf0Q .framer-p1ebmo, .framer-Qlf0Q .framer-2synl1, .framer-Qlf0Q .framer-i3myi9, .framer-Qlf0Q .framer-3vl8fo { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Qlf0Q.framer-v-1m6go7r.framer-g2fbm9 { height: 698px; width: 1241px; }\",\".framer-Qlf0Q.framer-v-1m6go7r .framer-17l7h6g, .framer-Qlf0Q.framer-v-113ugft .framer-17l7h6g { flex: none; height: min-content; min-height: 280px; }\",\".framer-Qlf0Q.framer-v-18ch93s.framer-g2fbm9, .framer-Qlf0Q.framer-v-ttyywl.framer-g2fbm9, .framer-Qlf0Q.framer-v-1mn3d6d.framer-g2fbm9, .framer-Qlf0Q.framer-v-sth1m6.framer-g2fbm9 { height: 559px; width: 852px; }\",\".framer-Qlf0Q.framer-v-18ch93s .framer-18my8i9 { gap: 24px; justify-content: flex-start; }\",\".framer-Qlf0Q.framer-v-18ch93s .framer-17l7h6g, .framer-Qlf0Q.framer-v-ttyywl .framer-17l7h6g, .framer-Qlf0Q.framer-v-1mn3d6d .framer-17l7h6g, .framer-Qlf0Q.framer-v-sth1m6 .framer-17l7h6g { flex: none; height: min-content; min-height: 196px; padding: 6px 0px 0px 0px; }\",\".framer-Qlf0Q.framer-v-18ch93s .framer-10kot4x, .framer-Qlf0Q.framer-v-ttyywl .framer-10kot4x, .framer-Qlf0Q.framer-v-1mn3d6d .framer-10kot4x, .framer-Qlf0Q.framer-v-sth1m6 .framer-10kot4x { flex: 2 0 0px; }\",\".framer-Qlf0Q.framer-v-113ugft .framer-1p99lt9, .framer-Qlf0Q.framer-v-hl8iv1 .framer-1p99lt9, .framer-Qlf0Q.framer-v-93g4h5 .framer-1p99lt9, .framer-Qlf0Q.framer-v-1mn3d6d .framer-1p99lt9, .framer-Qlf0Q.framer-v-sth1m6 .framer-1p99lt9 { cursor: pointer; padding: 0px 10px 0px 10px; }\",\".framer-Qlf0Q.framer-v-113ugft .framer-1ay2lbd, .framer-Qlf0Q.framer-v-hl8iv1 .framer-1ay2lbd, .framer-Qlf0Q.framer-v-hl8iv1 .framer-dd1ol6, .framer-Qlf0Q.framer-v-93g4h5 .framer-1ay2lbd, .framer-Qlf0Q.framer-v-93g4h5 .framer-dd1ol6, .framer-Qlf0Q.framer-v-ttyywl .framer-1ay2lbd, .framer-Qlf0Q.framer-v-1mn3d6d .framer-1ay2lbd, .framer-Qlf0Q.framer-v-1mn3d6d .framer-dd1ol6, .framer-Qlf0Q.framer-v-sth1m6 .framer-1ay2lbd, .framer-Qlf0Q.framer-v-sth1m6 .framer-dd1ol6 { height: var(--framer-aspect-ratio-supported, 22px); width: 22px; }\",\".framer-Qlf0Q.framer-v-113ugft .framer-1i56uk3 { flex: 1 0 0px; height: 35px; padding: 0px 15px 0px 15px; width: 1px; }\",\".framer-Qlf0Q.framer-v-hl8iv1 .framer-1i56uk3, .framer-Qlf0Q.framer-v-93g4h5 .framer-1i56uk3, .framer-Qlf0Q.framer-v-1mn3d6d .framer-1i56uk3, .framer-Qlf0Q.framer-v-sth1m6 .framer-1i56uk3 { cursor: pointer; flex: 1 0 0px; height: 35px; padding: 0px 10px 0px 10px; width: 1px; }\",\".framer-Qlf0Q.framer-v-hl8iv1 .framer-8r0eia { gap: 14px; }\",\".framer-Qlf0Q.framer-v-93g4h5 .framer-9ubhja, .framer-Qlf0Q.framer-v-93g4h5 .framer-18my8i9, .framer-Qlf0Q.framer-v-sth1m6 .framer-9ubhja, .framer-Qlf0Q.framer-v-hpyi7h .framer-1izv219, .framer-Qlf0Q.framer-v-1w7wuyq .framer-1izv219, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1izv219, .framer-Qlf0Q.framer-v-1ffz2nv .framer-1izv219 { order: 0; }\",\".framer-Qlf0Q.framer-v-93g4h5 .framer-1jicyly { gap: 10px; padding: 0px 15px 0px 15px; }\",\".framer-Qlf0Q.framer-v-93g4h5 .framer-edw5db, .framer-Qlf0Q.framer-v-93g4h5 .framer-10kot4x, .framer-Qlf0Q.framer-v-sth1m6 .framer-edw5db, .framer-Qlf0Q.framer-v-hpyi7h .framer-1g93zk4, .framer-Qlf0Q.framer-v-hpyi7h .framer-1joem4a-container, .framer-Qlf0Q.framer-v-1w7wuyq .framer-gxr0m4, .framer-Qlf0Q.framer-v-1ffz2nv .framer-j403y4 { order: 1; }\",\".framer-Qlf0Q.framer-v-ttyywl .framer-1p99lt9 { cursor: pointer; order: 0; padding: 0px 10px 0px 10px; }\",\".framer-Qlf0Q.framer-v-ttyywl .framer-1i56uk3 { flex: 1 0 0px; height: 35px; order: 2; padding: 0px 15px 0px 15px; width: 1px; }\",\".framer-Qlf0Q.framer-v-ttyywl .framer-8r0eia, .framer-Qlf0Q.framer-v-1w7wuyq .framer-16e3j3e-container, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1271fd { order: 3; }\",\".framer-Qlf0Q.framer-v-ttyywl .framer-1jicyly, .framer-Qlf0Q.framer-v-1w7wuyq .framer-78jhqo, .framer-Qlf0Q.framer-v-14bo7x1 .framer-80lnrb, .framer-Qlf0Q.framer-v-14bo7x1 .framer-19f1r47-container, .framer-Qlf0Q.framer-v-1ffz2nv .framer-80lnrb { order: 4; }\",\".framer-Qlf0Q.framer-v-1mn3d6d .framer-8r0eia { cursor: unset; gap: 14px; }\",\".framer-Qlf0Q.framer-v-sth1m6 .framer-1jicyly { cursor: unset; gap: 10px; padding: 0px 15px 0px 15px; }\",\".framer-Qlf0Q.framer-v-hpyi7h.framer-g2fbm9, .framer-Qlf0Q.framer-v-1w7wuyq.framer-g2fbm9, .framer-Qlf0Q.framer-v-14bo7x1.framer-g2fbm9, .framer-Qlf0Q.framer-v-1ffz2nv.framer-g2fbm9 { gap: 16px; height: 559px; width: 329px; }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-9ubhja, .framer-Qlf0Q.framer-v-1w7wuyq .framer-9ubhja, .framer-Qlf0Q.framer-v-14bo7x1 .framer-9ubhja, .framer-Qlf0Q.framer-v-1ffz2nv .framer-9ubhja { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-1p99lt9, .framer-Qlf0Q.framer-v-hpyi7h .framer-v8848m, .framer-Qlf0Q.framer-v-hpyi7h .framer-8r0eia, .framer-Qlf0Q.framer-v-hpyi7h .framer-1jicyly { align-self: start; flex: none; height: 30px; justify-self: start; width: 100%; }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-p6jor6, .framer-Qlf0Q.framer-v-hpyi7h .framer-2r8wki, .framer-Qlf0Q.framer-v-hpyi7h .framer-1r720li, .framer-Qlf0Q.framer-v-hpyi7h .framer-1id8isz, .framer-Qlf0Q.framer-v-1w7wuyq .framer-1r720li, .framer-Qlf0Q.framer-v-1w7wuyq .framer-1id8isz, .framer-Qlf0Q.framer-v-14bo7x1 .framer-2r8wki, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1id8isz, .framer-Qlf0Q.framer-v-1ffz2nv .framer-1r720li, .framer-Qlf0Q.framer-v-1ffz2nv .framer-1id8isz { height: var(--framer-aspect-ratio-supported, 18px); width: 18px; }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-edw5db, .framer-Qlf0Q.framer-v-14bo7x1 .framer-edw5db, .framer-Qlf0Q.framer-v-1ffz2nv .framer-edw5db { flex: none; flex-direction: column; gap: 0px; height: min-content; }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-18my8i9, .framer-Qlf0Q.framer-v-14bo7x1 .framer-18my8i9, .framer-Qlf0Q.framer-v-1ffz2nv .framer-18my8i9 { flex: none; gap: 0px; height: min-content; justify-content: center; width: 100%; }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-1qac1n7, .framer-Qlf0Q.framer-v-1w7wuyq .framer-1qac1n7, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1qac1n7, .framer-Qlf0Q.framer-v-1ffz2nv .framer-1qac1n7 { gap: 17px; order: 0; padding: 2px 0px 15px 0px; }\",\".framer-Qlf0Q.framer-v-hpyi7h .framer-m5kjzg, .framer-Qlf0Q.framer-v-1w7wuyq .framer-m5kjzg, .framer-Qlf0Q.framer-v-14bo7x1 .framer-m5kjzg, .framer-Qlf0Q.framer-v-1ffz2nv .framer-m5kjzg { order: 0; padding: 10px 20px 14px 20px; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-1p99lt9, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1p99lt9, .framer-Qlf0Q.framer-v-1ffz2nv .framer-1p99lt9 { align-self: start; cursor: pointer; flex: none; height: 30px; justify-self: start; order: 0; width: 100%; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-dtvtz1 { order: 7; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-3jq8dj, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1bikm3y { order: 6; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-v8848m { align-self: start; cursor: unset; flex: none; height: 30px; justify-self: start; order: 1; width: 100%; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-l234ee, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1ihuoz3, .framer-Qlf0Q.framer-v-1ffz2nv .framer-1kuicht, .framer-Qlf0Q.framer-v-1ffz2nv .framer-l234ee, .framer-Qlf0Q.framer-v-1ffz2nv .framer-10kwjlf { order: 2; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-8r0eia, .framer-Qlf0Q.framer-v-1ffz2nv .framer-8r0eia { align-self: start; flex: none; height: 30px; justify-self: start; order: 3; width: 100%; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-1jicyly, .framer-Qlf0Q.framer-v-14bo7x1 .framer-1jicyly { align-self: start; flex: none; height: 30px; justify-self: start; order: 4; width: 100%; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-edw5db { flex: none; flex-direction: column; gap: 0px; height: 224px; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-18my8i9 { flex: none; gap: 0px; height: min-content; justify-content: flex-start; width: 100%; }\",\".framer-Qlf0Q.framer-v-1w7wuyq .framer-17l7h6g { flex: none; height: min-content; min-height: 280px; order: 1; }\",\".framer-Qlf0Q.framer-v-14bo7x1 .framer-v8848m, .framer-Qlf0Q.framer-v-1ffz2nv .framer-v8848m { align-self: start; flex: none; height: 30px; justify-self: start; order: 1; width: 100%; }\",\".framer-Qlf0Q.framer-v-14bo7x1 .framer-8r0eia { align-self: start; cursor: unset; flex: none; height: 30px; justify-self: start; order: 3; width: 100%; }\",\".framer-Qlf0Q.framer-v-14bo7x1 .framer-2yjuj4, .framer-Qlf0Q.framer-v-1ffz2nv .framer-2wjgis-container { order: 5; }\",\".framer-Qlf0Q.framer-v-1ffz2nv .framer-1jicyly { align-self: start; cursor: unset; flex: none; height: 30px; justify-self: start; order: 4; width: 100%; }\",'.framer-Qlf0Q[data-border=\"true\"]::after, .framer-Qlf0Q [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 703\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"G_Jz1HsRn\":{\"layout\":[\"fixed\",\"fixed\"]},\"biPm9qro7\":{\"layout\":[\"fixed\",\"fixed\"]},\"MFTeUYKkq\":{\"layout\":[\"fixed\",\"fixed\"]},\"CSe3vcMJW\":{\"layout\":[\"fixed\",\"fixed\"]},\"zwB3WUKIJ\":{\"layout\":[\"fixed\",\"fixed\"]},\"lGCxamp2b\":{\"layout\":[\"fixed\",\"fixed\"]},\"zIw7DCp6G\":{\"layout\":[\"fixed\",\"fixed\"]},\"l0D8jhLfW\":{\"layout\":[\"fixed\",\"fixed\"]},\"rvvP7JzQO\":{\"layout\":[\"fixed\",\"fixed\"]},\"EnNHTw9p5\":{\"layout\":[\"fixed\",\"fixed\"]},\"hFh4POjHQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"wOq7pXVwr\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framery9DKpcRhW=withCSS(Component,css,\"framer-Qlf0Q\");export default Framery9DKpcRhW;Framery9DKpcRhW.displayName=\"landing-page-1\";Framery9DKpcRhW.defaultProps={height:703,width:1600};addPropertyControls(Framery9DKpcRhW,{variant:{options:[\"r7qvgwXUY\",\"G_Jz1HsRn\",\"biPm9qro7\",\"MFTeUYKkq\",\"CSe3vcMJW\",\"zwB3WUKIJ\",\"lGCxamp2b\",\"zIw7DCp6G\",\"l0D8jhLfW\",\"rvvP7JzQO\",\"EnNHTw9p5\",\"hFh4POjHQ\",\"wOq7pXVwr\"],optionTitles:[\"Desktop\",\"Desktop 2\",\"Tablet\",\"Variant 4\",\"Variant 5\",\"Variant 6\",\"Variant 7\",\"Variant 8\",\"Variant 9\",\"Phone\",\"Variant 11\",\"Variant 12\",\"Variant 13\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framery9DKpcRhW,[{explicitInter:true,fonts:[{family:\"Pretendard Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/G3FL4LTaa96H8ca4MBoVwAQ4M.woff\"},{family:\"Questrial\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/questrial/v18/QdVUSTchPBm7nuUeVf7EvCtkm20oJA.woff2\",weight:\"400\"},{family:\"Pretendard Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xDyoC8MeZr1IcsrowiTgCB1zz8.woff\"},{family:\"Pretendard ExtraLight\",source:\"custom\",url:\"https://framerusercontent.com/assets/baaBWOxa6oInj8wMHvfPUXQ7WWQ.woff\"}]},...ButtonGeneralFonts,...Button2Fonts,...ElementScrollArrowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framery9DKpcRhW\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"703\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1600\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G_Jz1HsRn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"biPm9qro7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MFTeUYKkq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"CSe3vcMJW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zwB3WUKIJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lGCxamp2b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zIw7DCp6G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"l0D8jhLfW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rvvP7JzQO\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EnNHTw9p5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hFh4POjHQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"wOq7pXVwr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./y9DKpcRhW.map", "// Generated by Framer (662ecd5)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={fWV1VpoSv:new LazyValue(()=>import(\"./EPw6ZR00a-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (662ecd5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Grain from\"https://framerusercontent.com/modules/cKGD16u2MGB7MfqfVXFp/wiztTCbXokZrMicHAmZc/Grain.js\";import AccordionsFAQ from\"#framer/local/canvasComponent/AacjBtcuh/AacjBtcuh.js\";import NavNavbar from\"#framer/local/canvasComponent/bfNdmHPcs/bfNdmHPcs.js\";import TabsUser from\"#framer/local/canvasComponent/DHtNFmCEk/DHtNFmCEk.js\";import Link_button from\"#framer/local/canvasComponent/eXOi9dQkj/eXOi9dQkj.js\";import Stack from\"#framer/local/canvasComponent/FJBf46eAM/FJBf46eAM.js\";import Footer from\"#framer/local/canvasComponent/LWd678i0k/LWd678i0k.js\";import ButtonsTextLink from\"#framer/local/canvasComponent/O3g819Nsz/O3g819Nsz.js\";import Navigation from\"#framer/local/canvasComponent/OJ2msV7z2/OJ2msV7z2.js\";import ElementLabel from\"#framer/local/canvasComponent/RFV7Ii2Rz/RFV7Ii2Rz.js\";import LandingPage1 from\"#framer/local/canvasComponent/y9DKpcRhW/y9DKpcRhW.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/EPw6ZR00a/EPw6ZR00a.js\";import metadataProvider from\"#framer/local/webPageMetadata/EPw6ZR00a/EPw6ZR00a.js\";const Link_buttonFonts=getFonts(Link_button);const NavigationFonts=getFonts(Navigation);const ImageWithFX=withFX(Image);const LandingPage1Fonts=getFonts(LandingPage1);const ElementLabelFonts=getFonts(ElementLabel);const ContainerWithFX=withFX(Container);const RichTextWithFX=withFX(RichText);const ButtonsTextLinkFonts=getFonts(ButtonsTextLink);const TickerFonts=getFonts(Ticker);const TabsUserFonts=getFonts(TabsUser);const StackFonts=getFonts(Stack);const MotionDivWithFX=withFX(motion.div);const GrainFonts=getFonts(Grain);const AccordionsFAQFonts=getFonts(AccordionsFAQ);const FooterFonts=getFonts(Footer);const NavNavbarFonts=getFonts(NavNavbar);const breakpoints={brMK_4Z09:\"(max-width: 809px)\",MlNeJlnYW:\"(min-width: 1600px)\",Rsz8YaeNc:\"(min-width: 1200px) and (max-width: 1599px)\",ZmcccRBnS:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-lEIuR\";const variantClassNames={brMK_4Z09:\"framer-v-8ws66t\",MlNeJlnYW:\"framer-v-8vmq8p\",Rsz8YaeNc:\"framer-v-1as4m1v\",ZmcccRBnS:\"framer-v-et6pi4\"};const transition1={bounce:.25,delay:1,duration:10,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:400,y:0};const animation1={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition2={damping:60,delay:.05,mass:1,stiffness:250,type:\"spring\"};const textEffect={effect:animation1,repeat:false,startDelay:0,threshold:0,tokenization:\"word\",transition:transition2,trigger:\"onInView\",type:\"appear\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:15};const transition3={damping:70,delay:0,mass:1,stiffness:210,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:20};const transition4={damping:30,delay:0,mass:1,stiffness:150,type:\"spring\"};const animation4={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition5={damping:40,delay:.075,mass:1,stiffness:400,type:\"spring\"};const getTextEffect=ref=>({effect:animation4,target:{ref},threshold:.5,tokenization:\"word\",transition:transition5,trigger:\"onScrollTarget\",type:\"appear\"});const transition6={damping:70,delay:.2,mass:1,stiffness:210,type:\"spring\"};const transition7={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect1={effect:animation1,startDelay:0,threshold:.5,tokenization:\"character\",transition:transition7,trigger:\"onInView\",type:\"appear\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition8={damping:30,delay:.2,mass:1,stiffness:150,type:\"spring\"};const transition9={delay:.1,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:12};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop 2\":\"Rsz8YaeNc\",Desktop:\"MlNeJlnYW\",Phone:\"brMK_4Z09\",Tablet:\"ZmcccRBnS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"MlNeJlnYW\"};};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 metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"ZmcccRBnS\",\"brMK_4Z09\"].includes(baseVariant))return false;return true;};usePreloadLocalizedValues(activeLocale);const elementId=useRouteElementId(\"TNaMjDr46\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"a0yGKQ8rq\");const ref2=React.useRef(null);const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Ykea3EBIw\");const elementId3=useRouteElementId(\"WoiGOGQHN\");const ref4=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"brMK_4Z09\")return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"ZmcccRBnS\")return true;return false;};const elementId4=useRouteElementId(\"TyVVpMQ7c\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"tsDpnCvOo\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"GtETH4ciU\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"UCQdFsDpE\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"FYioFlokb\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"Nxgiq3IlS\");const ref10=React.useRef(null);const elementId10=useRouteElementId(\"VFV4ZWqZm\");const ref11=React.useRef(null);const elementId11=useRouteElementId(\"BBaM19GoY\");const ref12=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MlNeJlnYW\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(0, 0, 0); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-8vmq8p\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vfqzb0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x2fcoq\",\"data-border\":true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15w8hsx\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ciaoNHXBc\"},implicitPathVariables:undefined},{href:{webPageId:\"ciaoNHXBc\"},implicitPathVariables:undefined},{href:{webPageId:\"ciaoNHXBc\"},implicitPathVariables:undefined},{href:{webPageId:\"ciaoNHXBc\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:\"92px\",y:(componentViewport?.y||0)+0+0+0+0+3.5+0},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+0+0+0+9.5+0},ZmcccRBnS:{y:(componentViewport?.y||0)+0+0+0+0+6.5+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"123px\",y:(componentViewport?.y||0)+0+0+0+0+8.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-76swmn-container\",nodeId:\"LNFJLcjiO\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{P0ZeoBRES:resolvedLinks[3],qipLYxjee:11,zlUATpUvU:10},Rsz8YaeNc:{P0ZeoBRES:resolvedLinks[1]},ZmcccRBnS:{P0ZeoBRES:resolvedLinks[2],qipLYxjee:13,zlUATpUvU:12}},children:/*#__PURE__*/_jsx(Link_button,{g0ypmqbVL:\"Strategy\",height:\"100%\",id:\"LNFJLcjiO\",K90nRnSxb:\"rgb(255, 255, 255)\",kLm0Oqeew:\"rgb(51, 143, 255)\",layoutId:\"LNFJLcjiO\",P0ZeoBRES:resolvedLinks[0],qipLYxjee:14,style:{width:\"100%\"},vQTZWhbjt:\"rgb(255, 255, 255)\",width:\"100%\",zf_1cgekN:\"CBOOK ERP\",zlUATpUvU:14})})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"x_7fJf_f8\"},implicitPathVariables:undefined},{href:{webPageId:\"x_7fJf_f8\"},implicitPathVariables:undefined},{href:{webPageId:\"x_7fJf_f8\"},implicitPathVariables:undefined},{href:{webPageId:\"x_7fJf_f8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+0+0+0+3.5+0},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+0+0+0+9.5+0},ZmcccRBnS:{y:(componentViewport?.y||0)+0+0+0+0+6.5+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"134px\",y:(componentViewport?.y||0)+0+0+0+0+8.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l1hjtn-container\",nodeId:\"bli3IGbHh\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{P0ZeoBRES:resolvedLinks1[3],qipLYxjee:13,zlUATpUvU:12},Rsz8YaeNc:{P0ZeoBRES:resolvedLinks1[1]},ZmcccRBnS:{P0ZeoBRES:resolvedLinks1[2],qipLYxjee:13,zlUATpUvU:12}},children:/*#__PURE__*/_jsx(Link_button,{g0ypmqbVL:\"Robot\",height:\"100%\",id:\"bli3IGbHh\",K90nRnSxb:\"rgb(255, 255, 255)\",kLm0Oqeew:\"rgb(194, 51, 255)\",layoutId:\"bli3IGbHh\",P0ZeoBRES:resolvedLinks1[0],qipLYxjee:14,style:{width:\"100%\"},vQTZWhbjt:\"rgb(255, 255, 255)\",width:\"100%\",zf_1cgekN:\"fiela.ai \uC7AC\uBB34\uBE44\uC11C\",zlUATpUvU:14})})})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fkt8kDd_h\"},implicitPathVariables:undefined},{href:{webPageId:\"fkt8kDd_h\"},implicitPathVariables:undefined},{href:{webPageId:\"fkt8kDd_h\"},implicitPathVariables:undefined},{href:{webPageId:\"fkt8kDd_h\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:\"78px\",y:(componentViewport?.y||0)+0+0+0+0+3.5},Rsz8YaeNc:{width:\"107px\",y:(componentViewport?.y||0)+0+0+0+0+9.5},ZmcccRBnS:{width:\"107px\",y:(componentViewport?.y||0)+0+0+0+0+6.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:27,width:\"93px\",y:(componentViewport?.y||0)+0+0+0+0+8.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-123qxo9-container\",nodeId:\"cy1Adjb3r\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{P0ZeoBRES:resolvedLinks2[3],qipLYxjee:11,zlUATpUvU:10},Rsz8YaeNc:{P0ZeoBRES:resolvedLinks2[1]},ZmcccRBnS:{P0ZeoBRES:resolvedLinks2[2],qipLYxjee:13,zlUATpUvU:12}},children:/*#__PURE__*/_jsx(Link_button,{g0ypmqbVL:\"Buildings\",height:\"100%\",id:\"cy1Adjb3r\",K90nRnSxb:\"rgb(255, 255, 255)\",kLm0Oqeew:\"rgb(130, 130, 130)\",layoutId:\"cy1Adjb3r\",P0ZeoBRES:resolvedLinks2[0],qipLYxjee:14,style:{width:\"100%\"},vQTZWhbjt:\"rgb(255, 255, 255)\",width:\"100%\",zf_1cgekN:\"\uD68C\uC0AC \uC18C\uAC1C\",zlUATpUvU:14})})})})})})]}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{y:(componentViewport?.y||0)+0+0+0+46}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:65,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0+0+44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gh878x-container hidden-et6pi4 hidden-8ws66t\",nodeId:\"x1QH6zJGl\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Navigation,{Bwz5Us4qx:\"rgba(0, 0, 0, 0)\",FAD5EkOIf:16,H7Akl_8H_:16,height:\"100%\",id:\"x1QH6zJGl\",layoutId:\"x1QH6zJGl\",rPxyV8Oqz:16,style:{height:\"100%\",width:\"100%\"},variant:\"q9UHTynd_\",width:\"100%\",xtxsSMYXZ:\"rgba(0, 0, 0, 0)\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1960,pixelWidth:5120,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1200px)`,src:\"https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp\",srcSet:\"https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp 5120w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1960,pixelWidth:5120,sizes:`calc(${componentViewport?.width||\"100vw\"} + 1360px)`,src:\"https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp\",srcSet:\"https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=512 512w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp?scale-down-to=4096 4096w,https://framerusercontent.com/images/5Mhk2sqnDs78wjKSEIU8EMTa5s.webp 5120w\"},className:\"framer-2eato5\",\"data-framer-name\":\"Hero Background 2560\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1egihiw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.9px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(138, 138, 138)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\" ERP \"}),\"\uC6D0\uC7A5 \uB370\uC774\uD130 \uAE30\uBC18\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Pretendard SemiBold\", \"Pretendard SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-0.2px\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"AI \uC7AC\uBB34\uAD00\uB9AC \uC194\uB8E8\uC158, \uD30C\uC774\uB125\uC2A4\"})]}),effect:undefined,fonts:[\"CUSTOM;Pretendard Regular\",\"FS;Clash Display-regular\",\"CUSTOM;Pretendard SemiBold\"]},Rsz8YaeNc:{children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.9px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"ERP\"}),\" \uC6D0\uC7A5\uB370\uC774\uD130 \uAE30\uBC18 \"]}),/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"AI \uC7AC\uBB34\uAD00\uB9AC (FP&A) \uC194\uB8E8\uC158, \uD30C\uC774\uB125\uC2A4\"}),\" \"]})]})},ZmcccRBnS:{children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.9px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"ERP\"}),\" \uC6D0\uC7A5\uB370\uC774\uD130 \uAE30\uBC18 \"]}),/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"AI \uC7AC\uBB34\uAD00\uB9AC (FP&A) \uC194\uB8E8\uC158, \uD30C\uC774\uB125\uC2A4\"}),\" \"]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-letter-spacing\":\"-0.9px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"ERP\"}),\" \uC6D0\uC7A5\uB370\uC774\uD130 \uAE30\uBC18 \"]}),/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"AI \uC7AC\uBB34\uAD00\uB9AC (FP&A) \uC194\uB8E8\uC158, \uD30C\uC774\uB125\uC2A4\"}),\" \"]})]}),className:\"framer-udp3ez\",effect:textEffect,fonts:[\"CUSTOM;Pretendard Thin\",\"FS;Clash Display-regular\",\"FS;Clash Display-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{height:541,y:(componentViewport?.y||0)+0+410.5},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+244},ZmcccRBnS:{height:703,y:(componentViewport?.y||0)+0+226}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+257.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10gew0o-container\",id:elementId,nodeId:\"TNaMjDr46\",ref:ref1,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{variant:\"rvvP7JzQO\"},Rsz8YaeNc:{variant:\"G_Jz1HsRn\"},ZmcccRBnS:{style:{width:\"100%\"},variant:\"biPm9qro7\"}},children:/*#__PURE__*/_jsx(LandingPage1,{height:\"100%\",id:\"TNaMjDr46\",layoutId:\"TNaMjDr46\",style:{height:\"100%\",width:\"100%\"},variant:\"r7qvgwXUY\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1785h40 hidden-et6pi4 hidden-8ws66t\",\"data-framer-name\":\"Hero Helper (Relative)\"}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-5yn8pq\",\"data-framer-name\":\"Introduction\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i5v6q7\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vk1g5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+959.5+84+250.5+0+0+0+0},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+1312.6316+254+-46.8+0+0+0+0},ZmcccRBnS:{y:(componentViewport?.y||0)+0+937+35+163.1914+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+0+1326.0316+254+-51+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3o412a-container\",nodeId:\"dB5W9pVUh\",rendersWithMotion:true,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(ElementLabel,{height:\"100%\",id:\"dB5W9pVUh\",layoutId:\"dB5W9pVUh\",tWUpRXPNf:\"Our mission\",variant:\"fbHR092X1\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:[\"\uB3C5\uBCF4\uC801\uC778 AI \uAE30\uC220\uB825\uACFC ERP \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C,  \uAE30\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uC5C5 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uB0B4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" ERP \uB370\uC774\uD130\"}),\"\uB97C\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" 100% \uC815\uD655\uB3C4\"}),\"\uB85C \uCD94\uCD9C\uD574 \uC758\uC0AC\uACB0\uC815 \uC5C5\uBB34\uB97C \uC9C0\uC6D0\uD558\uBA70 \uC774\uB97C \uD1B5\uD574 \uC790\uBCF8\uC2DC\uC7A5\uC5D0\uC11C \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"\uB370\uC774\uD130\uC758 \uC790\uC720\"}),\"\uB97C \uC2E4\uD604\uD569\uB2C8\uB2E4.\"]})})},Rsz8YaeNc:{children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:\"\uB3C5\uBCF4\uC801\uC778 AI \uAE30\uC220\uB825\uACFC ERP \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"38px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:\" \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uAE30\uC5C5 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uB0B4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" ERP \uB370\uC774\uD130\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:\"\uB97C\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" 100% \uC815\uD655\uB3C4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:\"\uB85C \uCD94\uCD9C\uD574 \uC758\uC0AC\uACB0\uC815 \uC5C5\uBB34\uB97C \uC9C0\uC6D0\uD558\uBA70 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:\"\uC774\uB97C \uD1B5\uD574 \uC790\uBCF8\uC2DC\uC7A5\uC5D0\uC11C \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\",\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"\uB370\uC774\uD130\uC758 \uC790\uC720\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"38px\"},children:\"\uB97C \uC2E4\uD604\uD569\uB2C8\uB2E4.\"})]})})},ZmcccRBnS:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"\uB3C5\uBCF4\uC801\uC778 AI \uAE30\uC220\uB825\uACFC ERP \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"35px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\" \uAE30\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uC5C5 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uB0B4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" ERP \uB370\uC774\uD130\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"\uB97C\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" 100% \uC815\uD655\uB3C4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"\uB85C \uCD94\uCD9C\uD574 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:[\"\uC758\uC0AC\uACB0\uC815 \uC5C5\uBB34\uB97C \uC9C0\uC6D0\uD558\uBA70 \uC774\uB97C \uD1B5\uD574 \uC790\uBCF8\uC2DC\uC7A5\uC5D0\uC11C \",/*#__PURE__*/_jsx(\"br\",{})]}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\",\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"\uB370\uC774\uD130\uC758 \uC790\uC720\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"\uB97C \uC2E4\uD604\uD569\uB2C8\uB2E4.\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__targets:[{ref:ref2,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\uB3C5\uBCF4\uC801\uC778 AI \uAE30\uC220\uB825\uACFC ERP \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C,\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\" \uAE30\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uC5C5 \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(204, 204, 204)\"},children:\"\uB0B4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" ERP \uB370\uC774\uD130\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\uB97C\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" 100% \uC815\uD655\uB3C4\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\uB85C \uCD94\uCD9C\uD574 \uC758\uC0AC\uACB0\uC815 \uC5C5\uBB34\uB97C \uC9C0\uC6D0\uD558\uBA70\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\uC774\uB97C \uD1B5\uD574 \uC790\uBCF8\uC2DC\uC7A5\uC5D0\uC11C \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"\uB370\uC774\uD130\uC758 \uC790\uC720\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\uB97C \uC2E4\uD604\uD569\uB2C8\uB2E4.\"})]})}),className:\"framer-1tpjxa5\",\"data-framer-name\":\"We know what\u2019s going on. You need top-notch design to stand out in the tech world, but hiring in-house designers can be costly and time-consuming. That\u2019s when it comes in.\",effect:getTextEffect(ref3),fonts:[\"CUSTOM;Pretendard Thin\",\"CUSTOM;Pretendard Light\"],id:elementId2,ref:ref3,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dVx8BlCC9\"},implicitPathVariables:undefined},{href:{webPageId:\"dVx8BlCC9\"},implicitPathVariables:undefined},{href:{webPageId:\"dVx8BlCC9\"},implicitPathVariables:undefined},{href:{webPageId:\"dVx8BlCC9\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+959.5+84+250.5+0+0+0+111},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+1312.6316+254+-46.8+0+0+0+132.6},ZmcccRBnS:{y:(componentViewport?.y||0)+0+937+35+163.1914+0+0+0+129}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+1326.0316+254+-51+0+0+0+141,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a968e-container\",nodeId:\"LSqTjTRLg\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{AwnAclyIJ:resolvedLinks3[3],Gs4CNiWpt:16,HC0Qsbzzz:16,J5nXr4vrD:16},Rsz8YaeNc:{AwnAclyIJ:resolvedLinks3[1],Gs4CNiWpt:20},ZmcccRBnS:{AwnAclyIJ:resolvedLinks3[2],Gs4CNiWpt:20}},children:/*#__PURE__*/_jsx(ButtonsTextLink,{AwnAclyIJ:resolvedLinks3[0],bNnFoDlH1:0,DaRuik2Hi:\"12px 0px 12px 0px\",DLTMccp_w:\"rgb(219, 219, 219)\",ETSu7WT6U:\"rgb(102, 102, 255)\",Gs4CNiWpt:25,HC0Qsbzzz:20,height:\"100%\",id:\"LSqTjTRLg\",J5nXr4vrD:20,layoutId:\"LSqTjTRLg\",NemalAUEH:\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40))\",o63ovkMnP:\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40))\",QDIE1tbqq:getLocalizedValue(\"v8\",activeLocale)??\"\uB370\uC774\uD130 DX \uD504\uB85C\uC138\uC2A4 \uBC14\uB85C\uBCF4\uAE30\",variant:\"FgZqvUCdI\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-19w1d7h-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"F5O3CFIK8\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:120,height:\"100%\",hoverFactor:1,id:\"F5O3CFIK8\",layoutId:\"F5O3CFIK8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1260,intrinsicWidth:2240,pixelHeight:803,pixelWidth:1915,sizes:\"173px\",src:\"https://framerusercontent.com/images/mb3FgMzAkz7M0LgiWF8yEeGtqik.png\",srcSet:\"https://framerusercontent.com/images/mb3FgMzAkz7M0LgiWF8yEeGtqik.png?scale-down-to=512 512w,https://framerusercontent.com/images/mb3FgMzAkz7M0LgiWF8yEeGtqik.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mb3FgMzAkz7M0LgiWF8yEeGtqik.png 1915w\"},className:\"framer-kztvdf\",\"data-framer-name\":\"Finex logo & other designs (6)\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of kicpa\",fit:\"fill\",intrinsicHeight:115.33333333333333,intrinsicWidth:534.6666666666666,pixelHeight:173,pixelWidth:252,src:\"https://framerusercontent.com/images/qVO33cUkmEV2eBczXyUxy14k.png\"},className:\"framer-1jdc9s1\",\"data-framer-name\":\"image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of theventures\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,pixelHeight:1019,pixelWidth:5602,sizes:\"296px\",src:\"https://framerusercontent.com/images/4MC6IyLiCUl080fI3bJxmbZBTw.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/4MC6IyLiCUl080fI3bJxmbZBTw.png?scale-down-to=512 512w,https://framerusercontent.com/images/4MC6IyLiCUl080fI3bJxmbZBTw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/4MC6IyLiCUl080fI3bJxmbZBTw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/4MC6IyLiCUl080fI3bJxmbZBTw.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/4MC6IyLiCUl080fI3bJxmbZBTw.png 5602w\"},className:\"framer-143biue\",\"data-framer-name\":\"Green_and_Orange_Business_Hip_Tech_Weekly_Team_Updates_Presentation_7_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of tips\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,pixelHeight:3007,pixelWidth:3045,sizes:\"79px\",src:\"https://framerusercontent.com/images/NkaIzJ3kHSX2SnLHv37U6fzdBg.png\",srcSet:\"https://framerusercontent.com/images/NkaIzJ3kHSX2SnLHv37U6fzdBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NkaIzJ3kHSX2SnLHv37U6fzdBg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NkaIzJ3kHSX2SnLHv37U6fzdBg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NkaIzJ3kHSX2SnLHv37U6fzdBg.png 3045w\"},className:\"framer-934aj2\",\"data-framer-name\":\"Green_and_Orange_Business_Hip_Tech_Weekly_Team_Updates_Presentation_11_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of cma\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,pixelHeight:3055,pixelWidth:2825,sizes:\"87px\",src:\"https://framerusercontent.com/images/UDph4K9sT10KTT25hzjclwSqkOE.png\",srcSet:\"https://framerusercontent.com/images/UDph4K9sT10KTT25hzjclwSqkOE.png?scale-down-to=1024 946w,https://framerusercontent.com/images/UDph4K9sT10KTT25hzjclwSqkOE.png?scale-down-to=2048 1893w,https://framerusercontent.com/images/UDph4K9sT10KTT25hzjclwSqkOE.png 2825w\"},className:\"framer-dnpt8y\",\"data-framer-name\":\"Green_and_Orange_Business_Hip_Tech_Weekly_Team_Updates_Presentation_8_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of USCMA\",fit:\"fill\",intrinsicHeight:2250,intrinsicWidth:4e3,pixelHeight:1328,pixelWidth:4872,sizes:\"242px\",src:\"https://framerusercontent.com/images/ST5MXX4ScdEfRObUVkO1GlGFM0.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/ST5MXX4ScdEfRObUVkO1GlGFM0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ST5MXX4ScdEfRObUVkO1GlGFM0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ST5MXX4ScdEfRObUVkO1GlGFM0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ST5MXX4ScdEfRObUVkO1GlGFM0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/ST5MXX4ScdEfRObUVkO1GlGFM0.png 4872w\"},className:\"framer-4552kv\",\"data-framer-name\":\"Green_and_Orange_Business_Hip_Tech_Weekly_Team_Updates_Presentation_13_\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of dcamp\",fit:\"fit\",intrinsicHeight:734,intrinsicWidth:2560,pixelHeight:1305,pixelWidth:4166,positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/fOLfhV3s7Y2neUrio057TDQWv5c.png?scale-down-to=4096\",srcSet:\"https://framerusercontent.com/images/fOLfhV3s7Y2neUrio057TDQWv5c.png?scale-down-to=512 512w,https://framerusercontent.com/images/fOLfhV3s7Y2neUrio057TDQWv5c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/fOLfhV3s7Y2neUrio057TDQWv5c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/fOLfhV3s7Y2neUrio057TDQWv5c.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/fOLfhV3s7Y2neUrio057TDQWv5c.png 4166w\"},className:\"framer-1atm1pn\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-kwbden\",\"data-framer-name\":\"Who-are-using\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12evnk3\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n3sy3m\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+1967.5+100+0+0+0+0+0},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+2320.6316+100+0+0+0+0+0},ZmcccRBnS:{y:(componentViewport?.y||0)+0+1766.3828+120+-93.375+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,y:(componentViewport?.y||0)+0+2334.0316+254+-176.625+0+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1x10fe1-container\",nodeId:\"HC5gM22oi\",rendersWithMotion:true,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(ElementLabel,{height:\"100%\",id:\"HC5gM22oi\",layoutId:\"HC5gM22oi\",tWUpRXPNf:\"Who should work with finex\",variant:\"fbHR092X1\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[\"\uBAA8\uB4E0 \uC7AC\uBB34 \uC5C5\uBB34\uB97C \uB354 \uC27D\uACE0 \uC815\uD655\uD558\uAC8C, \",/*#__PURE__*/_jsx(\"br\",{}),\"\uC7AC\uBB34\uD300\uC758 \uC644\uBCBD\uD55C \uC120\uD0DD, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-transform\":\"lowercase\"},children:\"finex\"})]})})},Rsz8YaeNc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[\"\uBAA8\uB4E0 \uC7AC\uBB34 \uC5C5\uBB34\uB97C \uB354 \uC27D\uACE0 \uC815\uD655\uD558\uAC8C, \",/*#__PURE__*/_jsx(\"br\",{}),\"\uC7AC\uBB34\uD300\uC758 \uC644\uBCBD\uD55C \uC120\uD0DD, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-transform\":\"lowercase\"},children:\"finex\"})]})})},ZmcccRBnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"\uBAA8\uB4E0 \uC7AC\uBB34 \uC5C5\uBB34\uB97C \uB354 \uC27D\uACE0 \uC815\uD655\uD558\uAC8C, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\"},children:\"\uC7AC\uBB34\uD300\uC758 \uC644\uBCBD\uD55C \uC120\uD0DD, \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"35px\",\"--framer-text-transform\":\"lowercase\"},children:\"finex\"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.25em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-b1fb3a8e-a88d-40f2-ad39-1f269e6b91e0, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:[\"\uBAA8\uB4E0 \uC7AC\uBB34 \uC5C5\uBB34\uB97C \uB354 \uC27D\uACE0 \uC815\uD655\uD558\uAC8C, \",/*#__PURE__*/_jsx(\"br\",{}),\"\uC7AC\uBB34\uD300\uC758 \uC644\uBCBD\uD55C \uC120\uD0DD, \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-transform\":\"lowercase\"},children:\"finex\"})]})}),className:\"framer-ogs4rc\",fonts:[\"CUSTOM;Pretendard Thin\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.8767)`,y:(componentViewport?.y||0)+0+1967.5+100+0+0+116},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+2320.6316+100+0+0+165},ZmcccRBnS:{y:(componentViewport?.y||0)+0+1766.3828+120+-93.375+0+138.75}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:570,width:`calc(${componentViewport?.width||\"100vw\"} - 120px)`,y:(componentViewport?.y||0)+0+2334.0316+254+-176.625+0+171.25,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5cs5a0-container\",nodeId:\"sJDFNRebL\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{variant:\"rFf3yh507\"},ZmcccRBnS:{variant:\"b5Kz59tXc\"}},children:/*#__PURE__*/_jsx(TabsUser,{height:\"100%\",id:\"sJDFNRebL\",layoutId:\"sJDFNRebL\",style:{width:\"100%\"},variant:\"V39pdWwlg\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d6oh6f\",\"data-framer-name\":\"Case-study\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u2km12\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1tZWRpdW0=\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-line-height\":\"1.3em\",\"--framer-text-color\":\"rgb(212, 212, 212)\"},children:\"Our Clients\"})}),className:\"framer-103w1id\",fonts:[\"FS;Clash Display-medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uD30C\uC774\uB125\uC2A4\uC640 \uD568\uAED8\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uC7AC\uBB34\uD22C\uBA85\uC131\"}),\"\uACFC \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uAC74\uC804\uC131\"}),\"\uC744 \uD655\uBCF4\uD558\uB294 \uD074\uB77C\uC774\uC5B8\uD2B8\"]})})},Rsz8YaeNc:{children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uD30C\uC774\uB125\uC2A4\uC640 \uD568\uAED8\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uC7AC\uBB34\uD22C\uBA85\uC131\"}),\"\uACFC \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uAC74\uC804\uC131\"}),\"\uC744 \uD655\uBCF4\uD558\uB294 \uD074\uB77C\uC774\uC5B8\uD2B8\"]})})},ZmcccRBnS:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uD30C\uC774\uB125\uC2A4\uC640 \uD568\uAED8\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uC7AC\uBB34\uD22C\uBA85\uC131\"}),\"\uACFC \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uAC74\uC804\uC131\"}),\"\uC744 \uD655\uBCF4\uD558\uB294 \uD074\uB77C\uC774\uC5B8\uD2B8\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgVGhpbg==\",\"--framer-font-family\":'\"Pretendard Thin\", \"Pretendard Thin Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-letter-spacing\":\"-2px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"\uD30C\uC774\uB125\uC2A4\uC640 \uD568\uAED8\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-text-color\":\"rgb(191, 191, 191)\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"\uC7AC\uBB34\uD22C\uBA85\uC131\"}),\"\uACFC \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uAC74\uC804\uC131\"}),\"\uC744 \uD655\uBCF4\uD558\uB294 \uD074\uB77C\uC774\uC5B8\uD2B8\"]})]})}),className:\"framer-zjhsnq\",\"data-framer-name\":\"Real People, Real Results\",effect:textEffect,fonts:[\"CUSTOM;Pretendard Thin\",\"CUSTOM;Pretendard Light\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9auoph\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-31yrpp\",\"data-framer-name\":\"list 3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"finex \uAD6C\uB3C5\uC720\uC9C0\uC728\"})})},ZmcccRBnS:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"finex \uAD6C\uB3C5\uC720\uC9C0\uC728\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"finex \uAD6C\uB3C5\uC720\uC9C0\uC728\"})}),className:\"framer-nvl66y\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"94\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"%\"})]})})},ZmcccRBnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"94\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"%\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"65px\"},children:\"94\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"%\"})]})}),className:\"framer-1o69wbi\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16ua6k0\",\"data-framer-name\":\"list 1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"\uD0C0 \uC7AC\uBB34\uC194\uB8E8\uC158 Cost Efficiency\"})})},ZmcccRBnS:{children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"\uD0C0 \uC7AC\uBB34\uC194\uB8E8\uC158 Cost Efficiency\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"\uD0C0 \uC7AC\uBB34\uC194\uB8E8\uC158 Cost Efficiency\"})}),className:\"framer-jpfgu6\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"10\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"x\"})]})})},ZmcccRBnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"10\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"x\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"65px\"},children:\"10\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"x\"})]})}),className:\"framer-1s2yr68\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aa68d9\",\"data-framer-name\":\"list 2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"170%\",\"--framer-text-color\":\"rgb(189, 189, 189)\"},children:\"finex\uB97C \uACBD\uD5D8\uD55C \uAE30\uC5C5 \uC218\"})}),className:\"framer-uvjqb3\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"25px\"},children:\"500\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"+\"})]})})},ZmcccRBnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"45px\"},children:\"500\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"+\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"0.8em\",\"--framer-text-color\":\"var(--token-c14065e7-5a4d-4109-85cf-bca8f791260a, rgb(255, 255, 255))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"65px\"},children:\"500\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(255, 119, 56))\"},children:\"+\"})]})}),className:\"framer-16s3uon\",\"data-framer-name\":\"The task is being managed effectively. And dedicated support team are here to help.\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15lute9 hidden-8vmq8p hidden-1as4m1v hidden-et6pi4\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ff3uya-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zZUdiRV9H\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"zZUdiRV9H\",layoutId:\"zZUdiRV9H\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16pk492\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b4fd0o\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:3375,pixelWidth:6e3,sizes:\"78px\",src:\"https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png 6000w\"},className:\"framer-3nirb5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\" \uB300\uD55C\uBBFC\uAD6D \uB300\uD45C \uC2A4\uD0C0\uD2B8\uC5C5 \uBD84\uC57C \uBBF8\uB514\uC5B4 \uCF58\uD150\uCE20 \uBC0F \uAD50\uC721 \uCF58\uD150\uCE20\uB97C \uC81C\uC791\uD558\uC5EC\uAD6D\uB0B4\uB97C \uB118\uC5B4 \uAE00\uB85C\uBC8C \uCEE8\uD150\uCE20 \uD68C\uC0AC\uB85C \uB3C4\uC57D\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-1tbux3u\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4x6ovz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC774\uC624\uC2A4\uD29C\uB514\uC624\"})}),className:\"framer-1u9gu9o\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@eostudio\"})}),className:\"framer-v5czc2\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ysv7za\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3dqoq9\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:3375,pixelWidth:6e3,sizes:\"99.9373px\",src:\"https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png 6000w\"},className:\"framer-1q8ve2y\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uAE00\uB85C\uBC8C AI \uAE30\uC220\uB825\uC744 \uC778\uC815\uBC1B\uC740 \uC778\uACF5\uC9C0\uB2A5\uC774 \uD544\uC694\uD55C \uACE0\uAC1D\uC5D0\uAC8C \uACE0\uC131\uB2A5 \uB370\uC774\uD130\uB97C \uC81C\uACF5\uD558\uB294 \uC778\uACF5\uC9C0\uB2A5 \uB370\uC774\uD130 \uD30C\uC6B4\uB4DC\uB9AC \uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-le599c\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-h33bme\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uBC14\uC6B4\uB4DC\uD3EC\"})}),className:\"framer-1pj52mw\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@bound4\"})}),className:\"framer-3d81i2\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xjo7qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vyj88y\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:810,pixelWidth:1440,sizes:\"99.9373px\",src:\"https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg 1440w\"},className:\"framer-13ntcsv\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"29\uB144\uAC04 \uD55C\uC2DD\uB9CC\uC744 \uC5F0\uAD6C\uD55C \uACBD\uD5D8\uC744 \uBC14\uD0D5\uC73C\uB85C 2016\uB144 \uD504\uB9AC\uBBF8\uC5C4 \uBC18\uCC2C \uBE0C\uB79C\uB4DC \uC9D1\uBC18\uCC2C\uC5F0\uAD6C\uC18C\uB97C \uB7F0\uCE6D, \uD478\uB4DC\uD14C\uD06C HMR \uC2DC\uC7A5\uC758 \uD504\uB9AC\uBBF8\uC5C4 \uBC18\uCC2C\uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-za6hhj\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vtbcgx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC9D1\uBC18\uCC2C\uC5F0\uAD6C\uC18C\"})}),className:\"framer-cyvjzr\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@sannamchon\"})}),className:\"framer-hfikle\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-2ojfd1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"O606xRWZD\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"O606xRWZD\",layoutId:\"O606xRWZD\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yoa0kl\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qozy2u\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:4861,pixelWidth:6250,sizes:\"99.9373px\",src:\"https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=512 512w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png 6250w\"},className:\"framer-v5dj6x\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(101, 101, 101)\"},children:\"\uAE30\uC220\uD601\uC2E0\uC744 \uC778\uC815\uBC1B\uC73C\uBA70 Test Socket \uACFC MES \uBAA8\uB4C8\uC744 ISO \uC2DC\uC2A4\uD15C \uACBD\uC601 \uAE30\uBC18 \uC81C\uC870\uD558\uB294 \uAD6D\uB0B4 \uB300\uD45C \uC81C\uC870\uBCA4\uCC98\uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-181siih\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1lw5ib\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(\uC8FC)\uC11C\uC900\"})}),className:\"framer-1cyqy7d\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@seojun\"})}),className:\"framer-1vog0ue\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1mtg7qi\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-zb84e7\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:810,pixelWidth:1440,sizes:\"99.9373px\",src:\"https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg 1440w\"},className:\"framer-150sc50\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"UI/UX\uBD84\uC57C\uC5D0 \uD2B9\uD558\uB41C \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C \uBE0C\uB79C\uB529, \uAE08\uC735, \uB9C8\uCF00\uD305, \uCEE4\uBA38\uC2A4 \uB4F1 \uB2E4\uC591\uD55C \uBD84\uC57C\uC5D0 \uB300\uD45C \uB514\uC9C0\uD138\uC5D0\uC774\uC804\uC2DC\uC785\uB2C8\uB2E4.\"})}),className:\"framer-v8n5pt\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1op1p78\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC774\uD2B8\uB77C\uC774\uBE0C\"})}),className:\"framer-1xgfhej\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@etribe\"})}),className:\"framer-6bvhhb\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ap9fww\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1azqzni\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:301,pixelWidth:591,sizes:\"112.0918px\",src:\"https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png 591w\"},className:\"framer-mza3nd\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uB300\uD55C\uBBFC\uAD6D\uC758 \uC81C\uC870\uC5C5\uC73C\uB85C \uAC15\uC18C\uAE30\uC5C5 \uBC0F \uC218\uCD9C\uAE30\uC5C5\uC73C\uB85C \uC57D 20\uC5EC\uB144 \uAC04 \uCCA8\uB2E8 \uAE30\uC220\uACFC \uC9C0\uC18D\uC801\uC778 \uD601\uC2E0\uC744 \uD1B5\uD574 \uB2E4\uC591\uD55C \uC0B0\uC5C5 \uBD84\uC57C\uC5D0\uC11C \uC2E0\uB8B0\uBC1B\uB294 \uAE00\uB85C\uBC8C \uAE30\uC5C5\uC73C\uB85C \uC790\uB9AC\uB9E4\uAE40\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-1snublk\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogivi2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(\uC8FC)\uBCA0\uC774\uC2A4\"})}),className:\"framer-ka4k50\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@bass\"})}),className:\"framer-1y32fw6\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2i8j0b hidden-8vmq8p hidden-1as4m1v hidden-8ws66t\",\"data-framer-name\":\"Testimonials 3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-c6z4ob\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-abtmfy\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jc9nxz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Qkmz_nRwn\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"top\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"Qkmz_nRwn\",layoutId:\"Qkmz_nRwn\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tpolcb\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mcjjhf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of eostudio\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:3375,pixelWidth:6e3,sizes:\"166px\",src:\"https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png 6000w\"},className:\"framer-1ps6snv\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uB204\uAD6C\uB098 \uAE30\uC5C5\uAC00\uAC00 \uB420 \uC218 \uC788\uB294 \uC138\uC0C1\uC744 \uB9CC\uB4E4\uACE0, \uADF8\uB4E4\uC744 \uC5F0\uACB0\uD574 \uB354 \uC88B\uC740 \uC138\uC0C1\uC744 \uB9CC\uB4E4\uC5B4\uAC00\uB294 \uAC83\uC5D0 \uAE30\uC5EC\uD558\uB294 \uB300\uD55C\uBBFC\uAD6D \uB300\uD45C \uC2A4\uD0C0\uD2B8\uC5C5 \uBD84\uC57C \uBBF8\uB514\uC5B4 \uCF58\uD150\uCE20 \uBC0F \uAD50\uC721 \uCF58\uD150\uCE20\uB97C \uC81C\uC791\uD558\uC5EC\uAD6D\uB0B4\uB97C \uB118\uC5B4 \uAE00\uB85C\uBC8C \uCEE8\uD150\uCE20 \uD68C\uC0AC\uB85C \uB3C4\uC57D\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-mhfcy1\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m75tzv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC774\uC624\uC2A4\uD29C\uB514\uC624\"})}),className:\"framer-zeza9e\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@eostudio\"})}),className:\"framer-3bq021\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ku1kxv\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-40aoa3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of boundfour\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:3375,pixelWidth:6e3,sizes:\"166px\",src:\"https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png 6000w\"},className:\"framer-iuuyxy\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uBC14\uC6B4\uB4DC\uD3EC\uB294 \uC5D4\uBE44\uB514\uC544 \uC778\uC149\uC158 \uD504\uB85C\uADF8\uB7A8\uC5D0 \uD569\uB958\uD558\uB294 \uB4F1 \uAE00\uB85C\uBC8C AI \uAE30\uC220\uB825\uC744 \uC778\uC815\uBC1B\uC740 \uC778\uACF5\uC9C0\uB2A5\uC774 \uD544\uC694\uD55C \uACE0\uAC1D\uC5D0\uAC8C \uACE0\uC131\uB2A5 \uB370\uC774\uD130\uB97C \uC81C\uACF5\uD558\uB294 \uC778\uACF5\uC9C0\uB2A5 \uB370\uC774\uD130 \uD30C\uC6B4\uB4DC\uB9AC \uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-1ujokzb\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ibbmyh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uBC14\uC6B4\uB4DC\uD3EC\"})}),className:\"framer-192mkgi\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@bound4\"})}),className:\"framer-v22886\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzorhj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1edmbja\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of samnumanamchon\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:810,pixelWidth:1440,sizes:\"166px\",src:\"https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg 1440w\"},className:\"framer-jngzcp\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"29\uB144\uAC04 \uD55C\uC2DD\uB9CC\uC744 \uC5F0\uAD6C\uD55C \uACBD\uD5D8\uC744 \uBC14\uD0D5\uC73C\uB85C 2016\uB144 \uD504\uB9AC\uBBF8\uC5C4 \uBC18\uCC2C \uBE0C\uB79C\uB4DC \uC9D1\uBC18\uCC2C\uC5F0\uAD6C\uC18C\uB97C \uB7F0\uCE6D, \uD604\uC7AC \uC57D 17\uB9CC \uACE0\uAC1D\uB2D8\uB4E4\uC758 \uC2DD\uD0C1\uC744 \uCC45\uC784\uC9C0\uACE0 \uC788\uB294 \uD478\uB4DC\uD14C\uD06C HMR \uC2DC\uC7A5\uC758 \uD504\uB9AC\uBBF8\uC5C4 \uBC18\uCC2C\uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-ggdyxd\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14d4qzg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC9D1\uBC18\uCC2C\uC5F0\uAD6C\uC18C\"})}),className:\"framer-114fu9e\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@sannamchon\"})}),className:\"framer-14n2m38\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-117gjxv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"WvqqWJX0J\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"bottom\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:.5,id:\"WvqqWJX0J\",layoutId:\"WvqqWJX0J\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ufbstj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-li6j9d\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of etribe\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:810,pixelWidth:1440,sizes:\"166px\",src:\"https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg 1440w\"},className:\"framer-1ykhsqf\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"2006\uB144 \uC124\uB9BD\uD558\uC5EC \uB2E4\uC218\uC758 \uB514\uC790\uC778 \uB300\uC0C1\uC218\uC0C1\uACFC \uC804\uB7B5\uCEE8\uC124\uD305\uBD80\uD130 \uC11C\uBE44\uC2A4 \uC778\uC0AC\uC774\uD2B8, UI.UX\uB514\uC790\uC778, \uD504\uB7F0\uD2B8&\uBC31\uC5D4\uB4DC \uAC1C\uBC1C\uC5D0 \uC774\uB974\uAE30\uAE4C\uC9C0 UI/UX\uBD84\uC57C\uC5D0 \uD2B9\uD558\uB41C \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C \uBE0C\uB79C\uB529, \uAE08\uC735, \uB9C8\uCF00\uD305, \uCEE4\uBA38\uC2A4 \uB4F1 \uB2E4\uC591\uD55C \uBD84\uC57C\uC5D0 \uB300\uD45C \uB514\uC9C0\uD138\uC5D0\uC774\uC804\uC2DC\uC785\uB2C8\uB2E4.\"})}),className:\"framer-9a2vo0\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ewaft2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC774\uD2B8\uB77C\uC774\uBE0C\"})}),className:\"framer-zyhu97\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@etribe\"})}),className:\"framer-1vpovwd\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4x4dmn\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10e1gay\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of bass\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:301,pixelWidth:591,sizes:\"166px\",src:\"https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png 591w\"},className:\"framer-1dlbvob\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uB300\uD55C\uBBFC\uAD6D\uC758 \uC81C\uC870\uC5C5\uC73C\uB85C \uAC15\uC18C\uAE30\uC5C5 \uBC0F \uC218\uCD9C\uAE30\uC5C5\uC73C\uB85C \uC57D 20\uC5EC\uB144 \uAC04 \uCCA8\uB2E8 \uAE30\uC220\uACFC \uC9C0\uC18D\uC801\uC778 \uD601\uC2E0\uC744 \uD1B5\uD574 \uB2E4\uC591\uD55C \uC0B0\uC5C5 \uBD84\uC57C\uC5D0\uC11C \uC2E0\uB8B0\uBC1B\uB294 \uAE00\uB85C\uBC8C \uAE30\uC5C5\uC73C\uB85C \uC790\uB9AC\uB9E4\uAE40\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-ri80qm\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7onwud\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(\uC8FC)\uBCA0\uC774\uC2A4\"})}),className:\"framer-19quxce\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@bass\"})}),className:\"framer-162mklo\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-350b8c\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnbkkr\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of seojun\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:4861,pixelWidth:6250,sizes:\"166px\",src:\"https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=512 512w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png 6250w\"},className:\"framer-g2k5v4\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(101, 101, 101)\"},children:\"\uAE30\uC220\uD601\uC2E0\uC744 \uC778\uC815\uBC1B\uC73C\uBA70 Test Socket \uACFC MES \uBAA8\uB4C8\uC744 ISO \uC2DC\uC2A4\uD15C \uACBD\uC601 \uAE30\uBC18 \uC81C\uC870\uD558\uB294 \uAD6D\uB0B4 \uB300\uD45C \uC81C\uC870\uBCA4\uCC98\uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-19st30n\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6gdx7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(\uC8FC)\uC11C\uC900\"})}),className:\"framer-1djgxjz\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@seojun\"})}),className:\"framer-1rn673r\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1quqa3d hidden-et6pi4 hidden-8ws66t\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yrakcp\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ucfv6e-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"CckTn220K\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"CckTn220K\",layoutId:\"CckTn220K\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-tpolcb\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mcjjhf\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of eostudio\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:3375,pixelWidth:6e3,sizes:\"166px\",src:\"https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=512 512w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/jyFO2CtxEuzhVqsRmshJ2nDRU.png 6000w\"},className:\"framer-1ps6snv\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uB204\uAD6C\uB098 \uAE30\uC5C5\uAC00\uAC00 \uB420 \uC218 \uC788\uB294 \uC138\uC0C1\uC744 \uB9CC\uB4E4\uACE0, \uADF8\uB4E4\uC744 \uC5F0\uACB0\uD574 \uB354 \uC88B\uC740 \uC138\uC0C1\uC744 \uB9CC\uB4E4\uC5B4\uAC00\uB294 \uAC83\uC5D0 \uAE30\uC5EC\uD558\uB294 \uB300\uD55C\uBBFC\uAD6D \uB300\uD45C \uC2A4\uD0C0\uD2B8\uC5C5 \uBD84\uC57C \uBBF8\uB514\uC5B4 \uCF58\uD150\uCE20 \uBC0F \uAD50\uC721 \uCF58\uD150\uCE20\uB97C \uC81C\uC791\uD558\uC5EC\uAD6D\uB0B4\uB97C \uB118\uC5B4 \uAE00\uB85C\uBC8C \uCEE8\uD150\uCE20 \uD68C\uC0AC\uB85C \uB3C4\uC57D\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-mhfcy1\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m75tzv\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC774\uC624\uC2A4\uD29C\uB514\uC624\"})}),className:\"framer-zeza9e\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@eostudio\"})}),className:\"framer-3bq021\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ku1kxv\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-40aoa3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of boundfour\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:3375,pixelWidth:6e3,sizes:\"166px\",src:\"https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=512 512w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/Omfr4YDYW5qBul0VnB8LHBsBC9U.png 6000w\"},className:\"framer-iuuyxy\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uBC14\uC6B4\uB4DC\uD3EC\uB294 \uC5D4\uBE44\uB514\uC544 \uC778\uC149\uC158 \uD504\uB85C\uADF8\uB7A8\uC5D0 \uD569\uB958\uD558\uB294 \uB4F1 \uAE00\uB85C\uBC8C AI \uAE30\uC220\uB825\uC744 \uC778\uC815\uBC1B\uC740 \uC778\uACF5\uC9C0\uB2A5\uC774 \uD544\uC694\uD55C \uACE0\uAC1D\uC5D0\uAC8C \uACE0\uC131\uB2A5 \uB370\uC774\uD130\uB97C \uC81C\uACF5\uD558\uB294 \uC778\uACF5\uC9C0\uB2A5 \uB370\uC774\uD130 \uD30C\uC6B4\uB4DC\uB9AC \uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-1ujokzb\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ibbmyh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uBC14\uC6B4\uB4DC\uD3EC\"})}),className:\"framer-192mkgi\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@bound4\"})}),className:\"framer-v22886\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nzorhj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1edmbja\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of samnumanamchon\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:810,pixelWidth:1440,sizes:\"166px\",src:\"https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/aSRhHcU1qTGQeaOcMNDe22HisY.svg 1440w\"},className:\"framer-jngzcp\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"29\uB144\uAC04 \uD55C\uC2DD\uB9CC\uC744 \uC5F0\uAD6C\uD55C \uACBD\uD5D8\uC744 \uBC14\uD0D5\uC73C\uB85C 2016\uB144 \uD504\uB9AC\uBBF8\uC5C4 \uBC18\uCC2C \uBE0C\uB79C\uB4DC \uC9D1\uBC18\uCC2C\uC5F0\uAD6C\uC18C\uB97C \uB7F0\uCE6D, \uD604\uC7AC \uC57D 17\uB9CC \uACE0\uAC1D\uB2D8\uB4E4\uC758 \uC2DD\uD0C1\uC744 \uCC45\uC784\uC9C0\uACE0 \uC788\uB294 \uD478\uB4DC\uD14C\uD06C HMR \uC2DC\uC7A5\uC758 \uD504\uB9AC\uBBF8\uC5C4 \uBC18\uCC2C\uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-ggdyxd\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14d4qzg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC9D1\uBC18\uCC2C\uC5F0\uAD6C\uC18C\"})}),className:\"framer-114fu9e\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@sannamchon\"})}),className:\"framer-14n2m38\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5r6h4s\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-liogbb-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Rq96BpcOe\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:20,height:\"100%\",hoverFactor:.5,id:\"Rq96BpcOe\",layoutId:\"Rq96BpcOe\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ufbstj\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-li6j9d\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of etribe\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:810,pixelWidth:1440,sizes:\"166px\",src:\"https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/1wQZZQ6APkQoulNFnEIAy1zCA.svg 1440w\"},className:\"framer-1ykhsqf\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"2006\uB144 \uC124\uB9BD\uD558\uC5EC \uB2E4\uC218\uC758 \uB514\uC790\uC778 \uB300\uC0C1\uC218\uC0C1\uACFC \uC804\uB7B5\uCEE8\uC124\uD305\uBD80\uD130 \uC11C\uBE44\uC2A4 \uC778\uC0AC\uC774\uD2B8, UI.UX\uB514\uC790\uC778, \uD504\uB7F0\uD2B8&\uBC31\uC5D4\uB4DC \uAC1C\uBC1C\uC5D0 \uC774\uB974\uAE30\uAE4C\uC9C0 UI/UX\uBD84\uC57C\uC5D0 \uD2B9\uD558\uB41C \uC804\uBB38\uC131\uC744 \uBC14\uD0D5\uC73C\uB85C \uBE0C\uB79C\uB529, \uAE08\uC735, \uB9C8\uCF00\uD305, \uCEE4\uBA38\uC2A4 \uB4F1 \uB2E4\uC591\uD55C \uBD84\uC57C\uC5D0 \uB300\uD45C \uB514\uC9C0\uD138\uC5D0\uC774\uC804\uC2DC\uC785\uB2C8\uB2E4.\"})}),className:\"framer-9a2vo0\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ewaft2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"\uC774\uD2B8\uB77C\uC774\uBE0C\"})}),className:\"framer-zyhu97\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@etribe\"})}),className:\"framer-1vpovwd\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4x4dmn\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10e1gay\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of bass\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:301,pixelWidth:591,sizes:\"166px\",src:\"https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png?scale-down-to=512 512w,https://framerusercontent.com/images/jAPF1MjrpYuMn6vk41LVSaFIo.png 591w\"},className:\"framer-1dlbvob\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(102, 102, 102)\"},children:\"\uB300\uD55C\uBBFC\uAD6D\uC758 \uC81C\uC870\uC5C5\uC73C\uB85C \uAC15\uC18C\uAE30\uC5C5 \uBC0F \uC218\uCD9C\uAE30\uC5C5\uC73C\uB85C \uC57D 20\uC5EC\uB144 \uAC04 \uCCA8\uB2E8 \uAE30\uC220\uACFC \uC9C0\uC18D\uC801\uC778 \uD601\uC2E0\uC744 \uD1B5\uD574 \uB2E4\uC591\uD55C \uC0B0\uC5C5 \uBD84\uC57C\uC5D0\uC11C \uC2E0\uB8B0\uBC1B\uB294 \uAE00\uB85C\uBC8C \uAE30\uC5C5\uC73C\uB85C \uC790\uB9AC\uB9E4\uAE40\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\"})}),className:\"framer-ri80qm\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7onwud\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(\uC8FC)\uBCA0\uC774\uC2A4\"})}),className:\"framer-19quxce\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@bass\"})}),className:\"framer-162mklo\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-350b8c\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fnbkkr\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"logo of seojun\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:4861,pixelWidth:6250,sizes:\"166px\",src:\"https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=512 512w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/OHq2eDBk1zZNd6lrdf7VbFvHkJE.png 6250w\"},className:\"framer-g2k5v4\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTWVkaXVt\",\"--framer-font-family\":'\"Pretendard Medium\", \"Pretendard Medium Placeholder\", sans-serif',\"--framer-line-height\":\"1.6em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(101, 101, 101)\"},children:\"\uAE30\uC220\uD601\uC2E0\uC744 \uC778\uC815\uBC1B\uC73C\uBA70 Test Socket \uACFC MES \uBAA8\uB4C8\uC744 ISO \uC2DC\uC2A4\uD15C \uACBD\uC601 \uAE30\uBC18 \uC81C\uC870\uD558\uB294 \uAD6D\uB0B4 \uB300\uD45C \uC81C\uC870\uBCA4\uCC98\uAE30\uC5C5\uC785\uB2C8\uB2E4.\"})}),className:\"framer-19st30n\",fonts:[\"CUSTOM;Pretendard Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s6gdx7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgQm9sZA==\",\"--framer-font-family\":'\"Pretendard Bold\", \"Pretendard Bold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"(\uC8FC)\uC11C\uC900\"})}),className:\"framer-1djgxjz\",fonts:[\"CUSTOM;Pretendard Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"-0.7px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"@seojun\"})}),className:\"framer-1rn673r\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ye4ycd hidden-et6pi4 hidden-8ws66t\",\"data-framer-name\":\"Case Study\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{children:getLocalizedValue(\"v46\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"70px\",\"--framer-text-color\":\"var(--token-77a3af5c-f1f7-45a7-9b38-4967690b5f4d, rgb(138, 138, 138))\"},children:\"Why finex\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"85px\",\"--framer-text-color\":\"var(--token-77a3af5c-f1f7-45a7-9b38-4967690b5f4d, rgb(138, 138, 138))\"},children:\"Why finex\"})}),className:\"framer-zp6mbv\",effect:textEffect1,fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1j3n0gg hidden-et6pi4 hidden-8ws66t\",\"data-framer-name\":\"Edge\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m93xo6\",\"data-framer-name\":\"Sticky\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1txg3h2\",\"data-border\":true,\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{y:(componentViewport?.y||0)+0+5354.6316+184+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(${componentViewport?.width||\"100vw\"} / 4)`,y:(componentViewport?.y||0)+0+5175.0316+184+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vvqbpa-container\",id:elementId6,nodeId:\"GtETH4ciU\",ref:ref7,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{MFVA7ij9u:17,z8uHQkOla:30}},children:/*#__PURE__*/_jsx(Stack,{gIr0VvvDR:getLocalizedValue(\"v47\",activeLocale)??\"\uAE30\uC874 ERP \uCEE4\uC2A4\uD130\uB9C8\uC774\uC9D5 \uC5C6\uB294 \uC7AC\uBB34\uAD00\uB9AC \uBAA8\uB4C8\",height:\"100%\",I36D_5Y1i:\"maximize\",id:\"GtETH4ciU\",layoutId:\"GtETH4ciU\",MFVA7ij9u:20,QENiZ8anS:getLocalizedValue(\"v48\",activeLocale)??\"\uD604\uC7AC \uC0AC\uC6A9 \uC911\uC778 ERP \uB370\uC774\uD130\uB97C \uC5D1\uC140\uB85C \uD65C\uC6A9\uD558\uC5EC \uC7AC\uBB34\uAD00\uB9AC \uBAA8\uB4C8\uC744 \uB2E8 24\uC2DC\uAC04 \uB0B4 \uB3C4\uC785\uD569\uB2C8\uB2E4.\",style:{height:\"100%\",width:\"100%\"},variant:\"NLAv3_qpb\",width:\"100%\",z8uHQkOla:35,ZNdiKURdO:\"var(--token-31e14b38-545e-4f53-8b87-d23c5e0a5220, rgb(135, 149, 165))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{y:(componentViewport?.y||0)+0+5354.6316+184+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(${componentViewport?.width||\"100vw\"} / 4)`,y:(componentViewport?.y||0)+0+5175.0316+184+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zoe361-container\",id:elementId7,nodeId:\"UCQdFsDpE\",ref:ref8,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{MFVA7ij9u:17,z8uHQkOla:30}},children:/*#__PURE__*/_jsx(Stack,{gIr0VvvDR:getLocalizedValue(\"v49\",activeLocale)??\"\uADDC\uCE59\uAE30\uBC18 AI \uC54C\uACE0\uB9AC\uC998\uC758 \uC815\uAD50\uD55C \uB370\uC774\uD130 \uC218\uC9D1\",height:\"100%\",I36D_5Y1i:\"database\",id:\"UCQdFsDpE\",layoutId:\"UCQdFsDpE\",MFVA7ij9u:20,QENiZ8anS:getLocalizedValue(\"v50\",activeLocale)??\"LLM\uC73C\uB85C\uB294 \uC2E4\uD604\uD558\uAE30 \uBD88\uAC00\uB2A5\uD55C \uB370\uC774\uD130\uC758 \uC815\uD655\uB3C4 \uBC0F \uC2E0\uB8B0\uC131 \uAC80\uC99D\uC744 \uADDC\uCE59 \uC54C\uACE0\uB9AC\uC998\uC73C\uB85C \uD574\uACB0\uD569\uB2C8\uB2E4.\",style:{height:\"100%\",width:\"100%\"},variant:\"NLAv3_qpb\",width:\"100%\",z8uHQkOla:35,ZNdiKURdO:\"var(--token-31e14b38-545e-4f53-8b87-d23c5e0a5220, rgb(135, 149, 165))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{y:(componentViewport?.y||0)+0+5354.6316+184+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(${componentViewport?.width||\"100vw\"} / 4)`,y:(componentViewport?.y||0)+0+5175.0316+184+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19d1o1f-container\",id:elementId8,nodeId:\"FYioFlokb\",ref:ref9,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{MFVA7ij9u:17,z8uHQkOla:30}},children:/*#__PURE__*/_jsx(Stack,{gIr0VvvDR:getLocalizedValue(\"v51\",activeLocale)??\"\uC720\uC9C0\uBCF4\uC218 \uBC0F \uC0AC\uD6C4\uAD00\uB9AC CS \uD45C\uC900\uD654\",height:\"100%\",I36D_5Y1i:\"radio\",id:\"FYioFlokb\",layoutId:\"FYioFlokb\",MFVA7ij9u:20,QENiZ8anS:getLocalizedValue(\"v52\",activeLocale)??\"\uC81C 3\uC758 \uC194\uB8E8\uC158 \uC0AC\uC6A9 \uC2DC \uB3C4\uC785 \uC2E4\uD328\uC728\uC744 \uB192\uC774\uB294 \uB370\uC774\uD130 \uC720\uC9C0\uBCF4\uC218 \uBE44\uC6A9\uACFC \uADF8\uC678 \uB2E4\uC591\uD55C \uB9AC\uC18C\uC2A4 \uC18C\uBAA8\uB97C 99% \uCD5C\uC18C\uD654\uD569\uB2C8\uB2E4.\",style:{height:\"100%\",width:\"100%\"},variant:\"NLAv3_qpb\",width:\"100%\",z8uHQkOla:35,ZNdiKURdO:\"var(--token-31e14b38-545e-4f53-8b87-d23c5e0a5220, rgb(135, 149, 165))\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{y:(componentViewport?.y||0)+0+5354.6316+184+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1e3,width:`calc(${componentViewport?.width||\"100vw\"} / 4)`,y:(componentViewport?.y||0)+0+5175.0316+184+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xh129a-container\",id:elementId9,nodeId:\"Nxgiq3IlS\",ref:ref10,scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Stack,{gIr0VvvDR:getLocalizedValue(\"v53\",activeLocale)??\"finex\uB85C \uC2E4\uD604\uD558\uB294 \uACE0\uC815\uBE44\uC6A9\uC758 \uD30C\uAD34\uC801 \uAC10\uC18C\",height:\"100%\",I36D_5Y1i:\"zap\",id:\"Nxgiq3IlS\",layoutId:\"Nxgiq3IlS\",MFVA7ij9u:20,QENiZ8anS:getLocalizedValue(\"v54\",activeLocale)??\"\",style:{height:\"100%\",width:\"100%\"},variant:\"LU678UefB\",width:\"100%\",z8uHQkOla:35,ZNdiKURdO:\"rgb(204, 135, 31)\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1udnnrz\",\"data-framer-name\":\"Scroll-2\",id:elementId10,ref:ref11})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ob5nhg\",\"data-framer-name\":\"Press\",id:elementId11,ref:ref12,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g8dfww\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1684kv4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7S29kY2hhc2FuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kodchasan\", \"Kodchasan Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(135, 149, 165)\"},children:\"Press\"})})},Rsz8YaeNc:{children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7S29kY2hhc2FuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kodchasan\", \"Kodchasan Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-77a3af5c-f1f7-45a7-9b38-4967690b5f4d, rgb(138, 138, 138))\"},children:\"Press\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{style:{\"--font-selector\":\"R0Y7S29kY2hhc2FuLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Kodchasan\", \"Kodchasan Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(135, 149, 165)\"},children:\"Press\"})}),className:\"framer-144ovte\",\"data-framer-name\":\"Already chosen by the leaders\",fonts:[\"GF;Kodchasan-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v61\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"\uC5B8\uB860\uC774 \uC8FC\uBAA9\uD558\uB294\",/*#__PURE__*/_jsx(\"br\",{}),\" \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"23px\"},children:\"\uAD6D\uB0B4 \uC720\uC77C\uC758 AI \uC7AC\uBB34\uC194\uB8E8\uC158\"})]})})})},Rsz8YaeNc:{children:getLocalizedValue(\"v59\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"\uC5B8\uB860\uC774 \uC8FC\uBAA9\uD558\uB294 \uAD6D\uB0B4 \uC720\uC77C\uC758 AI \uC7AC\uBB34\uC194\uB8E8\uC158\"})})})},ZmcccRBnS:{children:getLocalizedValue(\"v60\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"\uC5B8\uB860\uC774 \uC8FC\uBAA9\uD558\uB294 \uAD6D\uB0B4 \uC720\uC77C\uC758 AI \uC7AC\uBB34\uC194\uB8E8\uC158\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgTGlnaHQ=\",\"--framer-font-family\":'\"Pretendard Light\", \"Pretendard Light Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-9ba5df47-566d-4cce-965a-b909bddf5adc, rgb(204, 204, 204))\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, rgb(255, 255, 247) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"\uC5B8\uB860\uC774 \uC8FC\uBAA9\uD558\uB294 \uAD6D\uB0B4 \uC720\uC77C\uC758 AI \uC7AC\uBB34\uC194\uB8E8\uC158\"})})}),className:\"framer-z13m6a\",\"data-framer-name\":\"Benefits of being a member\",fonts:[\"CUSTOM;Pretendard Light\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-klu0qt\",\"data-framer-name\":\"line\",style:{transformPerspective:1200}}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hdnrzo\",\"data-framer-name\":\"Wrap\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://n.news.naver.com/mnews/article/023/0003824901?sid=105\",motionChild:true,nodeId:\"xmVUZ6MwN\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"logo of pr-1\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868.5+73+130.1+1.9737),pixelHeight:64,pixelWidth:150,src:\"https://framerusercontent.com/images/8LSOTYoPcSFdKVIRqiBN5qxQrGc.png\"}},Rsz8YaeNc:{background:{alt:\"logo of pr-1\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6746.6316+300+171+26.2827),pixelHeight:64,pixelWidth:150,src:\"https://framerusercontent.com/images/8LSOTYoPcSFdKVIRqiBN5qxQrGc.png\"}},ZmcccRBnS:{background:{alt:\"logo of pr-1\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4215.3828+300+165+44.3334),pixelHeight:64,pixelWidth:150,src:\"https://framerusercontent.com/images/8LSOTYoPcSFdKVIRqiBN5qxQrGc.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"logo of pr-1\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:100,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6567.0316+300+183+48),pixelHeight:64,pixelWidth:150,src:\"https://framerusercontent.com/images/8LSOTYoPcSFdKVIRqiBN5qxQrGc.png\"},className:\"framer-1gjxe24 framer-1dbwygc\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://n.news.naver.com/mnews/article/015/0004950137?sid=105\",motionChild:true,nodeId:\"IlO6JU_i8\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"logo of pr-2\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:187.33333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868.5+73+130.1+4.6053),pixelHeight:74,pixelWidth:179,src:\"https://framerusercontent.com/images/4iT0ZJoQW1VhyH13nnZoXGidWU.png\"}},Rsz8YaeNc:{background:{alt:\"logo of pr-2\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:187.33333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6746.6316+300+171+27.6571),pixelHeight:74,pixelWidth:179,src:\"https://framerusercontent.com/images/4iT0ZJoQW1VhyH13nnZoXGidWU.png\"}},ZmcccRBnS:{background:{alt:\"logo of pr-2\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:187.33333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4215.3828+300+165+45.4167),pixelHeight:74,pixelWidth:179,src:\"https://framerusercontent.com/images/4iT0ZJoQW1VhyH13nnZoXGidWU.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"logo of pr-2\",fit:\"fill\",intrinsicHeight:124,intrinsicWidth:187.33333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6567.0316+300+183+50),pixelHeight:74,pixelWidth:179,src:\"https://framerusercontent.com/images/4iT0ZJoQW1VhyH13nnZoXGidWU.png\"},className:\"framer-1q389cp framer-1dbwygc\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://n.news.naver.com/mnews/article/243/0000052031?sid=101\",motionChild:true,nodeId:\"IW2T3QVdv\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"logo of pr-3\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:66,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868.5+73+130.1+0),pixelHeight:64,pixelWidth:99,src:\"https://framerusercontent.com/images/M6V474ydPlD628E8maYxOezO7E8.png\"}},Rsz8YaeNc:{background:{alt:\"logo of pr-3\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:66,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6746.6316+300+171+20),pixelHeight:64,pixelWidth:99,src:\"https://framerusercontent.com/images/M6V474ydPlD628E8maYxOezO7E8.png\"}},ZmcccRBnS:{background:{alt:\"logo of pr-3\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:66,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4215.3828+300+165+40),pixelHeight:64,pixelWidth:99,src:\"https://framerusercontent.com/images/M6V474ydPlD628E8maYxOezO7E8.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"logo of pr-3\",fit:\"fill\",intrinsicHeight:42.666666666666664,intrinsicWidth:66,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6567.0316+300+183+40),pixelHeight:64,pixelWidth:99,src:\"https://framerusercontent.com/images/M6V474ydPlD628E8maYxOezO7E8.png\"},className:\"framer-1vxnfhm framer-1dbwygc\",\"data-framer-name\":\"image\"})})}),/*#__PURE__*/_jsx(Link,{href:\"https://n.news.naver.com/mnews/article/277/0005315480?sid=101\",motionChild:true,nodeId:\"aLxVqvmz8\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"logo of pr-4\",fit:\"fill\",intrinsicHeight:314.6666666666667,intrinsicWidth:575.3333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868.5+73+130.1+4.2763),pixelHeight:150,pixelWidth:655,sizes:\"90.0403px\",src:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png\",srcSet:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png 655w\"}},Rsz8YaeNc:{background:{alt:\"logo of pr-4\",fit:\"fill\",intrinsicHeight:314.6666666666667,intrinsicWidth:575.3333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6746.6316+300+171+36.2958),pixelHeight:150,pixelWidth:655,sizes:\"202.5703px\",src:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png\",srcSet:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png 655w\"}},ZmcccRBnS:{background:{alt:\"logo of pr-4\",fit:\"fill\",intrinsicHeight:314.6666666666667,intrinsicWidth:575.3333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4215.3828+300+165+51.375),pixelHeight:150,pixelWidth:655,sizes:\"139.834px\",src:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png\",srcSet:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png 655w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"logo of pr-4\",fit:\"fill\",intrinsicHeight:314.6666666666667,intrinsicWidth:575.3333333333334,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6567.0316+300+183+61),pixelHeight:150,pixelWidth:655,sizes:\"258px\",src:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png\",srcSet:\"https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z8fv0guhC5JRbiGA2T24viDUUk0.png 655w\"},className:\"framer-1vf2a0l framer-1dbwygc\",\"data-framer-name\":\"image\"})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ssmk18-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"iV3njPXgc\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(Grain,{height:\"100%\",id:\"iV3njPXgc\",layoutId:\"iV3njPXgc\",opacity:.08,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qqnIfVeKL\"},implicitPathVariables:undefined},{href:{webPageId:\"qqnIfVeKL\"},implicitPathVariables:undefined},{href:{webPageId:\"qqnIfVeKL\"},implicitPathVariables:undefined},{href:{webPageId:\"qqnIfVeKL\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+4868.5+73+188.1},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+6746.6316+300+326},ZmcccRBnS:{y:(componentViewport?.y||0)+0+4215.3828+300+337}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+6567.0316+300+399,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k25hix-container\",nodeId:\"zrWYma11s\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{AwnAclyIJ:resolvedLinks4[3],Gs4CNiWpt:16,HC0Qsbzzz:16,J5nXr4vrD:16},Rsz8YaeNc:{AwnAclyIJ:resolvedLinks4[1],Gs4CNiWpt:20},ZmcccRBnS:{AwnAclyIJ:resolvedLinks4[2],Gs4CNiWpt:20}},children:/*#__PURE__*/_jsx(ButtonsTextLink,{AwnAclyIJ:resolvedLinks4[0],bNnFoDlH1:0,DaRuik2Hi:\"12px 0px 12px 0px\",DLTMccp_w:\"rgb(219, 219, 219)\",ETSu7WT6U:\"rgb(102, 102, 255)\",Gs4CNiWpt:25,HC0Qsbzzz:20,height:\"100%\",id:\"zrWYma11s\",J5nXr4vrD:20,layoutId:\"zrWYma11s\",NemalAUEH:\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40))\",o63ovkMnP:\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40))\",QDIE1tbqq:getLocalizedValue(\"v62\",activeLocale)??\"\uC5B8\uB860\uBCF4\uB3C4 \uD655\uC778\uD558\uAE30\",variant:\"FgZqvUCdI\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bf93rx\",\"data-framer-name\":\"Mission\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z2bgi2\",\"data-framer-name\":\"Group 306\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{background:{alt:\"picture of background-1\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+470.5),pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/FOvZ8HTVv5TIhIRwbTKBj8o1d8Y.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.2,background:{alt:\"picture of background-1\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+470.5),pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/FOvZ8HTVv5TIhIRwbTKBj8o1d8Y.jpg\"},className:\"framer-gsvgmv hidden-et6pi4 hidden-8ws66t\",\"data-framer-name\":\"Rectangle 8\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"picture of background-2\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3744.5+0+245.5),pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/wHOlJZemnU2J6gdlQrHbeeb5gDY.jpg\"}},Rsz8YaeNc:{background:{alt:\"picture of background-2\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+479.5),pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/wHOlJZemnU2J6gdlQrHbeeb5gDY.jpg\"}},ZmcccRBnS:{background:{alt:\"picture of background-2\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5034.3828+0+501.5),pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/wHOlJZemnU2J6gdlQrHbeeb5gDY.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.3,background:{alt:\"picture of background-2\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+479.5),pixelHeight:320,pixelWidth:480,src:\"https://framerusercontent.com/images/wHOlJZemnU2J6gdlQrHbeeb5gDY.jpg\"},className:\"framer-1vcicz5\",\"data-framer-name\":\"Rectangle 9\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"picture of background-3\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3744.5+0+259.7466),pixelHeight:480,pixelWidth:360,src:\"https://framerusercontent.com/images/XX2Eii375UXsRhq3G8U3xIvY.jpg\"}},Rsz8YaeNc:{background:{alt:\"picture of background-3\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+512),pixelHeight:480,pixelWidth:360,src:\"https://framerusercontent.com/images/XX2Eii375UXsRhq3G8U3xIvY.jpg\"}},ZmcccRBnS:{background:{alt:\"picture of background-3\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5034.3828+0+534),pixelHeight:480,pixelWidth:360,src:\"https://framerusercontent.com/images/XX2Eii375UXsRhq3G8U3xIvY.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.4,background:{alt:\"picture of background-3\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+512),pixelHeight:480,pixelWidth:360,src:\"https://framerusercontent.com/images/XX2Eii375UXsRhq3G8U3xIvY.jpg\"},className:\"framer-q8ipr3\",\"data-framer-name\":\"Rectangle 14\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"picture of background-4\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3744.5+0+263.4726),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/ViUuCjYW4fUpGJ9j46G9fGdpU4.jpg\"}},Rsz8YaeNc:{background:{alt:\"picture of background-4\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+520.5),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/ViUuCjYW4fUpGJ9j46G9fGdpU4.jpg\"}},ZmcccRBnS:{background:{alt:\"picture of background-4\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5034.3828+0+542.5),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/ViUuCjYW4fUpGJ9j46G9fGdpU4.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.4,background:{alt:\"picture of background-4\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+520.5),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/ViUuCjYW4fUpGJ9j46G9fGdpU4.jpg\"},className:\"framer-134cupv\",\"data-framer-name\":\"Rectangle 13\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"picture of background-5\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3744.5+0+245.5),pixelHeight:480,pixelWidth:320,src:\"https://framerusercontent.com/images/aIz8uI8ipQAt1cOHnmPR9lExaAY.jpg\"}},Rsz8YaeNc:{background:{alt:\"picture of background-5\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+479.5),pixelHeight:480,pixelWidth:320,src:\"https://framerusercontent.com/images/aIz8uI8ipQAt1cOHnmPR9lExaAY.jpg\"}},ZmcccRBnS:{background:{alt:\"picture of background-5\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5034.3828+0+501.5),pixelHeight:480,pixelWidth:320,src:\"https://framerusercontent.com/images/aIz8uI8ipQAt1cOHnmPR9lExaAY.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.2,background:{alt:\"picture of background-5\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+479.5),pixelHeight:480,pixelWidth:320,src:\"https://framerusercontent.com/images/aIz8uI8ipQAt1cOHnmPR9lExaAY.jpg\"},className:\"framer-z49sp0\",\"data-framer-name\":\"Rectangle 10\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{background:{alt:\"picture of background-6\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3744.5+0+259.7466),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/Uo6WrLyP5xIn1WNy2Aam9bk7A.jpg\"}},Rsz8YaeNc:{background:{alt:\"picture of background-6\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+512),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/Uo6WrLyP5xIn1WNy2Aam9bk7A.jpg\"}},ZmcccRBnS:{background:{alt:\"picture of background-6\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5034.3828+0+534),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/Uo6WrLyP5xIn1WNy2Aam9bk7A.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"picture of background-6\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+512),pixelHeight:270,pixelWidth:480,src:\"https://framerusercontent.com/images/Uo6WrLyP5xIn1WNy2Aam9bk7A.jpg\"},className:\"framer-hireuq\",\"data-framer-name\":\"Rectangle 15\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{background:{alt:\"picture of background-7\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+514.4598),pixelHeight:480,pixelWidth:275,src:\"https://framerusercontent.com/images/HL33gXglj6JH5jp0wfIAGWtn1bk.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.4,background:{alt:\"picture of background-7\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+514.4598),pixelHeight:480,pixelWidth:275,src:\"https://framerusercontent.com/images/HL33gXglj6JH5jp0wfIAGWtn1bk.jpg\"},className:\"framer-o07wb3 hidden-et6pi4 hidden-8ws66t\",\"data-framer-name\":\"Rectangle 12\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Rsz8YaeNc:{background:{alt:\"picture of background-8\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7554.6316+0+436.5857),pixelHeight:480,pixelWidth:360,src:\"https://framerusercontent.com/images/XX2Eii375UXsRhq3G8U3xIvY.jpg\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__loop:animation6,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition9,__perspectiveFX:false,__targetOpacity:.4,background:{alt:\"picture of background-8\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7448.0316+0+436.5857),pixelHeight:480,pixelWidth:360,src:\"https://framerusercontent.com/images/XX2Eii375UXsRhq3G8U3xIvY.jpg\"},className:\"framer-1sb4pbz hidden-et6pi4 hidden-8ws66t\",\"data-framer-name\":\"Rectangle 11\",style:{rotate:180}})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pnlv6f\",\"data-framer-name\":\"content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v64\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"Revolutionizing \"}),\"financial \",/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"data?\",/*#__PURE__*/_jsx(\"br\",{})]})]})})},Rsz8YaeNc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"Revolutionizing \"}),\"financial \",/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"data?\",/*#__PURE__*/_jsx(\"br\",{})]})]})})},ZmcccRBnS:{children:getLocalizedValue(\"v63\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"Revolutionizing \"}),\"financial \",/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"data?\",/*#__PURE__*/_jsx(\"br\",{})]})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:[/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:\"Revolutionizing \"}),\"financial \",/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"data?\",/*#__PURE__*/_jsx(\"br\",{})]})]})}),className:\"framer-sek55p\",\"data-framer-name\":\"Empowering your growth through strategic partnerships\",fonts:[\"FS;Clash Display-regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"\uB3C4\uC785\uC744 \uACE0\uBBFC\uD558\uB294 \uC0AC\uC774 \uC313\uC774\uB294 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uB370\uC774\uD130 \uC18D \uAE30\uD68C\uB97C \uB193\uCE58\uC9C0 \uB9C8\uC138\uC694.\"})]})})})},Rsz8YaeNc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[/*#__PURE__*/_jsxs(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:[\"\uB3C4\uC785\uC744 \uACE0\uBBFC\uD558\uB294 \uC0AC\uC774 \uC313\uC774\uB294 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uB370\uC774\uD130 \uC18D \"})]}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"40px\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"\uAE30\uD68C\uB97C \uB193\uCE58\uC9C0 \uB9C8\uC138\uC694.\"})})]})})})},ZmcccRBnS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"\uB3C4\uC785\uC744 \uACE0\uBBFC\uD558\uB294 \uC0AC\uC774 \uC313\uC774\uB294 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uB370\uC774\uD130 \uC18D \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uAE30\uD68C\uB97C \uB193\uCE58\uC9C0 \uB9C8\uC138\uC694.\"})]})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgRXh0cmFMaWdodA==\",\"--framer-font-family\":'\"Pretendard ExtraLight\", \"Pretendard ExtraLight Placeholder\", sans-serif',\"--framer-font-size\":\"45px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247))\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(24deg, var(--token-cc1cc3de-0c56-40fb-8ff4-20db73e018fb, rgb(255, 255, 247)) 0%, rgba(255, 255, 247, 0.34) 100%)\"},children:[\"\uB3C4\uC785\uC744 \uACE0\uBBFC\uD558\uB294 \uC0AC\uC774 \uC313\uC774\uB294 \",/*#__PURE__*/_jsx(\"strong\",{children:\"\uB370\uC774\uD130 \uC18D \"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"\uAE30\uD68C\uB97C \uB193\uCE58\uC9C0 \uB9C8\uC138\uC694.\"})]})})}),className:\"framer-1iwmp5c\",\"data-framer-name\":\"Empowering your growth through strategic partnerships\",fonts:[\"CUSTOM;Pretendard ExtraLight\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+3744.5+0+174.25+40+68.5},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+7554.6316+410.75+40+189.5},ZmcccRBnS:{y:(componentViewport?.y||0)+0+5034.3828+427.5+40+156}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:(componentViewport?.y||0)+0+7448.0316+405.25+40+200.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n4evt3-container\",nodeId:\"YTIJO4BzB\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{Gs4CNiWpt:16,HC0Qsbzzz:16,J5nXr4vrD:16},Rsz8YaeNc:{Gs4CNiWpt:20},ZmcccRBnS:{Gs4CNiWpt:20}},children:/*#__PURE__*/_jsx(ButtonsTextLink,{AwnAclyIJ:\"https://cal.com/finex.ceo/consulting-data\",bNnFoDlH1:0,DaRuik2Hi:\"12px 0px 12px 0px\",DLTMccp_w:\"rgb(219, 219, 219)\",ETSu7WT6U:\"rgb(102, 102, 255)\",Gs4CNiWpt:25,HC0Qsbzzz:20,height:\"100%\",id:\"YTIJO4BzB\",J5nXr4vrD:20,layoutId:\"YTIJO4BzB\",NemalAUEH:\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40))\",o63ovkMnP:\"var(--token-dc0f41b8-c2aa-472a-bd64-6e47c7c7d644, rgb(247, 150, 40))\",QDIE1tbqq:getLocalizedValue(\"v65\",activeLocale)??\"\uB370\uC774\uD130 \uC9C4\uB2E8\uBC1B\uAE30 (1\uD68C \uBB34\uB8CC)\",variant:\"FgZqvUCdI\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vj00kx\",\"data-framer-name\":\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q5ec6\",\"data-framer-name\":\"FAQ\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-5pov5f\",\"data-framer-name\":\"Headline\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{children:getLocalizedValue(\"v69\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uC790\uC8FC \uBB3B\uB294 \uC9C8\uBB38\uB4E4 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"FAQ\"})]})})},Rsz8YaeNc:{children:getLocalizedValue(\"v67\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uC790\uC8FC \uBB3B\uB294 \uC9C8\uBB38\uB4E4 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"FAQ\"})]})})},ZmcccRBnS:{children:getLocalizedValue(\"v68\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uC790\uC8FC \uBB3B\uB294 \uC9C8\uBB38\uB4E4 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"FAQ\"})]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v66\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"Q1VTVE9NO1ByZXRlbmRhcmQgUmVndWxhcg==\",\"--framer-font-family\":'\"Pretendard Regular\", \"Pretendard Regular Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"\uC790\uC8FC \uBB3B\uB294 \uC9C8\uBB38\uB4E4 \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"RlM7Q2xhc2ggRGlzcGxheS1yZWd1bGFy\",\"--framer-font-family\":'\"Clash Display\", \"Clash Display Placeholder\", sans-serif'},children:\"FAQ\"})]})}),className:\"framer-1dwyupl\",\"data-framer-name\":\"Heading\",fonts:[\"CUSTOM;Pretendard Regular\",\"FS;Clash Display-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o0kr6a\",\"data-framer-name\":\"Q&A Wrap\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1840px) - 60px)`,y:(componentViewport?.y||0)+0+4263.5+60+0+0+78+20+0},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+8667.6316+60+0+0+20+0},ZmcccRBnS:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 14px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+6147.3828+60+0+0+20+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 68px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+8561.0316+60+0+0+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-unh8f2-container\",nodeId:\"W5Y_0uiLK\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{aNTPKKO_c:14,q6SVaom_Q:14},ZmcccRBnS:{aNTPKKO_c:16,q6SVaom_Q:14}},children:/*#__PURE__*/_jsx(AccordionsFAQ,{aNTPKKO_c:20,height:\"100%\",id:\"W5Y_0uiLK\",layoutId:\"W5Y_0uiLK\",q6SVaom_Q:18,style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v71\",activeLocale)??\"\uB370\uC774\uD130 \uC5C5\uB85C\uB4DC \uD6C4 finex AI \uC54C\uACE0\uB9AC\uC998\uC5D0\uC11C \uC790\uB3D9\uC73C\uB85C \uB370\uC774\uD130 \uC989\uC2DC \uB3C4\uC785 \uAC00\uB2A5 \uC5EC\uBD80\uAC00 \uC2E4\uC2DC\uAC04\uC73C\uB85C \uD655\uC778\uB418\uBA70, \uCC28\uB300\uBCC0 \uBD88\uC77C\uCE58 \uB4F1 \uC6D0\uC7A5 \uB370\uC774\uD130\uC758 \uC774\uC288 \uBC1C\uC0DD \uC2DC \uC7AC\uBB34\uB370\uC774\uD130 \uB9E4\uB2C8\uC800\uB97C \uBC30\uC815\uD558\uC5EC \uCD5C\uB300 24\uC2DC\uAC04 \uC774\uB0B4 \uB3C4\uC785 \uC608\uC0C1 \uC2DC\uAC04\uC744 \uC0B0\uCD9C\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uC774\uC288\uAC00 \uC5C6\uB2E4\uBA74 \uD3C9\uADE0 2\uBD84\uC758 \uB3C4\uC785 \uC2DC\uAC04\uC774 \uC18C\uC694\uB429\uB2C8\uB2E4.\",variant:\"ntoMrXKES\",W88zB8mIG:getLocalizedValue(\"v70\",activeLocale)??\"\uB3C4\uC785 \uC608\uC0C1 \uC18C\uC694\uAE30\uAC04\uC740 \uC5B4\uB5BB\uAC8C \uC0B0\uCD9C\uD558\uB098\uC694?\",width:\"100%\",zO2KDGB_Q:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1s2pglz\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1840px) - 60px)`,y:(componentViewport?.y||0)+0+4263.5+60+0+0+78+20+85},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+8667.6316+60+0+0+20+85},ZmcccRBnS:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 14px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+6147.3828+60+0+0+20+85}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 68px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+8561.0316+60+0+0+20+85,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7mvv4x-container\",nodeId:\"fllY1tl9g\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{aNTPKKO_c:14,q6SVaom_Q:14},ZmcccRBnS:{aNTPKKO_c:16}},children:/*#__PURE__*/_jsx(AccordionsFAQ,{aNTPKKO_c:20,height:\"100%\",id:\"fllY1tl9g\",layoutId:\"fllY1tl9g\",q6SVaom_Q:18,style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v73\",activeLocale)??\"\uB124, \uAC00\uB2A5\uD569\uB2C8\uB2E4. ERP \uB0B4 \uD68C\uACC4\uCC98\uB9AC\uC5D0 \uC774\uC288\uAC00 \uC788\uAC70\uB098 \uAD00\uB828\uD574 CS\uAC00 \uD544\uC694\uD560 \uACBD\uC6B0 \uC989\uC2DC \uB2F4\uB2F9 \uB9E4\uB2C8\uC800\uB97C \uBC30\uC815\uD558\uC5EC \uC6B0\uC120\uC21C\uC704\uB85C CS\uB97C \uB3C4\uC640\uB4DC\uB9AC\uBA70 \uC2E4\uBB34\uC801\uC73C\uB85C \uC2DD\uBCC4\uC774 \uC5B4\uB824\uC6B4 \uB370\uC774\uD130 \uAD00\uB828 \uC774\uC288\uB97C \uD3EC\uAD04\uC801\uC73C\uB85C \uB3C4\uC640\uB4DC\uB9AC\uACE0 \uC788\uC2B5\uB2C8\uB2E4.\",variant:\"ntoMrXKES\",W88zB8mIG:getLocalizedValue(\"v72\",activeLocale)??\"\uC790\uCCB4 \uC6D0\uC7A5\uB370\uC774\uD130 \uC774\uC288 \uBC1C\uC0DD \uC2DC CS \uBC1B\uC744 \uC218 \uC788\uB098\uC694?\",width:\"100%\",zO2KDGB_Q:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-heepfc\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1840px) - 60px)`,y:(componentViewport?.y||0)+0+4263.5+60+0+0+78+20+170},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+8667.6316+60+0+0+20+170},ZmcccRBnS:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 14px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+6147.3828+60+0+0+20+170}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 68px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+8561.0316+60+0+0+20+170,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uipvj7-container\",nodeId:\"tkrr4fpl0\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{aNTPKKO_c:14,q6SVaom_Q:14},ZmcccRBnS:{aNTPKKO_c:16}},children:/*#__PURE__*/_jsx(AccordionsFAQ,{aNTPKKO_c:20,height:\"100%\",id:\"tkrr4fpl0\",layoutId:\"tkrr4fpl0\",q6SVaom_Q:18,style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v75\",activeLocale)??\"finex\uAC00 \uBCF4\uC720\uD55C \uAE30\uC220\uB825\uC740 ERP \uB370\uC774\uD130 \uD615\uC2DD\uC5D0 \uAD6C\uC560\uC5C6\uC774 \uD45C\uC900\uD654\uD558\uC5EC \uB3C4\uC785\uAC00\uB2A5\uD55C AI \uC54C\uACE0\uB9AC\uC998\uC785\uB2C8\uB2E4. \uB530\uB77C\uC11C \uD615\uC2DD\uC774 \uB2EC\uB77C \uCD94\uAC00\uACFC\uAE08\uB418\uB294 \uACBD\uC6B0\uB294 \uBC1C\uC0DD\uD558\uC9C0 \uC54A\uC2B5\uB2C8\uB2E4.\",variant:\"ntoMrXKES\",W88zB8mIG:getLocalizedValue(\"v74\",activeLocale)??\"ERP \uB370\uC774\uD130 \uD615\uC2DD\uC5D0 \uB530\uB978 \uCD94\uAC00\uBE44\uC6A9\uC774 \uACFC\uAE08\uB418\uB098\uC694?\",width:\"100%\",zO2KDGB_Q:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5gz5j1\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1840px) - 60px)`,y:(componentViewport?.y||0)+0+4263.5+60+0+0+78+20+255},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+8667.6316+60+0+0+20+255},ZmcccRBnS:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 14px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+6147.3828+60+0+0+20+255}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 68px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+8561.0316+60+0+0+20+255,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wi8myi-container\",nodeId:\"nNSW7MdSp\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{aNTPKKO_c:14,q6SVaom_Q:14},ZmcccRBnS:{aNTPKKO_c:16}},children:/*#__PURE__*/_jsx(AccordionsFAQ,{aNTPKKO_c:20,height:\"100%\",id:\"nNSW7MdSp\",layoutId:\"nNSW7MdSp\",q6SVaom_Q:18,style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v77\",activeLocale)??\"\uB124, \uC0AC\uC6A9\uD558\uC2DC\uB294 \uBAA9\uC801\uACFC \uD65C\uC6A9\uB3C4\uC5D0 \uB530\uB978 \uAC01 \uAE30\uB2A5\uBCC4 \uBAA8\uB4C8 \uAC00\uACA9\uC774 \uB2E4\uB978 \uC810 \uC720\uC758\uD574\uC8FC\uC2DC\uAE30 \uBC14\uB77C\uBA70, \uAE30\uC5C5 \uB9DE\uCDA4\uD615 \uD328\uD0A4\uC9C0\uC758 \uACBD\uC6B0 \uBB38\uC758\uB97C \uD1B5\uD574 \uC0C1\uC138\uD788 \uC548\uB0B4 \uBC1B\uC73C\uC2E4 \uC218 \uC788\uC2B5\uB2C8\uB2E4.\",variant:\"ntoMrXKES\",W88zB8mIG:getLocalizedValue(\"v76\",activeLocale)??\"\uAC01 \uAE30\uB2A5\uBCC4 \uAC00\uACA9\uC815\uCC45\uC774 \uB2E4\uB978\uAC00\uC694?\",width:\"100%\",zO2KDGB_Q:\"rgb(255, 255, 255)\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ydq22z\",\"data-framer-name\":\"divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 60px, 1840px) - 60px)`,y:(componentViewport?.y||0)+0+4263.5+60+0+0+78+20+340},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+8667.6316+60+0+0+20+340},ZmcccRBnS:{width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 14px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+6147.3828+60+0+0+20+340}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1840px) - 68px) / 2, 1px) - 60px)`,y:(componentViewport?.y||0)+0+8561.0316+60+0+0+20+340,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vvfj43-container\",nodeId:\"pe48aTU0N\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{aNTPKKO_c:14,q6SVaom_Q:14},ZmcccRBnS:{aNTPKKO_c:16}},children:/*#__PURE__*/_jsx(AccordionsFAQ,{aNTPKKO_c:20,height:\"100%\",id:\"pe48aTU0N\",layoutId:\"pe48aTU0N\",q6SVaom_Q:18,style:{width:\"100%\"},T8rQFvSBR:getLocalizedValue(\"v79\",activeLocale)??\"finex\uB294 \uC624\uC9C1 \uD68C\uC0AC \uB0B4 \uC7AC\uBB34\uC81C\uD45C\uAC00 \uC791\uC131\uB418\uB294 \uB370\uC774\uD130\uB9CC \uCDE8\uAE09\uD558\uC5EC \uBD84\uC11D\uC744 \uC9C4\uD589\uD558\uACE0 \uC788\uC2B5\uB2C8\uB2E4. \uB530\uB77C\uC11C \uB0B4\uBD80\uC815\uBCF4\uB85C \uCDE8\uAE09\uB418\uC5B4 \uC7AC\uBB34\uC81C\uD45C  \uC0C1\uC5D0 \uD45C\uC2DC\uB418\uC9C0 \uC54A\uB294 \uAC70\uB798\uCC98 \uBC0F \uC801\uC694\uB294 \uC0AC\uC6A9\uB418\uC9C0 \uC54A\uB294 \uC810 \uC548\uB0B4 \uB4DC\uB9BD\uB2C8\uB2E4.\",variant:\"ntoMrXKES\",W88zB8mIG:getLocalizedValue(\"v78\",activeLocale)??\"\uAC70\uB798\uCC98 \uB4F1 \uBBFC\uAC10\uD55C \uB0B4\uBD80\uB370\uC774\uD130\uB3C4 \uC0AC\uC6A9\uB418\uB098\uC694?\",width:\"100%\",zO2KDGB_Q:\"rgb(255, 255, 255)\"})})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{y:(componentViewport?.y||0)+0+5311.6},Rsz8YaeNc:{y:(componentViewport?.y||0)+0+9339.6316},ZmcccRBnS:{y:(componentViewport?.y||0)+0+6740.3828}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:642,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+9233.0316,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18whawe-container\",nodeId:\"o8kfp9wrS\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{variant:\"TYVlhzTk4\"},ZmcccRBnS:{variant:\"TYVlhzTk4\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"o8kfp9wrS\",layoutId:\"o8kfp9wrS\",style:{width:\"100%\"},variant:\"V_rAq_Yl3\",width:\"100%\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{brMK_4Z09:{height:62,width:\"343px\",y:40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ehzuq3-container hidden-8vmq8p hidden-1as4m1v hidden-et6pi4\",layoutScroll:true,nodeId:\"uXpcaheSP\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(NavNavbar,{height:\"100%\",id:\"uXpcaheSP\",layoutId:\"uXpcaheSP\",style:{width:\"100%\"},variant:\"hZJmgLS9b\",width:\"100%\"})})})}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZmcccRBnS:{height:62,width:\"780px\",y:44}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x1h68z-container hidden-8vmq8p hidden-1as4m1v hidden-8ws66t\",layoutScroll:true,nodeId:\"iodJqJqWn\",scopeId:\"EPw6ZR00a\",children:/*#__PURE__*/_jsx(NavNavbar,{height:\"100%\",id:\"iodJqJqWn\",layoutId:\"iodJqJqWn\",style:{width:\"100%\"},variant:\"hZJmgLS9b\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-lEIuR.framer-1dbwygc, .framer-lEIuR .framer-1dbwygc { display: block; }\",\".framer-lEIuR.framer-8vmq8p { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-lEIuR .framer-vfqzb0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-x2fcoq { --border-bottom-width: 1px; --border-color: #bdbdbd; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 44px; justify-content: space-between; overflow: hidden; padding: 0px 10px 0px 10px; position: relative; width: 100%; z-index: 10; }\",\".framer-lEIuR .framer-15w8hsx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lEIuR .framer-76swmn-container { flex: none; height: auto; position: relative; width: 123px; }\",\".framer-lEIuR .framer-1l1hjtn-container { flex: none; height: auto; position: relative; width: 134px; }\",\".framer-lEIuR .framer-123qxo9-container { flex: none; height: auto; position: relative; width: 93px; }\",\".framer-lEIuR .framer-1gh878x-container { flex: none; height: 65px; position: relative; width: 100%; z-index: 10; }\",\".framer-lEIuR .framer-2eato5 { flex: none; height: 980px; left: -680px; overflow: hidden; position: absolute; right: -680px; top: 0px; z-index: 0; }\",\".framer-lEIuR .framer-1egihiw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-udp3ez { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-10gew0o-container { flex: none; height: 100vh; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1785h40 { background-color: #000000; flex: none; height: 5.263157894736842vh; overflow: visible; position: relative; width: 100%; z-index: 1; }\",\".framer-lEIuR .framer-5yn8pq, .framer-lEIuR .framer-kwbden { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 170px; height: 100vh; justify-content: center; overflow: visible; padding: 254px 60px 358px 60px; position: relative; width: 100%; z-index: 1; }\",\".framer-lEIuR .framer-1i5v6q7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-vk1g5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-3o412a-container, .framer-lEIuR .framer-1a968e-container, .framer-lEIuR .framer-1x10fe1-container, .framer-lEIuR .framer-1k25hix-container, .framer-lEIuR .framer-1n4evt3-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-lEIuR .framer-1tpjxa5, .framer-lEIuR .framer-z13m6a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-19w1d7h-container { flex: none; height: 125px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-kztvdf { -webkit-filter: contrast(0); filter: contrast(0); height: 71px; overflow: visible; position: relative; width: 173px; }\",\".framer-lEIuR .framer-1jdc9s1 { -webkit-filter: contrast(0); filter: contrast(0); height: 86px; overflow: visible; position: relative; width: 135px; }\",\".framer-lEIuR .framer-143biue { -webkit-filter: contrast(0); filter: contrast(0); height: 53px; overflow: visible; position: relative; width: 296px; }\",\".framer-lEIuR .framer-934aj2 { -webkit-filter: grayscale(1); filter: grayscale(1); height: 78px; overflow: visible; position: relative; width: 79px; }\",\".framer-lEIuR .framer-dnpt8y { -webkit-filter: grayscale(1); filter: grayscale(1); height: 93px; overflow: visible; position: relative; width: 87px; }\",\".framer-lEIuR .framer-4552kv { -webkit-filter: contrast(0); filter: contrast(0); height: 64px; overflow: visible; position: relative; width: 242px; }\",\".framer-lEIuR .framer-1atm1pn { height: 100px; position: relative; width: 200px; }\",\".framer-lEIuR .framer-12evnk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1n3sy3m { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-ogs4rc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-5cs5a0-container, .framer-lEIuR .framer-unh8f2-container, .framer-lEIuR .framer-7mvv4x-container, .framer-lEIuR .framer-1uipvj7-container, .framer-lEIuR .framer-wi8myi-container, .framer-lEIuR .framer-vvfj43-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-lEIuR .framer-d6oh6f { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: 1433px; justify-content: flex-start; overflow: visible; padding: 120px 45px 120px 45px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-u2km12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 11px 0px 11px 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-103w1id { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-zjhsnq { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-9auoph { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 99px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-31yrpp, .framer-lEIuR .framer-16ua6k0, .framer-lEIuR .framer-aa68d9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-lEIuR .framer-nvl66y, .framer-lEIuR .framer-1o69wbi, .framer-lEIuR .framer-jpfgu6, .framer-lEIuR .framer-1s2yr68, .framer-lEIuR .framer-uvjqb3, .framer-lEIuR .framer-16s3uon, .framer-lEIuR .framer-144ovte { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lEIuR .framer-15lute9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: 356px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-ff3uya-container, .framer-lEIuR .framer-2ojfd1-container { flex: 1 0 0px; height: 356px; position: relative; width: 1px; }\",\".framer-lEIuR .framer-16pk492, .framer-lEIuR .framer-1ysv7za, .framer-lEIuR .framer-1xjo7qc, .framer-lEIuR .framer-yoa0kl, .framer-lEIuR .framer-1mtg7qi, .framer-lEIuR .framer-ap9fww { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 199px; }\",\".framer-lEIuR .framer-1b4fd0o, .framer-lEIuR .framer-3dqoq9, .framer-lEIuR .framer-1vyj88y, .framer-lEIuR .framer-1qozy2u, .framer-lEIuR .framer-zb84e7, .framer-lEIuR .framer-1azqzni, .framer-lEIuR .framer-1mcjjhf, .framer-lEIuR .framer-40aoa3, .framer-lEIuR .framer-1edmbja, .framer-lEIuR .framer-li6j9d, .framer-lEIuR .framer-10e1gay, .framer-lEIuR .framer-1fnbkkr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-3nirb5 { flex: none; height: 36px; overflow: hidden; position: relative; width: 78px; }\",\".framer-lEIuR .framer-1tbux3u, .framer-lEIuR .framer-le599c, .framer-lEIuR .framer-za6hhj, .framer-lEIuR .framer-181siih, .framer-lEIuR .framer-v8n5pt, .framer-lEIuR .framer-1snublk, .framer-lEIuR .framer-mhfcy1, .framer-lEIuR .framer-1ujokzb, .framer-lEIuR .framer-ggdyxd, .framer-lEIuR .framer-9a2vo0, .framer-lEIuR .framer-ri80qm, .framer-lEIuR .framer-19st30n { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-4x6ovz, .framer-lEIuR .framer-h33bme, .framer-lEIuR .framer-1vtbcgx, .framer-lEIuR .framer-1lw5ib, .framer-lEIuR .framer-1op1p78, .framer-lEIuR .framer-ogivi2, .framer-lEIuR .framer-m75tzv, .framer-lEIuR .framer-1ibbmyh, .framer-lEIuR .framer-14d4qzg, .framer-lEIuR .framer-ewaft2, .framer-lEIuR .framer-7onwud, .framer-lEIuR .framer-1s6gdx7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1u9gu9o, .framer-lEIuR .framer-v5czc2, .framer-lEIuR .framer-1pj52mw, .framer-lEIuR .framer-3d81i2, .framer-lEIuR .framer-cyvjzr, .framer-lEIuR .framer-hfikle, .framer-lEIuR .framer-1cyqy7d, .framer-lEIuR .framer-1vog0ue, .framer-lEIuR .framer-1xgfhej, .framer-lEIuR .framer-6bvhhb, .framer-lEIuR .framer-ka4k50, .framer-lEIuR .framer-1y32fw6, .framer-lEIuR .framer-zeza9e, .framer-lEIuR .framer-3bq021, .framer-lEIuR .framer-192mkgi, .framer-lEIuR .framer-v22886, .framer-lEIuR .framer-114fu9e, .framer-lEIuR .framer-14n2m38, .framer-lEIuR .framer-zyhu97, .framer-lEIuR .framer-1vpovwd, .framer-lEIuR .framer-19quxce, .framer-lEIuR .framer-162mklo, .framer-lEIuR .framer-1djgxjz, .framer-lEIuR .framer-1rn673r { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-lEIuR .framer-1q8ve2y, .framer-lEIuR .framer-13ntcsv, .framer-lEIuR .framer-v5dj6x, .framer-lEIuR .framer-150sc50 { flex: none; height: 34px; overflow: hidden; position: relative; width: 100px; }\",\".framer-lEIuR .framer-mza3nd { flex: none; height: 42px; overflow: hidden; position: relative; width: 112px; }\",\".framer-lEIuR .framer-2i8j0b { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 691px; }\",\".framer-lEIuR .framer-c6z4ob { align-content: flex-start; align-items: flex-start; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-lEIuR .framer-abtmfy { 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: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-lEIuR .framer-1jc9nxz-container, .framer-lEIuR .framer-117gjxv-container { flex: none; height: 820px; position: relative; width: 376px; }\",\".framer-lEIuR .framer-tpolcb, .framer-lEIuR .framer-1nzorhj { align-content: center; align-items: center; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 341px; }\",\".framer-lEIuR .framer-1ps6snv, .framer-lEIuR .framer-iuuyxy, .framer-lEIuR .framer-jngzcp, .framer-lEIuR .framer-1ykhsqf, .framer-lEIuR .framer-1dlbvob, .framer-lEIuR .framer-g2k5v4 { flex: none; height: 77px; overflow: hidden; position: relative; width: 166px; }\",\".framer-lEIuR .framer-1ku1kxv, .framer-lEIuR .framer-ufbstj, .framer-lEIuR .framer-4x4dmn, .framer-lEIuR .framer-350b8c { align-content: center; align-items: center; border-bottom-left-radius: 1px; border-bottom-right-radius: 1px; border-top-left-radius: 1px; border-top-right-radius: 1px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 30px; position: relative; width: 340px; }\",\".framer-lEIuR .framer-1quqa3d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1yrakcp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 50px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1ucfv6e-container { flex: none; height: 412px; position: relative; width: 960px; }\",\".framer-lEIuR .framer-5r6h4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px 50px 0px 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-liogbb-container { flex: none; height: 466px; position: relative; width: 960px; }\",\".framer-lEIuR .framer-1ye4ycd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 384px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lEIuR .framer-zp6mbv { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-lEIuR .framer-1j3n0gg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 184px 0px 0px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lEIuR .framer-m93xo6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: sticky; top: 90px; width: 100%; z-index: 1; }\",\".framer-lEIuR .framer-1txg3h2 { --border-bottom-width: 0px; --border-color: rgba(255, 255, 255, 0.2); --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1vvqbpa-container { flex: none; height: 100vh; position: relative; width: 25%; z-index: 5; }\",\".framer-lEIuR .framer-zoe361-container { flex: none; height: 100vh; position: relative; width: 25%; z-index: 4; }\",\".framer-lEIuR .framer-19d1o1f-container { flex: none; height: 100vh; position: relative; width: 25%; z-index: 3; }\",\".framer-lEIuR .framer-xh129a-container { flex: none; height: 100vh; position: relative; width: 25%; z-index: 2; }\",\".framer-lEIuR .framer-1udnnrz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 200px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-lEIuR .framer-1ob5nhg { -webkit-user-select: none; align-content: center; align-items: center; background: linear-gradient(180deg, #000000 0%, rgb(51, 51, 51) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 300px 40px 120px 40px; position: relative; user-select: none; width: 100%; z-index: 2; }\",\".framer-lEIuR .framer-1g8dfww { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1684kv4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-klu0qt { align-content: center; align-items: center; background: linear-gradient(90deg, rgba(214, 214, 214, 0) 0%, rgba(214, 214, 214, 0.24) 37.38738738738739%, rgba(214, 214, 214, 0.6) 51.96896114864865%, rgba(178, 178, 178, 0.24) 66.27252252252251%, rgba(0, 0, 0, 0) 99.99999999999972%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 1px; justify-content: center; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-1hdnrzo { align-content: center; align-items: center; border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1100px; overflow: visible; padding: 40px; position: relative; width: 100%; z-index: 2; }\",\".framer-lEIuR .framer-1gjxe24 { -webkit-filter: contrast(0); aspect-ratio: 2.34375 / 1; filter: contrast(0); flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; text-decoration: none; width: 187px; }\",\".framer-lEIuR .framer-1q389cp { -webkit-filter: contrast(0); filter: contrast(0); flex: none; height: 76px; overflow: visible; position: relative; text-decoration: none; width: 191px; }\",\".framer-lEIuR .framer-1vxnfhm { -webkit-filter: contrast(0); aspect-ratio: 1.546875 / 1; filter: contrast(0); flex: none; height: var(--framer-aspect-ratio-supported, 96px); overflow: visible; position: relative; text-decoration: none; width: 148px; }\",\".framer-lEIuR .framer-1vf2a0l { -webkit-filter: contrast(0); filter: contrast(0); flex: none; height: 54px; overflow: visible; position: relative; text-decoration: none; width: 258px; }\",\".framer-lEIuR .framer-1ssmk18-container { flex: none; height: 100%; left: 0px; opacity: 0.6; position: absolute; top: 0px; width: 100%; z-index: -1; }\",\".framer-lEIuR .framer-bf93rx { align-content: center; align-items: center; background-color: #000000; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 80px; height: 1105px; justify-content: center; overflow: visible; padding: 0px 64px 0px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-lEIuR .framer-z2bgi2 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 0px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-lEIuR .framer-gsvgmv { flex: none; height: 164px; opacity: 0.2; position: relative; width: 153px; }\",\".framer-lEIuR .framer-1vcicz5 { -webkit-filter: blur(2px); filter: blur(2px); flex: none; height: 146px; opacity: 0.3; position: relative; width: 136px; }\",\".framer-lEIuR .framer-q8ipr3 { -webkit-filter: blur(7px); filter: blur(7px); flex: none; height: 81px; opacity: 0.4; position: relative; width: 74px; }\",\".framer-lEIuR .framer-134cupv { -webkit-filter: blur(7px); filter: blur(7px); flex: none; height: 64px; opacity: 0.4; position: relative; width: 59px; }\",\".framer-lEIuR .framer-z49sp0 { flex: none; height: 146px; opacity: 0.2; position: relative; width: 136px; }\",\".framer-lEIuR .framer-hireuq { -webkit-filter: blur(12px); filter: blur(12px); flex: none; height: 81px; position: relative; width: 74px; }\",\".framer-lEIuR .framer-o07wb3 { -webkit-filter: blur(7px); filter: blur(7px); flex: none; height: 76px; opacity: 0.4; position: relative; width: 70px; }\",\".framer-lEIuR .framer-1sb4pbz { flex: none; height: 232px; opacity: 0.4; position: relative; width: 213px; }\",\".framer-lEIuR .framer-pnlv6f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 1px; z-index: 1; }\",\".framer-lEIuR .framer-sek55p, .framer-lEIuR .framer-1iwmp5c { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 800px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-lEIuR .framer-vj00kx { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 96px; height: min-content; justify-content: center; overflow: visible; padding: 60px 64px 160px 64px; position: relative; width: 100%; z-index: 1; }\",\".framer-lEIuR .framer-q5ec6 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; max-width: 1840px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-lEIuR .framer-5pov5f { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: auto; justify-content: space-between; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-lEIuR .framer-1dwyupl { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 636px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-lEIuR .framer-1o0kr6a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 30px 20px 30px; position: relative; width: 1px; }\",\".framer-lEIuR .framer-1s2pglz, .framer-lEIuR .framer-heepfc, .framer-lEIuR .framer-5gz5j1, .framer-lEIuR .framer-1ydq22z { background-color: var(--token-38171501-2bf0-4f99-b958-479ba0c21223, #e1e7ea); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-lEIuR .framer-18whawe-container { flex: none; height: auto; position: relative; width: 100%; z-index: 10; }\",\".framer-lEIuR .framer-1ehzuq3-container { flex: none; height: auto; left: 50%; position: fixed; top: 40px; transform: translateX(-50%); width: 343px; z-index: 9; }\",\".framer-lEIuR .framer-1x1h68z-container { flex: none; height: auto; left: 50%; position: fixed; top: 44px; transform: translateX(-50%); width: 780px; z-index: 9; }\",'.framer-lEIuR[data-border=\"true\"]::after, .framer-lEIuR [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; }',\"@media (min-width: 1200px) and (max-width: 1599px) { .framer-lEIuR.framer-8vmq8p { width: 1200px; } .framer-lEIuR .framer-x2fcoq { height: 46px; } .framer-lEIuR .framer-123qxo9-container { width: 107px; } .framer-lEIuR .framer-2eato5 { left: -600px; right: -600px; } .framer-lEIuR .framer-kwbden { height: min-content; padding: 100px 60px 358px 60px; } .framer-lEIuR .framer-d6oh6f { gap: 33px; } .framer-lEIuR .framer-9auoph { width: min-content; } .framer-lEIuR .framer-1hdnrzo { padding: 20px 40px 20px 40px; } .framer-lEIuR .framer-1gjxe24 { height: var(--framer-aspect-ratio-supported, 63px); width: 147px; } .framer-lEIuR .framer-1q389cp { height: 60px; width: 150px; } .framer-lEIuR .framer-1vxnfhm { height: var(--framer-aspect-ratio-supported, 75px); width: 116px; } .framer-lEIuR .framer-1vf2a0l { height: 42px; width: 203px; } .framer-lEIuR .framer-hireuq { width: 175px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-lEIuR.framer-8vmq8p { width: 810px; } .framer-lEIuR .framer-vfqzb0, .framer-lEIuR .framer-117gjxv-container { order: 1; } .framer-lEIuR .framer-x2fcoq { height: 40px; } .framer-lEIuR .framer-123qxo9-container { width: 107px; } .framer-lEIuR .framer-2eato5 { order: 2; } .framer-lEIuR .framer-1egihiw { order: 3; padding: 84px 20px 20px 20px; } .framer-lEIuR .framer-10gew0o-container { height: auto; order: 4; } .framer-lEIuR .framer-5yn8pq { gap: 82px; height: 82.1382842509603vh; order: 6; padding: 35px 60px 70px 60px; } .framer-lEIuR .framer-kwbden { order: 7; padding: 120px 60px 358px 60px; } .framer-lEIuR .framer-12evnk3 { gap: 40px; } .framer-lEIuR .framer-d6oh6f { gap: 36px; order: 8; } .framer-lEIuR .framer-9auoph { width: min-content; } .framer-lEIuR .framer-1jc9nxz-container, .framer-lEIuR .framer-1x1h68z-container { order: 0; } .framer-lEIuR .framer-1ob5nhg { order: 9; } .framer-lEIuR .framer-1hdnrzo { gap: 49px; } .framer-lEIuR .framer-1gjxe24 { height: var(--framer-aspect-ratio-supported, 43px); width: 101px; } .framer-lEIuR .framer-1q389cp { height: 41px; width: 104px; } .framer-lEIuR .framer-1vxnfhm { height: var(--framer-aspect-ratio-supported, 52px); width: 80px; } .framer-lEIuR .framer-1vf2a0l { height: 29px; width: 140px; } .framer-lEIuR .framer-bf93rx { order: 10; } .framer-lEIuR .framer-z2bgi2 { bottom: -44px; left: 0px; right: 0px; transform: unset; width: unset; } .framer-lEIuR .framer-1vcicz5 { width: 172px; } .framer-lEIuR .framer-pnlv6f { gap: 45px; } .framer-lEIuR .framer-vj00kx { order: 11; padding: 60px 64px 81px 64px; } .framer-lEIuR .framer-q5ec6 { gap: 14px; } .framer-lEIuR .framer-18whawe-container { order: 14; }}\",\"@media (max-width: 809px) { .framer-lEIuR.framer-8vmq8p { width: 373px; } .framer-lEIuR .framer-vfqzb0, .framer-lEIuR .framer-1i5v6q7 { order: 0; } .framer-lEIuR .framer-x2fcoq { height: 34px; } .framer-lEIuR .framer-76swmn-container { width: 92px; } .framer-lEIuR .framer-123qxo9-container { width: 78px; } .framer-lEIuR .framer-2eato5 { order: 1; } .framer-lEIuR .framer-1egihiw { order: 2; padding: 68px 20px 0px 20px; } .framer-lEIuR .framer-10gew0o-container { height: 541px; order: 3; } .framer-lEIuR .framer-5yn8pq { gap: 47px; order: 5; padding: 84px 0px 84px 0px; } .framer-lEIuR .framer-vk1g5 { padding: 0px 20px 0px 20px; } .framer-lEIuR .framer-19w1d7h-container { height: 119px; order: 1; width: 333px; } .framer-lEIuR .framer-kwbden { gap: 47px; height: min-content; order: 6; padding: 100px 0px 84px 0px; } .framer-lEIuR .framer-12evnk3 { gap: 40px; order: 0; } .framer-lEIuR .framer-1n3sy3m { gap: 20px; } .framer-lEIuR .framer-5cs5a0-container { width: 88%; } .framer-lEIuR .framer-d6oh6f { gap: 36px; height: 891px; order: 7; padding: 50px 30px 120px 30px; } .framer-lEIuR .framer-9auoph { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 25px; width: min-content; } .framer-lEIuR .framer-1ob5nhg { gap: 33px; order: 12; padding: 73px 20px 120px 20px; } .framer-lEIuR .framer-1hdnrzo { gap: 10px; padding: 0px 40px 0px 40px; } .framer-lEIuR .framer-1gjxe24 { height: var(--framer-aspect-ratio-supported, 21px); width: 62px; } .framer-lEIuR .framer-1q389cp { height: 16px; width: 64px; } .framer-lEIuR .framer-1vxnfhm { height: var(--framer-aspect-ratio-supported, 25px); width: 50px; } .framer-lEIuR .framer-1vf2a0l { height: 16px; width: 90px; } .framer-lEIuR .framer-bf93rx { flex-direction: column; height: 511px; order: 8; padding: 0px 20px 0px 20px; } .framer-lEIuR .framer-z2bgi2 { bottom: -44px; gap: 0px; left: 0px; right: 0px; transform: unset; width: unset; } .framer-lEIuR .framer-1vcicz5 { height: 64px; width: 103px; } .framer-lEIuR .framer-q8ipr3, .framer-lEIuR .framer-hireuq { height: 36px; width: 44px; } .framer-lEIuR .framer-134cupv { height: 28px; width: 35px; } .framer-lEIuR .framer-z49sp0 { height: 64px; width: 82px; } .framer-lEIuR .framer-pnlv6f { flex: none; gap: 15px; padding: 40px 10px 0px 10px; width: 100%; } .framer-lEIuR .framer-vj00kx { order: 9; padding: 60px 30px 15px 30px; } .framer-lEIuR .framer-q5ec6 { flex-direction: column; gap: 14px; } .framer-lEIuR .framer-5pov5f { align-self: unset; flex: none; gap: 32px; height: min-content; justify-content: flex-start; width: 100%; } .framer-lEIuR .framer-1o0kr6a { flex: none; width: 100%; } .framer-lEIuR .framer-18whawe-container { order: 13; } .framer-lEIuR .framer-1ehzuq3-container { order: 14; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8673\n * @framerIntrinsicWidth 1600\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Rsz8YaeNc\":{\"layout\":[\"fixed\",\"auto\"]},\"ZmcccRBnS\":{\"layout\":[\"fixed\",\"auto\"]},\"brMK_4Z09\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"TNaMjDr46\":{\"pattern\":\":TNaMjDr46\",\"name\":\"function\"},\"a0yGKQ8rq\":{\"pattern\":\":a0yGKQ8rq\",\"name\":\"introduction\"},\"Ykea3EBIw\":{\"pattern\":\":Ykea3EBIw\",\"name\":\"intro\"},\"WoiGOGQHN\":{\"pattern\":\":WoiGOGQHN\",\"name\":\"introduction\"},\"TyVVpMQ7c\":{\"pattern\":\":TyVVpMQ7c\",\"name\":\"case-study\"},\"tsDpnCvOo\":{\"pattern\":\":tsDpnCvOo\",\"name\":\"scroll-section\"},\"GtETH4ciU\":{\"pattern\":\":GtETH4ciU\",\"name\":\"01\"},\"UCQdFsDpE\":{\"pattern\":\":UCQdFsDpE\",\"name\":\"02\"},\"FYioFlokb\":{\"pattern\":\":FYioFlokb\",\"name\":\"03\"},\"Nxgiq3IlS\":{\"pattern\":\":Nxgiq3IlS\",\"name\":\"04\"},\"VFV4ZWqZm\":{\"pattern\":\":VFV4ZWqZm\",\"name\":\"scroll-2\"},\"BBaM19GoY\":{\"pattern\":\":BBaM19GoY\",\"name\":\"work\"}}\n * @framerResponsiveScreen\n */const FramerEPw6ZR00a=withCSS(Component,css,\"framer-lEIuR\");export default FramerEPw6ZR00a;FramerEPw6ZR00a.displayName=\"Home 202412\";FramerEPw6ZR00a.defaultProps={height:8673,width:1600};addFonts(FramerEPw6ZR00a,[{explicitInter:true,fonts:[{family:\"Pretendard Thin\",source:\"custom\",url:\"https://framerusercontent.com/assets/3UMg8tMu0hDqDQXaDHkYB3lCI.woff\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VFMK2COV3DN37JR7JQ4CAOJPZ7KWKNY7/ODD5YJNDLHZZB2MIT3DPVH4EIHAMZ34D/BSY64LPTT3OPLVKAZKL3AHKRWZ3D74AC.woff2\",weight:\"400\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BFBSY7LX5W2U2EROCLVVTQP4VS7S4PC3/IIUX4FGTMD2LK2VWD3RVTAS4SSMUN7B5/53RZKGODFYDW3QHTIL7IPOWTBCSUEZK7.woff2\",weight:\"700\"},{family:\"Pretendard Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/xDyoC8MeZr1IcsrowiTgCB1zz8.woff\"},{family:\"Pretendard SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/wvRJwJ5kf80Td6Hea4cVvVRbw.woff\"},{family:\"Pretendard Light\",source:\"custom\",url:\"https://framerusercontent.com/assets/G3FL4LTaa96H8ca4MBoVwAQ4M.woff\"},{family:\"Clash Display\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2GQIT54GKQY3JRFTSHS4ARTRNRQISSAA/3CIP5EBHRRHE5FVQU3VFROPUERNDSTDF/JTSL5QESUXATU47LCPUNHZQBDDIWDOSW.woff2\",weight:\"500\"},{family:\"Pretendard Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/P2PJKk0r3P2rBRbT0fNX64L4.woff\"},{family:\"Pretendard Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/Vp2TEKcnQ97UeUF7QbTO9YlJo.woff\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v19/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Kodchasan\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/kodchasan/v19/1cXxaUPOAJv9sG4I-DJminuEicG01A.woff2\",weight:\"400\"},{family:\"Pretendard ExtraLight\",source:\"custom\",url:\"https://framerusercontent.com/assets/baaBWOxa6oInj8wMHvfPUXQ7WWQ.woff\"}]},...Link_buttonFonts,...NavigationFonts,...LandingPage1Fonts,...ElementLabelFonts,...ButtonsTextLinkFonts,...TickerFonts,...TabsUserFonts,...StackFonts,...GrainFonts,...AccordionsFAQFonts,...FooterFonts,...NavNavbarFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEPw6ZR00a\",\"slots\":[],\"annotations\":{\"framerResponsiveScreen\":\"\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"8673\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Rsz8YaeNc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZmcccRBnS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"brMK_4Z09\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1600\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"TNaMjDr46\\\":{\\\"pattern\\\":\\\":TNaMjDr46\\\",\\\"name\\\":\\\"function\\\"},\\\"a0yGKQ8rq\\\":{\\\"pattern\\\":\\\":a0yGKQ8rq\\\",\\\"name\\\":\\\"introduction\\\"},\\\"Ykea3EBIw\\\":{\\\"pattern\\\":\\\":Ykea3EBIw\\\",\\\"name\\\":\\\"intro\\\"},\\\"WoiGOGQHN\\\":{\\\"pattern\\\":\\\":WoiGOGQHN\\\",\\\"name\\\":\\\"introduction\\\"},\\\"TyVVpMQ7c\\\":{\\\"pattern\\\":\\\":TyVVpMQ7c\\\",\\\"name\\\":\\\"case-study\\\"},\\\"tsDpnCvOo\\\":{\\\"pattern\\\":\\\":tsDpnCvOo\\\",\\\"name\\\":\\\"scroll-section\\\"},\\\"GtETH4ciU\\\":{\\\"pattern\\\":\\\":GtETH4ciU\\\",\\\"name\\\":\\\"01\\\"},\\\"UCQdFsDpE\\\":{\\\"pattern\\\":\\\":UCQdFsDpE\\\",\\\"name\\\":\\\"02\\\"},\\\"FYioFlokb\\\":{\\\"pattern\\\":\\\":FYioFlokb\\\",\\\"name\\\":\\\"03\\\"},\\\"Nxgiq3IlS\\\":{\\\"pattern\\\":\\\":Nxgiq3IlS\\\",\\\"name\\\":\\\"04\\\"},\\\"VFV4ZWqZm\\\":{\\\"pattern\\\":\\\":VFV4ZWqZm\\\",\\\"name\\\":\\\"scroll-2\\\"},\\\"BBaM19GoY\\\":{\\\"pattern\\\":\\\":BBaM19GoY\\\",\\\"name\\\":\\\"work\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "RichTextWithFX", "withFX", "RichText", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "transition3", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "caption", "click", "description", "details1", "details2", "details3", "height", "id", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_humanReadableVariantMap_props_variant", "_ref6", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "FNZgohIiP", "IgVfH_hGE", "DoXvliMeN", "j2EDaaH5u", "LOYl6Xc1C", "jS9cPcgpU", "Nhxa_6KMd", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap3o08fa", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerctUoTtD9K", "withCSS", "ctUoTtD9K_default", "addPropertyControls", "ControlType", "addFonts", "TabUserItemFonts", "getFonts", "ctUoTtD9K_default", "MotionDivWithFX", "withFX", "motion", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "animation1", "transition4", "transition5", "transition6", "transition7", "transition8", "animation2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "j2EDaaH5u2fc3g1", "args", "j2EDaaH5umrd546", "j2EDaaH5u29i0r0", "j2EDaaH5u1f3zruq", "j2EDaaH5u18u9q4x", "j2EDaaH5uxvvrkq", "j2EDaaH5u1f0goqk", "j2EDaaH5uczm3rz", "j2EDaaH5ucv6vky", "j2EDaaH5upacqer", "j2EDaaH5ubheol7", "j2EDaaH5u1aen1jy", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "getLoadingLazyAtYPosition", "css", "FramerDHtNFmCEk", "withCSS", "DHtNFmCEk_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "RichTextWithFX", "withFX", "RichText", "FeatherControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "color", "description", "fontSize", "fontSize2", "height", "icon2", "id", "title", "width", "props", "_ref", "_humanReadableEnumMap_icon2", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "_ref6", "_ref7", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gIr0VvvDR", "QENiZ8anS", "I36D_5Y1i", "ZNdiKURdO", "z8uHQkOla", "MFVA7ij9u", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "ComponentViewportProvider", "css", "FramerFJBf46eAM", "withCSS", "FJBf46eAM_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "label", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "tWUpRXPNf", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "RichText", "css", "FramerRFV7Ii2Rz", "withCSS", "RFV7Ii2Rz_default", "addPropertyControls", "ControlType", "addFonts", "FeatherFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "buttonLabel", "height", "id", "link", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gCmmKaF_0", "c3NOAKqXS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText", "ComponentViewportProvider", "css", "FrameruUyy3gorq", "withCSS", "uUyy3gorq_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "transition5", "transition6", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "link", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "M25celVi6", "B1MSzyHv4", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1hinlnt", "args", "onAppeargvla1e", "onAppear1qg1oyi", "onAppear1v918jj", "onAppear1irj88j", "onMouseLeaveewtpfh", "useOnVariantChange", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "cx", "css", "FramerzO7Dvw_Jb", "withCSS", "zO7Dvw_Jb_default", "addPropertyControls", "ControlType", "addFonts", "ButtonGeneralFonts", "getFonts", "uUyy3gorq_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "Button2Fonts", "pz_WUkKtk_default", "ElementScrollArrowFonts", "zO7Dvw_Jb_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transition3", "animation1", "transition4", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "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", "onAppear1n56pq", "args", "onAppearpwwahr", "onAppear89a7tl", "onAppear1ipwj9b", "onAppear1pakryj", "onAppear1axelxh", "onAppear1fcgqf3", "onAppear152mmtr", "onAppear1k8jvxx", "onAppeargdcw7z", "onTap4qt49s", "onTapwelhuk", "onTap1eakkjm", "onTap1a34kqn", "onTap6x564o", "onTapwqgudo", "onTapuz8zpo", "onTap46tb2c", "onTapzrci30", "onTapwrx9d6", "onTap138jdf5", "onTapzjdrlp", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "isDisplayed8", "isDisplayed9", "isDisplayed10", "isDisplayed11", "isDisplayed12", "isDisplayed13", "isDisplayed14", "isDisplayed15", "isDisplayed16", "isDisplayed17", "router", "useRouter", "isDisplayed18", "isDisplayed19", "isDisplayed20", "isDisplayed21", "isDisplayed22", "LayoutGroup", "u", "SVG", "RichText", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "Image2", "getLoadingLazyAtYPosition", "css", "Framery9DKpcRhW", "withCSS", "y9DKpcRhW_default", "addPropertyControls", "ControlType", "addFonts", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "Link_buttonFonts", "getFonts", "eXOi9dQkj_default", "NavigationFonts", "OJ2msV7z2_default", "ImageWithFX", "withFX", "Image2", "LandingPage1Fonts", "y9DKpcRhW_default", "ElementLabelFonts", "RFV7Ii2Rz_default", "ContainerWithFX", "Container", "RichTextWithFX", "RichText", "ButtonsTextLinkFonts", "O3g819Nsz_default", "TickerFonts", "Ticker", "TabsUserFonts", "DHtNFmCEk_default", "StackFonts", "FJBf46eAM_default", "MotionDivWithFX", "motion", "GrainFonts", "Grain", "AccordionsFAQFonts", "AacjBtcuh_default", "FooterFonts", "LWd678i0k_default", "NavNavbarFonts", "bfNdmHPcs_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "textEffect", "animation2", "transition3", "animation3", "transition4", "animation4", "transition5", "getTextEffect", "ref", "transition6", "transition7", "textEffect1", "animation5", "transition8", "transition9", "animation6", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "metadata", "se", "useMetadata", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "usePreloadLocalizedValues", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "ref3", "elementId2", "elementId3", "ref4", "isDisplayed1", "isDisplayed2", "elementId4", "ref5", "elementId5", "ref6", "elementId6", "ref7", "elementId7", "ref8", "elementId8", "ref9", "elementId9", "ref10", "elementId10", "ref11", "elementId11", "ref12", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "ComponentViewportProvider", "resolvedLinks1", "resolvedLinks2", "getLoadingLazyAtYPosition", "getLocalizedValue", "x", "resolvedLinks3", "Link", "resolvedLinks4", "css", "FramerEPw6ZR00a", "withCSS", "EPw6ZR00a_default", "addFonts", "__FramerMetadata__"]
}
