{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js", "ssg:https://framerusercontent.com/modules/p4VsBD1vnLQVKMDoWVPP/Qir3IGUL7hmjNOHepAas/hQTAjsr0W.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2B50\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;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[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\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(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const isVisible=usePageVisibility();const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */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}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},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\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},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},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},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;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component 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:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0\u20141\u20142\u20143\u20144\u20145\u20140 */let isSelected=wrappedIndex===index;/* Go 0\u20145\u20144\u20143\u20142\u20141\u20140\u20145 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map", "// Generated by Framer (acd6bc0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/9rhBPUZttCbLCWqJEL42/YouTube.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/H7Hprjo8hFoL6HVuvde6/SlideShow.js\";import Navigation from\"#framer/local/canvasComponent/nBmFKsIm7/nBmFKsIm7.js\";import*as sharedStyle from\"#framer/local/css/sJ2QEITYH/sJ2QEITYH.js\";import metadataProvider from\"#framer/local/webPageMetadata/hQTAjsr0W/hQTAjsr0W.js\";const ImageWithOptimizedAppearEffect=withOptimizedAppearEffect(Image);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SlideshowFonts=getFonts(Slideshow);const YouTubeFonts=getFonts(YouTube);const MotionDivWithFX=withFX(motion.div);const NavigationFonts=getFonts(Navigation);const MaterialFonts=getFonts(Material);const breakpoints={dnFQOxw2M:\"(min-width: 810px) and (max-width: 1199px)\",MiZL6TVPN:\"(min-width: 1200px)\",XjnBlcXPa:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-B3qY6\";const variantClassNames={dnFQOxw2M:\"framer-v-1hk4qf2\",MiZL6TVPN:\"framer-v-ro665a\",XjnBlcXPa:\"framer-v-1gxbh9e\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:10};const transition1={damping:40,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation,tokenization:\"element\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const transformTemplate3=(_,t)=>`translateY(-50%) ${t}`;const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"MiZL6TVPN\",Phone:\"XjnBlcXPa\",Tablet:\"dnFQOxw2M\"};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:\"MiZL6TVPN\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-B3qY6`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-B3qY6`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"XjnBlcXPa\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"XjnBlcXPa\")return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"dnFQOxw2M\")return true;return false;};const elementId=useRouteElementId(\"tBWY_1WVx\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"QOFvK4BKT\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"Y4PMZepMq\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"vaBV9e2o3\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"EZRb_Vnt2\");const ref6=React.useRef(null);const elementId5=useRouteElementId(\"uQkHQm7Om\");const ref7=React.useRef(null);const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"dnFQOxw2M\")return false;return true;};const elementId6=useRouteElementId(\"hqlu0sQLb\");const ref8=React.useRef(null);const elementId7=useRouteElementId(\"vfK_v5DHx\");const ref9=React.useRef(null);const isDisplayed4=()=>{if(!isBrowser())return true;if([\"XjnBlcXPa\",\"dnFQOxw2M\"].includes(baseVariant))return false;return true;};const elementId8=useRouteElementId(\"PXmg7itYI\");const ref10=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"MiZL6TVPN\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-ro665a\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-2vgzdi\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-186o3th\",\"data-framer-name\":\"Target\",name:\"Target\",children:[isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i4u3gc hidden-ro665a hidden-1hk4qf2\",\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17vwpd6\",\"data-framer-name\":\"Group 81975160\",name:\"Group 81975160\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nnq4z0\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k7y4u\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-x5lykj\",\"data-framer-name\":\"Rectangle 156373\",name:\"Rectangle 156373\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lmo8ug\",\"data-framer-name\":\"Group 1174\",name:\"Group 1174\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(329),positionX:\"center\",positionY:\"center\",sizes:\"579.15px\",src:\"https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png\",srcSet:\"https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png 2320w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"579.15px\",src:\"https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png\",srcSet:\"https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png?scale-down-to=512 512w,https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/bxpp6dv2dR1hQb8FlSVLpuUda0c.png 2320w\"},className:\"framer-1050z3q\",\"data-framer-name\":\"background\",name:\"background\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(344.6829143471433),positionX:\"center\",positionY:\"center\",sizes:\"291px\",src:\"https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png\",srcSet:\"https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png 1166w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"291px\",src:\"https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png\",srcSet:\"https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png?scale-down-to=512 512w,https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/GII7kDfZoTZDBLGlPwCoyHwfdF8.png 1166w\"},className:\"framer-b5qa74\",\"data-framer-name\":\"iPhone 14 Pro - 6\",name:\"iPhone 14 Pro - 6\"})})]})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-34t684\",\"data-framer-name\":\"Rectangle 156395\",name:\"Rectangle 156395\"}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16xog0s\",\"data-framer-name\":\"Rectangle 156396\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:303,intrinsicWidth:416,name:\"Rectangle 156396\",svg:'<svg width=\"416\" height=\"303\" viewBox=\"0 0 416 303\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<rect width=\"416\" height=\"303\" transform=\"matrix(1 0 0 -1 0 303)\" fill=\"url(#paint0_linear_2625_102)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2625_102\" x1=\"208\" y1=\"122.588\" x2=\"208\" y2=\"13.8779\" gradientUnits=\"userSpaceOnUse\">\\n<stop/>\\n<stop offset=\"1\" stop-opacity=\"0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI makes you\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:'\"Better\"'})})]}),className:\"framer-1e6t1w9\",\"data-framer-name\":'AI makes you \"Better\"',fonts:[\"GF;Montserrat-500\"],name:'AI makes you \"Better\"',transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vfK_v5DHx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-v7fll7 framer-xezgvs\",\"data-framer-name\":\"Frame 1002\",name:\"Frame 1002\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-1c4qv7c\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-500\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vaBV9e2o3\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-8m52p0 framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1003\",name:\"Frame 1003\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn More\"})})}),className:\"framer-pf5n8o\",\"data-framer-name\":\"Learn More\",fonts:[\"GF;Montserrat-500\"],name:\"Learn More\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oo8r74\",\"data-framer-name\":\"Group 81975215\",name:\"Group 81975215\"}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-zqy0oi hidden-1gxbh9e\",\"data-framer-name\":\"search 2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,name:\"search 2\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4 5H21\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<path d=\"M4 12H21\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n<path d=\"M4 19H21\" stroke=\"white\" stroke-width=\"2\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-bp1n55 hidden-1gxbh9e\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16py8f hidden-1gxbh9e\",\"data-framer-name\":\"web\",name:\"web\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(0),positionX:\"center\",positionY:\"center\",sizes:\"1122.5px\",src:\"https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png\",srcSet:\"https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png 3240w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png\",srcSet:\"https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NzMevAy4F4SOsBqEZ7VHa5MiLA.png 3240w\"},className:\"framer-1c6gh61 hidden-ro665a\",\"data-framer-name\":\"background\",name:\"background\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(71.75000000000017),positionX:\"center\",positionY:\"center\",sizes:\"381.0267px\",src:\"https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png\",srcSet:\"https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png 2172w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"381.0267px\",src:\"https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png\",srcSet:\"https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/cIQi9UXFREgXSECdimp4tLkHnk.png 2172w\"},className:\"framer-1pxtr5b\",\"data-framer-name\":\"iPhone 14 Pro - 6\",name:\"iPhone 14 Pro - 6\",transformTemplate:transformTemplate2})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2o0etv\",\"data-framer-name\":\"Group 81975179\",name:\"Group 81975179\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1unxppl\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jsoml\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-6d79mm\",\"data-framer-name\":\"Group 1174\",name:\"Group 1174\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(0),positionX:\"center\",positionY:\"center\",sizes:\"729px\",src:\"https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png\",srcSet:\"https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png 3240w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(0),positionX:\"center\",positionY:\"center\",sizes:\"1080px\",src:\"https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png\",srcSet:\"https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png?scale-down-to=512 512w,https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/OId2SLDqwPX55V46GUwLyy9t8.png 3240w\"},className:\"framer-18zydbl\",\"data-framer-name\":\"background\",name:\"background\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(15.377056672760602),positionX:\"center\",positionY:\"center\",sizes:\"363px\",src:\"https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png\",srcSet:\"https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png 2172w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(22.754156769596364),positionX:\"center\",positionY:\"center\",sizes:\"535px\",src:\"https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png\",srcSet:\"https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png?scale-down-to=512 512w,https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/mIoxJTuUS7m8BMadHftUoQ5wBU.png 2172w\"},className:\"framer-14ndl9q\",\"data-framer-name\":\"iPhone 14 Pro - 6\",name:\"iPhone 14 Pro - 6\",transformTemplate:transformTemplate2})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xbpl7h\",\"data-framer-name\":\"Rectangle 156373\",name:\"Rectangle 156373\",style:{rotate:180}})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ts9riw\",\"data-framer-name\":\"Rectangle 156395\",name:\"Rectangle 156395\"})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI makes \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:'you \"Better\"'})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI makes \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"56px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:'you \"Better\"'})})]}),className:\"framer-1thx3dt\",\"data-framer-name\":'AI makes you \"Better\"',fonts:[\"GF;Montserrat-500\"],name:'AI makes you \"Better\"',verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vfK_v5DHx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-twth2h framer-xezgvs\",\"data-framer-name\":\"Frame 1002\",name:\"Frame 1002\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-1fm9bdf\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-500\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vaBV9e2o3\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1ssgtvq framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1003\",name:\"Frame 1003\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn More\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn More\"})})}),className:\"framer-urfyhy\",\"data-framer-name\":\"Learn More\",fonts:[\"GF;Montserrat-500\"],name:\"Learn More\",verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8rtyhk\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wkzxqn\",\"data-framer-name\":\"Group 2277\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:30,name:\"Group 2277\",svg:'<svg width=\"30\" height=\"24\" viewBox=\"0 0 30 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_2590_1102)\">\\n<rect y=\"1\" width=\"30\" height=\"23\" rx=\"6.804\" fill=\"url(#paint0_linear_2590_1102)\"/>\\n</g>\\n<g filter=\"url(#filter1_f_2590_1102)\">\\n<path d=\"M8 0L8 4\" stroke=\"white\" stroke-width=\"1.90512\" stroke-linecap=\"round\"/>\\n<path d=\"M21 0L21 4\" stroke=\"white\" stroke-width=\"1.90512\" stroke-linecap=\"round\"/>\\n</g>\\n<g opacity=\"0.3\" filter=\"url(#filter2_f_2590_1102)\">\\n<mask id=\"mask0_2590_1102\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"1\" width=\"30\" height=\"23\">\\n<rect y=\"1\" width=\"30\" height=\"23\" rx=\"5.71536\" fill=\"url(#paint1_linear_2590_1102)\"/>\\n</mask>\\n<g mask=\"url(#mask0_2590_1102)\">\\n<path d=\"M-2 15.3728C0.397636 13.0474 8.73245 8.09014 20.2097 13.2922C27.5249 16.6078 30.6463 17.0735 31.63 16.7842V15.9542C32.0609 16.2218 32.182 16.6219 31.63 16.7842V22.9611L27.7812 26.2657L3.30004 27L-0.359512 21.2476L-2 15.3728Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter3_f_2590_1102)\">\\n<path d=\"M17.2421 6.5C18.213 6.5 19.031 7.31103 18.6955 8.22208C18.4945 8.76804 18.1999 9.26412 17.8284 9.68198C17.457 10.0998 17.016 10.4313 16.5307 10.6575C16.0454 10.8836 15.5253 11 15 11C14.4747 11 13.9546 10.8836 13.4693 10.6575C12.984 10.4313 12.543 10.0998 12.1716 9.68198C11.8001 9.26412 11.5055 8.76804 11.3045 8.22207C10.969 7.31103 11.787 6.5 12.7579 6.5H15H17.2421Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter4_f_2590_1102)\">\\n<circle cx=\"6\" cy=\"17\" r=\"1\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter5_f_2590_1102)\">\\n<circle cx=\"11\" cy=\"17\" r=\"1\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter6_f_2590_1102)\">\\n<circle cx=\"17\" cy=\"17\" r=\"1\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_2590_1102\" x=\"-1.3608\" y=\"-0.3608\" width=\"32.7216\" height=\"25.7216\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.6804\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<filter id=\"filter1_f_2590_1102\" x=\"6.85685\" y=\"-1.14315\" width=\"15.2863\" height=\"6.2863\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.095256\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<filter id=\"filter2_f_2590_1102\" x=\"-0.95256\" y=\"10.0474\" width=\"31.9051\" height=\"14.9051\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.47628\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<filter id=\"filter3_f_2590_1102\" x=\"10.847\" y=\"6.11898\" width=\"8.30599\" height=\"5.26205\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.190512\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<filter id=\"filter4_f_2590_1102\" x=\"4.61898\" y=\"15.619\" width=\"2.76205\" height=\"2.76205\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.190512\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<filter id=\"filter5_f_2590_1102\" x=\"9.61898\" y=\"15.619\" width=\"2.76205\" height=\"2.76205\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.190512\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<filter id=\"filter6_f_2590_1102\" x=\"15.619\" y=\"15.619\" width=\"2.76205\" height=\"2.76205\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.190512\" result=\"effect1_foregroundBlur_2590_1102\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_2590_1102\" x1=\"1.38462\" y1=\"2.29699\" x2=\"33.8563\" y2=\"22.0932\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#D3FF52\"/>\\n<stop offset=\"0.473419\" stop-color=\"#68C2FF\"/>\\n<stop offset=\"1\" stop-color=\"#D3FF52\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2590_1102\" x1=\"1.38462\" y1=\"2.29699\" x2=\"33.8563\" y2=\"22.0932\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#5953B3\"/>\\n<stop offset=\"0.473419\" stop-color=\"#5499C8\"/>\\n<stop offset=\"1\" stop-color=\"#5953B3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ncfzrw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":tBWY_1WVx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"About\"})})})}),className:\"framer-nfglnf\",\"data-framer-name\":\"about\",fonts:[\"GF;Montserrat-regular\"],name:\"about\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Y4PMZepMq\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"How It Works\"})})})}),className:\"framer-1rxhpzp\",\"data-framer-name\":\"how it works\",fonts:[\"GF;Montserrat-regular\"],name:\"how it works\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":vaBV9e2o3\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Demo\"})})})}),className:\"framer-1omcn4h\",\"data-framer-name\":\"demo\",fonts:[\"GF;Montserrat-regular\"],name:\"demo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":uQkHQm7Om\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Features\"})})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":hqlu0sQLb\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Features\"})})})}),className:\"framer-1cjc7u2\",\"data-framer-name\":\"features\",fonts:[\"GF;Montserrat-regular\"],name:\"features\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":PXmg7itYI\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"About Us\"})})})}),className:\"framer-1pguix\",\"data-framer-name\":\"aboutus\",fonts:[\"GF;Montserrat-regular\"],name:\"aboutus\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"21.875px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"21.88px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-1vks44b\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hak7mu\",\"data-framer-name\":\"web\",id:elementId,name:\"web\",ref:ref2,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-mojvwa\",\"data-framer-name\":\"Group 81975159\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:100,intrinsicWidth:127,name:\"Group 81975159\",svg:'<svg width=\"127\" height=\"100\" viewBox=\"0 0 127 100\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_2675_1245)\">\\n<rect y=\"3\" width=\"127\" height=\"97\" rx=\"28.3312\" fill=\"url(#paint0_linear_2675_1245)\"/>\\n</g>\\n<g filter=\"url(#filter1_f_2675_1245)\">\\n<path d=\"M36 0L36 15\" stroke=\"white\" stroke-width=\"7.93274\" stroke-linecap=\"round\"/>\\n<path d=\"M92 0L92 15\" stroke=\"white\" stroke-width=\"7.93274\" stroke-linecap=\"round\"/>\\n</g>\\n<g opacity=\"0.3\" filter=\"url(#filter2_f_2675_1245)\">\\n<mask id=\"mask0_2675_1245\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"3\" width=\"127\" height=\"97\">\\n<rect y=\"3\" width=\"127\" height=\"97\" rx=\"23.7982\" fill=\"url(#paint1_linear_2675_1245)\"/>\\n</mask>\\n<g mask=\"url(#mask0_2675_1245)\">\\n<path d=\"M-7 64.1311C3.08417 53.9573 38.1394 32.2694 86.4113 55.0282C117.178 69.534 130.306 71.5715 134.444 70.306V66.6745C136.256 67.8454 136.766 69.5958 134.444 70.306V97.3297L118.256 111.787L15.2913 115L-0.100302 89.8332L-7 64.1311Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter3_f_2675_1245)\">\\n<path d=\"M73.9315 26C77.8353 26 81.1238 29.2816 79.6298 32.8883C78.7252 35.0722 77.3994 37.0565 75.7279 38.7279C74.0565 40.3994 72.0722 41.7252 69.8883 42.6298C67.7044 43.5344 65.3638 44 63 44C60.6362 44 58.2956 43.5344 56.1117 42.6298C53.9278 41.7252 51.9435 40.3994 50.2721 38.7279C48.6006 37.0565 47.2748 35.0722 46.3702 32.8883C44.8762 29.2816 48.1647 26 52.0685 26L63 26H73.9315Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter4_f_2675_1245)\">\\n<ellipse cx=\"28\" cy=\"72.5\" rx=\"5\" ry=\"4.5\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter5_f_2675_1245)\">\\n<ellipse cx=\"52\" cy=\"72.5\" rx=\"5\" ry=\"4.5\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter6_f_2675_1245)\">\\n<ellipse cx=\"76\" cy=\"72.5\" rx=\"5\" ry=\"4.5\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_2675_1245\" x=\"-5.66624\" y=\"-2.66624\" width=\"138.332\" height=\"108.332\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"2.83312\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<filter id=\"filter1_f_2675_1245\" x=\"31.2404\" y=\"-4.75958\" width=\"65.5193\" height=\"24.5192\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.396637\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<filter id=\"filter2_f_2675_1245\" x=\"-3.96637\" y=\"41.0336\" width=\"134.933\" height=\"62.9327\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"1.98318\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<filter id=\"filter3_f_2675_1245\" x=\"44.4159\" y=\"24.4135\" width=\"37.1683\" height=\"21.1731\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.793274\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<filter id=\"filter4_f_2675_1245\" x=\"21.4135\" y=\"66.4135\" width=\"13.1731\" height=\"12.1731\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.793274\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<filter id=\"filter5_f_2675_1245\" x=\"45.4135\" y=\"66.4135\" width=\"13.1731\" height=\"12.1731\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.793274\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<filter id=\"filter6_f_2675_1245\" x=\"69.4135\" y=\"66.4135\" width=\"13.1731\" height=\"12.1731\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.793274\" result=\"effect1_foregroundBlur_2675_1245\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_2675_1245\" x1=\"5.86154\" y1=\"8.46992\" x2=\"143.044\" y2=\"92.4186\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#D3FF52\"/>\\n<stop offset=\"0.473419\" stop-color=\"#68C2FF\"/>\\n<stop offset=\"1\" stop-color=\"#D3FF52\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2675_1245\" x1=\"5.86154\" y1=\"8.46992\" x2=\"143.044\" y2=\"92.4186\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#5953B3\"/>\\n<stop offset=\"0.473419\" stop-color=\"#5499C8\"/>\\n<stop offset=\"1\" stop-color=\"#5953B3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"Dream \"}),\"Manager \"]})}),transformTemplate:undefined},XjnBlcXPa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"Dream\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Manager \"})]}),transformTemplate:transformTemplate3}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"62px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Your \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Dream \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"62px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Manager \"})]})}),className:\"framer-1h8drr7\",\"data-framer-name\":\"Your Dream Manager\",effect:textEffect,fonts:[\"GF;Montserrat-600\"],name:\"Your Dream Manager\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-sf6jw5\",\"data-framer-name\":\"Frame 1479\",name:\"Frame 1479\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})},XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"25px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-13w07ci\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-500\"],name:\"DAMI\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15we92s hidden-ro665a hidden-1hk4qf2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yzdab\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1505),positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png\",srcSet:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png 980w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png\",srcSet:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png 980w\"},className:\"framer-1g2cmys\",\"data-framer-appear-id\":\"1g2cmys\",\"data-framer-name\":\"iphone-12-pro--silver\",initial:animation2,name:\"iphone-12-pro--silver\",optimized:true,transformTemplate:transformTemplate1})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1780),positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png\",srcSet:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png 980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png\",srcSet:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png 980w\"},className:\"framer-khg0yq\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1910.1020408163265),positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png\",srcSet:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png 980w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png\",srcSet:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png 980w\"},className:\"framer-1nww96c\",\"data-framer-appear-id\":\"1nww96c\",\"data-framer-name\":\"iphone-12-pro--silver\",initial:animation2,name:\"iphone-12-pro--silver\",optimized:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xlxunf\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1xm0khn\",\"data-framer-appear-id\":\"1xm0khn\",\"data-framer-name\":\"web\",id:elementId1,initial:animation2,name:\"web\",optimized:true,ref:ref3,children:[isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eeagmx hidden-1gxbh9e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1222q9h\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1458),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png\",srcSet:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png 980w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1719),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png\",srcSet:\"https://framerusercontent.com/images/BcqWRDJX3KduJpm2FKvTASyLSE.png 980w\"},className:\"framer-lmtr1t\",\"data-framer-appear-id\":\"lmtr1t\",\"data-framer-name\":\"iphone-12-pro--silver\",initial:animation2,name:\"iphone-12-pro--silver\",optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1623),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png\",srcSet:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png 980w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1888),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png\",srcSet:\"https://framerusercontent.com/images/W4bReuxnjWXUcv2Cxp2YMIyB20o.png 980w\"},className:\"framer-724z9\",\"data-framer-appear-id\":\"724z9\",\"data-framer-name\":\"iphone-12-pro--silver\",initial:animation2,name:\"iphone-12-pro--silver\",optimized:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(1767),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png\",srcSet:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png 980w\"}}},children:/*#__PURE__*/_jsx(ImageWithOptimizedAppearEffect,{animate:animation1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(2028),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png\",srcSet:\"https://framerusercontent.com/images/RFMTDqmjey8gUGPRVP4apsPGeA.png 980w\"},className:\"framer-1l8fkyh\",\"data-framer-appear-id\":\"1l8fkyh\",\"data-framer-name\":\"iphone-12-pro--silver\",initial:animation2,name:\"iphone-12-pro--silver\",optimized:true})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"43px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"If you are\u2026\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsxs(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"43px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Lazy, but have a dream\",/*#__PURE__*/_jsx(\"br\",{}),\"Not good planner\",/*#__PURE__*/_jsx(\"br\",{}),\"Passive\"]})})]}),className:\"framer-1tubdcv hidden-1gxbh9e\",\"data-framer-name\":\"If you are\u2026 Lazy, but have a dream\\u2028Not good planner\\u2028Passive\",fonts:[\"GF;Montserrat-300\"],name:\"If you are\u2026 Lazy, but have a dream\\u2028Not good planner\\u2028Passive\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p2pwus\",\"data-framer-name\":\"Group 81975178\",name:\"Group 81975178\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":vfK_v5DHx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-7pmbda framer-xezgvs\",\"data-framer-name\":\"Frame 1480\",name:\"Frame 1480\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16.25px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16.25px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-1e0ze6l\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-500\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vaBV9e2o3\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1uht0qa framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1481\",name:\"Frame 1481\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16.25px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16.25px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Learn More\"})})}),className:\"framer-7svtdo\",\"data-framer-name\":\"Learn More\",fonts:[\"GF;Montserrat-500\"],name:\"Learn More\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Achieve Your Goals with\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"AI-Powered\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-weight\":\"300\"},children:\" \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"ADHD Support\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Achieve Your Goals with\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--framer-font-size\":\"43px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"43px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI-Powered\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\" A\"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DHD Support\"})]})]}),className:\"framer-1n0807h\",\"data-framer-name\":\"Achieve Your Goals with AI-Powered ADHD Support\",fonts:[\"GF;Montserrat-300\",\"GF;Montserrat-700\"],name:\"Achieve Your Goals with AI-Powered ADHD Support\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cws1gz\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-1579jos\",\"data-framer-appear-id\":\"1579jos\",\"data-framer-name\":\"web\",id:elementId2,initial:animation2,name:\"web\",optimized:true,ref:ref4,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-187oewz-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{gap:0}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:2,overflow:true},gap:10,height:\"100%\",id:\"gYqLJaZgt\",intervalControl:1.5,itemAmount:1,layoutId:\"gYqLJaZgt\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ju5u3q\",\"data-framer-name\":\"Frame 1498\",name:\"Frame 1498\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/Ehdnw544DW3wi3Gf9LWoMOpnE.png\",srcSet:\"https://framerusercontent.com/images/Ehdnw544DW3wi3Gf9LWoMOpnE.png?scale-down-to=512 512w,https://framerusercontent.com/images/Ehdnw544DW3wi3Gf9LWoMOpnE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Ehdnw544DW3wi3Gf9LWoMOpnE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Ehdnw544DW3wi3Gf9LWoMOpnE.png 3164w\"},className:\"framer-14a3o90\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-upqvbf\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})}),className:\"framer-otxfl1\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10.51px\",\"--framer-line-height\":\"148%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"Balance\"}),\" aspects of your life\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10.51px\",\"--framer-line-height\":\"148%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Embrace new challenges \"})]}),className:\"framer-b5ewhp\",\"data-framer-name\":\"\uC138\uC0C1\uC5D0 \uD558\uB098\uBFD0\uC778 \uB2F9\uC2E0\uB9CC\uC744 \uC704\uD55C \uACC4\uD68D\uC744 \uC9DC\uB4DC\uB9B4\uAC8C\uC694 \uAC1D\uAD00\uC2DD\uC774\uB77C \uBD80\uB2F4\uC5C6\uC5B4\uC694\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"\uC138\uC0C1\uC5D0 \uD558\uB098\uBFD0\uC778 \uB2F9\uC2E0\uB9CC\uC744 \uC704\uD55C \uACC4\uD68D\uC744 \uC9DC\uB4DC\uB9B4\uAC8C\uC694 \uAC1D\uAD00\uC2DD\uC774\uB77C \uBD80\uB2F4\uC5C6\uC5B4\uC694\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/e2vcSeS9gBoSZUBGGwoWDNlDpZw.png\",srcSet:\"https://framerusercontent.com/images/e2vcSeS9gBoSZUBGGwoWDNlDpZw.png 512w\"},className:\"framer-178jmj4\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jfqkn\",\"data-framer-name\":\"Group 81975064\",name:\"Group 81975064\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gwqnwh\",\"data-framer-name\":\"Ellipse 1336\",name:\"Ellipse 1336\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i7tsti\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6d5w7h\",\"data-framer-name\":\"Ellipse 1337\",name:\"Ellipse 1337\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"111px\",src:\"https://framerusercontent.com/images/zTzmQIbhYw0QsmPXtDXN8choQ.png\",srcSet:\"https://framerusercontent.com/images/zTzmQIbhYw0QsmPXtDXN8choQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/zTzmQIbhYw0QsmPXtDXN8choQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zTzmQIbhYw0QsmPXtDXN8choQ.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zTzmQIbhYw0QsmPXtDXN8choQ.png 3020w\"},className:\"framer-70nn6c\",\"data-framer-name\":\"image 51\",name:\"image 51\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-14ueb64\",\"data-framer-name\":\"Ellipse 1337\",name:\"Ellipse 1337\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-lrxlxa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Body\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"13.21px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Wellness\"})]}),className:\"framer-hsms10\",\"data-framer-name\":\"Alex\",fonts:[\"GF;Montserrat-600\"],name:\"Alex\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-muoroc\",\"data-framer-name\":\"Group 81975067\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Group 81975067\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_2693_1683)\">\\n<circle cx=\"8\" cy=\"8\" r=\"8\" fill=\"#D3FF52\"/>\\n</g>\\n<path d=\"M4 7.42857L6.73913 10L11 6\" stroke=\"#111111\" stroke-width=\"0.82586\"/>\\n<defs>\\n<filter id=\"filter0_d_2693_1683\" x=\"-5.50574\" y=\"-3.30344\" width=\"27.0115\" height=\"27.0115\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.20229\"/>\\n<feGaussianBlur stdDeviation=\"2.75287\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.265918 0 0 0 0 0.259404 0 0 0 0 0.259404 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2693_1683\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2693_1683\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jwt8i4\",\"data-framer-name\":\"Group 81975217\",name:\"Group 81975217\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-5qpk63\",\"data-framer-name\":\"Group 81975062\",name:\"Group 81975062\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oo6h9j\",\"data-framer-name\":\"Ellipse 1336\",name:\"Ellipse 1336\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6qfif6\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19cp3q6\",\"data-framer-name\":\"Ellipse 1337\",name:\"Ellipse 1337\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"102px\",src:\"https://framerusercontent.com/images/PF2S8GmOM0YSjgJdn7FRAbsXLg.png\",srcSet:\"https://framerusercontent.com/images/PF2S8GmOM0YSjgJdn7FRAbsXLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/PF2S8GmOM0YSjgJdn7FRAbsXLg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PF2S8GmOM0YSjgJdn7FRAbsXLg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/PF2S8GmOM0YSjgJdn7FRAbsXLg.png 2940w\"},className:\"framer-4cf2qx\",\"data-framer-name\":\"image 2848\",name:\"image 2848\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-i4ik2a\",\"data-framer-name\":\"Ellipse 1337\",name:\"Ellipse 1337\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})})}),className:\"framer-120n5yd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14.01px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"ESG\"})}),className:\"framer-tw3oj3\",\"data-framer-name\":\"Alex\",fonts:[\"GF;Montserrat-600\"],name:\"Alex\",verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-9m9o9e\",\"data-framer-name\":\"Group 81975067\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:16,intrinsicWidth:16,name:\"Group 81975067\",svg:'<svg width=\"16\" height=\"16\" viewBox=\"0 0 16 16\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_d_2693_1694)\">\\n<circle cx=\"8\" cy=\"8\" r=\"8\" fill=\"#D3FF52\"/>\\n</g>\\n<path d=\"M4 7.42857L6.73913 10L11 6\" stroke=\"#111111\" stroke-width=\"0.778589\"/>\\n<defs>\\n<filter id=\"filter0_d_2693_1694\" x=\"-5.19059\" y=\"-3.11436\" width=\"26.3812\" height=\"26.3812\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feColorMatrix in=\"SourceAlpha\" type=\"matrix\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/>\\n<feOffset dy=\"2.07624\"/>\\n<feGaussianBlur stdDeviation=\"2.5953\"/>\\n<feComposite in2=\"hardAlpha\" operator=\"out\"/>\\n<feColorMatrix type=\"matrix\" values=\"0 0 0 0 0.265918 0 0 0 0 0.259404 0 0 0 0 0.259404 0 0 0 0.25 0\"/>\\n<feBlend mode=\"normal\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_2693_1694\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"effect1_dropShadow_2693_1694\" result=\"shape\"/>\\n</filter>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r08spe\",\"data-framer-name\":\"how it works_02\",name:\"how it works_02\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-1j4kzfz\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/YGxyDeCAwfh0aRhBN5ZgwQtodo.png\",srcSet:\"https://framerusercontent.com/images/YGxyDeCAwfh0aRhBN5ZgwQtodo.png 512w\"},className:\"framer-112j0j6\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-1g20cx4\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Ready to \"}),\"input your dream goal\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"?\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"It's okay if it's vague!\"})]}),className:\"framer-1ywjw0s\",\"data-framer-name\":\"Ready to input your dream goal? It's okay if it's vague!\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Ready to input your dream goal? It's okay if it's vague!\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"149px\",src:\"https://framerusercontent.com/images/LfUiKcW4VSUBQgDy4Xj9RXsHklA.png\",srcSet:\"https://framerusercontent.com/images/LfUiKcW4VSUBQgDy4Xj9RXsHklA.png?scale-down-to=512 512w,https://framerusercontent.com/images/LfUiKcW4VSUBQgDy4Xj9RXsHklA.png 596w\"},className:\"framer-v98o4v\",\"data-border\":true,\"data-framer-name\":\"\u1100\u1169\u11AF \u110B\u1175\u11B8\u1105\u1167\u11A8\u110C\u116E\u11BC \u110C\u1175\u11AF\u1106\u116E\u11AB\u110C\u1175 1\",name:\"\u1100\u1169\u11AF \u110B\u1175\u11B8\u1105\u1167\u11A8\u110C\u116E\u11BC \u110C\u1175\u11AF\u1106\u116E\u11AB\u110C\u1175 1\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mxn11z\",\"data-framer-name\":\"Frame 1536\",name:\"Frame 1536\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgQm9sZA==\",\"--framer-font-family\":'\"NanumSquareRoundOTF Bold\", \"NanumSquareRoundOTF Bold Placeholder\", sans-serif',\"--framer-font-size\":\"9.11px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\",\"--framer-text-transform\":\"capitalize\"},children:\"Enter your Goal\"})}),className:\"framer-sdhz1e\",\"data-framer-name\":\"Enter your Goal\",fonts:[\"CUSTOM;NanumSquareRoundOTF Bold\"],name:\"Enter your Goal\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-j91mn8\",\"data-framer-name\":\"how it works_03\",name:\"how it works_03\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-1abpype\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xmxu7a\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-11v8xfw\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Just choose your answer, We'll craft a \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"unique plan \"}),\"just for you.\"]})}),className:\"framer-yucoyw\",\"data-framer-name\":\"Just choose your answer, We'll craft a unique plan just for you.\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Just choose your answer, We'll craft a unique plan just for you.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/ArpJc03eLc9EBYQvRwl44KwoPuM.png\",srcSet:\"https://framerusercontent.com/images/ArpJc03eLc9EBYQvRwl44KwoPuM.png 512w\"},className:\"framer-18gnq8d\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"166px\",src:\"https://framerusercontent.com/images/pTdQPpa8V3OWaAg9oRTzvYeEs.png\",srcSet:\"https://framerusercontent.com/images/pTdQPpa8V3OWaAg9oRTzvYeEs.png?scale-down-to=512 512w,https://framerusercontent.com/images/pTdQPpa8V3OWaAg9oRTzvYeEs.png 664w\"},className:\"framer-4rmegr\",\"data-border\":true,\"data-framer-name\":\"\u1100\u1169\u11AF \u110B\u1175\u11B8\u1105\u1167\u11A8\u110C\u116E\u11BC \u110C\u1175\u11AF\u1106\u116E\u11AB\u110C\u1175 3\",name:\"\u1100\u1169\u11AF \u110B\u1175\u11B8\u1105\u1167\u11A8\u110C\u116E\u11BC \u110C\u1175\u11AF\u1106\u116E\u11AB\u110C\u1175 3\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p4a9m\",\"data-framer-name\":\"how it works_04\",name:\"how it works_04\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-1ylyom9\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1eyjmu1\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-16dtb9a\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"S.M.A.R.T\"}),\" plans boost achievement!\"]})}),className:\"framer-htimhn\",\"data-framer-name\":\"S.M.A.R.T plans boost achievement!\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"S.M.A.R.T plans boost achievement!\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/qVi6bbIV03ahG67O00mPUQrwJDQ.png\",srcSet:\"https://framerusercontent.com/images/qVi6bbIV03ahG67O00mPUQrwJDQ.png 512w\"},className:\"framer-1p78xsw\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/aP8Mfddjq9WAQisaevGcjMpeiHw.png\",srcSet:\"https://framerusercontent.com/images/aP8Mfddjq9WAQisaevGcjMpeiHw.png 616w\"},className:\"framer-wwkt1d\",\"data-border\":true,\"data-framer-name\":\"\u1100\u1169\u11AF \u110B\u1175\u11B8\u1105\u1167\u11A8\u110C\u116E\u11BC \u110C\u1175\u11AF\u1106\u116E\u11AB\u110C\u1175 3\",name:\"\u1100\u1169\u11AF \u110B\u1175\u11B8\u1105\u1167\u11A8\u110C\u116E\u11BC \u110C\u1175\u11AF\u1106\u116E\u11AB\u110C\u1175 3\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11vs8ha\",\"data-framer-name\":\"how it works_05\",name:\"how it works_05\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"416px\",src:\"https://framerusercontent.com/images/nktbdnjiUtyRucxmS7qrxPEmo.png\",srcSet:\"https://framerusercontent.com/images/nktbdnjiUtyRucxmS7qrxPEmo.png?scale-down-to=512 512w,https://framerusercontent.com/images/nktbdnjiUtyRucxmS7qrxPEmo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nktbdnjiUtyRucxmS7qrxPEmo.png 1664w\"},className:\"framer-1w63fco\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-f26uz4\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v43y0q\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-u8t49l\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Visualize your goal\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" with \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"a one-of-a-kind memento!\"})]}),className:\"framer-17k667i\",\"data-framer-name\":\"Visualize your goal with a one-of-a-kind memento!\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Visualize your goal with a one-of-a-kind memento!\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/qa08c4WfNRwxNu9gK4aX1fnEARs.png\",srcSet:\"https://framerusercontent.com/images/qa08c4WfNRwxNu9gK4aX1fnEARs.png 512w\"},className:\"framer-1qcu5a1\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/6mP9j6VGZQBHe8NJ1DTpFOTFm5o.png\"},className:\"framer-14gd9lh\",\"data-border\":true,\"data-framer-name\":\"Group 11 75\",name:\"Group 11 75\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/a5VTVsLmlpRXX4K70VVucCdk.png\"},className:\"framer-qyhb91\",\"data-border\":true,\"data-framer-name\":\"Group 11 76\",name:\"Group 11 76\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vzj5z8\",\"data-framer-name\":\"how it works_07\",name:\"how it works_07\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-45dy1j\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ggkpej\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-cebmie\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Discover your \"}),\"goal's unique traits\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Preview your\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\" upcoming schedule \"}),\"effortlessly\"]})]}),className:\"framer-10xgz0t\",\"data-framer-name\":\"Discover your goal's unique traits Preview your upcoming schedule effortlessly\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Discover your goal's unique traits Preview your upcoming schedule effortlessly\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/Mxt6XhONBi3lBgRvvyX1SXZOGI.png\",srcSet:\"https://framerusercontent.com/images/Mxt6XhONBi3lBgRvvyX1SXZOGI.png 512w\"},className:\"framer-1vlx5l2\",\"data-framer-name\":\"iphone-12-pro--silver_milestone\",name:\"iphone-12-pro--silver_milestone\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"144px\",src:\"https://framerusercontent.com/images/E3NT2SAWNvxMOhXNrdrU53njnQ.png\",srcSet:\"https://framerusercontent.com/images/E3NT2SAWNvxMOhXNrdrU53njnQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/E3NT2SAWNvxMOhXNrdrU53njnQ.png 576w\"},className:\"framer-1pwb3m1\",\"data-border\":true,\"data-framer-name\":\"iphone-12-pro--silver_milestone@2x 1\",name:\"iphone-12-pro--silver_milestone@2x 1\",transformTemplate:transformTemplate1}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"144px\",src:\"https://framerusercontent.com/images/WcCqh8KqEfvOMOQxhKhiNhZsGp8.png\",srcSet:\"https://framerusercontent.com/images/WcCqh8KqEfvOMOQxhKhiNhZsGp8.png?scale-down-to=512 512w,https://framerusercontent.com/images/WcCqh8KqEfvOMOQxhKhiNhZsGp8.png 576w\"},className:\"framer-itt43h\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-09-12 at 5.26.59 AM 1\",name:\"Screenshot 2024-09-12 at 5.26.59 AM 1\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1eso29t\",\"data-framer-name\":\"how it works_08\",name:\"how it works_08\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-1m7lvu9\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7bygx7\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-1q5qezi\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Achieve \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"step by step\"}),\" with\"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\",\"--framer-text-transform\":\"capitalize\"},children:\" milestones and tasks.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Build \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"weekly habits \"}),\"that stick.\"]})]}),className:\"framer-199kilh\",\"data-framer-name\":\"Achieve step by step with milestones and tasks. Build weekly habits that stick.\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Achieve step by step with milestones and tasks. Build weekly habits that stick.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/hsUlurqzs9AFR4VdAoucBnGCk.png\",srcSet:\"https://framerusercontent.com/images/hsUlurqzs9AFR4VdAoucBnGCk.png 512w\"},className:\"framer-1x02x1\",\"data-framer-name\":\"iphone-12-pro--silver_milestone\",name:\"iphone-12-pro--silver_milestone\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"144px\",src:\"https://framerusercontent.com/images/oIV2fuvzCag0QXsubY08OZ6go.png\",srcSet:\"https://framerusercontent.com/images/oIV2fuvzCag0QXsubY08OZ6go.png 576w\"},className:\"framer-7meyv3\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-09-12 at 5.28.12 AM 1\",name:\"Screenshot 2024-09-12 at 5.28.12 AM 1\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r5acoh\",\"data-framer-name\":\"how it works_10\",name:\"how it works_10\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-1yj0zel\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-qw27m6\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-1wmxe4a\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"Boost focus\"}),\" with our visual timer\"]})}),className:\"framer-l0u7w5\",\"data-framer-name\":\"Boost focus with our visual timer\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Boost focus with our visual timer\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/YS6AK0AkC48J2be0NQVF3JQ8nY.png\",srcSet:\"https://framerusercontent.com/images/YS6AK0AkC48J2be0NQVF3JQ8nY.png 512w\"},className:\"framer-cmc747\",\"data-framer-name\":\"iphone-12-pro--silver_task\",name:\"iphone-12-pro--silver_task\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"150px\",src:\"https://framerusercontent.com/images/ZVmWzc9pLXOTANgwXVABixh2QY.png\",srcSet:\"https://framerusercontent.com/images/ZVmWzc9pLXOTANgwXVABixh2QY.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZVmWzc9pLXOTANgwXVABixh2QY.png 600w\"},className:\"framer-fcjxag\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-09-12 at 5.05.35 AM 1\",name:\"Screenshot 2024-09-12 at 5.05.35 AM 1\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2hvnn\",\"data-framer-name\":\"how it works_11\",name:\"how it works_11\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-evj115\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/FMMgcZPbOB4fP82w5ug9IEofIiA.png\",srcSet:\"https://framerusercontent.com/images/FMMgcZPbOB4fP82w5ug9IEofIiA.png 512w\"},className:\"framer-ghacj\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-otfj67\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-tiu9n1\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\"},children:\"Find \"}),\"Resources in one place\"]}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\"},children:\"No More\"}),\" prep fatigue\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\"},children:\" or \"}),\"tab overload\"]})]}),className:\"framer-js9s0c\",\"data-framer-name\":\"Find Resources in one place No More prep fatigue or tab overload\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Find Resources in one place No More prep fatigue or tab overload\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"142px\",src:\"https://framerusercontent.com/images/lH6CT89aFDNJHtdnR9fZimoao.png\",srcSet:\"https://framerusercontent.com/images/lH6CT89aFDNJHtdnR9fZimoao.png 568w\"},className:\"framer-1nno5jh\",\"data-border\":true,\"data-framer-name\":\"iphone-12-pro--silver_task_resource@2x 1\",name:\"iphone-12-pro--silver_task_resource@2x 1\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-usmehv\",\"data-framer-name\":\"how it works_12\",name:\"how it works_12\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-ot5tbf\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"129px\",src:\"https://framerusercontent.com/images/1gVAIs8hYSq5B7mbR3PjUag2Apg.png\",srcSet:\"https://framerusercontent.com/images/1gVAIs8hYSq5B7mbR3PjUag2Apg.png 512w\"},className:\"framer-d3b6r0\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ug75hz\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-xwjtma\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Lock in your concentration \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgba(255, 255, 255, 0.88)\",\"--framer-text-transform\":\"capitalize\"},children:\"with focus music and websites\"})]}),className:\"framer-oir8oc\",\"data-framer-name\":\"Lock in your concentration with focus music and websites\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Lock in your concentration with focus music and websites\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"153px\",src:\"https://framerusercontent.com/images/VizwupuXCngUU9llHXYMupoTE.png\",srcSet:\"https://framerusercontent.com/images/VizwupuXCngUU9llHXYMupoTE.png?scale-down-to=512 512w,https://framerusercontent.com/images/VizwupuXCngUU9llHXYMupoTE.png 954w\"},className:\"framer-isvt7e\",\"data-border\":true,\"data-framer-name\":\"Screenshot 2024-09-12 at 5.06.42 AM 2\",name:\"Screenshot 2024-09-12 at 5.06.42 AM 2\",transformTemplate:transformTemplate1})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10szjof\",\"data-framer-name\":\"how it works_14\",name:\"how it works_14\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-oo3a4w\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"128px\",src:\"https://framerusercontent.com/images/PwQLbzfrXt3Cxd68VojvqL6A.png\",srcSet:\"https://framerusercontent.com/images/PwQLbzfrXt3Cxd68VojvqL6A.png?scale-down-to=2048 1011w,https://framerusercontent.com/images/PwQLbzfrXt3Cxd68VojvqL6A.png 1504w\"},className:\"framer-10z8ngf\",\"data-framer-name\":\"iphone-12-pro--silver@2x 1\",name:\"iphone-12-pro--silver@2x 1\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pwxwin\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-1r4zxyv\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:[\"Team up with your \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(211, 255, 82)\"},children:\"AI coach, \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"tailored to your style.\"})]}),className:\"framer-og5ati\",\"data-framer-name\":\"Team up with your AI coach, tailored to your style.\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Team up with your AI coach, tailored to your style.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"155px\",src:\"https://framerusercontent.com/images/XJRN0XLkJhGF81maVpzKOXbWxsw.png\",srcSet:\"https://framerusercontent.com/images/XJRN0XLkJhGF81maVpzKOXbWxsw.png 620w\"},className:\"framer-bmwjhl\",\"data-border\":true,\"data-framer-name\":\"\u110B\u1162\u11AF\u1107\u1165\u11B7 1\",name:\"\u110B\u1162\u11AF\u1107\u1165\u11B7 1\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-147p6hf\",\"data-framer-name\":\"how it works_15\",name:\"how it works_15\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-16jxs3a\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iat325\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-m398h5\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Receive \"}),\"ongoing feedback and advice \"]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"on your path to success\"})]}),className:\"framer-p31nhc\",\"data-framer-name\":\"Receive ongoing feedback and advice on your path to success\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Receive ongoing feedback and advice on your path to success\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/dIXxhEVrv3LZIAqHSYCkZdC9N4.png\",srcSet:\"https://framerusercontent.com/images/dIXxhEVrv3LZIAqHSYCkZdC9N4.png 512w\"},className:\"framer-1racrre\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"154px\",src:\"https://framerusercontent.com/images/pK8EEWgRBynO88MFPHp8rGgyQ.png\",srcSet:\"https://framerusercontent.com/images/pK8EEWgRBynO88MFPHp8rGgyQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/pK8EEWgRBynO88MFPHp8rGgyQ.png 616w\"},className:\"framer-1g1rhzy\",\"data-border\":true,\"data-framer-name\":\"Screen Shot 2024-09-04 at 9.42.56 PM\",name:\"Screen Shot 2024-09-04 at 9.42.56 PM\"})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fpwkm9\",\"data-framer-name\":\"how it works_16\",name:\"how it works_16\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"791px\",src:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png\",srcSet:\"https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=512 512w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/FjJJZ3JF3UMm2llLtp3TVMqhfao.png 3164w\"},className:\"framer-1ixm4vp\",\"data-framer-name\":\"image 20\",name:\"image 20\",style:{rotate:90}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1trwb9m\",\"data-framer-name\":\"image 19\",name:\"image 19\",style:{rotate:90}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.262773513793945px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.26px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"DAMI\"})})}),className:\"framer-6ln5we\",\"data-framer-name\":\"DAMI\",fonts:[\"GF;Montserrat-600\"],name:\"DAMI\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Struggling?\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:[\"adjust your schedule\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\" and difficulty\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO05hbnVtU3F1YXJlUm91bmRPVEYgRXh0cmFCb2xk\",\"--framer-font-family\":'\"NanumSquareRoundOTF ExtraBold\", \"NanumSquareRoundOTF ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"with ease\"})]}),className:\"framer-8kr02y\",\"data-framer-name\":\"Struggling? adjust your schedule and difficulty with ease\",fonts:[\"CUSTOM;NanumSquareRoundOTF ExtraBold\"],name:\"Struggling? adjust your schedule and difficulty with ease\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"128px\",src:\"https://framerusercontent.com/images/EV4MJDJ4ynWqnP7kw824iaU9uY.png\",srcSet:\"https://framerusercontent.com/images/EV4MJDJ4ynWqnP7kw824iaU9uY.png 512w\"},className:\"framer-m9cqj5\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"149px\",src:\"https://framerusercontent.com/images/gTbX1CCTmEU5sFaebRTWGYJqq4.png\",srcSet:\"https://framerusercontent.com/images/gTbX1CCTmEU5sFaebRTWGYJqq4.png?scale-down-to=512 512w,https://framerusercontent.com/images/gTbX1CCTmEU5sFaebRTWGYJqq4.png 596w\"},className:\"framer-u09z9q\",\"data-border\":true,\"data-framer-name\":\"\u1100\u1169\u11AF \u1112\u116A\u11A8\u110B\u1175\u11AB\u1112\u116A\u1106\u1167\u11AB \u1100\u1167\u11B7 \u1105\u1175\u1109\u1173\u1110\u1173\u1107\u1172(TBD) 6\",name:\"\u1100\u1169\u11AF \u1112\u116A\u11A8\u110B\u1175\u11AB\u1112\u116A\u1106\u1167\u11AB \u1100\u1167\u11B7 \u1105\u1175\u1109\u1173\u1110\u1173\u1107\u1172(TBD) 6\"})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"How It Works\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"How It Works\"})})}),className:\"framer-tgldoj\",\"data-framer-name\":\"How It Works\",fonts:[\"GF;Montserrat-500\"],name:\"How It Works\",verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-el4jxn\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1w6ode9\",\"data-framer-name\":\"web\",id:elementId3,name:\"web\",ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z1q3tn\",\"data-framer-name\":\"Group 81975181\",name:\"Group 81975181\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-10sf2vi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Demo video\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Demo video\"})}),className:\"framer-1ug4i94\",\"data-framer-name\":\"Demo video\",fonts:[\"GF;Montserrat-500\"],name:\"Demo video\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ucaxng-container\",id:elementId4,ref:ref6,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:3,bottomLeftRadius:3,bottomRightRadius:3,height:\"100%\",id:\"EZRb_Vnt2\",isMixedBorderRadius:false,isRed:false,layoutId:\"EZRb_Vnt2\",play:\"Off\",shouldMute:true,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:3,topRightRadius:3,url:\"https://youtu.be/MRqN2dYOI_Y?si=tXv-vvQVF9A342pr\",width:\"100%\"})})})]})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vygw2c\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14tfkt-container hidden-ro665a hidden-1hk4qf2\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",id:\"WaUdQmQQs\",intervalControl:3,itemAmount:1,layoutId:\"WaUdQmQQs\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2gb4en\",\"data-framer-name\":\"Group 81975218\",name:\"Group 81975218\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-l0rhz3\",\"data-border\":true,\"data-framer-name\":\"Rectangle 156379\",name:\"Rectangle 156379\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}),className:\"framer-18af8yd\",\"data-framer-name\":\"Personal\",fonts:[\"GF;Montserrat-500\"],name:\"Personal\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dyltxy\",\"data-framer-name\":\"Group 81975174\",name:\"Group 81975174\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"limited seats\"})})}),className:\"framer-c5j8oa\",\"data-framer-name\":\"limited seats\",fonts:[\"GF;Montserrat-500\"],name:\"limited seats\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Free\"})})}),className:\"framer-1a7sdue\",\"data-framer-name\":\"Free\",fonts:[\"GF;Montserrat-600\"],name:\"Free\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1jmjo5k\",\"data-framer-name\":\"Group 81975171\",name:\"Group 81975171\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"1 projects\"})})}),className:\"framer-44uech\",\"data-framer-name\":\"1 projects\",fonts:[\"GF;Montserrat-regular\"],name:\"1 projects\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-17gqmgd\",\"data-framer-name\":\"Group 1793\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 1793\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3.2 5.76L5.38182 8L9.2 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-cdnsgt\",\"data-framer-name\":\"Group 81975168\",name:\"Group 81975168\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1ey0umr\",\"data-framer-name\":\"Group 81975163\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975163\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3.2 5.76L5.38182 8L9.2 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}),className:\"framer-1eserct\",\"data-framer-name\":\"Analytics\",fonts:[\"GF;Montserrat-regular\"],name:\"Analytics\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-441a7u\",\"data-framer-name\":\"Group 81975172\",name:\"Group 81975172\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1pfe077\",\"data-framer-name\":\"Group 81975169\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975169\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3.2 5.76L5.38182 8L9.2 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}),className:\"framer-prm464\",\"data-framer-name\":\"Insights Panel\",fonts:[\"GF;Montserrat-regular\"],name:\"Insights Panel\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hlrh3g\",\"data-framer-name\":\"Group 81975173\",name:\"Group 81975173\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17hyib9\",\"data-framer-name\":\"Group 81975170\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975170\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3 5.76L5.18182 8L9 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}),className:\"framer-styolw\",\"data-framer-name\":\"Share Features\",fonts:[\"GF;Montserrat-regular\"],name:\"Share Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rivve4\",\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-1kjpk8y\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-500\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bvi2w0\",\"data-framer-name\":\"Group 81975219\",name:\"Group 81975219\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-5ropcl\",\"data-framer-name\":\"Rectangle 156379\",name:\"Rectangle 156379\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}),className:\"framer-i3pa41\",\"data-framer-name\":\"Personal\",fonts:[\"GF;Montserrat-500\"],name:\"Personal\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ejytho\",\"data-framer-name\":\"Group 81975174\",name:\"Group 81975174\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"lowercase\"},children:\"p/month\"})})}),className:\"framer-gw11vs\",\"data-framer-name\":\"p/month\",fonts:[\"GF;Montserrat-500\"],name:\"p/month\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"lowercase\"},children:\"$15\"})})}),className:\"framer-1ilwysz\",\"data-framer-name\":\"$15\",fonts:[\"GF;Montserrat-600\"],name:\"$15\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v59ho1\",\"data-framer-name\":\"Group 81975171\",name:\"Group 81975171\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-transform\":\"capitalize\"},children:\"2 projects\"})})}),className:\"framer-1j6dw3d\",\"data-framer-name\":\"2 projects\",fonts:[\"GF;Montserrat-regular\"],name:\"2 projects\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pxuno2\",\"data-framer-name\":\"Group 1793\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 1793\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"black\"/>\\n<path d=\"M3.2 5.76L5.38182 8L9.2 4\" stroke=\"black\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-e2dl5s\",\"data-framer-name\":\"Group 81975168\",name:\"Group 81975168\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vgi9a5\",\"data-framer-name\":\"Group 81975163\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975163\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"black\"/>\\n<path d=\"M3.2 5.76L5.38182 8L9.2 4\" stroke=\"black\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}),className:\"framer-149wl5p\",\"data-framer-name\":\"Analytics\",fonts:[\"GF;Montserrat-regular\"],name:\"Analytics\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-721l3m\",\"data-framer-name\":\"Group 81975172\",name:\"Group 81975172\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-wbplh8\",\"data-framer-name\":\"Group 81975169\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975169\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"black\"/>\\n<path d=\"M3.2 5.76L5.38182 8L9.2 4\" stroke=\"black\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}),className:\"framer-bfq6pv\",\"data-framer-name\":\"Insights Panel\",fonts:[\"GF;Montserrat-regular\"],name:\"Insights Panel\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-josnv5\",\"data-framer-name\":\"Group 81975173\",name:\"Group 81975173\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-y97kyz\",\"data-framer-name\":\"Group 81975170\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975170\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"black\"/>\\n<path d=\"M3 5.76L5.18182 8L9 4\" stroke=\"black\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}),className:\"framer-1x3d4ot\",\"data-framer-name\":\"Share Features\",fonts:[\"GF;Montserrat-regular\"],name:\"Share Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y8mi7h\",\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-vu22in\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-500\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pjfqq3\",\"data-framer-name\":\"Group 81975220\",name:\"Group 81975220\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dt7zq7\",\"data-border\":true,\"data-framer-name\":\"Rectangle 156379\",name:\"Rectangle 156379\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}),className:\"framer-1jj6dej\",\"data-framer-name\":\"Personal\",fonts:[\"GF;Montserrat-500\"],name:\"Personal\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c3ro68\",\"data-framer-name\":\"Group 81975174\",name:\"Group 81975174\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"11px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"p/month\"})})}),className:\"framer-h5tf2n\",\"data-framer-name\":\"p/month\",fonts:[\"GF;Montserrat-500\"],name:\"p/month\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"40px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"$50\"})})}),className:\"framer-1uw7rcg\",\"data-framer-name\":\"$50\",fonts:[\"GF;Montserrat-600\"],name:\"$50\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f3f7ne\",\"data-framer-name\":\"Group 81975171\",name:\"Group 81975171\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Unlimited projects\"})})}),className:\"framer-1n35p0e\",\"data-framer-name\":\"Unlimited projects\",fonts:[\"GF;Montserrat-regular\"],name:\"Unlimited projects\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1o6q7qh\",\"data-framer-name\":\"Group 1793\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 1793\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3.20001 5.76L5.38183 8L9.20001 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u2e4rh\",\"data-framer-name\":\"Group 81975168\",name:\"Group 81975168\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1x0198d\",\"data-framer-name\":\"Group 81975163\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975163\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3.20001 5.76L5.38183 8L9.20001 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}),className:\"framer-1180whm\",\"data-framer-name\":\"Analytics\",fonts:[\"GF;Montserrat-regular\"],name:\"Analytics\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tpi5e8\",\"data-framer-name\":\"Group 81975172\",name:\"Group 81975172\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1bylutz\",\"data-framer-name\":\"Group 81975169\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975169\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3.20001 5.76L5.38183 8L9.20001 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}),className:\"framer-1u3na1u\",\"data-framer-name\":\"Insights Panel\",fonts:[\"GF;Montserrat-regular\"],name:\"Insights Panel\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vhz43j\",\"data-framer-name\":\"Group 81975173\",name:\"Group 81975173\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-jn90ph\",\"data-framer-name\":\"Group 81975170\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,name:\"Group 81975170\",svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"6\" cy=\"6\" r=\"5.5\" stroke=\"#D3FF52\"/>\\n<path d=\"M3 5.76L5.18182 8L9 4\" stroke=\"#D3FF52\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}),className:\"framer-b79vts\",\"data-framer-name\":\"Share Features\",fonts:[\"GF;Montserrat-regular\"],name:\"Share Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qfxpjh\",\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"500\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-l5tefa\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-500\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ewzm8x hidden-1gxbh9e\",\"data-framer-name\":\"web\",name:\"web\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fupjit\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sbpgm\",\"data-framer-name\":\"Free\",name:\"Free\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hdm77u\",\"data-border\":true,\"data-framer-name\":\"Rectangle 156379\",name:\"Rectangle 156379\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uyud55\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u5teej\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15.625px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15.63px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}),className:\"framer-ovqpk0\",\"data-framer-name\":\"Personal\",fonts:[\"GF;Montserrat-regular\"],name:\"Personal\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13j4c81\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"free\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"54px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"free\"})})}),className:\"framer-1knonj5\",\"data-framer-name\":\"free\",fonts:[\"GF;Montserrat-700\"],name:\"free\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q89cso\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"lowercase\"},children:\"limited seats\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.75px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18.75px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"limited seats\"})})}),className:\"framer-vjv2ad\",\"data-framer-name\":\"limited seats\",fonts:[\"GF;Montserrat-regular\"],name:\"limited seats\",verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oiawd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c30m9o\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-hroqbu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9joca8\",\"data-framer-name\":\"Group 1800\",name:\"Group 1800\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rkfnqn\",\"data-framer-name\":\"Group 1793\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1793\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"1 projects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"1 projects\"})}),className:\"framer-ai5okn\",\"data-framer-name\":\"1 projects\",fonts:[\"GF;Montserrat-regular\"],name:\"1 projects\",verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ofwuc\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bwyv79\",\"data-framer-name\":\"Group 1799\",name:\"Group 1799\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-5pfkhk\",\"data-framer-name\":\"Group 1794\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1794\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})}),className:\"framer-1ay2bqi\",\"data-framer-name\":\"Analytics\",fonts:[\"GF;Montserrat-regular\"],name:\"Analytics\",verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wko96z\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t9bi2i\",\"data-framer-name\":\"Group 1798\",name:\"Group 1798\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1hwtvc1\",\"data-framer-name\":\"Group 1795\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1795\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}),className:\"framer-107kmcl\",\"data-framer-name\":\"Insights Panel\",fonts:[\"GF;Montserrat-regular\"],name:\"Insights Panel\",verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gie00g\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wkn3i9\",\"data-framer-name\":\"Group 1797\",name:\"Group 1797\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-op7ngg\",\"data-framer-name\":\"Group 1796\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1796\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}),className:\"framer-dapius\",\"data-framer-name\":\"Share Features\",fonts:[\"GF;Montserrat-regular\"],name:\"Share Features\",verticalAlignment:\"center\",withExternalLayout:true})})]})})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vfK_v5DHx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1flf2sj framer-xezgvs\",\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16.25px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16.25px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-q7b6d7\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-600\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w2mqfl\",\"data-framer-name\":\"$10\",name:\"$10\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qqopsa\",\"data-framer-name\":\"Rectangle 156382\",name:\"Rectangle 156382\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1by9xc8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xdb21g\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"10px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15.625px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15.63px\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}),className:\"framer-77rce\",\"data-framer-name\":\"Personal\",fonts:[\"GF;Montserrat-regular\"],name:\"Personal\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1slbmfs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"lowercase\"},children:\"$10\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"54px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-text-transform\":\"lowercase\"},children:\"$10\"})})}),className:\"framer-17yphdy\",\"data-framer-name\":\"$10\",fonts:[\"GF;Montserrat-700\"],name:\"$10\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5kon9b\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-trxlsi\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"lowercase\"},children:\"p/month\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.75px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18.75px\",\"--framer-text-transform\":\"lowercase\"},children:\"p/month\"})})}),className:\"framer-1qsdniu\",\"data-framer-name\":\"p/month\",fonts:[\"GF;Montserrat-regular\"],name:\"p/month\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-phrwfo\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17rqe37\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w5a5pn\",\"data-framer-name\":\"Group 81975190\",name:\"Group 81975190\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1jftvlu\",\"data-framer-name\":\"Group 1794\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1794\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"black\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"black\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"capitalize\"},children:\"2 projects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-transform\":\"capitalize\"},children:\"2 projects\"})})}),className:\"framer-dqhku1\",\"data-framer-name\":\"2 projects\",fonts:[\"GF;Montserrat-regular\"],name:\"2 projects\",verticalAlignment:\"center\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4r8c9r\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4vjin0\",\"data-framer-name\":\"Group 81975191\",name:\"Group 81975191\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}),className:\"framer-pj0dhb\",\"data-framer-name\":\"Analytics\",fonts:[\"GF;Montserrat-regular\"],name:\"Analytics\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ti4abi\",\"data-framer-name\":\"Group 1794\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1794\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"black\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"black\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11vimuz\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vdos6q\",\"data-framer-name\":\"Group 81975192\",name:\"Group 81975192\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}),className:\"framer-1w8efwx\",\"data-framer-name\":\"Insights Panel\",fonts:[\"GF;Montserrat-regular\"],name:\"Insights Panel\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gc9gio\",\"data-framer-name\":\"Group 1795\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1795\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"black\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"black\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c7u1p9\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-egj63l\",\"data-framer-name\":\"Group 81975193\",name:\"Group 81975193\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}),className:\"framer-h7i66h\",\"data-framer-name\":\"Share Features\",fonts:[\"GF;Montserrat-regular\"],name:\"Share Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-xnfgr5\",\"data-framer-name\":\"Group 1796\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1796\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"black\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"black\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vfK_v5DHx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-8n0i23 framer-xezgvs\",\"data-framer-name\":\"Frame 1482\",name:\"Frame 1482\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16.25px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16.25px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-1u9fz1d\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-600\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ymo0bt\",\"data-framer-name\":\"$50\",name:\"$50\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12vezpb\",\"data-border\":true,\"data-framer-name\":\"Rectangle 156383\",name:\"Rectangle 156383\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mhu1av\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-jk8cmk\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15.625px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15.63px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Personal\"})})}),className:\"framer-1ukq8y5\",\"data-framer-name\":\"Personal\",fonts:[\"GF;Montserrat-regular\"],name:\"Personal\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hh2ptg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"lowercase\"},children:\"$50\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"54px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"54px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"$50\"})})}),className:\"framer-1wacybt\",\"data-framer-name\":\"$50\",fonts:[\"GF;Montserrat-700\"],name:\"$50\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iy9hy\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fp6y4x\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"lowercase\"},children:\"p/month\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18.75px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18.75px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"p/month\"})})}),className:\"framer-1suey4r\",\"data-framer-name\":\"p/month\",fonts:[\"GF;Montserrat-regular\"],name:\"p/month\",verticalAlignment:\"top\",withExternalLayout:true})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-172v62a\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ov9mh3\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ari1tk\",\"data-framer-name\":\"Group 81975194\",name:\"Group 81975194\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Unlimited Projects\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Unlimited Projects\"})})}),className:\"framer-wydgx4\",\"data-framer-name\":\"Unlimited Projects\",fonts:[\"GF;Montserrat-regular\"],name:\"Unlimited Projects\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1glg7rb\",\"data-framer-name\":\"Group 1793\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1793\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-bpakcd\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h927o5\",\"data-framer-name\":\"Group 81975195\",name:\"Group 81975195\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Analytics\"})})}),className:\"framer-6rxhb4\",\"data-framer-name\":\"Analytics\",fonts:[\"GF;Montserrat-regular\"],name:\"Analytics\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-rd4gm7\",\"data-framer-name\":\"Group 1794\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1794\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9avzj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gkuq6a\",\"data-framer-name\":\"Group 81975196\",name:\"Group 81975196\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Insights Panel\"})})}),className:\"framer-19cpbr9\",\"data-framer-name\":\"Insights Panel\",fonts:[\"GF;Montserrat-regular\"],name:\"Insights Panel\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-genskb\",\"data-framer-name\":\"Group 1795\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1795\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e5vieq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-p80adf\",\"data-framer-name\":\"Group 81975197\",name:\"Group 81975197\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Share Features\"})})}),className:\"framer-kbnnpw\",\"data-framer-name\":\"Share Features\",fonts:[\"GF;Montserrat-regular\"],name:\"Share Features\",transformTemplate:transformTemplate1,verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15h0s2i\",\"data-framer-name\":\"Group 1796\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:19,name:\"Group 1796\",svg:'<svg width=\"19\" height=\"19\" viewBox=\"0 0 19 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<circle cx=\"9.5\" cy=\"9.5\" r=\"9.1875\" stroke=\"#D3FF52\" stroke-width=\"0.625\"/>\\n<path d=\"M5 8.64L8.63636 12L15 6\" stroke=\"#D3FF52\" stroke-width=\"1.25\" stroke-linecap=\"square\"/>\\n</svg>\\n',withExternalLayout:true})]})})]}),/*#__PURE__*/_jsx(Link,{href:{hash:\":vfK_v5DHx\",webPageId:\"hQTAjsr0W\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-r934rp framer-xezgvs\",\"data-framer-name\":\"Frame 1483\",name:\"Frame 1483\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16.25px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16.25px\",\"--framer-font-weight\":\"600\",\"--framer-text-transform\":\"capitalize\"},children:\"Get Started\"})})}),className:\"framer-8a26bw\",\"data-framer-name\":\"Get Started\",fonts:[\"GF;Montserrat-600\"],name:\"Get Started\",verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"pricing\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"pricing\"})})}),className:\"framer-hlxiol\",\"data-framer-name\":\"pricing\",fonts:[\"GF;Montserrat-500\"],name:\"pricing\",verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-12z1me4 hidden-ro665a hidden-1hk4qf2\",children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"pricing\"})}),className:\"framer-1wenfg hidden-ro665a\",\"data-framer-name\":\"pricing\",fonts:[\"GF;Montserrat-500\"],name:\"pricing\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5jicz\",\"data-framer-name\":\"Feature\",id:elementId5,name:\"Feature\",ref:ref7,children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hwwsap hidden-1hk4qf2\",\"data-framer-name\":\"Features\",name:\"Features\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ee2any\",\"data-framer-name\":\"web\",id:elementId6,name:\"web\",ref:ref8,children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1acar3k hidden-1gxbh9e\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lrl34s hidden-1gxbh9e\"})]})}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-nz6bb2\",\"data-framer-appear-id\":\"nz6bb2\",\"data-framer-name\":\"Group 2276\",initial:animation2,name:\"Group 2276\",optimized:true,children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tubsix hidden-1gxbh9e\",\"data-framer-name\":\"Group 2275\",name:\"Group 2275\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"Your personal AI coach offers real-time motivation, adaptive replanning, and celebrates your wins. Get personalized insights, ADHD-specific advice, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"and continuous support on your journey to success.\"})]}),fonts:[\"GF;Montserrat-300\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Your personal AI coach offers real-time motivation, adaptive replanning, \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"and celebrates your wins. Get personalized insights, ADHD-specific advice, \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"and continuous support on your journey to success.\"})})]}),className:\"framer-6yo9ip\",\"data-framer-name\":\"Your personal AI coach offers real-time motivation, adaptive replanning, and celebrates your wins. Get personalized insights, ADHD-specific advice, and continuous support on your journey to success.\",fonts:[\"GF;Montserrat-200\"],name:\"Your personal AI coach offers real-time motivation, adaptive replanning, and celebrates your wins. Get personalized insights, ADHD-specific advice, and continuous support on your journey to success.\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Growth Navigator\"})}),fonts:[\"GF;Montserrat-600\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Growth Navigator\"})})}),className:\"framer-1apscuq\",\"data-framer-name\":\"Growth Navigator\",fonts:[\"GF;Montserrat-700\"],name:\"Growth Navigator\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"04\"})})}),className:\"framer-1g5akdl\",\"data-framer-name\":\"04\",fonts:[\"GF;Montserrat-500\"],name:\"04\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tigtfa\",\"data-framer-name\":\"person_play_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:144,intrinsicWidth:144,name:\"person_play_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1\",svg:'<svg width=\"144\" height=\"144\" viewBox=\"0 0 144 144\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M33.3431 74.4L10 51L33.3431 27.6L56.6861 51L33.3431 74.4ZM54.292 132V102C48.2068 101.5 42.1715 100.775 36.1861 99.825C30.2007 98.875 24.2652 97.6 18.3796 96L21.3723 84C29.7518 86.3 38.1563 87.875 46.5858 88.725C55.0152 89.575 63.5693 90 72.2482 90C80.927 90 89.4811 89.575 97.9106 88.725C106.34 87.875 114.745 86.3 123.124 84L126.117 96C120.231 97.6 114.296 98.875 108.31 99.825C102.325 100.775 96.2895 101.5 90.2044 102V132H54.292ZM33.3431 57.6L39.927 51L33.3431 44.4L26.7591 51L33.3431 57.6ZM72.2482 42C67.2603 42 63.0207 40.25 59.5292 36.75C56.0377 33.25 54.292 29 54.292 24C54.292 19 56.0377 14.75 59.5292 11.25C63.0207 7.75 67.2603 6 72.2482 6C77.236 6 81.4757 7.75 84.9671 11.25C88.4586 14.75 90.2044 19 90.2044 24C90.2044 29 88.4586 33.25 84.9671 36.75C81.4757 40.25 77.236 42 72.2482 42ZM72.2482 84C68.9562 84 66.1381 82.825 63.7938 80.475C61.4495 78.125 60.2774 75.3 60.2774 72C60.2774 68.7 61.4495 65.875 63.7938 63.525C66.1381 61.175 68.9562 60 72.2482 60C75.5401 60 78.3583 61.175 80.7026 63.525C83.0468 65.875 84.219 68.7 84.219 72C84.219 75.3 83.0468 78.125 80.7026 80.475C78.3583 82.825 75.5401 84 72.2482 84ZM72.2482 30C73.944 30 75.3656 29.425 76.5128 28.275C77.66 27.125 78.2336 25.7 78.2336 24C78.2336 22.3 77.66 20.875 76.5128 19.725C75.3656 18.575 73.944 18 72.2482 18C70.5523 18 69.1308 18.575 67.9836 19.725C66.8364 20.875 66.2628 22.3 66.2628 24C66.2628 25.7 66.8364 27.125 67.9836 28.275C69.1308 29.425 70.5523 30 72.2482 30ZM102.474 72L92.2993 54L102.474 36H122.825L133 54L122.825 72H102.474ZM109.358 60H115.942L119.234 54L115.942 48H109.358L106.066 54L109.358 60Z\" fill=\"#D3FF52\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1gtehje\",\"data-framer-appear-id\":\"1gtehje\",\"data-framer-name\":\"Group 2274\",initial:animation2,name:\"Group 2274\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"Stay on track with our Focus Enhancer. It provides visual timers, distraction management tools, and curated resources tailored to your task. Experience improved concentration and task completion rates.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Stay on track with our Focus Enhancer. It provides visual timers, distraction \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"management tools, and curated resources tailored to your task. Experience \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"improved concentration and task completion rates.\"})})]}),className:\"framer-1uaevne\",\"data-framer-name\":\"Stay on track with our Focus Enhancer. It provides visual timers, distraction management tools, and curated resources tailored to your task. Experience improved concentration and task completion rates.\",fonts:[\"GF;Montserrat-200\"],name:\"Stay on track with our Focus Enhancer. It provides visual timers, distraction management tools, and curated resources tailored to your task. Experience improved concentration and task completion rates.\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Concentration Companion\"})})}),className:\"framer-1x690jv hidden-1gxbh9e\",\"data-framer-name\":\"Concentration Companion\",fonts:[\"GF;Montserrat-700\"],name:\"Concentration Companion\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1hsgxuw\",\"data-framer-name\":\"psychology_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:144,intrinsicWidth:144,name:\"psychology_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1\",svg:'<svg width=\"144\" height=\"144\" viewBox=\"0 0 144 144\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M35.9889 132V106.2C30.2924 101 25.8701 94.925 22.7221 87.975C19.574 81.025 18 73.7 18 66C18 51 23.2468 38.25 33.7403 27.75C44.2338 17.25 56.9759 12 71.9666 12C84.4589 12 95.527 15.675 105.171 23.025C114.815 30.375 121.086 39.95 123.984 51.75L131.78 82.5C132.279 84.4 131.929 86.125 130.73 87.675C129.531 89.225 127.932 90 125.933 90H113.941V108C113.941 111.3 112.766 114.125 110.418 116.475C108.069 118.825 105.246 120 101.948 120H89.9555V132H77.9629V108H101.948V78H118.138L112.442 54.75C110.143 45.65 105.246 38.25 97.7506 32.55C90.2553 26.85 81.6606 24 71.9666 24C60.3738 24 50.4799 28.05 42.285 36.15C34.09 44.25 29.9926 54.1 29.9926 65.7C29.9926 71.7 31.2168 77.4 33.6653 82.8C36.1138 88.2 39.5866 93 44.0839 97.2L47.9814 100.8V132H35.9889ZM65.9703 90H77.9629L78.8623 82.5C79.6618 82.2 80.3864 81.85 81.036 81.45C81.6856 81.05 82.2602 80.6 82.7599 80.1L89.6556 83.1L95.6519 72.9L89.6556 68.4C89.8555 67.6 89.9555 66.8 89.9555 66C89.9555 65.2 89.8555 64.4 89.6556 63.6L95.6519 59.1L89.6556 48.9L82.7599 51.9C82.2602 51.4 81.6856 50.95 81.036 50.55C80.3864 50.15 79.6618 49.8 78.8623 49.5L77.9629 42H65.9703L65.0709 49.5C64.2714 49.8 63.5468 50.15 62.8972 50.55C62.2476 50.95 61.673 51.4 61.1733 51.9L54.2775 48.9L48.2813 59.1L54.2775 63.6C54.0777 64.4 53.9777 65.2 53.9777 66C53.9777 66.8 54.0777 67.6 54.2775 68.4L48.2813 72.9L54.2775 83.1L61.1733 80.1C61.673 80.6 62.2476 81.05 62.8972 81.45C63.5468 81.85 64.2714 82.2 65.0709 82.5L65.9703 90ZM71.9666 75C69.4681 75 67.3444 74.125 65.5955 72.375C63.8466 70.625 62.9722 68.5 62.9722 66C62.9722 63.5 63.8466 61.375 65.5955 59.625C67.3444 57.875 69.4681 57 71.9666 57C74.465 57 76.5887 57.875 78.3376 59.625C80.0866 61.375 80.961 63.5 80.961 66C80.961 68.5 80.0866 70.625 78.3376 72.375C76.5887 74.125 74.465 75 71.9666 75Z\" fill=\"#D3FF52\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Concentration \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Companion\"})]}),className:\"framer-3fkykl hidden-ro665a hidden-1hk4qf2\",\"data-framer-name\":\"Concentration Companion\",fonts:[\"GF;Montserrat-600\"],name:\"Concentration Companion\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"03\"})})}),className:\"framer-w9dwcr\",\"data-framer-name\":\"03\",fonts:[\"GF;Montserrat-500\"],name:\"03\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1qo8usb\",\"data-framer-appear-id\":\"1qo8usb\",\"data-framer-name\":\"Group 2273\",initial:animation2,name:\"Group 2273\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"he Task Manager breaks down your goals into actionable steps. It creates \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"a personalized schedule, adapting to your ADHD profile and productivity patterns. Enjoy seamless calendar integration and AI-suggested task prioritization.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"he Task Manager breaks down your goals into actionable steps. It creates \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"a personalized schedule, adapting to your ADHD profile and productivity patterns. \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Enjoy seamless calendar integration and AI-suggested task prioritization.\"})})]}),className:\"framer-1o7dg88\",\"data-framer-name\":\"he Task Manager breaks down your goals into actionable steps. It creates a personalized schedule, adapting to your ADHD profile and productivity patterns. Enjoy seamless calendar integration and AI-suggested task prioritization.\",fonts:[\"GF;Montserrat-200\"],name:\"he Task Manager breaks down your goals into actionable steps. It creates a personalized schedule, adapting to your ADHD profile and productivity patterns. Enjoy seamless calendar integration and AI-suggested task prioritization.\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Action Catalyst\"})}),className:\"framer-1m55ody hidden-ro665a hidden-1hk4qf2\",\"data-framer-name\":\"Action Catalyst\",fonts:[\"GF;Montserrat-600\"],name:\"Action Catalyst\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Action Catalyst\"})})}),className:\"framer-136m5xx hidden-1gxbh9e\",\"data-framer-name\":\"Action Catalyst\",fonts:[\"GF;Montserrat-700\"],name:\"Action Catalyst\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"02\"})})}),className:\"framer-lsdv12\",\"data-framer-name\":\"02\",fonts:[\"GF;Montserrat-500\"],name:\"02\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ehhkm8\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:104,intrinsicWidth:144,name:\"Vector\",svg:'<svg width=\"144\" height=\"104\" viewBox=\"0 0 144 104\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M28.8 104L19.6364 94.9L82.4727 32.5H65.4545V45.5H52.3636V19.5H90.4909C92.2364 19.5 93.9273 19.825 95.5636 20.475C97.2 21.125 98.6182 22.0458 99.8182 23.2375L119.455 42.575C122.4 45.5 126 47.775 130.255 49.4C134.509 51.025 139.091 51.8917 144 52V65C137.236 65 131.1 63.9708 125.591 61.9125C120.082 59.8542 115.2 56.7667 110.945 52.65L104.4 45.825L90 60.125L104.727 74.75L61.8545 99.2875L55.3091 88.075L83.4545 71.9875L72.3273 60.9375L28.8 104ZM13.0909 58.5V45.5H45.8182V58.5H13.0909ZM0 39V26H32.7273V39H0ZM120.927 26C117.327 26 114.218 24.7271 111.6 22.1812C108.982 19.6354 107.673 16.575 107.673 13C107.673 9.425 108.982 6.36458 111.6 3.81875C114.218 1.27292 117.327 0 120.927 0C124.527 0 127.636 1.27292 130.255 3.81875C132.873 6.36458 134.182 9.425 134.182 13C134.182 16.575 132.873 19.6354 130.255 22.1812C127.636 24.7271 124.527 26 120.927 26ZM13.0909 19.5V6.5H45.8182V19.5H13.0909Z\" fill=\"#D3FF52\"/>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-rz15c4\",\"data-framer-appear-id\":\"rz15c4\",\"data-framer-name\":\"Group 2272\",initial:animation2,name:\"Group 2272\",optimized:true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"Our AI-powered Goal Agent turns your vague aspirations into SMART goals. It guides you through personalized questionnaires,\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"200\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"lowercase\"},children:\"helping you clarify your objectives and create vivid vision boards for motivation.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"Our AI-powered Goal Agent turns your vague aspirations into SMART goals. \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"It guides you through personalized questionnaires, helping you clarify your \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0yMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"objectives and create vivid vision boards for motivation.\"})})]}),className:\"framer-n2rmi\",\"data-framer-name\":\"Our AI-powered Goal Agent turns your vague aspirations into SMART goals. It guides you through personalized questionnaires, helping you clarify your objectives and create vivid vision boards for motivation.\",fonts:[\"GF;Montserrat-200\"],name:\"Our AI-powered Goal Agent turns your vague aspirations into SMART goals. It guides you through personalized questionnaires, helping you clarify your objectives and create vivid vision boards for motivation.\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"37px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Dream Architect\"})}),className:\"framer-17u2vcn hidden-1gxbh9e\",\"data-framer-name\":\"Dream Architect\",fonts:[\"GF;Montserrat-700\"],name:\"Dream Architect\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"01\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC01MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"01\"})})}),className:\"framer-hcojkk\",\"data-framer-name\":\"01\",fonts:[\"GF;Montserrat-500\"],name:\"01\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18g1q85\",\"data-framer-name\":\"add_task_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:144,intrinsicWidth:144,name:\"add_task_24dp_5F6368_FILL0_wght400_GRAD0_opsz24 1\",svg:'<svg width=\"144\" height=\"144\" viewBox=\"0 0 144 144\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M72 132C63.7 132 55.9 130.425 48.6 127.275C41.3 124.125 34.95 119.85 29.55 114.45C24.15 109.05 19.875 102.7 16.725 95.4C13.575 88.1 12 80.3 12 72C12 63.7 13.575 55.9 16.725 48.6C19.875 41.3 24.15 34.95 29.55 29.55C34.95 24.15 41.3 19.875 48.6 16.725C55.9 13.575 63.7 12 72 12C78.5 12 84.65 12.95 90.45 14.85C96.25 16.75 101.6 19.4 106.5 22.8L97.8 31.65C94 29.25 89.95 27.375 85.65 26.025C81.35 24.675 76.8 24 72 24C58.7 24 47.375 28.675 38.025 38.025C28.675 47.375 24 58.7 24 72C24 85.3 28.675 96.625 38.025 105.975C47.375 115.325 58.7 120 72 120C75.2 120 78.3 119.7 81.3 119.1C84.3 118.5 87.2 117.65 90 116.55L99 125.7C94.9 127.7 90.6 129.25 86.1 130.35C81.6 131.45 76.9 132 72 132ZM114 120V102H96V90H114V72H126V90H144V102H126V120H114ZM63.6 99.6L38.1 74.1L46.5 65.7L63.6 82.8L123.6 22.65L132 31.05L63.6 99.6Z\" fill=\"#D3FF52\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Dream Architect\"})}),className:\"framer-4ajqt2 hidden-ro665a hidden-1hk4qf2\",\"data-framer-name\":\"Dream Architect\",fonts:[\"GF;Montserrat-600\"],name:\"Dream Architect\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-34p84q hidden-ro665a hidden-1hk4qf2\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Transform vague dreams\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"into actionable plans \"})]}),className:\"framer-1iws64t\",\"data-framer-name\":\"Transform vague dreams into actionable plans\",fonts:[\"GF;Montserrat-300\"],name:\"Transform vague dreams into actionable plans\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yr0ip3\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Features\"})}),className:\"framer-koozd0\",\"data-framer-name\":\"Features\",fonts:[\"GF;Montserrat-700\"],name:\"Features\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wf4lyx\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Transform vague dreams into actionable plans\"})}),className:\"framer-13ke0g8 hidden-ro665a hidden-1gxbh9e\",fonts:[\"GF;Montserrat-300\"],verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xohw4a hidden-1gxbh9e\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),isDisplayed1()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Features\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"75px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Features\"})})}),className:\"framer-1ppuhln hidden-1gxbh9e\",\"data-framer-name\":\"Features\",fonts:[\"GF;Montserrat-700\"],name:\"Features\",verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qfmpl2\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xpfo0q\",\"data-framer-name\":\"web\",id:elementId7,name:\"web\",ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ubqdrc\",children:[isDisplayed4()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-py507j hidden-1gxbh9e hidden-1hk4qf2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pp7pg1\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7214),positionX:\"center\",positionY:\"center\",sizes:\"245px\",src:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png\",srcSet:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png 980w\"},className:\"framer-1oavgfk\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7382),positionX:\"center\",positionY:\"center\",sizes:\"161px\",src:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png\",srcSet:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png 644w\"},className:\"framer-1idw16k\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fjesqb hidden-ro665a hidden-1gxbh9e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7sah8a\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6899),positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png\",srcSet:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png 980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"165px\",src:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png\",srcSet:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png 980w\"},className:\"framer-d77knl\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\",transformTemplate:transformTemplate3})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7011),positionX:\"center\",positionY:\"center\",sizes:\"109px\",src:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png\",srcSet:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png 644w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"109px\",src:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png\",srcSet:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png 644w\"},className:\"framer-1ig7lol\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1slpfn0 hidden-1gxbh9e\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1e1u952\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1slc5l3\",\"data-framer-name\":\"Group 173\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:42,name:\"Group 173\",svg:'<svg width=\"42\" height=\"33\" viewBox=\"0 0 42 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_2675_4164)\">\\n<rect y=\"1\" width=\"42\" height=\"32\" rx=\"9.45\" fill=\"url(#paint0_linear_2675_4164)\"/>\\n</g>\\n<g filter=\"url(#filter1_f_2675_4164)\">\\n<path d=\"M12 0L12 5\" stroke=\"white\" stroke-width=\"2.646\" stroke-linecap=\"round\"/>\\n<path d=\"M30 0L30 5\" stroke=\"white\" stroke-width=\"2.646\" stroke-linecap=\"round\"/>\\n</g>\\n<g opacity=\"0.3\" filter=\"url(#filter2_f_2675_4164)\">\\n<mask id=\"mask0_2675_4164\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"1\" width=\"42\" height=\"32\">\\n<rect y=\"1\" width=\"42\" height=\"32\" rx=\"7.938\" fill=\"url(#paint1_linear_2675_4164)\"/>\\n</mask>\\n<g mask=\"url(#mask0_2675_4164)\">\\n<path d=\"M-2 21.2859C1.31438 17.9431 12.836 10.8171 28.7016 18.295C38.8138 23.0612 43.1287 23.7307 44.4885 23.3148V22.1216C45.0842 22.5063 45.2517 23.0815 44.4885 23.3148V32.1941L39.1681 36.9444L5.32652 38L0.267733 29.7309L-2 21.2859Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter3_f_2675_4164)\">\\n<path d=\"M24.6438 9C25.9451 9 27.0413 10.0939 26.5433 11.2961C26.2417 12.0241 25.7998 12.6855 25.2426 13.2426C24.6855 13.7998 24.0241 14.2417 23.2961 14.5433C22.5681 14.8448 21.7879 15 21 15C20.2121 15 19.4319 14.8448 18.7039 14.5433C17.9759 14.2417 17.3145 13.7998 16.7574 13.2426C16.2002 12.6855 15.7583 12.0241 15.4567 11.2961C14.9587 10.0939 16.0549 9 17.3562 9L21 9H24.6438Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter4_f_2675_4164)\">\\n<circle cx=\"9.5\" cy=\"24.5\" r=\"1.5\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter5_f_2675_4164)\">\\n<circle cx=\"17.5\" cy=\"24.5\" r=\"1.5\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter6_f_2675_4164)\">\\n<circle cx=\"25.5\" cy=\"24.5\" r=\"1.5\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_2675_4164\" x=\"-1.89\" y=\"-0.89\" width=\"45.78\" height=\"35.78\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.945\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter1_f_2675_4164\" x=\"10.4122\" y=\"-1.5876\" width=\"21.1757\" height=\"8.1752\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.1323\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter2_f_2675_4164\" x=\"-1.323\" y=\"13.677\" width=\"44.646\" height=\"20.646\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.6615\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter3_f_2675_4164\" x=\"14.8048\" y=\"8.4708\" width=\"12.3904\" height=\"7.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter4_f_2675_4164\" x=\"7.4708\" y=\"22.4708\" width=\"4.0584\" height=\"4.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter5_f_2675_4164\" x=\"15.4708\" y=\"22.4708\" width=\"4.0584\" height=\"4.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter6_f_2675_4164\" x=\"23.4708\" y=\"22.4708\" width=\"4.0584\" height=\"4.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_2675_4164\" x1=\"1.93846\" y1=\"2.80451\" x2=\"47.2449\" y2=\"30.5981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#D3FF52\"/>\\n<stop offset=\"0.473419\" stop-color=\"#68C2FF\"/>\\n<stop offset=\"1\" stop-color=\"#D3FF52\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2675_4164\" x1=\"1.93846\" y1=\"2.80451\" x2=\"47.2449\" y2=\"30.5981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#5953B3\"/>\\n<stop offset=\"0.473419\" stop-color=\"#5499C8\"/>\\n<stop offset=\"1\" stop-color=\"#5953B3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-g6296r\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Start to achieve\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"33px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"with AI today!\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Start to achieve\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"with AI today!\"})})]}),className:\"framer-1jh66cc\",\"data-framer-name\":\"Start to achieve with AI today!\",fonts:[\"GF;Montserrat-700\"],name:\"Start to achieve with AI today!\",verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cldc8p\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w95497\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/kr/app/dami-dream-goal-achieve-ai/id6661021220\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-xzd3n5 framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2w1rn4\",\"data-framer-name\":\"Frame 1475\",name:\"Frame 1475\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-aewsui\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:15,name:\"Group\",svg:'<svg width=\"15\" height=\"18\" viewBox=\"0 0 15 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.0621 6.29847C13.9857 6.34583 12.1671 7.34514 12.1671 9.56085C12.2528 12.0877 14.4621 12.9739 14.5 12.9739C14.4621 13.0212 14.1665 14.1811 13.2907 15.3968C12.5956 16.4441 11.8242 17.5 10.6528 17.5C9.5385 17.5 9.1385 16.802 7.85278 16.802C6.47203 16.802 6.08135 17.5 5.0242 17.5C3.85277 17.5 3.02419 16.3875 2.29127 15.3501C1.3391 13.9923 0.529778 11.8614 0.501206 9.81544C0.481952 8.73126 0.69189 7.66553 1.22481 6.76031C1.97699 5.49656 3.31985 4.63869 4.78631 4.6104C5.90992 4.57289 6.90992 5.37419 7.59563 5.37419C8.25278 5.37419 9.48135 4.6104 10.8714 4.6104C11.4714 4.61102 13.0714 4.78997 14.0621 6.29847ZM7.5006 4.39394C7.3006 3.40385 7.85278 2.41376 8.36706 1.7822C9.02421 1.01841 10.0621 0.5 10.9571 0.5C11.0143 1.49009 10.6522 2.46111 10.005 3.16832C9.42421 3.9321 8.42421 4.50709 7.5006 4.39394Z\" fill=\"#D3FF52\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"app store\"})})}),className:\"framer-f1yhk9\",\"data-framer-name\":\"app store\",fonts:[\"GF;Montserrat-600\"],name:\"app store\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.mycompany.fitcommit \",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-15m6821 framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1008\",name:\"Frame 1008\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yv5f1u\",\"data-framer-name\":\"Frame 1475\",name:\"Frame 1475\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1uiu99s\",\"data-framer-name\":\"\u0421\u043B\u043E\u0439_2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:16,name:\"\u0421\u043B\u043E\u0439_2\",svg:'<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.90064 0.250198C1.79033 -0.332937 0.476021 0.159471 0 1.14623L7.28498 8L11 4.50507L2.90064 0.250198Z\" fill=\"url(#paint0_linear_2675_4027)\"/>\\n<path d=\"M11 12.9317L7.28498 9L0 16.7103C0.476433 17.8208 1.79075 18.3743 2.90064 17.7187L11 12.9317Z\" fill=\"url(#paint1_linear_2675_4027)\"/>\\n<path d=\"M14.9611 9.70574C15.6534 9.33298 15.9996 8.66669 16 8C15.9996 7.33331 15.6534 6.66663 14.9611 6.29426L11.6285 4.5L8 8L11.6285 11.5L14.9611 9.70574Z\" fill=\"url(#paint2_linear_2675_4027)\"/>\\n<path d=\"M0.198632 1.5C0.0741557 1.76518 0 2.06387 0 2.38462V15.6133C0 15.9361 0.0723901 16.234 0.198632 16.5L8 8.99873L0.198632 1.5Z\" fill=\"url(#paint3_linear_2675_4027)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2675_4027\" x1=\"4.80233\" y1=\"-0.0474952\" x2=\"7.44185\" y2=\"12.2342\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#35AB4A\"/>\\n<stop offset=\"0.2968\" stop-color=\"#31A145\"/>\\n<stop offset=\"0.7979\" stop-color=\"#288739\"/>\\n<stop offset=\"1\" stop-color=\"#237A33\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2675_4027\" x1=\"5.2373\" y1=\"8.93963\" x2=\"6.17709\" y2=\"27.7204\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F14E5D\"/>\\n<stop offset=\"0.4986\" stop-color=\"#EA3D4F\"/>\\n<stop offset=\"1\" stop-color=\"#E12138\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2675_4027\" x1=\"11.5491\" y1=\"4.46641\" x2=\"12.898\" y2=\"15.6272\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD844\"/>\\n<stop offset=\"0.519\" stop-color=\"#FFC63F\"/>\\n<stop offset=\"1\" stop-color=\"#FFB03A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2675_4027\" x1=\"3.46639\" y1=\"1.32108\" x2=\"4.16759\" y2=\"16.9839\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0027\" stop-color=\"#0090E6\"/>\\n<stop offset=\"1\" stop-color=\"#0065A0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12.5px\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12.5px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"google play\"})})}),className:\"framer-1kbrnwu\",\"data-framer-name\":\"google play\",fonts:[\"GF;Montserrat-600\"],name:\"google play\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://dami.wecommit.ai\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-17lrjxe framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1009\",name:\"Frame 1009\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m93830\",\"data-framer-name\":\"Frame 1475\",name:\"Frame 1475\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Web App\"})}),className:\"framer-hw49jp\",\"data-framer-name\":\"google play\",fonts:[\"GF;Montserrat-600\"],name:\"google play\",verticalAlignment:\"top\",withExternalLayout:true})})})})]})})]})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdqcsg hidden-ro665a hidden-1hk4qf2\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-gp4dw2 hidden-ro665a\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6224),positionX:\"center\",positionY:\"center\",sizes:\"163px\",src:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png\",srcSet:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png 980w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png\",srcSet:\"https://framerusercontent.com/images/cta87ne2htExUlB4CcKIR5kJVE.png 980w\"},className:\"framer-wx18j5 hidden-ro665a\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(6334),positionX:\"center\",positionY:\"center\",sizes:\"108px\",src:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png\",srcSet:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png 644w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png\",srcSet:\"https://framerusercontent.com/images/JHQN7ytpGELF7quSEzDg2Wm5g.png 644w\"},className:\"framer-2ed7ia hidden-ro665a\",\"data-framer-name\":\"iphone-12-pro--silver\",name:\"iphone-12-pro--silver\"})})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"Start to achieve\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"with AI today!\"})]}),className:\"framer-k627v hidden-ro665a hidden-1hk4qf2\",\"data-framer-name\":\"Start to achieve with AI today!\",fonts:[\"GF;Montserrat-700\"],name:\"Start to achieve with AI today!\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-c1jn8u hidden-ro665a hidden-1hk4qf2\",\"data-framer-name\":\"Group 173\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:42,name:\"Group 173\",svg:'<svg width=\"42\" height=\"33\" viewBox=\"0 0 42 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g filter=\"url(#filter0_f_2675_4164)\">\\n<rect y=\"1\" width=\"42\" height=\"32\" rx=\"9.45\" fill=\"url(#paint0_linear_2675_4164)\"/>\\n</g>\\n<g filter=\"url(#filter1_f_2675_4164)\">\\n<path d=\"M12 0L12 5\" stroke=\"white\" stroke-width=\"2.646\" stroke-linecap=\"round\"/>\\n<path d=\"M30 0L30 5\" stroke=\"white\" stroke-width=\"2.646\" stroke-linecap=\"round\"/>\\n</g>\\n<g opacity=\"0.3\" filter=\"url(#filter2_f_2675_4164)\">\\n<mask id=\"mask0_2675_4164\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"1\" width=\"42\" height=\"32\">\\n<rect y=\"1\" width=\"42\" height=\"32\" rx=\"7.938\" fill=\"url(#paint1_linear_2675_4164)\"/>\\n</mask>\\n<g mask=\"url(#mask0_2675_4164)\">\\n<path d=\"M-2 21.2859C1.31438 17.9431 12.836 10.8171 28.7016 18.295C38.8138 23.0612 43.1287 23.7307 44.4885 23.3148V22.1216C45.0842 22.5063 45.2517 23.0815 44.4885 23.3148V32.1941L39.1681 36.9444L5.32652 38L0.267733 29.7309L-2 21.2859Z\" fill=\"white\"/>\\n</g>\\n</g>\\n<g filter=\"url(#filter3_f_2675_4164)\">\\n<path d=\"M24.6438 9C25.9451 9 27.0413 10.0939 26.5433 11.2961C26.2417 12.0241 25.7998 12.6855 25.2426 13.2426C24.6855 13.7998 24.0241 14.2417 23.2961 14.5433C22.5681 14.8448 21.7879 15 21 15C20.2121 15 19.4319 14.8448 18.7039 14.5433C17.9759 14.2417 17.3145 13.7998 16.7574 13.2426C16.2002 12.6855 15.7583 12.0241 15.4567 11.2961C14.9587 10.0939 16.0549 9 17.3562 9L21 9H24.6438Z\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter4_f_2675_4164)\">\\n<circle cx=\"9.5\" cy=\"24.5\" r=\"1.5\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter5_f_2675_4164)\">\\n<circle cx=\"17.5\" cy=\"24.5\" r=\"1.5\" fill=\"white\"/>\\n</g>\\n<g filter=\"url(#filter6_f_2675_4164)\">\\n<circle cx=\"25.5\" cy=\"24.5\" r=\"1.5\" fill=\"white\"/>\\n</g>\\n<defs>\\n<filter id=\"filter0_f_2675_4164\" x=\"-1.89\" y=\"-0.89\" width=\"45.78\" height=\"35.78\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.945\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter1_f_2675_4164\" x=\"10.4122\" y=\"-1.5876\" width=\"21.1757\" height=\"8.1752\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.1323\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter2_f_2675_4164\" x=\"-1.323\" y=\"13.677\" width=\"44.646\" height=\"20.646\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.6615\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter3_f_2675_4164\" x=\"14.8048\" y=\"8.4708\" width=\"12.3904\" height=\"7.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter4_f_2675_4164\" x=\"7.4708\" y=\"22.4708\" width=\"4.0584\" height=\"4.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter5_f_2675_4164\" x=\"15.4708\" y=\"22.4708\" width=\"4.0584\" height=\"4.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<filter id=\"filter6_f_2675_4164\" x=\"23.4708\" y=\"22.4708\" width=\"4.0584\" height=\"4.0584\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\">\\n<feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/>\\n<feBlend mode=\"normal\" in=\"SourceGraphic\" in2=\"BackgroundImageFix\" result=\"shape\"/>\\n<feGaussianBlur stdDeviation=\"0.2646\" result=\"effect1_foregroundBlur_2675_4164\"/>\\n</filter>\\n<linearGradient id=\"paint0_linear_2675_4164\" x1=\"1.93846\" y1=\"2.80451\" x2=\"47.2449\" y2=\"30.5981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#D3FF52\"/>\\n<stop offset=\"0.473419\" stop-color=\"#68C2FF\"/>\\n<stop offset=\"1\" stop-color=\"#D3FF52\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2675_4164\" x1=\"1.93846\" y1=\"2.80451\" x2=\"47.2449\" y2=\"30.5981\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#5953B3\"/>\\n<stop offset=\"0.473419\" stop-color=\"#5499C8\"/>\\n<stop offset=\"1\" stop-color=\"#5953B3\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oecfpk hidden-ro665a hidden-1hk4qf2\",children:[isDisplayed()&&/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/kr/app/dami-dream-goal-achieve-ai/id6661021220\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-qp8yqn hidden-ro665a framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1006\",name:\"Frame 1006\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ow0xry\",\"data-framer-name\":\"Frame 1475\",name:\"Frame 1475\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-dmhra8\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:15,name:\"Group\",svg:'<svg width=\"15\" height=\"18\" viewBox=\"0 0 15 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M14.0621 6.29847C13.9857 6.34583 12.1671 7.34514 12.1671 9.56085C12.2528 12.0877 14.4621 12.9739 14.5 12.9739C14.4621 13.0212 14.1665 14.1811 13.2907 15.3968C12.5956 16.4441 11.8242 17.5 10.6528 17.5C9.5385 17.5 9.1385 16.802 7.85278 16.802C6.47203 16.802 6.08135 17.5 5.0242 17.5C3.85277 17.5 3.02419 16.3875 2.29127 15.3501C1.3391 13.9923 0.529778 11.8614 0.501206 9.81544C0.481952 8.73126 0.69189 7.66553 1.22481 6.76031C1.97699 5.49656 3.31985 4.63869 4.78631 4.6104C5.90992 4.57289 6.90992 5.37419 7.59563 5.37419C8.25278 5.37419 9.48135 4.6104 10.8714 4.6104C11.4714 4.61102 13.0714 4.78997 14.0621 6.29847ZM7.5006 4.39394C7.3006 3.40385 7.85278 2.41376 8.36706 1.7822C9.02421 1.01841 10.0621 0.5 10.9571 0.5C11.0143 1.49009 10.6522 2.46111 10.005 3.16832C9.42421 3.9321 8.42421 4.50709 7.5006 4.39394Z\" fill=\"#D3FF52\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"app store\"})}),className:\"framer-15flvux\",\"data-framer-name\":\"app store\",fonts:[\"GF;Montserrat-600\"],name:\"app store\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/apps/details?id=com.mycompany.fitcommit \",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1lijz1h framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1008\",name:\"Frame 1008\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bnjppf\",\"data-framer-name\":\"Frame 1475\",name:\"Frame 1475\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17izsdh\",\"data-framer-name\":\"\u0421\u043B\u043E\u0439_2\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:16,name:\"\u0421\u043B\u043E\u0439_2\",svg:'<svg width=\"16\" height=\"18\" viewBox=\"0 0 16 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M2.90064 0.250198C1.79033 -0.332937 0.476021 0.159471 0 1.14623L7.28498 8L11 4.50507L2.90064 0.250198Z\" fill=\"url(#paint0_linear_2675_4027)\"/>\\n<path d=\"M11 12.9317L7.28498 9L0 16.7103C0.476433 17.8208 1.79075 18.3743 2.90064 17.7187L11 12.9317Z\" fill=\"url(#paint1_linear_2675_4027)\"/>\\n<path d=\"M14.9611 9.70574C15.6534 9.33298 15.9996 8.66669 16 8C15.9996 7.33331 15.6534 6.66663 14.9611 6.29426L11.6285 4.5L8 8L11.6285 11.5L14.9611 9.70574Z\" fill=\"url(#paint2_linear_2675_4027)\"/>\\n<path d=\"M0.198632 1.5C0.0741557 1.76518 0 2.06387 0 2.38462V15.6133C0 15.9361 0.0723901 16.234 0.198632 16.5L8 8.99873L0.198632 1.5Z\" fill=\"url(#paint3_linear_2675_4027)\"/>\\n<defs>\\n<linearGradient id=\"paint0_linear_2675_4027\" x1=\"4.80233\" y1=\"-0.0474952\" x2=\"7.44185\" y2=\"12.2342\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#35AB4A\"/>\\n<stop offset=\"0.2968\" stop-color=\"#31A145\"/>\\n<stop offset=\"0.7979\" stop-color=\"#288739\"/>\\n<stop offset=\"1\" stop-color=\"#237A33\"/>\\n</linearGradient>\\n<linearGradient id=\"paint1_linear_2675_4027\" x1=\"5.2373\" y1=\"8.93963\" x2=\"6.17709\" y2=\"27.7204\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#F14E5D\"/>\\n<stop offset=\"0.4986\" stop-color=\"#EA3D4F\"/>\\n<stop offset=\"1\" stop-color=\"#E12138\"/>\\n</linearGradient>\\n<linearGradient id=\"paint2_linear_2675_4027\" x1=\"11.5491\" y1=\"4.46641\" x2=\"12.898\" y2=\"15.6272\" gradientUnits=\"userSpaceOnUse\">\\n<stop stop-color=\"#FFD844\"/>\\n<stop offset=\"0.519\" stop-color=\"#FFC63F\"/>\\n<stop offset=\"1\" stop-color=\"#FFB03A\"/>\\n</linearGradient>\\n<linearGradient id=\"paint3_linear_2675_4027\" x1=\"3.46639\" y1=\"1.32108\" x2=\"4.16759\" y2=\"16.9839\" gradientUnits=\"userSpaceOnUse\">\\n<stop offset=\"0.0027\" stop-color=\"#0090E6\"/>\\n<stop offset=\"1\" stop-color=\"#0065A0\"/>\\n</linearGradient>\\n</defs>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"google play\"})}),className:\"framer-1dgoetb\",\"data-framer-name\":\"google play\",fonts:[\"GF;Montserrat-600\"],name:\"google play\",verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://dami.wecommit.ai\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-13ntroz framer-xezgvs\",\"data-border\":true,\"data-framer-name\":\"Frame 1009\",name:\"Frame 1009\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-yj3m9a\",\"data-framer-name\":\"Frame 1475\",name:\"Frame 1475\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12.5px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"139%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(211, 255, 82)\",\"--framer-text-transform\":\"capitalize\"},children:\"Web App\"})}),className:\"framer-irl5qs\",\"data-framer-name\":\"google play\",fonts:[\"GF;Montserrat-600\"],name:\"google play\",verticalAlignment:\"top\",withExternalLayout:true})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-h1ts3t\",children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation1,className:\"framer-diskrk\",\"data-framer-appear-id\":\"diskrk\",\"data-framer-name\":\"web\",id:elementId8,initial:animation2,name:\"web\",optimized:true,ref:ref10,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-o3iia0\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-pvcs61\",\"data-framer-name\":\"Ellipse\",name:\"Ellipse\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"About Us\"})}),transformTemplate:undefined},XjnBlcXPa:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-transform\":\"capitalize\"},children:\"About Us\"})}),transformTemplate:undefined}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"75px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"75px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"About Us\"})})}),className:\"framer-17mh25a\",\"data-framer-name\":\"About Us\",fonts:[\"GF;Montserrat-700\"],name:\"About Us\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"16px\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"16px\",\"--framer-font-weight\":\"300\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"lowercase\"},children:\"our team introduction\"})})}),className:\"framer-1wkbh3n\",\"data-framer-name\":\"our team introduction\",fonts:[\"GF;Montserrat-300\"],name:\"our team introduction\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mdr83j hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975211\",name:\"Group 81975211\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i45wuw\",\"data-framer-name\":\"Group 81975208\",name:\"Group 81975208\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lijqja\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-153te9v\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9898),sizes:\"224px\",src:\"https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png\",srcSet:\"https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(10339),sizes:\"224px\",src:\"https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png\",srcSet:\"https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png 2500w\"},className:\"framer-m64iwv\",\"data-framer-name\":\"Gradient Professional Linkedin Profile Picture_20240102_140611_0000 2\",name:\"Gradient Professional Linkedin Profile Picture_20240102_140611_0000 2\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"IBRAR ALI KHAN\"})})}),className:\"framer-1uvonjz\",\"data-framer-name\":\"IBRAR ALI KHAN\",fonts:[\"GF;Montserrat-regular\"],name:\"IBRAR ALI KHAN\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p9pvpu\",\"data-framer-name\":\"Group 81975226\",name:\"Group 81975226\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"10000+ hours of coaching as per international standards\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"accountability coaching with adhd patients\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-line-height\":\"130%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"BA in social work, BS in psychology\"})]}),className:\"framer-1ophxcr\",\"data-framer-name\":\"5 years + life & business coach, content creator 10000+ hours of coaching as per international standards accountability coaching with adhd patients BA in social work, BS in psychology\",fonts:[\"GF;Montserrat-300\"],name:\"5 years + life & business coach, content creator 10000+ hours of coaching as per international standards accountability coaching with adhd patients BA in social work, BS in psychology\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-alignment\":\"right\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-decoration\":\"underline\"},children:\"5 years + life & business coach, content creator\"})}),className:\"framer-xmr4ng\",\"data-framer-name\":\"KAIST, Department of Computer Science '13\",fonts:[\"GF;Montserrat-700\"],name:\"KAIST, Department of Computer Science '13\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"special thanks to\"})})}),className:\"framer-1xiv4yg\",\"data-framer-name\":\"special thanks to\",fonts:[\"GF;Montserrat-600\"],name:\"special thanks to\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10g5qhd hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975200\",name:\"Group 81975200\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f3p1ke\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r84tlo\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(7852),positionX:\"center\",positionY:\"center\",sizes:\"249px\",src:\"https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png\",srcSet:\"https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png 996w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8225),positionX:\"center\",positionY:\"center\",sizes:\"249px\",src:\"https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png\",srcSet:\"https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png 996w\"},className:\"framer-1xh3q09\",\"data-framer-name\":\"image 35\",name:\"image 35\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Soojin\"})})}),className:\"framer-1qrahbh\",\"data-framer-name\":\"Soojin\",fonts:[\"GF;Montserrat-regular\"],name:\"Soojin\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ato8a\",\"data-framer-name\":\"Group 81975203\",name:\"Group 81975203\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Leader & Overall Coordinator\"})})}),className:\"framer-1dpb6mh\",\"data-framer-name\":\"Leader & Overall Coordinator\",fonts:[\"GF;Montserrat-600\"],name:\"Leader & Overall Coordinator\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgb(255, 255, 255)\",\"--framer-text-decoration\":\"underline\"},children:\"Department of Electrical and Computer Engineering '16\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University, \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Department of Electrical and Computer Engineering '16\"})})]}),className:\"framer-15xoq3q\",\"data-framer-name\":\"Seoul National University, Department of Electrical and Computer Engineering '16\",fonts:[\"GF;Montserrat-700\"],name:\"Seoul National University, Department of Electrical and Computer Engineering '16\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Current Developer at Mind Logic (Virtual Partner AI Development)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Former Developer at Spoon (Chat Server, Voice Synthesis)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"IBK Special Award at Fintech Week Demo Day\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Encouragement Award for Excellent Case of Data Utilization \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"from the Korea Information Society Agency (Aihub)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Outstanding Award at KPMG Microsoft AI Ideathon\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Grand Prize at the 3rd AI Chatbot Competition \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"by the Korea Artificial Intelligence Institute\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Completed AI Practitioner Course at\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\" Yangjae R&CD Innovation Hub, KAIST\"})})]}),className:\"framer-uxq2mm\",\"data-framer-name\":\"Current Developer at Mind Logic (Virtual Partner AI Development) Former Developer at Spoon (Chat Server, Voice Synthesis) IBK Special Award at Fintech Week Demo Day Encouragement Award for Excellent Case of Data Utilization from the Korea Information Society Agency (Aihub) Outstanding Award at KPMG Microsoft AI Ideathon Grand Prize at the 3rd AI Chatbot Competition by the Korea Artificial Intelligence Institute Completed AI Practitioner Course at Yangjae R&CD Innovation Hub, KAIST\",fonts:[\"GF;Montserrat-300\"],name:\"Current Developer at Mind Logic (Virtual Partner AI Development) Former Developer at Spoon (Chat Server, Voice Synthesis) IBK Special Award at Fintech Week Demo Day Encouragement Award for Excellent Case of Data Utilization from the Korea Information Society Agency (Aihub) Outstanding Award at KPMG Microsoft AI Ideathon Grand Prize at the 3rd AI Chatbot Competition by the Korea Artificial Intelligence Institute Completed AI Practitioner Course at Yangjae R&CD Innovation Hub, KAIST\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y466op hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975201\",name:\"Group 81975201\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o4bsfy\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-6uav55\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8582),src:\"https://framerusercontent.com/images/5nkZ8zYmonyagWFQT05wrVMw58.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8955),src:\"https://framerusercontent.com/images/5nkZ8zYmonyagWFQT05wrVMw58.png\"},className:\"framer-105tryz\",\"data-framer-name\":\"image 2867\",name:\"image 2867\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"SangYoon\"})})}),className:\"framer-1aeokzb\",\"data-framer-name\":\"SangYoon\",fonts:[\"GF;Montserrat-regular\"],name:\"SangYoon\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y4e1py\",\"data-framer-name\":\"Group 81975202\",name:\"Group 81975202\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Planning\"})})}),className:\"framer-zev96c\",\"data-framer-name\":\"Planning\",fonts:[\"GF;Montserrat-600\"],name:\"Planning\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"KAIST, Department of Mechanical Engineering\"})})}),className:\"framer-hvepte\",\"data-framer-name\":\"KAIST, Department of Mechanical Engineering\",fonts:[\"GF;Montserrat-700\"],name:\"KAIST, Department of Mechanical Engineering\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Korea Advanced Institute of Science and Technology\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Ph.D. Candidate in Mechanical Engineering (2021-Now)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Korea Advanced Institute of Science and Technology\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"M.S. in Mechanical Engineering (2019-2021)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Korea Advanced Institute of Science and Technology\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"B.S. in Mechanical Engineering (2014-2019)\"})})]}),className:\"framer-jodp3v\",\"data-framer-name\":\"Korea Advanced Institute of Science and Technology Ph.D. Candidate in Mechanical Engineering (2021-Now) Korea Advanced Institute of Science and Technology M.S. in Mechanical Engineering (2019-2021) Korea Advanced Institute of Science and Technology B.S. in Mechanical Engineering (2014-2019)\",fonts:[\"GF;Montserrat-300\"],name:\"Korea Advanced Institute of Science and Technology Ph.D. Candidate in Mechanical Engineering (2021-Now) Korea Advanced Institute of Science and Technology M.S. in Mechanical Engineering (2019-2021) Korea Advanced Institute of Science and Technology B.S. in Mechanical Engineering (2014-2019)\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t4y9gx hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975199\",name:\"Group 81975199\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9n8wo6\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-8v3wx1\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8206),sizes:\"288px\",src:\"https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png\",srcSet:\"https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png?scale-down-to=1024 767w,https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png?scale-down-to=2048 1535w,https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8579),sizes:\"288px\",src:\"https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png\",srcSet:\"https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png?scale-down-to=1024 767w,https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png?scale-down-to=2048 1535w,https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png 2000w\"},className:\"framer-420jd7\",\"data-framer-name\":\"image 97\",name:\"image 97\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Sena\"})})}),className:\"framer-1330v66\",\"data-framer-name\":\"Sena\",fonts:[\"GF;Montserrat-regular\"],name:\"Sena\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lsoyl4\",\"data-framer-name\":\"Group 81975198\",name:\"Group 81975198\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Planning & Design\"})})}),className:\"framer-1jx2267\",\"data-framer-name\":\"Planning & Design\",fonts:[\"GF;Montserrat-600\"],name:\"Planning & Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"uxui designer\"})})}),className:\"framer-1j1zhew\",\"data-framer-name\":\"uxui designer\",fonts:[\"GF;Montserrat-700\"],name:\"uxui designer\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Designer at Coupang | 2011.10 \u2013 2015.06\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at O2U X | 2019.08 \u2013 2020.03\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at XTI | 2020.07 \u2013 2023.01\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at BREX.ep | 2023.03 \u2013 2023.07\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at Rabbit Corporation\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Experience in building and operating platforms\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"for Shinhan Bank, KB Kookmin Bank,\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"SK Telecom, Hanwha.\"})})]}),className:\"framer-9neibs\",\"data-framer-name\":\"Designer at Coupang | 2011.10 \u2013 2015.06 UX/UI Designer at O2U X | 2019.08 \u2013 2020.03 UX/UI Designer at XTI | 2020.07 \u2013 2023.01 UX/UI Designer at BREX.ep | 2023.03 \u2013 2023.07 UX/UI Designer at Rabbit Corporation Experience in building and operating platforms for Shinhan Bank, KB Kookmin Bank, SK Telecom, Hanwha.\",fonts:[\"GF;Montserrat-300\"],name:\"Designer at Coupang | 2011.10 \u2013 2015.06 UX/UI Designer at O2U X | 2019.08 \u2013 2020.03 UX/UI Designer at XTI | 2020.07 \u2013 2023.01 UX/UI Designer at BREX.ep | 2023.03 \u2013 2023.07 UX/UI Designer at Rabbit Corporation Experience in building and operating platforms for Shinhan Bank, KB Kookmin Bank, SK Telecom, Hanwha.\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5cbj5 hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975204\",name:\"Group 81975204\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l6mxgp\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-45t6wj\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8910),positionX:\"center\",positionY:\"center\",sizes:\"296px\",src:\"https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png\",srcSet:\"https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png?scale-down-to=512 512w,https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png 1184w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(9283),positionX:\"center\",positionY:\"center\",sizes:\"296px\",src:\"https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png\",srcSet:\"https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png?scale-down-to=512 512w,https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/OFHENVYvdOtDSMdbF3vvfPSYpzk.png 1184w\"},className:\"framer-v2ay9j\",\"data-framer-name\":\"%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-08-04%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%208.58.10 1\",name:\"%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-08-04%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%208.58.10 1\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"juho\"})})}),className:\"framer-q10uzu\",\"data-framer-name\":\"juho\",fonts:[\"GF;Montserrat-regular\"],name:\"juho\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-caj0zo\",\"data-framer-name\":\"Group 81975198\",name:\"Group 81975198\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Front-end,\\xa0Service Back-end\"})})}),className:\"framer-2zdn18\",\"data-framer-name\":\"Front-end,\\xa0Service Back-end\",fonts:[\"GF;Montserrat-600\"],name:\"Front-end,\\xa0Service Back-end\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University,\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\" Department of Materials Science and Engineering '16\"})})]}),className:\"framer-1f0j69a\",\"data-framer-name\":\"Seoul National University, Department of Materials Science and Engineering '16\",fonts:[\"GF;Montserrat-700\"],name:\"Seoul National University, Department of Materials Science and Engineering '16\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Grayzip Front-End Developer\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"#flutter #firebase\"})})]}),className:\"framer-1kqn93f\",\"data-framer-name\":\"Grayzip Front-End Developer #flutter #firebase\",fonts:[\"GF;Montserrat-300\"],name:\"Grayzip Front-End Developer #flutter #firebase\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17n5q3t hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975210\",name:\"Group 81975210\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ob9cer\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-lb9h5v\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9579),sizes:\"200px\",src:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png\",srcSet:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png 759w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9952),sizes:\"200px\",src:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png\",srcSet:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png 759w\"},className:\"framer-5vpu25\",\"data-framer-name\":\"6df981b4aee79e44 1\",name:\"6df981b4aee79e44 1\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Cheol Min\\xa0\"})})}),className:\"framer-emahis\",\"data-framer-name\":\"Cheol Min\\xa0\",fonts:[\"GF;Montserrat-regular\"],name:\"Cheol Min\\xa0\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bkmyny\",\"data-framer-name\":\"Group 81975209\",name:\"Group 81975209\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI back-end\"})})}),className:\"framer-11y7yjr\",\"data-framer-name\":\"AI back-end\",fonts:[\"GF;Montserrat-600\"],name:\"AI back-end\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"KAIST, Department of Computer Science '13\"})})}),className:\"framer-1wdnbdu\",\"data-framer-name\":\"KAIST, Department of Computer Science '13\",fonts:[\"GF;Montserrat-700\"],name:\"KAIST, Department of Computer Science '13\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\",\"--framer-text-alignment\":\"right\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Mind Logic Machine Learning Engineer (1y 6 m)\"})})}),className:\"framer-ukwmhd\",\"data-framer-name\":\"Mind Logic Machine Learning Engineer (1y 6 m)\",fonts:[\"GF;Montserrat-300\"],name:\"Mind Logic Machine Learning Engineer (1y 6 m)\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qszvtx hidden-1gxbh9e\",\"data-framer-name\":\"Group 81975207\",name:\"Group 81975207\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13rm5la\",\"data-framer-name\":\"Group 81975208\",name:\"Group 81975208\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1200yjh\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1n48cd7\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dnFQOxw2M:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(9296),positionX:\"center\",positionY:\"center\",sizes:\"266px\",src:\"https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png\",srcSet:\"https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png 1064w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(9669),positionX:\"center\",positionY:\"center\",sizes:\"266px\",src:\"https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png\",srcSet:\"https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png?scale-down-to=512 512w,https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rHWo2x4maaPPZm8tvIComQuHwM.png 1064w\"},className:\"framer-c7185\",\"data-framer-name\":\"image 96\",name:\"image 96\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"37.5px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"37.5px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Chang Hyeon\"})})}),className:\"framer-1injfbw\",\"data-framer-name\":\"Chang Hyeon\",fonts:[\"GF;Montserrat-regular\"],name:\"Chang Hyeon\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University,\\xa0\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Department of Physics and Astronomy '14\"})})]}),className:\"framer-11acc38\",\"data-framer-name\":\"Seoul National University,\\xa0 Department of Physics and Astronomy '14\",fonts:[\"GF;Montserrat-700\"],name:\"Seoul National University,\\xa0 Department of Physics and Astronomy '14\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Algorithm / NLP Developer at Samsung SDS\\xa0\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"(20.01 \u2013 21.09)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Co-Founder at HYPERNOVA Startup /\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"\\xa0Back-End, AI Developer (22.07 \u2013 24.01)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"AI Back-End\"})})]}),className:\"framer-1p3ztd6\",\"data-framer-name\":\"Algorithm / NLP Developer at Samsung SDS\\xa0 (20.01 \u2013 21.09) Co-Founder at HYPERNOVA Startup / \\xa0Back-End, AI Developer (22.07 \u2013 24.01) AI Back-End\",fonts:[\"GF;Montserrat-300\"],name:\"Algorithm / NLP Developer at Samsung SDS\\xa0 (20.01 \u2013 21.09) Co-Founder at HYPERNOVA Startup / \\xa0Back-End, AI Developer (22.07 \u2013 24.01) AI Back-End\",transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI Back-End, Service Back-End\"})})}),className:\"framer-1fx7ta2\",\"data-framer-name\":\"AI Back-End, Service Back-End\",fonts:[\"GF;Montserrat-600\"],name:\"AI Back-End, Service Back-End\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wqwuu9-container hidden-ro665a hidden-1hk4qf2\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0.2)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:0,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:40,showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:10,height:\"100%\",id:\"VEWstrpwF\",intervalControl:1.5,itemAmount:1,layoutId:\"VEWstrpwF\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-tbvpc1\",\"data-framer-name\":\"Frame 1511\",name:\"Frame 1511\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ogn6pn\",\"data-framer-name\":\"Frame 1494\",name:\"Frame 1494\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7bqagr\",\"data-framer-name\":\"Group 81975220\",name:\"Group 81975220\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2276nk\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1v3koaq\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"249px\",src:\"https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png\",srcSet:\"https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sa7lRaBLqK645WibXlNslnEYBwU.png 996w\"},className:\"framer-5cdurw\",\"data-framer-name\":\"image 35\",name:\"image 35\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Soojin\"})})}),className:\"framer-phyk7r\",\"data-framer-name\":\"Soojin\",fonts:[\"GF;Montserrat-regular\"],name:\"Soojin\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zk7z2s\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Leader & Overall Coordinator\"})})}),className:\"framer-sa0tro\",\"data-framer-name\":\"Leader & Overall Coordinator\",fonts:[\"GF;Montserrat-600\"],name:\"Leader & Overall Coordinator\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University, \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Department of Electrical and \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Computer Engineering '16\"})})]}),className:\"framer-bgp4o2\",\"data-framer-name\":\"Seoul National University, Department of Electrical and Computer Engineering '16\",fonts:[\"GF;Montserrat-700\"],name:\"Seoul National University, Department of Electrical and Computer Engineering '16\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Current Developer at Mind Logic (Virtual Partner AI Development)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Former Developer at Spoon (Chat Server, Voice Synthesis)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"IBK Special Award at Fintech Week Demo Day\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Encouragement Award for Excellent Case of Data Utilization \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"from the Korea Information Society Agency (Aihub)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Outstanding Award at KPMG Microsoft AI Ideathon\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Grand Prize at the 3rd AI Chatbot Competition \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"by the Korea Artificial Intelligence Institute\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Completed AI Practitioner Course at\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\" Yangjae R&CD Innovation Hub, KAIST\"})})]}),className:\"framer-15bwucs\",\"data-framer-name\":\"Current Developer at Mind Logic (Virtual Partner AI Development) Former Developer at Spoon (Chat Server, Voice Synthesis) IBK Special Award at Fintech Week Demo Day Encouragement Award for Excellent Case of Data Utilization from the Korea Information Society Agency (Aihub) Outstanding Award at KPMG Microsoft AI Ideathon Grand Prize at the 3rd AI Chatbot Competition by the Korea Artificial Intelligence Institute Completed AI Practitioner Course at Yangjae R&CD Innovation Hub, KAIST\",fonts:[\"GF;Montserrat-300\"],name:\"Current Developer at Mind Logic (Virtual Partner AI Development) Former Developer at Spoon (Chat Server, Voice Synthesis) IBK Special Award at Fintech Week Demo Day Encouragement Award for Excellent Case of Data Utilization from the Korea Information Society Agency (Aihub) Outstanding Award at KPMG Microsoft AI Ideathon Grand Prize at the 3rd AI Chatbot Competition by the Korea Artificial Intelligence Institute Completed AI Practitioner Course at Yangjae R&CD Innovation Hub, KAIST\",verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-dvhqjt\",\"data-framer-name\":\"Frame 1512\",name:\"Frame 1512\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-flrdmv\",\"data-framer-name\":\"Group 81975221\",name:\"Group 81975221\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-y2afd6\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-879evo\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"271px\",src:\"https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png\",srcSet:\"https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png?scale-down-to=1024 767w,https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png?scale-down-to=2048 1535w,https://framerusercontent.com/images/NGmoXIaLNF9bwo5EnGdBFY2AJA.png 2000w\"},className:\"framer-ku8fg5\",\"data-framer-name\":\"image 97\",name:\"image 97\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"sena\"})})}),className:\"framer-s0d303\",\"data-framer-name\":\"sena\",fonts:[\"GF;Montserrat-regular\"],name:\"sena\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-akds1w\",\"data-framer-name\":\"Frame 1495\",name:\"Frame 1495\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-eo9eid\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Planning & Design\"})})}),className:\"framer-1ek7b3h\",\"data-framer-name\":\"Planning & Design\",fonts:[\"GF;Montserrat-600\"],name:\"Planning & Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"uxui designer\"})})}),className:\"framer-3m9k9i\",\"data-framer-name\":\"uxui designer\",fonts:[\"GF;Montserrat-700\"],name:\"uxui designer\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Designer at Coupang | 2011.10 \u2013 2015.06\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at O2U X | 2019.08 \u2013 2020.03\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at XTI | 2020.07 \u2013 2023.01\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at BREX.ep | 2023.03 \u2013 2023.07\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"UX/UI Designer at Rabbit Corporation\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Experience in building and operating platforms\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"for Shinhan Bank, KB Kookmin Bank,\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"SK Telecom, Hanwha.\"})})]}),className:\"framer-1he7upi\",\"data-framer-name\":\"Designer at Coupang | 2011.10 \u2013 2015.06 UX/UI Designer at O2U X | 2019.08 \u2013 2020.03 UX/UI Designer at XTI | 2020.07 \u2013 2023.01 UX/UI Designer at BREX.ep | 2023.03 \u2013 2023.07 UX/UI Designer at Rabbit Corporation Experience in building and operating platforms for Shinhan Bank, KB Kookmin Bank, SK Telecom, Hanwha.\",fonts:[\"GF;Montserrat-300\"],name:\"Designer at Coupang | 2011.10 \u2013 2015.06 UX/UI Designer at O2U X | 2019.08 \u2013 2020.03 UX/UI Designer at XTI | 2020.07 \u2013 2023.01 UX/UI Designer at BREX.ep | 2023.03 \u2013 2023.07 UX/UI Designer at Rabbit Corporation Experience in building and operating platforms for Shinhan Bank, KB Kookmin Bank, SK Telecom, Hanwha.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-24um1\",\"data-framer-name\":\"Frame 1510\",name:\"Frame 1510\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12ie23a\",\"data-framer-name\":\"Group 81975225\",name:\"Group 81975225\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-14vzeug\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1gi7zrg\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"294.4882px\",src:\"https://framerusercontent.com/images/n2xBnWQ8JWQwU6ZDvv9EA7Yfehs.png\",srcSet:\"https://framerusercontent.com/images/n2xBnWQ8JWQwU6ZDvv9EA7Yfehs.png?scale-down-to=512 512w,https://framerusercontent.com/images/n2xBnWQ8JWQwU6ZDvv9EA7Yfehs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/n2xBnWQ8JWQwU6ZDvv9EA7Yfehs.png 1180w\"},className:\"framer-lhxuph\",\"data-framer-name\":\"%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-08-04%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%208.58.10 1\",name:\"%E1%84%89%E1%85%B3%E1%84%8F%E1%85%B3%E1%84%85%E1%85%B5%E1%86%AB%E1%84%89%E1%85%A3%E1%86%BA%202024-08-04%20%E1%84%8B%E1%85%A9%E1%84%92%E1%85%AE%208.58.10 1\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"juho\"})})}),className:\"framer-ouvj6o\",\"data-framer-name\":\"juho\",fonts:[\"GF;Montserrat-regular\"],name:\"juho\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18jjoqn\",\"data-framer-name\":\"Frame 1496\",name:\"Frame 1496\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gci3j1\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Front-end,\\xa0Service Back-end\"})})}),className:\"framer-13apyj2\",\"data-framer-name\":\"Front-end,\\xa0Service Back-end\",fonts:[\"GF;Montserrat-600\"],name:\"Front-end,\\xa0Service Back-end\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University,\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"\\xa0Department of Materials Science and Engineering '16\"})})]}),className:\"framer-1ip6ohx\",\"data-framer-name\":\"Seoul National University, \\xa0Department of Materials Science and Engineering '16\",fonts:[\"GF;Montserrat-700\"],name:\"Seoul National University, \\xa0Department of Materials Science and Engineering '16\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Grayzip Front-End Developer\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"#flutter #firebase\"})})]}),className:\"framer-1vmvd5t\",\"data-framer-name\":\"Grayzip Front-End Developer #flutter #firebase\",fonts:[\"GF;Montserrat-300\"],name:\"Grayzip Front-End Developer #flutter #firebase\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rce6vk\",\"data-framer-name\":\"Frame 1516\",name:\"Frame 1516\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2mgsal\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1huv365\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"265.6587px\",src:\"https://framerusercontent.com/images/7bP6CNC0Z2UnBuEETCKpD8lqCI.png\",srcSet:\"https://framerusercontent.com/images/7bP6CNC0Z2UnBuEETCKpD8lqCI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7bP6CNC0Z2UnBuEETCKpD8lqCI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7bP6CNC0Z2UnBuEETCKpD8lqCI.png 1064w\"},className:\"framer-2xf2qe\",\"data-framer-name\":\"image 96\",name:\"image 96\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d7qyz8\",\"data-framer-name\":\"Frame 1497\",name:\"Frame 1497\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-20cv5d\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Planning & Design\"})})}),className:\"framer-1e51tj\",\"data-framer-name\":\"Planning & Design\",fonts:[\"GF;Montserrat-600\"],name:\"Planning & Design\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Seoul National University,\\xa0\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Department of Physics and Astronomy '14\"})})]}),className:\"framer-15e01bv\",\"data-framer-name\":\"Seoul National University,\\xa0 Department of Physics and Astronomy '14\",fonts:[\"GF;Montserrat-700\"],name:\"Seoul National University,\\xa0 Department of Physics and Astronomy '14\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Algorithm / NLP Developer at Samsung SDS\\xa0\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"(20.01 \u2013 21.09)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Co-Founder at HYPERNOVA Startup /\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"\\xa0Back-End, AI Developer (22.07 \u2013 24.01)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"AI Back-End\"})})]}),className:\"framer-1o6u2kp\",\"data-framer-name\":\"Algorithm / NLP Developer at Samsung SDS\\xa0 (20.01 \u2013 21.09) Co-Founder at HYPERNOVA Startup / \\xa0Back-End, AI Developer (22.07 \u2013 24.01) AI Back-End\",fonts:[\"GF;Montserrat-300\"],name:\"Algorithm / NLP Developer at Samsung SDS\\xa0 (20.01 \u2013 21.09) Co-Founder at HYPERNOVA Startup / \\xa0Back-End, AI Developer (22.07 \u2013 24.01) AI Back-End\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Chang Hyeon\"})})}),className:\"framer-1fwp9w1\",\"data-framer-name\":\"Chang Hyeon\",fonts:[\"GF;Montserrat-regular\"],name:\"Chang Hyeon\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fmiq5m\",\"data-framer-name\":\"Frame 1513\",name:\"Frame 1513\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hzthwx\",\"data-framer-name\":\"Group 81975224\",name:\"Group 81975224\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-e71nd\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-czkyhd\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",src:\"https://framerusercontent.com/images/5nkZ8zYmonyagWFQT05wrVMw58.png\"},className:\"framer-11zj9cy\",\"data-framer-name\":\"image 2867\",name:\"image 2867\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"SangYoon\"})})}),className:\"framer-1lxpqd6\",\"data-framer-name\":\"SangYoon\",fonts:[\"GF;Montserrat-regular\"],name:\"SangYoon\",transformTemplate:transformTemplate3,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8e8d4z\",\"data-framer-name\":\"Frame 1498\",name:\"Frame 1498\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x6fkdy\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Planning\"})})}),className:\"framer-18lhnso\",\"data-framer-name\":\"Planning\",fonts:[\"GF;Montserrat-600\"],name:\"Planning\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"KAIST, Department of Mechanical Engineering\"})})}),className:\"framer-d4cn61\",\"data-framer-name\":\"KAIST, Department of Mechanical Engineering\",fonts:[\"GF;Montserrat-700\"],name:\"KAIST, Department of Mechanical Engineering\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Korea Advanced Institute of Science and Technology\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Ph.D. Candidate in Mechanical Engineering (2021-Now)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Korea Advanced Institute of Science and Technology\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"M.S. in Mechanical Engineering (2019-2021)\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Korea Advanced Institute of Science and Technology\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"B.S. in Mechanical Engineering (2014-2019)\"})})]}),className:\"framer-2idj15\",\"data-framer-name\":\"Korea Advanced Institute of Science and Technology Ph.D. Candidate in Mechanical Engineering (2021-Now) Korea Advanced Institute of Science and Technology M.S. in Mechanical Engineering (2019-2021) Korea Advanced Institute of Science and Technology B.S. in Mechanical Engineering (2014-2019)\",fonts:[\"GF;Montserrat-300\"],name:\"Korea Advanced Institute of Science and Technology Ph.D. Candidate in Mechanical Engineering (2021-Now) Korea Advanced Institute of Science and Technology M.S. in Mechanical Engineering (2019-2021) Korea Advanced Institute of Science and Technology B.S. in Mechanical Engineering (2014-2019)\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lczmte\",\"data-framer-name\":\"Frame 1517\",name:\"Frame 1517\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yktvo7\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-18h2thb\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"198.7795px\",src:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png\",srcSet:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png 759w\"},className:\"framer-100j8g8\",\"data-framer-name\":\"6df981b4aee79e44 1\",name:\"6df981b4aee79e44 1\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xnpqxf\",\"data-framer-name\":\"Frame 1499\",name:\"Frame 1499\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1h9lbx2\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"AI back-end\"})})}),className:\"framer-1vb9bsp\",\"data-framer-name\":\"AI back-end\",fonts:[\"GF;Montserrat-600\"],name:\"AI back-end\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"KAIST, Department of Computer \"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"15px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC03MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.06em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-decoration\":\"underline\"},children:\"Science '13\"})})]}),className:\"framer-1yol67u\",\"data-framer-name\":\"KAIST, Department of Computer Science '13\",fonts:[\"GF;Montserrat-700\"],name:\"KAIST, Department of Computer Science '13\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"Mind Logic Machine Learning Engineer (1y 6 m)\"})})}),className:\"framer-1wu7vr9\",\"data-framer-name\":\"Mind Logic Machine Learning Engineer (1y 6 m)\",fonts:[\"GF;Montserrat-300\"],name:\"Mind Logic Machine Learning Engineer (1y 6 m)\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"Cheol Min\"})})}),className:\"framer-1pkb76s\",\"data-framer-name\":\"Cheol Min\",fonts:[\"GF;Montserrat-regular\"],name:\"Cheol Min\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oevi3b\",\"data-framer-name\":\"Frame 1518\",name:\"Frame 1518\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-18uiaqe\",\"data-framer-name\":\"Mask group\",name:\"Mask group\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rftq4c\",\"data-framer-name\":\"Ellipse 755\",name:\"Ellipse 755\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"198.7795px\",src:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png\",srcSet:\"https://framerusercontent.com/images/3iK2xMmxnYwcwNtD4nogNIbnCY.png 759w\"},className:\"framer-2aqjrg\",\"data-framer-name\":\"6df981b4aee79e44 1\",name:\"6df981b4aee79e44 1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"224px\",src:\"https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png\",srcSet:\"https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/1ahdW9TZqXVRmBtHMgDZbG1XJuU.png 2500w\"},className:\"framer-anmpy\",\"data-framer-name\":\"Gradient Professional Linkedin Profile Picture_20240102_140611_0000 2\",name:\"Gradient Professional Linkedin Profile Picture_20240102_140611_0000 2\"})]})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-74rgs2\",\"data-framer-name\":\"Frame 1500\",name:\"Frame 1500\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g6yrpz\",\"data-framer-name\":\"Frame 1493\",name:\"Frame 1493\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"17px\",\"--framer-line-height\":\"100%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC02MDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgba(211, 255, 82, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"special thanks to\"})})}),className:\"framer-mrr7zz\",\"data-framer-name\":\"special thanks to\",fonts:[\"GF;Montserrat-600\"],name:\"special thanks to\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"5 years + life & business coach, content creator\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"10000+ hours of coaching as per international standards\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"accountability coaching with adhd patients\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"130%\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC0zMDA=\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.05em\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\"},children:\"BA in social work, BS in psychologyspecial thanks to\"})})]}),className:\"framer-1hg7qti\",\"data-framer-name\":\"5 years + life & business coach, content creator 10000+ hours of coaching as per international standards accountability coaching with adhd patients BA in social work, BS in psychologyspecial thanks to\",fonts:[\"GF;Montserrat-300\"],name:\"5 years + life & business coach, content creator 10000+ hours of coaching as per international standards accountability coaching with adhd patients BA in social work, BS in psychologyspecial thanks to\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"34px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7TW9udHNlcnJhdC1yZWd1bGFy\",\"--framer-font-family\":'\"Montserrat\"',\"--framer-font-size\":\"34px\",\"--framer-text-color\":\"rgba(255, 255, 255, 1)\",\"--framer-text-transform\":\"capitalize\"},children:\"IBRAR ALI KHAN\"})})}),className:\"framer-fl9dgt\",\"data-framer-name\":\"IBRAR ALI KHAN\",fonts:[\"GF;Montserrat-regular\"],name:\"IBRAR ALI KHAN\",verticalAlignment:\"top\",withExternalLayout:true})]})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})]})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{height:64,width:\"100vw\",y:0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wjfxbf-container hidden-ro665a hidden-1hk4qf2\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{variant:\"CUfOEalrl\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"bSaLWVtjM\",layoutId:\"bSaLWVtjM\",style:{width:\"100%\"},variant:\"TnYIf7aEW\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"footer\",{className:\"framer-onqy4u\",\"data-border\":true,\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1utem2f\",\"data-border\":true,\"data-framer-name\":\"Copyright\",name:\"Copyright\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hbhktt\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-134ks7k\",\"data-framer-name\":\"Copyright\",name:\"Copyright\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{XjnBlcXPa:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:\"\\xa9Wecommit - \"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\"},children:[\"we commit to your success\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 38, 66)\"},children:\". \"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 38, 66)\"},children:\"All rights reserved. 2024\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7RmlndHJlZS1yZWd1bGFy\",\"--framer-font-family\":'\"Figtree\", \"Figtree Placeholder\", sans-serif',\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\"},children:[\"\\xa9Wecommit - we commit to your success\",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 38, 66)\"},children:\". All rights reserved. 2024\"})]})}),className:\"framer-1ph388w\",fonts:[\"GF;Figtree-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fobkga\",\"data-framer-name\":\"Icons\",name:\"Icons\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://wecommit.ai\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-11ig7hx framer-xezgvs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12u3e3m-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 10)\",height:\"100%\",iconSearch:\"internet\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"XptoV79Zc\",layoutId:\"XptoV79Zc\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/we-commit/\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1lqdode framer-xezgvs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rq1b84-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 10)\",height:\"100%\",iconSearch:\"Linkedin\",iconSelection:\"Home\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"g69tyutPH\",layoutId:\"g69tyutPH\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(Link,{href:\"mailto:admin.wecommit.ai\",openInNewTab:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-jz3p6f framer-xezgvs\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10l145j-container\",children:/*#__PURE__*/_jsx(Material,{color:\"rgb(0, 0, 10)\",height:\"100%\",iconSearch:\"Linkedin\",iconSelection:\"Mail\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"hfA7Fo9EV\",layoutId:\"hfA7Fo9EV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})]})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-B3qY6 { background: rgb(0, 0, 0); }`,\".framer-B3qY6.framer-xezgvs, .framer-B3qY6 .framer-xezgvs { display: block; }\",\".framer-B3qY6.framer-ro665a { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-2vgzdi, .framer-B3qY6 .framer-1cws1gz, .framer-B3qY6 .framer-el4jxn, .framer-B3qY6 .framer-1vygw2c, .framer-B3qY6 .framer-qfmpl2, .framer-B3qY6 .framer-h1ts3t { 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: 100%; }\",\".framer-B3qY6 .framer-186o3th { align-content: center; align-items: center; background-color: #000000; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-B3qY6 .framer-1i4u3gc { background-color: #000000; flex: none; height: 737px; overflow: hidden; position: relative; width: 375px; }\",\".framer-B3qY6 .framer-17vwpd6 { flex: none; height: 746px; left: -78px; overflow: visible; position: absolute; top: 69px; width: 506px; }\",\".framer-B3qY6 .framer-1nnq4z0 { flex: none; height: 430px; left: 0px; overflow: visible; position: absolute; top: 196px; width: 506px; }\",\".framer-B3qY6 .framer-1k7y4u { flex: none; height: 430px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 506px; }\",\".framer-B3qY6 .framer-x5lykj { flex: none; height: 430px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 506px; }\",\".framer-B3qY6 .framer-1lmo8ug { flex: none; height: 434px; left: -15px; overflow: visible; position: absolute; top: 0px; width: 579px; }\",\".framer-B3qY6 .framer-1050z3q { aspect-ratio: 1.3333334270110917 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 434px); left: 0px; position: absolute; top: 0px; width: 579px; }\",\".framer-B3qY6 .framer-b5qa74 { flex: none; height: 407px; left: calc(50.777202072538884% - 291px / 2); position: absolute; top: calc(50.46082949308758% - 407px / 2); width: 291px; }\",\".framer-B3qY6 .framer-34t684 { background: linear-gradient(-7.442925209488749e-8deg, #000000 0%, rgba(0, 0, 0, 0) 100%); bottom: 100px; flex: none; height: 86px; left: calc(53.40721060364355% - 416px / 2); position: absolute; width: 416px; }\",\".framer-B3qY6 .framer-16xog0s { flex: none; height: 303px; left: 62px; position: absolute; top: 0px; width: 416px; }\",\".framer-B3qY6 .framer-1e6t1w9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-v7fll7 { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 29px; border-bottom-right-radius: 29px; border-top-left-radius: 29px; border-top-right-radius: 29px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 243px; overflow: visible; padding: 10px 16px 10px 16px; position: absolute; text-decoration: none; top: 120px; width: 112px; }\",\".framer-B3qY6 .framer-1c4qv7c, .framer-B3qY6 .framer-pf5n8o, .framer-B3qY6 .framer-1fm9bdf, .framer-B3qY6 .framer-urfyhy, .framer-B3qY6 .framer-nfglnf, .framer-B3qY6 .framer-1rxhpzp, .framer-B3qY6 .framer-1omcn4h, .framer-B3qY6 .framer-1cjc7u2, .framer-B3qY6 .framer-1pguix, .framer-B3qY6 .framer-13w07ci, .framer-B3qY6 .framer-1e0ze6l, .framer-B3qY6 .framer-7svtdo, .framer-B3qY6 .framer-sdhz1e, .framer-B3qY6 .framer-1ug4i94, .framer-B3qY6 .framer-1kjpk8y, .framer-B3qY6 .framer-vu22in, .framer-B3qY6 .framer-l5tefa, .framer-B3qY6 .framer-1knonj5, .framer-B3qY6 .framer-vjv2ad, .framer-B3qY6 .framer-ai5okn, .framer-B3qY6 .framer-1ay2bqi, .framer-B3qY6 .framer-107kmcl, .framer-B3qY6 .framer-dapius, .framer-B3qY6 .framer-q7b6d7, .framer-B3qY6 .framer-17yphdy, .framer-B3qY6 .framer-1qsdniu, .framer-B3qY6 .framer-dqhku1, .framer-B3qY6 .framer-1u9fz1d, .framer-B3qY6 .framer-1wacybt, .framer-B3qY6 .framer-1suey4r, .framer-B3qY6 .framer-8a26bw, .framer-B3qY6 .framer-f1yhk9, .framer-B3qY6 .framer-1kbrnwu, .framer-B3qY6 .framer-hw49jp, .framer-B3qY6 .framer-15flvux, .framer-B3qY6 .framer-1dgoetb, .framer-B3qY6 .framer-irl5qs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-8m52p0 { --border-bottom-width: 0.5859374403953552px; --border-color: #d3ff52; --border-left-width: 0.5859374403953552px; --border-right-width: 0.5859374403953552px; --border-style: solid; --border-top-width: 0.5859374403953552px; align-content: center; align-items: center; border-bottom-left-radius: 29px; border-bottom-right-radius: 29px; border-top-left-radius: 29px; border-top-right-radius: 29px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 119px; overflow: visible; padding: 10px 16px 10px 16px; position: absolute; text-decoration: none; top: 120px; width: 111px; }\",\".framer-B3qY6 .framer-1oo8r74 { flex: none; height: 39px; left: 30px; overflow: visible; position: absolute; top: 250px; width: 237px; }\",\".framer-B3qY6 .framer-zqy0oi { flex: none; height: 24px; left: 321px; position: absolute; top: 32px; width: 24px; }\",\".framer-B3qY6 .framer-bp1n55 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 14%; position: absolute; top: 36px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-16py8f { background-color: #000000; flex: none; height: 803px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-1c6gh61 { aspect-ratio: 1.3333333333333333 / 1; bottom: -39px; flex: none; opacity: 0.62; position: absolute; right: -270px; top: 0px; width: var(--framer-aspect-ratio-supported, 1123px); }\",\".framer-B3qY6 .framer-1pxtr5b { aspect-ratio: 0.8689320388349514 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 439px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 381px; }\",\".framer-B3qY6 .framer-2o0etv { bottom: -96px; flex: none; overflow: visible; position: absolute; right: -73px; top: 0px; width: 995px; }\",\".framer-B3qY6 .framer-1unxppl { flex: none; height: 803px; left: 52px; overflow: visible; position: absolute; top: 0px; width: 943px; }\",\".framer-B3qY6 .framer-1jsoml { flex: none; height: 803px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 943px; }\",\".framer-B3qY6 .framer-6d79mm { bottom: -7px; flex: none; left: -28px; overflow: visible; position: absolute; right: -109px; top: 0px; }\",\".framer-B3qY6 .framer-18zydbl { aspect-ratio: 1.3333333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 810px); left: 0px; position: absolute; top: 0px; width: 1080px; }\",\".framer-B3qY6 .framer-14ndl9q { aspect-ratio: 0.7147707979626485 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 748px); left: 50%; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 535px; }\",\".framer-B3qY6 .framer-1xbpl7h { background: linear-gradient(-90deg, #000000 0%, rgba(255, 255, 255, 0) 100%); bottom: 0px; flex: none; left: -28px; position: absolute; top: 0px; width: 337px; }\",\".framer-B3qY6 .framer-ts9riw { background: linear-gradient(-7.442925209488749e-8deg, #000000 0%, rgba(0, 0, 0, 0) 100%); bottom: 33px; flex: none; height: 245px; left: -4px; position: absolute; width: 926px; }\",\".framer-B3qY6 .framer-1thx3dt { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 87px; position: absolute; top: 250px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-twth2h { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 243px; overflow: visible; padding: 12.5px 21.25px 12.5px 21.25px; position: absolute; text-decoration: none; top: 435px; width: 138px; }\",\".framer-B3qY6 .framer-1ssgtvq { --border-bottom-width: 0.625px; --border-color: #d3ff52; --border-left-width: 0.625px; --border-right-width: 0.625px; --border-style: solid; --border-top-width: 0.625px; align-content: center; align-items: center; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 87px; overflow: visible; padding: 12.5px 21.25px 12.5px 21.25px; position: absolute; text-decoration: none; top: 435px; width: 137px; }\",\".framer-B3qY6 .framer-8rtyhk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; left: 88px; overflow: hidden; padding: 0px; position: absolute; top: 36px; width: min-content; }\",\".framer-B3qY6 .framer-wkzxqn { flex: none; height: 24px; position: relative; width: 30px; }\",\".framer-B3qY6 .framer-ncfzrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 46px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-1vks44b { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 964px; position: absolute; top: 38px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1hak7mu { aspect-ratio: 1.9672131147540983 / 1; background-color: #000000; flex: none; height: var(--framer-aspect-ratio-supported, 610px); overflow: visible; position: relative; scroll-margin-top: 30px; width: 1200px; }\",\".framer-B3qY6 .framer-mojvwa { flex: none; height: 100px; left: 536px; position: absolute; top: 194px; width: 127px; }\",\".framer-B3qY6 .framer-1h8drr7 { --framer-paragraph-spacing: 0px; bottom: 194px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre-wrap; width: 1200px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-sf6jw5 { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 313px; border-bottom-right-radius: 313px; border-top-left-radius: 313px; border-top-right-radius: 313px; box-shadow: 0px 2.5px 10px 0px rgba(0, 0, 0, 0.5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 41px; justify-content: center; left: 409px; overflow: visible; padding: 8.125px 18.75px 8.125px 18.75px; position: absolute; top: 318px; width: 109px; }\",\".framer-B3qY6 .framer-15we92s { aspect-ratio: 0.9243523316062177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 965px); overflow: hidden; position: relative; width: 892px; }\",\".framer-B3qY6 .framer-1yzdab { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 149px); left: 475px; position: absolute; right: 268px; top: 43px; }\",\".framer-B3qY6 .framer-1g2cmys { aspect-ratio: 0.4939516129032258 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 50%; position: absolute; top: 94px; transform: translateX(-50%); width: 200px; }\",\".framer-B3qY6 .framer-khg0yq { aspect-ratio: 0.4939516129032258 / 1; bottom: 191px; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 263px; position: absolute; width: 200px; }\",\".framer-B3qY6 .framer-1nww96c { aspect-ratio: 0.4939516129032258 / 1; bottom: 61px; flex: none; height: var(--framer-aspect-ratio-supported, 405px); left: 413px; position: absolute; width: 200px; }\",\".framer-B3qY6 .framer-xlxunf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-1xm0khn { background-color: #000000; flex: 1 0 0px; height: 1500px; overflow: hidden; position: relative; width: 1px; }\",\".framer-B3qY6 .framer-eeagmx { aspect-ratio: 0.9243523316062177 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 965px); left: 52%; overflow: hidden; position: absolute; top: 146px; transform: translateX(-50%); width: 892px; }\",\".framer-B3qY6 .framer-1222q9h { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 516px); position: absolute; right: 0px; top: 0px; width: 516px; }\",\".framer-B3qY6 .framer-lmtr1t { flex: none; height: 496px; left: calc(46.74887892376684% - 245px / 2); position: absolute; top: 160px; width: 245px; }\",\".framer-B3qY6 .framer-724z9 { bottom: 140px; flex: none; height: 496px; left: 0px; position: absolute; width: 245px; }\",\".framer-B3qY6 .framer-1l8fkyh { bottom: 0px; flex: none; height: 496px; left: 590px; position: absolute; width: 245px; }\",\".framer-B3qY6 .framer-1tubdcv { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 43%; mix-blend-mode: exclusion; position: absolute; top: 104px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1p2pwus { bottom: 115px; flex: none; height: 41px; left: calc(50.00000000000002% - 293px / 2); overflow: visible; position: absolute; width: 293px; }\",\".framer-B3qY6 .framer-7pmbda { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 76%; overflow: visible; padding: 12.5px 21.25px 12.5px 21.25px; position: absolute; text-decoration: none; top: 0px; transform: translateX(-50%); width: 138px; }\",\".framer-B3qY6 .framer-1uht0qa { --border-bottom-width: 0.625px; --border-color: #d3ff52; --border-left-width: 0.625px; --border-right-width: 0.625px; --border-style: solid; --border-top-width: 0.625px; align-content: center; align-items: center; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; left: 23%; overflow: visible; padding: 12.5px 21.25px 12.5px 21.25px; position: absolute; text-decoration: none; top: 0px; transform: translateX(-50%); width: 137px; }\",\".framer-B3qY6 .framer-1n0807h { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 1210px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1579jos { background-color: #000000; flex: none; height: 666px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-187oewz-container { bottom: 58px; flex: none; height: 416px; left: calc(50.00000000000002% - 240px / 2); position: absolute; width: 240px; }\",\".framer-B3qY6 .framer-1ju5u3q { background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1.401459813117981px 17.518247604370117px 0px rgba(0, 0, 0, 0.25); height: 416px; overflow: hidden; position: relative; width: 240px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-14a3o90, .framer-B3qY6 .framer-1j4kzfz, .framer-B3qY6 .framer-1abpype, .framer-B3qY6 .framer-1ylyom9, .framer-B3qY6 .framer-1m7lvu9, .framer-B3qY6 .framer-1yj0zel, .framer-B3qY6 .framer-evj115, .framer-B3qY6 .framer-ot5tbf, .framer-B3qY6 .framer-oo3a4w, .framer-B3qY6 .framer-16jxs3a, .framer-B3qY6 .framer-1ixm4vp { aspect-ratio: 1.1283880171184022 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 701px); left: -45px; position: absolute; top: 45px; width: 791px; }\",\".framer-B3qY6 .framer-upqvbf { bottom: -75px; flex: none; position: absolute; right: -247px; top: -210px; width: 396px; }\",\".framer-B3qY6 .framer-otxfl1, .framer-B3qY6 .framer-1g20cx4, .framer-B3qY6 .framer-11v8xfw, .framer-B3qY6 .framer-16dtb9a, .framer-B3qY6 .framer-f26uz4, .framer-B3qY6 .framer-cebmie, .framer-B3qY6 .framer-1q5qezi, .framer-B3qY6 .framer-1wmxe4a, .framer-B3qY6 .framer-tiu9n1, .framer-B3qY6 .framer-xwjtma, .framer-B3qY6 .framer-1r4zxyv, .framer-B3qY6 .framer-m398h5, .framer-B3qY6 .framer-6ln5we { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 174%; position: absolute; top: 41px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-b5ewhp, .framer-B3qY6 .framer-199kilh { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 339px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-178jmj4 { flex: none; height: 259px; left: 56px; position: absolute; top: 54px; width: 128px; }\",\".framer-B3qY6 .framer-18jfqkn { box-shadow: 0px 1.541605830192566px 19.27007293701172px 0px rgba(0, 0, 0, 0.6); flex: none; height: 77px; left: 126px; overflow: visible; position: absolute; top: 114px; width: 77px; }\",\".framer-B3qY6 .framer-1gwqnwh { aspect-ratio: 1 / 1; background-color: #d9d9d9; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 77px); left: 0px; position: absolute; top: 0px; width: 77px; }\",\".framer-B3qY6 .framer-i7tsti { flex: none; height: 77px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 77px; }\",\".framer-B3qY6 .framer-6d5w7h { border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 77px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 77px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-70nn6c { aspect-ratio: 1 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 111px); left: 64%; position: absolute; top: -21px; transform: translateX(-50%); width: 111px; }\",\".framer-B3qY6 .framer-14ueb64 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 77px); justify-content: center; left: 0px; opacity: 0.5; padding: 0px; position: absolute; top: 0px; width: 77px; }\",\".framer-B3qY6 .framer-lrxlxa, .framer-B3qY6 .framer-120n5yd { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-hsms10 { --framer-paragraph-spacing: 2.20229434967041px; flex: none; height: 29px; left: calc(50.649350649350644% - 62px / 2); position: absolute; top: 24px; white-space: pre-wrap; width: 62px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-muoroc { flex: none; height: 16px; left: 57px; position: absolute; top: 58px; width: 16px; }\",\".framer-B3qY6 .framer-jwt8i4 { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; box-shadow: 0px 1.401459813117981px 17.518247604370117px 0px rgba(0, 0, 0, 0.5); flex: none; height: 55px; left: 49px; overflow: visible; position: absolute; top: 217px; width: 56px; }\",\".framer-B3qY6 .framer-5qpk63, .framer-B3qY6 .framer-6qfif6 { flex: none; height: 55px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 55px; }\",\".framer-B3qY6 .framer-oo6h9j { aspect-ratio: 1 / 1; background-color: #d9d9d9; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 55px); left: 0px; position: absolute; top: 0px; width: 55px; }\",\".framer-B3qY6 .framer-19cp3q6 { border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: 55px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 55px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-4cf2qx { aspect-ratio: 1.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 68px); left: -11px; position: absolute; top: -10px; width: 102px; }\",\".framer-B3qY6 .framer-i4ik2a { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 55px); justify-content: center; left: 0px; opacity: 0.5; padding: 0px; position: absolute; top: 0px; width: 55px; }\",\".framer-B3qY6 .framer-tw3oj3 { --framer-paragraph-spacing: 20.762367248535156px; flex: none; height: 14px; left: calc(50.90909090909091% - 30px / 2); position: absolute; top: 20px; white-space: pre-wrap; width: 30px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-9m9o9e { flex: none; height: 16px; left: 40px; position: absolute; top: 37px; width: 16px; }\",\".framer-B3qY6 .framer-r08spe, .framer-B3qY6 .framer-j91mn8, .framer-B3qY6 .framer-1p4a9m, .framer-B3qY6 .framer-11vs8ha, .framer-B3qY6 .framer-1vzj5z8, .framer-B3qY6 .framer-1eso29t, .framer-B3qY6 .framer-1r5acoh, .framer-B3qY6 .framer-t2hvnn, .framer-B3qY6 .framer-usmehv, .framer-B3qY6 .framer-10szjof { background-color: #ffffff; height: 416px; overflow: hidden; position: relative; width: 240px; }\",\".framer-B3qY6 .framer-112j0j6, .framer-B3qY6 .framer-18gnq8d, .framer-B3qY6 .framer-1qcu5a1, .framer-B3qY6 .framer-1vlx5l2, .framer-B3qY6 .framer-1x02x1 { flex: none; height: 260px; left: 56px; position: absolute; top: 53px; width: 128px; }\",\".framer-B3qY6 .framer-1ywjw0s { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 353px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-v98o4v { --border-bottom-width: 1px; --border-color: #d3ff52; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 2.4833333333333334 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 60px); left: 50%; position: absolute; top: 196px; transform: translateX(-50%); width: 149px; }\",\".framer-B3qY6 .framer-mxn11z { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 4px 10px 4px 10px; position: absolute; top: 324px; transform: translateX(-50%); width: min-content; }\",\".framer-B3qY6 .framer-xmxu7a, .framer-B3qY6 .framer-1eyjmu1, .framer-B3qY6 .framer-ggkpej, .framer-B3qY6 .framer-7bygx7, .framer-B3qY6 .framer-qw27m6, .framer-B3qY6 .framer-otfj67, .framer-B3qY6 .framer-1pwxwin, .framer-B3qY6 .framer-1iat325, .framer-B3qY6 .framer-1trwb9m { flex: none; height: 701px; left: 131px; position: absolute; top: -149px; width: 396px; }\",\".framer-B3qY6 .framer-yucoyw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 345px; transform: translateX(-50%); white-space: pre-wrap; width: 135px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-4rmegr { --border-bottom-width: 1px; --border-color: #d3ff52; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 2.4776119402985075 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 67px); left: 50%; position: absolute; top: 193px; transform: translateX(-50%); width: 166px; }\",\".framer-B3qY6 .framer-htimhn { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 352px; transform: translateX(-50%); white-space: pre-wrap; width: 76px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1p78xsw, .framer-B3qY6 .framer-cmc747 { flex: none; height: 260px; left: 56px; position: absolute; top: 53px; width: 129px; }\",\".framer-B3qY6 .framer-wwkt1d { --border-bottom-width: 0.35036495327949524px; --border-color: #d3ff52; --border-left-width: 0.35036495327949524px; --border-right-width: 0.35036495327949524px; --border-style: solid; --border-top-width: 0.35036495327949524px; aspect-ratio: 0.8191489361702128 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 50%; position: absolute; top: 110px; transform: translateX(-50%); width: 154px; }\",\".framer-B3qY6 .framer-1w63fco { aspect-ratio: 1.7333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); left: -88px; position: absolute; top: 88px; width: 416px; }\",\".framer-B3qY6 .framer-v43y0q { flex: none; height: 701px; left: 131px; position: absolute; top: -163px; width: 396px; }\",\".framer-B3qY6 .framer-u8t49l { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 174%; position: absolute; top: 27px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-17k667i, .framer-B3qY6 .framer-10xgz0t { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 345px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-14gd9lh { --border-bottom-width: 0.35036495327949524px; --border-color: #dcfe6f; --border-left-width: 0.35036495327949524px; --border-right-width: 0.35036495327949524px; --border-style: solid; --border-top-width: 0.35036495327949524px; aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 75px); left: 38px; position: absolute; top: 99px; width: 75px; }\",\".framer-B3qY6 .framer-qyhb91 { --border-bottom-width: 0.35036495327949524px; --border-color: #dcfe6f; --border-left-width: 0.35036495327949524px; --border-right-width: 0.35036495327949524px; --border-style: solid; --border-top-width: 0.35036495327949524px; aspect-ratio: 1 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 75px); left: 133px; position: absolute; top: 168px; width: 75px; }\",\".framer-B3qY6 .framer-45dy1j { aspect-ratio: 1.1283880171184022 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 701px); left: -45px; position: absolute; top: 38px; width: 791px; }\",\".framer-B3qY6 .framer-1pwb3m1 { --border-bottom-width: 1px; --border-color: #d3ff52; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.6551724137931034 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 87px); left: 50%; position: absolute; top: 91px; transform: translateX(-50%); width: 144px; }\",\".framer-B3qY6 .framer-itt43h { --border-bottom-width: 1px; --border-color: #d3ff52; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 108px); left: 48px; position: absolute; top: 186px; width: 144px; }\",\".framer-B3qY6 .framer-7meyv3 { --border-bottom-width: 1px; --border-color: #d3ff52; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.8888888888888888 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 162px); left: 50%; position: absolute; top: 104px; transform: translateX(-50%); width: 144px; }\",\".framer-B3qY6 .framer-l0u7w5, .framer-B3qY6 .framer-oir8oc, .framer-B3qY6 .framer-og5ati, .framer-B3qY6 .framer-8kr02y { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 350px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-fcjxag { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.25 / 1; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 120px); left: 50%; position: absolute; top: 111px; transform: translateX(-50%); width: 150px; }\",\".framer-B3qY6 .framer-ghacj, .framer-B3qY6 .framer-d3b6r0 { flex: none; height: 260px; left: 56px; position: absolute; top: 55px; width: 129px; }\",\".framer-B3qY6 .framer-js9s0c, .framer-B3qY6 .framer-p31nhc { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 50%; position: absolute; top: 343px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1nno5jh { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.7593582887700535 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 187px); left: 50%; position: absolute; top: 98px; transform: translateX(-50%); width: 142px; }\",\".framer-B3qY6 .framer-1ug75hz { bottom: -99px; flex: none; position: absolute; right: -276px; top: -186px; width: 396px; }\",\".framer-B3qY6 .framer-isvt7e { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.5148514851485149 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 101px); left: 50%; position: absolute; top: 146px; transform: translateX(-50%); width: 153px; }\",\".framer-B3qY6 .framer-10z8ngf { flex: none; height: 260px; left: calc(50% - 128px / 2); position: absolute; top: 55px; width: 128px; }\",\".framer-B3qY6 .framer-bmwjhl { --border-bottom-width: 1px; --border-color: #d3ff52; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 0.9810126582278481 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 158px); left: 44px; position: absolute; top: 89px; width: 155px; }\",\".framer-B3qY6 .framer-147p6hf, .framer-B3qY6 .framer-fpwkm9 { background-color: #ffffff; box-shadow: 0px 1.401459813117981px 17.518247604370117px 0px rgba(0, 0, 0, 0.25); height: 416px; overflow: hidden; position: relative; width: 240px; }\",\".framer-B3qY6 .framer-1racrre, .framer-B3qY6 .framer-m9cqj5 { flex: none; height: 260px; left: 56px; position: absolute; top: 55px; width: 128px; }\",\".framer-B3qY6 .framer-1g1rhzy { --border-bottom-width: 1px; --border-color: #dcfe6f; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 3.85 / 1; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 43px; position: absolute; top: 114px; width: 154px; }\",\".framer-B3qY6 .framer-u09z9q { --border-bottom-width: 1px; --border-color: #000000; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; aspect-ratio: 1.0875912408759123 / 1; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; box-shadow: 0px 5px 20px 0px rgba(0, 0, 0, 0.5); flex: none; height: var(--framer-aspect-ratio-supported, 137px); left: 45px; position: absolute; top: 89px; width: 149px; }\",\".framer-B3qY6 .framer-tgldoj { --framer-paragraph-spacing: 0px; flex: none; height: 60px; left: 88px; position: absolute; top: 52px; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1w6ode9 { background-color: #000000; flex: 1 0 0px; height: 803px; overflow: hidden; position: relative; width: 1px; }\",\".framer-B3qY6 .framer-z1q3tn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; top: 51%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-B3qY6 .framer-10sf2vi, .framer-B3qY6 .framer-1cldc8p { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-B3qY6 .framer-1ucaxng-container { flex: none; height: 578px; position: relative; width: 1025px; }\",\".framer-B3qY6 .framer-14tfkt-container { flex: none; height: 350px; position: relative; width: 231px; }\",\".framer-B3qY6 .framer-2gb4en, .framer-B3qY6 .framer-pjfqq3 { background-color: #000000; height: 319px; overflow: visible; position: relative; width: 231px; }\",\".framer-B3qY6 .framer-l0rhz3, .framer-B3qY6 .framer-1dt7zq7 { --border-bottom-width: 0.1953124850988388px; --border-color: #d3ff52; --border-left-width: 0.1953124850988388px; --border-right-width: 0.1953124850988388px; --border-style: solid; --border-top-width: 0.1953124850988388px; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 319px; left: calc(50% - 231px / 2); position: absolute; top: 0px; width: 231px; }\",\".framer-B3qY6 .framer-18af8yd, .framer-B3qY6 .framer-i3pa41, .framer-B3qY6 .framer-1jj6dej { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 20%; position: absolute; top: 20px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-dyltxy { flex: none; height: 48px; left: 20px; overflow: visible; position: absolute; top: 56px; width: 174px; }\",\".framer-B3qY6 .framer-c5j8oa { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 79%; position: absolute; top: 24px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1a7sdue, .framer-B3qY6 .framer-1ilwysz { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 26%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1jmjo5k { flex: none; height: 19px; left: 20px; overflow: visible; position: absolute; top: 114px; width: 95px; }\",\".framer-B3qY6 .framer-44uech, .framer-B3qY6 .framer-1eserct, .framer-B3qY6 .framer-149wl5p, .framer-B3qY6 .framer-1180whm { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 61%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-17gqmgd, .framer-B3qY6 .framer-1ey0umr, .framer-B3qY6 .framer-1pfe077, .framer-B3qY6 .framer-17hyib9, .framer-B3qY6 .framer-pxuno2, .framer-B3qY6 .framer-vgi9a5, .framer-B3qY6 .framer-wbplh8, .framer-B3qY6 .framer-y97kyz, .framer-B3qY6 .framer-1o6q7qh, .framer-B3qY6 .framer-1x0198d, .framer-B3qY6 .framer-1bylutz, .framer-B3qY6 .framer-jn90ph { flex: none; height: 12px; left: 0px; position: absolute; top: 4px; width: 12px; }\",\".framer-B3qY6 .framer-cdnsgt, .framer-B3qY6 .framer-e2dl5s, .framer-B3qY6 .framer-u2e4rh { flex: none; height: 19px; left: 20px; overflow: visible; position: absolute; top: 143px; width: 93px; }\",\".framer-B3qY6 .framer-441a7u, .framer-B3qY6 .framer-721l3m, .framer-B3qY6 .framer-1tpi5e8 { flex: none; height: 19px; left: 20px; overflow: visible; position: absolute; top: 172px; width: 134px; }\",\".framer-B3qY6 .framer-prm464, .framer-B3qY6 .framer-styolw, .framer-B3qY6 .framer-bfq6pv, .framer-B3qY6 .framer-1x3d4ot, .framer-B3qY6 .framer-1u3na1u, .framer-B3qY6 .framer-b79vts { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 57%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-hlrh3g, .framer-B3qY6 .framer-josnv5, .framer-B3qY6 .framer-1vhz43j { flex: none; height: 19px; left: 20px; overflow: visible; position: absolute; top: 201px; width: 140px; }\",\".framer-B3qY6 .framer-1rivve4, .framer-B3qY6 .framer-1qfxpjh { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 39px; justify-content: center; left: calc(50% - 191px / 2); overflow: visible; padding: 2.734375px 5.46875px 2.734375px 5.46875px; position: absolute; top: 260px; width: 191px; }\",\".framer-B3qY6 .framer-1bvi2w0 { height: 319px; overflow: visible; position: relative; width: 231px; }\",\".framer-B3qY6 .framer-5ropcl { background-color: #d3ff52; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 319px; left: calc(50% - 231px / 2); position: absolute; top: 0px; width: 231px; }\",\".framer-B3qY6 .framer-ejytho { flex: none; height: 48px; left: 20px; overflow: visible; position: absolute; top: 56px; width: 123px; }\",\".framer-B3qY6 .framer-gw11vs { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 80%; position: absolute; top: 24px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-v59ho1 { flex: none; height: 19px; left: 20px; overflow: visible; position: absolute; top: 114px; width: 99px; }\",\".framer-B3qY6 .framer-1j6dw3d { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 60%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1y8mi7h { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: 39px; justify-content: center; left: calc(50% - 191px / 2); overflow: visible; padding: 2.734375px 5.46875px 2.734375px 5.46875px; position: absolute; top: 260px; width: 191px; }\",\".framer-B3qY6 .framer-c3ro68 { flex: none; height: 48px; left: 20px; overflow: visible; position: absolute; top: 56px; width: 151px; }\",\".framer-B3qY6 .framer-h5tf2n { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 84%; position: absolute; top: 24px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1uw7rcg { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 25%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1f3f7ne { flex: none; height: 19px; left: 20px; overflow: visible; position: absolute; top: 114px; width: 170px; }\",\".framer-B3qY6 .framer-1n35p0e { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 56%; position: absolute; top: 0px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1ewzm8x { background-color: #000000; flex: none; height: 635px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-fupjit { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 165px; width: 100%; }\",\".framer-B3qY6 .framer-1sbpgm, .framer-B3qY6 .framer-w2mqfl { flex: none; height: 410px; overflow: hidden; position: relative; width: 325px; }\",\".framer-B3qY6 .framer-hdm77u { --border-bottom-width: 0.625px; --border-color: #d3ff52; --border-left-width: 0.625px; --border-right-width: 0.625px; --border-style: solid; --border-top-width: 0.625px; align-content: center; align-items: center; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; padding: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-B3qY6 .framer-uyud55, .framer-B3qY6 .framer-1mhu1av { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-B3qY6 .framer-1u5teej { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 30px; overflow: hidden; padding: 0px 0px 49px 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-ovqpk0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 31px; position: absolute; top: 18%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-B3qY6 .framer-13j4c81, .framer-B3qY6 .framer-1slbmfs, .framer-B3qY6 .framer-1hh2ptg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 26px 31px; position: relative; width: 100%; z-index: 1; }\",\".framer-B3qY6 .framer-1q89cso, .framer-B3qY6 .framer-trxlsi, .framer-B3qY6 .framer-1fp6y4x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 22px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-oiawd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 48px 31px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-1c30m9o { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: 133px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 125px; }\",\".framer-B3qY6 .framer-hroqbu, .framer-B3qY6 .framer-18ofwuc, .framer-B3qY6 .framer-1wko96z, .framer-B3qY6 .framer-1gie00g, .framer-B3qY6 .framer-17rqe37, .framer-B3qY6 .framer-4r8c9r, .framer-B3qY6 .framer-11vimuz, .framer-B3qY6 .framer-1c7u1p9, .framer-B3qY6 .framer-ov9mh3, .framer-B3qY6 .framer-bpakcd, .framer-B3qY6 .framer-v9avzj, .framer-B3qY6 .framer-e5vieq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-9joca8, .framer-B3qY6 .framer-bwyv79, .framer-B3qY6 .framer-1t9bi2i, .framer-B3qY6 .framer-wkn3i9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-rkfnqn, .framer-B3qY6 .framer-5pfkhk, .framer-B3qY6 .framer-1hwtvc1, .framer-B3qY6 .framer-op7ngg, .framer-B3qY6 .framer-1jftvlu { flex: none; height: 19px; position: relative; width: 19px; }\",\".framer-B3qY6 .framer-1flf2sj, .framer-B3qY6 .framer-r934rp { align-content: center; align-items: center; background-color: #d3ff52; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 46px; justify-content: center; overflow: visible; padding: 8.75px 17.5px 8.75px 17.5px; position: relative; text-decoration: none; width: 263px; }\",\".framer-B3qY6 .framer-1qqopsa { background-color: #d3ff52; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-B3qY6 .framer-1by9xc8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 22px; width: 100%; }\",\".framer-B3qY6 .framer-xdb21g, .framer-B3qY6 .framer-jk8cmk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 19px; overflow: hidden; padding: 0px 0px 49px 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-77rce { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 32px; position: absolute; top: 18%; transform: translateY(-50%); white-space: pre; width: auto; z-index: 1; }\",\".framer-B3qY6 .framer-5kon9b, .framer-B3qY6 .framer-1iy9hy { 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-B3qY6 .framer-phrwfo, .framer-B3qY6 .framer-172v62a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 19px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 48px 31px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-w5a5pn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-4vjin0, .framer-B3qY6 .framer-h927o5 { flex: none; height: 19px; overflow: visible; position: relative; width: 88px; }\",\".framer-B3qY6 .framer-pj0dhb, .framer-B3qY6 .framer-6rxhb4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 68%; position: absolute; top: 2px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1ti4abi, .framer-B3qY6 .framer-1gc9gio, .framer-B3qY6 .framer-xnfgr5, .framer-B3qY6 .framer-1glg7rb, .framer-B3qY6 .framer-rd4gm7, .framer-B3qY6 .framer-genskb, .framer-B3qY6 .framer-15h0s2i { flex: none; height: 19px; left: 0px; position: absolute; top: 0px; width: 19px; }\",\".framer-B3qY6 .framer-1vdos6q, .framer-B3qY6 .framer-gkuq6a { flex: none; height: 19px; overflow: visible; position: relative; width: 120px; }\",\".framer-B3qY6 .framer-1w8efwx, .framer-B3qY6 .framer-19cpbr9 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 63%; position: absolute; top: 2px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-egj63l, .framer-B3qY6 .framer-p80adf { flex: none; height: 19px; overflow: visible; position: relative; width: 125px; }\",\".framer-B3qY6 .framer-h7i66h, .framer-B3qY6 .framer-kbnnpw { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 62%; position: absolute; top: 2px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-8n0i23 { align-content: center; align-items: center; background-color: #000000; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 46px; justify-content: center; overflow: visible; padding: 8.75px 17.5px 8.75px 17.5px; position: relative; text-decoration: none; width: 263px; }\",\".framer-B3qY6 .framer-ymo0bt { flex: none; height: 410px; overflow: hidden; position: relative; width: 326px; }\",\".framer-B3qY6 .framer-12vezpb { --border-bottom-width: 0.625px; --border-color: #d3ff52; --border-left-width: 0.625px; --border-right-width: 0.625px; --border-style: solid; --border-top-width: 0.625px; border-bottom-left-radius: 19px; border-bottom-right-radius: 19px; border-top-left-radius: 19px; border-top-right-radius: 19px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-B3qY6 .framer-1ukq8y5 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 32px; position: absolute; top: 0px; white-space: pre; width: auto; z-index: 1; }\",\".framer-B3qY6 .framer-1ari1tk { flex: none; height: 19px; overflow: visible; position: relative; width: 148px; }\",\".framer-B3qY6 .framer-wydgx4 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 60%; position: absolute; top: 2px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-hlxiol { --framer-paragraph-spacing: 0px; flex: none; height: 60px; left: 88px; position: absolute; top: 80px; white-space: pre-wrap; width: 341px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-12z1me4 { flex: none; height: 40px; overflow: hidden; position: relative; width: 375px; }\",\".framer-B3qY6 .framer-1wenfg { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 41px; position: absolute; top: 50%; transform: translateY(-50%); white-space: pre-wrap; width: 225px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-5jicz { flex: none; height: 2019px; overflow: hidden; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-1hwwsap { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; left: 50%; min-height: 2019px; min-width: 1200px; overflow: hidden; padding: 0px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; }\",\".framer-B3qY6 .framer-1ee2any { aspect-ratio: 0.5943536404160475 / 1; background-color: #000000; flex: none; height: var(--framer-aspect-ratio-supported, 2019px); left: 0px; overflow: visible; position: absolute; right: 0px; scroll-margin-top: 40px; top: 0px; z-index: 1; }\",\".framer-B3qY6 .framer-1acar3k { bottom: -1850px; flex: none; height: 24px; overflow: hidden; position: absolute; right: -1290px; width: 443px; }\",\".framer-B3qY6 .framer-1lrl34s { bottom: -1818px; flex: none; height: 3586px; overflow: hidden; position: absolute; right: -1325px; width: 2439px; }\",\".framer-B3qY6 .framer-nz6bb2 { bottom: 109px; flex: none; height: 325px; left: 88px; overflow: visible; position: absolute; width: 536px; }\",\".framer-B3qY6 .framer-1tubsix { flex: none; height: 138px; left: 0px; overflow: visible; position: absolute; top: 187px; width: 536px; }\",\".framer-B3qY6 .framer-6yo9ip { --framer-paragraph-spacing: 0px; bottom: 0px; flex: none; height: 54px; left: 0px; mix-blend-mode: exclusion; position: absolute; right: 0px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1apscuq { --framer-paragraph-spacing: 0px; bottom: 62px; flex: none; height: 45px; left: 0px; mix-blend-mode: exclusion; position: absolute; white-space: pre-wrap; width: 350px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1g5akdl { --framer-paragraph-spacing: 0px; bottom: 115px; flex: none; height: 23px; left: 3px; position: absolute; white-space: pre-wrap; width: 26px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1tigtfa { flex: none; height: 144px; left: calc(13.432835820895523% - 144px / 2); position: absolute; top: 0px; width: 144px; }\",\".framer-B3qY6 .framer-1gtehje { bottom: 523px; flex: none; height: 325px; left: 368px; overflow: visible; position: absolute; width: 559px; }\",\".framer-B3qY6 .framer-1uaevne { --framer-paragraph-spacing: 0px; flex: none; height: 54px; left: calc(50.62611806797853% - 552px / 2); mix-blend-mode: exclusion; position: absolute; top: 271px; white-space: pre-wrap; width: 552px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1x690jv { --framer-paragraph-spacing: 0px; flex: none; height: 45px; left: calc(46.422182468694096% - 519px / 2); mix-blend-mode: exclusion; position: absolute; top: 219px; white-space: pre-wrap; width: 519px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1hsgxuw { flex: none; height: 144px; left: calc(14.132379248658319% - 144px / 2); position: absolute; top: 0px; width: 144px; }\",\".framer-B3qY6 .framer-3fkykl { --framer-paragraph-spacing: 0px; flex: none; height: 62px; left: 0px; mix-blend-mode: exclusion; position: absolute; top: 102px; white-space: pre-wrap; width: 199px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-w9dwcr { --framer-paragraph-spacing: 0px; bottom: -3010px; flex: none; height: 23px; position: absolute; right: -1387px; white-space: pre-wrap; width: 24px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1qo8usb { flex: none; height: 286px; left: 88px; overflow: visible; position: absolute; top: calc(46.60723130262509% - 286px / 2); width: 595px; }\",\".framer-B3qY6 .framer-1o7dg88 { --framer-paragraph-spacing: 0px; flex: none; height: 54px; left: calc(50% - 595px / 2); position: absolute; top: 232px; white-space: pre-wrap; width: 595px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1m55ody { --framer-paragraph-spacing: 0px; flex: none; height: 31px; left: 0px; position: absolute; top: 96px; white-space: pre-wrap; width: 210px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-136m5xx { --framer-paragraph-spacing: 0px; flex: none; height: 45px; left: calc(25.71428571428571% - 300px / 2); position: absolute; top: 179px; white-space: pre-wrap; width: 300px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-lsdv12 { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: calc(2.5210084033613445% - 24px / 2); position: absolute; top: 148px; white-space: pre-wrap; width: 24px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1ehhkm8 { flex: none; height: 104px; left: calc(12.100840336134453% - 144px / 2); position: absolute; top: 0px; width: 144px; }\",\".framer-B3qY6 .framer-rz15c4 { flex: none; height: 325px; left: 374px; overflow: visible; position: absolute; top: 385px; width: 550px; }\",\".framer-B3qY6 .framer-n2rmi { --framer-paragraph-spacing: 0px; flex: none; height: 54px; left: calc(50% - 550px / 2); mix-blend-mode: exclusion; position: absolute; top: 271px; white-space: pre-wrap; width: 550px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-17u2vcn { --framer-paragraph-spacing: 0px; flex: none; height: 45px; left: calc(29.545454545454547% - 325px / 2); mix-blend-mode: exclusion; position: absolute; top: 218px; white-space: pre-wrap; width: 325px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-hcojkk { --framer-paragraph-spacing: 0px; flex: none; height: 23px; left: calc(1.8181818181818181% - 20px / 2); position: absolute; top: 187px; white-space: pre-wrap; width: 20px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-18g1q85 { flex: none; height: 144px; left: calc(13.090909090909092% - 144px / 2); position: absolute; top: 0px; width: 144px; }\",\".framer-B3qY6 .framer-4ajqt2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; mix-blend-mode: exclusion; position: absolute; top: 47%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-34p84q { flex: none; height: 197px; left: calc(49.86666666666669% - 375px / 2); overflow: hidden; position: absolute; top: 0px; width: 375px; }\",\".framer-B3qY6 .framer-1iws64t { --framer-paragraph-spacing: 0px; flex: none; height: 34px; left: 41px; mix-blend-mode: exclusion; position: absolute; top: 163px; white-space: pre-wrap; width: 177px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1yr0ip3 { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 79px); justify-content: center; left: 188px; padding: 0px 1px 0px 0px; position: absolute; top: 70px; width: 79px; }\",\".framer-B3qY6 .framer-koozd0 { --framer-paragraph-spacing: 0px; flex: none; height: 48px; left: 41px; mix-blend-mode: exclusion; position: absolute; top: 110px; white-space: pre-wrap; width: 183px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-wf4lyx { flex: none; height: 260px; left: 59px; overflow: hidden; position: absolute; top: 109px; width: 420px; }\",\".framer-B3qY6 .framer-13ke0g8 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1xohw4a { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 117px); position: absolute; right: 0px; top: 0px; width: 117px; }\",\".framer-B3qY6 .framer-1ppuhln { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 29px; mix-blend-mode: exclusion; position: absolute; top: 45px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-xpfo0q { background-color: #000000; flex: 1 0 0px; height: 770px; overflow: hidden; position: relative; width: 1px; }\",\".framer-B3qY6 .framer-ubqdrc { flex: none; height: 578px; left: calc(50.00000000000002% - 1041px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 578px / 2); width: 1041px; }\",\".framer-B3qY6 .framer-py507j { aspect-ratio: 0.8131487889273357 / 1; bottom: 0px; flex: none; overflow: hidden; position: absolute; right: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 470px); }\",\".framer-B3qY6 .framer-pp7pg1 { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 393px); position: absolute; right: 0px; top: 0px; width: 393px; }\",\".framer-B3qY6 .framer-1oavgfk { bottom: 0px; flex: none; height: 496px; left: 185px; position: absolute; width: 245px; }\",\".framer-B3qY6 .framer-1idw16k { bottom: 0px; flex: none; height: 328px; left: 0px; position: absolute; width: 161px; }\",\".framer-B3qY6 .framer-fjesqb { aspect-ratio: 0.8131487889273357 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 436px); overflow: hidden; position: absolute; right: -4px; top: 52%; transform: translateY(-50%); width: 355px; }\",\".framer-B3qY6 .framer-7sah8a { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 265px); left: 45px; position: absolute; right: 45px; top: 0px; }\",\".framer-B3qY6 .framer-d77knl { aspect-ratio: 0.4939516129032258 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 334px); left: 125px; position: absolute; top: 51%; transform: translateY(-50%); width: 165px; }\",\".framer-B3qY6 .framer-1ig7lol { aspect-ratio: 0.49085365853658536 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 222px); left: 0px; position: absolute; top: 169px; width: 109px; }\",\".framer-B3qY6 .framer-1slpfn0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: hidden; padding: 0px; position: absolute; top: 133px; width: min-content; }\",\".framer-B3qY6 .framer-1e1u952 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 12px 0px; position: relative; width: auto; }\",\".framer-B3qY6 .framer-1slc5l3 { flex: none; height: 33px; position: relative; width: 42px; }\",\".framer-B3qY6 .framer-g6296r { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 112px 0px; position: relative; width: auto; }\",\".framer-B3qY6 .framer-1jh66cc { --framer-paragraph-spacing: 0px; flex: none; height: auto; mix-blend-mode: exclusion; position: relative; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1w95497 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-xzd3n5, .framer-B3qY6 .framer-15m6821, .framer-B3qY6 .framer-qp8yqn, .framer-B3qY6 .framer-1lijz1h { --border-bottom-width: 0.625px; --border-color: #d3ff52; --border-left-width: 0.625px; --border-right-width: 0.625px; --border-style: solid; --border-top-width: 0.625px; align-content: center; align-items: center; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 42px; justify-content: center; overflow: visible; padding: 12.5px 17.5px 12.5px 17.5px; position: relative; text-decoration: none; width: 243px; }\",\".framer-B3qY6 .framer-2w1rn4, .framer-B3qY6 .framer-ow0xry { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 17px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 84px; }\",\".framer-B3qY6 .framer-aewsui, .framer-B3qY6 .framer-dmhra8 { flex: none; height: 18px; position: relative; width: 15px; }\",\".framer-B3qY6 .framer-yv5f1u, .framer-B3qY6 .framer-bnjppf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 17px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 99px; }\",\".framer-B3qY6 .framer-1uiu99s, .framer-B3qY6 .framer-17izsdh { flex: none; height: 18px; position: relative; width: 16px; }\",\".framer-B3qY6 .framer-17lrjxe, .framer-B3qY6 .framer-13ntroz { --border-bottom-width: 0.625px; --border-color: #d3ff52; --border-left-width: 0.625px; --border-right-width: 0.625px; --border-style: solid; --border-top-width: 0.625px; align-content: center; align-items: center; border-bottom-left-radius: 31px; border-bottom-right-radius: 31px; border-top-left-radius: 31px; border-top-right-radius: 31px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 12.5px 17.5px 12.5px 17.5px; position: relative; text-decoration: none; width: 243px; }\",\".framer-B3qY6 .framer-1m93830, .framer-B3qY6 .framer-yj3m9a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-gdqcsg { bottom: 0px; flex: none; height: 342px; left: calc(48.80000000000002% - 313px / 2); overflow: hidden; position: absolute; width: 313px; }\",\".framer-B3qY6 .framer-gp4dw2 { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 262px); position: absolute; right: 0px; top: 0px; width: 262px; }\",\".framer-B3qY6 .framer-wx18j5 { aspect-ratio: 0.4939516129032258 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 330px); left: 123px; position: absolute; width: 163px; }\",\".framer-B3qY6 .framer-2ed7ia { aspect-ratio: 0.49085365853658536 / 1; bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 220px); left: 0px; position: absolute; width: 108px; }\",\".framer-B3qY6 .framer-k627v { --framer-paragraph-spacing: 0px; flex: none; height: 72px; left: calc(50.133333333333354% - 256px / 2); mix-blend-mode: exclusion; position: absolute; top: 162px; white-space: pre-wrap; width: 256px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-c1jn8u { flex: none; height: 33px; left: calc(50.40000000000002% - 42px / 2); position: absolute; top: 110px; width: 42px; }\",\".framer-B3qY6 .framer-1oecfpk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 281px; justify-content: center; left: calc(49.86666666666669% - 429px / 2); overflow: hidden; padding: 0px; position: absolute; top: 193px; width: 429px; }\",\".framer-B3qY6 .framer-diskrk { aspect-ratio: 0.42016806722689076 / 1; background-color: #000000; flex: none; height: var(--framer-aspect-ratio-supported, 2856px); overflow: hidden; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-o3iia0 { flex: none; height: 148px; left: 56px; overflow: hidden; position: absolute; top: 117px; width: 395px; }\",\".framer-B3qY6 .framer-pvcs61 { aspect-ratio: 1 / 1; background-color: #d3ff52; border-bottom-left-radius: 100%; border-bottom-right-radius: 100%; border-top-left-radius: 100%; border-top-right-radius: 100%; flex: none; height: var(--framer-aspect-ratio-supported, 102px); left: 0px; position: absolute; top: 0px; width: 102px; }\",\".framer-B3qY6 .framer-17mh25a { --framer-paragraph-spacing: 0px; bottom: 14px; flex: none; height: auto; left: 54%; mix-blend-mode: exclusion; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1wkbh3n { --framer-paragraph-spacing: 0px; bottom: 0px; flex: none; height: auto; left: 32px; mix-blend-mode: exclusion; position: absolute; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-mdr83j { bottom: 117px; flex: none; height: 188px; left: 82px; overflow: visible; position: absolute; width: 644px; }\",\".framer-B3qY6 .framer-i45wuw { flex: none; height: 188px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 311px; }\",\".framer-B3qY6 .framer-lijqja { aspect-ratio: 0.9946808510638298 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 18px; overflow: visible; position: absolute; top: 0px; width: 187px; }\",\".framer-B3qY6 .framer-153te9v, .framer-B3qY6 .framer-6uav55, .framer-B3qY6 .framer-1n48cd7 { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 188px; left: calc(50% - 187px / 2); overflow: hidden; position: absolute; top: 0px; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-m64iwv, .framer-B3qY6 .framer-anmpy { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 224px); left: -19px; position: absolute; top: -18px; width: 224px; }\",\".framer-B3qY6 .framer-1uvonjz { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 50%; position: absolute; top: 132px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1p9pvpu { flex: none; height: 105px; left: 343px; overflow: visible; position: absolute; top: 42px; width: 301px; }\",\".framer-B3qY6 .framer-1ophxcr { --framer-paragraph-spacing: 3.125px; bottom: 1px; flex: none; height: auto; left: 50%; position: absolute; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-xmr4ng { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; position: absolute; right: -22px; top: 29px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1xiv4yg { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 0px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-10g5qhd { flex: none; height: 273px; left: 100px; overflow: visible; position: absolute; top: 376px; width: 716px; }\",\".framer-B3qY6 .framer-1f3p1ke { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 187px); left: 0px; overflow: visible; position: absolute; top: 43px; width: 187px; }\",\".framer-B3qY6 .framer-1r84tlo { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 187px; left: calc(50% - 187px / 2); overflow: hidden; position: absolute; top: 0px; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-1xh3q09 { flex: none; height: 190px; left: calc(43.58288770053476% - 249px / 2); position: absolute; top: 0px; width: 249px; }\",\".framer-B3qY6 .framer-1qrahbh { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 22%; position: absolute; top: 191px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-15ato8a { flex: none; height: 273px; left: 325px; overflow: visible; position: absolute; top: 0px; width: 391px; }\",\".framer-B3qY6 .framer-1dpb6mh { --framer-paragraph-spacing: 0px; flex: none; height: 18px; left: 1px; position: absolute; top: 0px; white-space: pre-wrap; width: 260px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-15xoq3q { --framer-paragraph-spacing: 1.875px; flex: none; height: 38px; left: calc(50.127877237851656% - 390px / 2); position: absolute; top: 32px; white-space: pre-wrap; width: 390px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-uxq2mm { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; left: 45%; position: absolute; top: 84px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-y466op { flex: none; height: 205px; left: 100px; overflow: visible; position: absolute; top: 1164px; width: 654px; }\",\".framer-B3qY6 .framer-1o4bsfy, .framer-B3qY6 .framer-1200yjh { aspect-ratio: 0.9946808510638298 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 187px; }\",\".framer-B3qY6 .framer-105tryz { aspect-ratio: 0.9174311926605505 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 218px); left: 50%; position: absolute; top: -15px; transform: translateX(-50%); width: 200px; }\",\".framer-B3qY6 .framer-1aeokzb { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 22%; position: absolute; top: 159px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-y4e1py { flex: none; height: 175px; left: 325px; overflow: visible; position: absolute; top: 7px; width: 329px; }\",\".framer-B3qY6 .framer-zev96c { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 1px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-hvepte, .framer-B3qY6 .framer-1wdnbdu { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 50%; position: absolute; top: 31px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-jodp3v { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; left: 45%; position: absolute; top: 63px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-t4y9gx { flex: none; height: 215px; left: 464px; overflow: visible; position: absolute; top: 799px; width: 580px; }\",\".framer-B3qY6 .framer-9n8wo6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 392px; overflow: visible; position: absolute; top: 13px; width: 188px; }\",\".framer-B3qY6 .framer-8v3wx1, .framer-B3qY6 .framer-45t6wj, .framer-B3qY6 .framer-lb9h5v { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 188px; left: calc(50% - 188px / 2); overflow: hidden; position: absolute; top: 0px; width: 188px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-420jd7 { aspect-ratio: 0.7519582245430809 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 383px); left: 29%; position: absolute; top: -39px; transform: translateX(-50%); width: 288px; }\",\".framer-B3qY6 .framer-1330v66 { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 73%; position: absolute; top: 169px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-lsoyl4 { flex: none; height: 214px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 255px; }\",\".framer-B3qY6 .framer-1jx2267 { --framer-paragraph-spacing: 0px; flex: none; height: 18px; left: 87px; position: absolute; top: 0px; white-space: pre-wrap; width: 168px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-1j1zhew { --framer-paragraph-spacing: 1.875px; flex: none; height: 18px; left: calc(80.98039215686275% - 97px / 2); position: absolute; top: 32px; white-space: pre-wrap; width: 97px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-9neibs { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; left: 50%; position: absolute; top: 64px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1q5cbj5 { flex: none; height: 197px; left: 346px; overflow: visible; position: absolute; top: 1519px; width: 698px; }\",\".framer-B3qY6 .framer-1l6mxgp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 510px; overflow: visible; position: absolute; top: 0px; width: 188px; }\",\".framer-B3qY6 .framer-v2ay9j { aspect-ratio: 1.1983805668016194 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 247px); left: 34%; position: absolute; top: -42px; transform: translateX(-50%); width: 296px; }\",\".framer-B3qY6 .framer-q10uzu { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 78%; position: absolute; top: 151px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-caj0zo { flex: none; height: 127px; left: 0px; overflow: visible; position: absolute; top: 31px; width: 376px; }\",\".framer-B3qY6 .framer-2zdn18 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 125px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1f0j69a { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 50%; position: absolute; top: 34px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1kqn93f { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; left: 79%; position: absolute; top: 91px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-17n5q3t { flex: none; height: 197px; left: 413px; overflow: visible; position: absolute; top: 2204px; width: 631px; }\",\".framer-B3qY6 .framer-ob9cer { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 188px); left: 443px; overflow: visible; position: absolute; top: 0px; width: 188px; }\",\".framer-B3qY6 .framer-5vpu25 { aspect-ratio: 0.5405405405405406 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 370px); left: 50%; position: absolute; top: -58px; transform: translateX(-50%); width: 200px; }\",\".framer-B3qY6 .framer-emahis { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 80%; position: absolute; top: 151px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1bkmyny { flex: none; height: 79px; left: 0px; overflow: visible; position: absolute; top: 72px; width: 306px; }\",\".framer-B3qY6 .framer-11y7yjr { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 198px; position: absolute; top: 0px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-ukwmhd { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; left: 58%; position: absolute; top: 63px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-qszvtx { flex: none; height: 188px; left: 100px; overflow: visible; position: absolute; top: 1866px; width: 621px; }\",\".framer-B3qY6 .framer-13rm5la { flex: none; height: 188px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 621px; }\",\".framer-B3qY6 .framer-c7185 { aspect-ratio: 1.1271186440677967 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 236px); left: 51%; position: absolute; top: -3px; transform: translateX(-50%); width: 266px; }\",\".framer-B3qY6 .framer-1injfbw { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 23%; position: absolute; top: 132px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-11acc38 { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 76%; position: absolute; top: 37px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1p3ztd6 { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; left: 72%; position: absolute; top: 89px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1fx7ta2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; left: 325px; position: absolute; top: 6px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1wqwuu9-container { bottom: 48px; flex: none; height: 608px; left: calc(50.133333333333354% - 344px / 2); position: absolute; width: 344px; }\",\".framer-B3qY6 .framer-tbvpc1 { align-content: center; align-items: center; background-color: #000000; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 315px; }\",\".framer-B3qY6 .framer-ogn6pn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: 608px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 315px; }\",\".framer-B3qY6 .framer-7bqagr { flex: none; height: 199px; overflow: visible; position: relative; width: 187px; }\",\".framer-B3qY6 .framer-2276nk, .framer-B3qY6 .framer-y2afd6, .framer-B3qY6 .framer-14vzeug, .framer-B3qY6 .framer-e71nd, .framer-B3qY6 .framer-1yktvo7, .framer-B3qY6 .framer-18uiaqe { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 187px); left: 0px; overflow: visible; position: absolute; top: 0px; width: 187px; }\",\".framer-B3qY6 .framer-1v3koaq, .framer-B3qY6 .framer-879evo { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 187px; left: 0px; overflow: hidden; position: absolute; top: calc(50% - 187px / 2); width: 187px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-5cdurw { flex: none; height: 190px; left: -43px; position: absolute; top: calc(50.80213903743316% - 190px / 2); width: 249px; }\",\".framer-B3qY6 .framer-phyk7r, .framer-B3qY6 .framer-s0d303, .framer-B3qY6 .framer-ouvj6o, .framer-B3qY6 .framer-1lxpqd6 { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 0px; position: absolute; top: 90%; transform: translateY(-50%); white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-zk7z2s, .framer-B3qY6 .framer-eo9eid, .framer-B3qY6 .framer-gci3j1, .framer-B3qY6 .framer-20cv5d, .framer-B3qY6 .framer-1x6fkdy, .framer-B3qY6 .framer-1h9lbx2, .framer-B3qY6 .framer-1g6yrpz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-sa0tro, .framer-B3qY6 .framer-1ek7b3h, .framer-B3qY6 .framer-13apyj2, .framer-B3qY6 .framer-1e51tj, .framer-B3qY6 .framer-18lhnso, .framer-B3qY6 .framer-1vb9bsp, .framer-B3qY6 .framer-mrr7zz { --framer-paragraph-spacing: 0px; flex: none; height: 18px; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-bgp4o2, .framer-B3qY6 .framer-3m9k9i, .framer-B3qY6 .framer-15e01bv, .framer-B3qY6 .framer-1yol67u { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-15bwucs, .framer-B3qY6 .framer-1he7upi, .framer-B3qY6 .framer-1vmvd5t, .framer-B3qY6 .framer-1o6u2kp, .framer-B3qY6 .framer-2idj15, .framer-B3qY6 .framer-1wu7vr9, .framer-B3qY6 .framer-1hg7qti { --framer-paragraph-spacing: 3.125px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 316px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-dvhqjt, .framer-B3qY6 .framer-24um1, .framer-B3qY6 .framer-rce6vk, .framer-B3qY6 .framer-fmiq5m, .framer-B3qY6 .framer-lczmte, .framer-B3qY6 .framer-oevi3b { background-color: #000000; height: 538px; overflow: visible; position: relative; width: 315px; }\",\".framer-B3qY6 .framer-flrdmv, .framer-B3qY6 .framer-12ie23a, .framer-B3qY6 .framer-hzthwx { flex: none; height: 199px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 187px; }\",\".framer-B3qY6 .framer-ku8fg5 { aspect-ratio: 0.754874651810585 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 359px); left: -78px; position: absolute; top: -35px; width: 271px; }\",\".framer-B3qY6 .framer-akds1w, .framer-B3qY6 .framer-d7qyz8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 236px; width: 315px; }\",\".framer-B3qY6 .framer-1gi7zrg, .framer-B3qY6 .framer-1huv365, .framer-B3qY6 .framer-18h2thb, .framer-B3qY6 .framer-rftq4c { border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: 187px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 187px; will-change: var(--framer-will-change-override, transform); }\",\".framer-B3qY6 .framer-lhxuph { aspect-ratio: 1.197604762922438 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 246px); left: -84px; position: absolute; top: -41px; width: 294px; }\",\".framer-B3qY6 .framer-18jjoqn, .framer-B3qY6 .framer-8e8d4z, .framer-B3qY6 .framer-74rgs2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 235px; width: 315px; }\",\".framer-B3qY6 .framer-1ip6ohx, .framer-B3qY6 .framer-d4cn61 { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 315px; word-break: break-word; word-wrap: break-word; }\",\".framer-B3qY6 .framer-2mgsal { flex: none; height: 187px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 187px; }\",\".framer-B3qY6 .framer-2xf2qe { aspect-ratio: 1.1347209001532603 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 234px); left: -37px; position: absolute; top: -3px; width: 266px; }\",\".framer-B3qY6 .framer-1fwp9w1 { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 0px; position: absolute; top: 158px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-czkyhd { flex: none; height: 187px; left: 0px; overflow: hidden; position: absolute; top: calc(50% - 187px / 2); width: 187px; }\",\".framer-B3qY6 .framer-11zj9cy { aspect-ratio: 0.9182692307692307 / 1; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; flex: none; height: var(--framer-aspect-ratio-supported, 208px); left: -4px; position: absolute; top: -10px; width: 191px; }\",\".framer-B3qY6 .framer-100j8g8, .framer-B3qY6 .framer-2aqjrg { aspect-ratio: 0.5400000049742021 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 368px); left: -6px; position: absolute; top: -57px; width: 199px; }\",\".framer-B3qY6 .framer-1xnpqxf { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 234px; width: 315px; }\",\".framer-B3qY6 .framer-1pkb76s, .framer-B3qY6 .framer-fl9dgt { --framer-paragraph-spacing: 1.875px; flex: none; height: auto; left: 0px; position: absolute; top: 159px; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-wjfxbf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-onqy4u { --border-bottom-width: 0px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #d3ff52; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: visible; padding: 50px; position: relative; width: 1200px; }\",\".framer-B3qY6 .framer-1utem2f { --border-bottom-width: 0px; --border-color: #050003; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-1hbhktt { align-content: center; align-items: center; background-color: #d3ff52; 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-B3qY6 .framer-134ks7k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-B3qY6 .framer-1ph388w { --framer-link-hover-text-color: rgba(153, 153, 153, 0.6); --framer-link-text-decoration: none; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-B3qY6 .framer-1fobkga { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-B3qY6 .framer-11ig7hx, .framer-B3qY6 .framer-1lqdode, .framer-B3qY6 .framer-jz3p6f { flex: none; height: 32px; overflow: hidden; position: relative; text-decoration: none; width: 32px; }\",\".framer-B3qY6 .framer-12u3e3m-container, .framer-B3qY6 .framer-1rq1b84-container, .framer-B3qY6 .framer-10l145j-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-B3qY6.framer-ro665a, .framer-B3qY6 .framer-2vgzdi, .framer-B3qY6 .framer-186o3th, .framer-B3qY6 .framer-v7fll7, .framer-B3qY6 .framer-8m52p0, .framer-B3qY6 .framer-twth2h, .framer-B3qY6 .framer-1ssgtvq, .framer-B3qY6 .framer-8rtyhk, .framer-B3qY6 .framer-ncfzrw, .framer-B3qY6 .framer-sf6jw5, .framer-B3qY6 .framer-xlxunf, .framer-B3qY6 .framer-7pmbda, .framer-B3qY6 .framer-1uht0qa, .framer-B3qY6 .framer-1cws1gz, .framer-B3qY6 .framer-14ueb64, .framer-B3qY6 .framer-i4ik2a, .framer-B3qY6 .framer-mxn11z, .framer-B3qY6 .framer-el4jxn, .framer-B3qY6 .framer-z1q3tn, .framer-B3qY6 .framer-10sf2vi, .framer-B3qY6 .framer-1vygw2c, .framer-B3qY6 .framer-1rivve4, .framer-B3qY6 .framer-1y8mi7h, .framer-B3qY6 .framer-1qfxpjh, .framer-B3qY6 .framer-fupjit, .framer-B3qY6 .framer-hdm77u, .framer-B3qY6 .framer-uyud55, .framer-B3qY6 .framer-1u5teej, .framer-B3qY6 .framer-13j4c81, .framer-B3qY6 .framer-1q89cso, .framer-B3qY6 .framer-oiawd, .framer-B3qY6 .framer-1c30m9o, .framer-B3qY6 .framer-hroqbu, .framer-B3qY6 .framer-9joca8, .framer-B3qY6 .framer-18ofwuc, .framer-B3qY6 .framer-bwyv79, .framer-B3qY6 .framer-1wko96z, .framer-B3qY6 .framer-1t9bi2i, .framer-B3qY6 .framer-1gie00g, .framer-B3qY6 .framer-wkn3i9, .framer-B3qY6 .framer-1flf2sj, .framer-B3qY6 .framer-1by9xc8, .framer-B3qY6 .framer-xdb21g, .framer-B3qY6 .framer-1slbmfs, .framer-B3qY6 .framer-5kon9b, .framer-B3qY6 .framer-trxlsi, .framer-B3qY6 .framer-phrwfo, .framer-B3qY6 .framer-17rqe37, .framer-B3qY6 .framer-w5a5pn, .framer-B3qY6 .framer-4r8c9r, .framer-B3qY6 .framer-11vimuz, .framer-B3qY6 .framer-1c7u1p9, .framer-B3qY6 .framer-8n0i23, .framer-B3qY6 .framer-1mhu1av, .framer-B3qY6 .framer-jk8cmk, .framer-B3qY6 .framer-1hh2ptg, .framer-B3qY6 .framer-1iy9hy, .framer-B3qY6 .framer-1fp6y4x, .framer-B3qY6 .framer-172v62a, .framer-B3qY6 .framer-ov9mh3, .framer-B3qY6 .framer-bpakcd, .framer-B3qY6 .framer-v9avzj, .framer-B3qY6 .framer-e5vieq, .framer-B3qY6 .framer-r934rp, .framer-B3qY6 .framer-1yr0ip3, .framer-B3qY6 .framer-qfmpl2, .framer-B3qY6 .framer-1slpfn0, .framer-B3qY6 .framer-1e1u952, .framer-B3qY6 .framer-g6296r, .framer-B3qY6 .framer-1cldc8p, .framer-B3qY6 .framer-1w95497, .framer-B3qY6 .framer-xzd3n5, .framer-B3qY6 .framer-2w1rn4, .framer-B3qY6 .framer-15m6821, .framer-B3qY6 .framer-yv5f1u, .framer-B3qY6 .framer-17lrjxe, .framer-B3qY6 .framer-1m93830, .framer-B3qY6 .framer-1oecfpk, .framer-B3qY6 .framer-qp8yqn, .framer-B3qY6 .framer-ow0xry, .framer-B3qY6 .framer-1lijz1h, .framer-B3qY6 .framer-bnjppf, .framer-B3qY6 .framer-13ntroz, .framer-B3qY6 .framer-yj3m9a, .framer-B3qY6 .framer-h1ts3t, .framer-B3qY6 .framer-tbvpc1, .framer-B3qY6 .framer-ogn6pn, .framer-B3qY6 .framer-zk7z2s, .framer-B3qY6 .framer-akds1w, .framer-B3qY6 .framer-eo9eid, .framer-B3qY6 .framer-18jjoqn, .framer-B3qY6 .framer-gci3j1, .framer-B3qY6 .framer-d7qyz8, .framer-B3qY6 .framer-20cv5d, .framer-B3qY6 .framer-8e8d4z, .framer-B3qY6 .framer-1x6fkdy, .framer-B3qY6 .framer-1xnpqxf, .framer-B3qY6 .framer-1h9lbx2, .framer-B3qY6 .framer-74rgs2, .framer-B3qY6 .framer-1g6yrpz, .framer-B3qY6 .framer-onqy4u, .framer-B3qY6 .framer-1utem2f, .framer-B3qY6 .framer-1hbhktt, .framer-B3qY6 .framer-1fobkga { gap: 0px; } .framer-B3qY6.framer-ro665a > *, .framer-B3qY6 .framer-186o3th > *, .framer-B3qY6 .framer-14ueb64 > *, .framer-B3qY6 .framer-uyud55 > *, .framer-B3qY6 .framer-1u5teej > *, .framer-B3qY6 .framer-1by9xc8 > *, .framer-B3qY6 .framer-xdb21g > *, .framer-B3qY6 .framer-1mhu1av > *, .framer-B3qY6 .framer-jk8cmk > *, .framer-B3qY6 .framer-1slpfn0 > *, .framer-B3qY6 .framer-1hbhktt > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B3qY6.framer-ro665a > :first-child, .framer-B3qY6 .framer-186o3th > :first-child, .framer-B3qY6 .framer-14ueb64 > :first-child, .framer-B3qY6 .framer-i4ik2a > :first-child, .framer-B3qY6 .framer-z1q3tn > :first-child, .framer-B3qY6 .framer-hdm77u > :first-child, .framer-B3qY6 .framer-uyud55 > :first-child, .framer-B3qY6 .framer-1u5teej > :first-child, .framer-B3qY6 .framer-1q89cso > :first-child, .framer-B3qY6 .framer-1c30m9o > :first-child, .framer-B3qY6 .framer-1by9xc8 > :first-child, .framer-B3qY6 .framer-xdb21g > :first-child, .framer-B3qY6 .framer-trxlsi > :first-child, .framer-B3qY6 .framer-phrwfo > :first-child, .framer-B3qY6 .framer-1mhu1av > :first-child, .framer-B3qY6 .framer-jk8cmk > :first-child, .framer-B3qY6 .framer-1fp6y4x > :first-child, .framer-B3qY6 .framer-172v62a > :first-child, .framer-B3qY6 .framer-1slpfn0 > :first-child, .framer-B3qY6 .framer-1w95497 > :first-child, .framer-B3qY6 .framer-1oecfpk > :first-child, .framer-B3qY6 .framer-ogn6pn > :first-child, .framer-B3qY6 .framer-zk7z2s > :first-child, .framer-B3qY6 .framer-akds1w > :first-child, .framer-B3qY6 .framer-eo9eid > :first-child, .framer-B3qY6 .framer-18jjoqn > :first-child, .framer-B3qY6 .framer-gci3j1 > :first-child, .framer-B3qY6 .framer-d7qyz8 > :first-child, .framer-B3qY6 .framer-20cv5d > :first-child, .framer-B3qY6 .framer-8e8d4z > :first-child, .framer-B3qY6 .framer-1x6fkdy > :first-child, .framer-B3qY6 .framer-1xnpqxf > :first-child, .framer-B3qY6 .framer-1h9lbx2 > :first-child, .framer-B3qY6 .framer-74rgs2 > :first-child, .framer-B3qY6 .framer-1g6yrpz > :first-child, .framer-B3qY6 .framer-onqy4u > :first-child, .framer-B3qY6 .framer-1utem2f > :first-child, .framer-B3qY6 .framer-1hbhktt > :first-child { margin-top: 0px; } .framer-B3qY6.framer-ro665a > :last-child, .framer-B3qY6 .framer-186o3th > :last-child, .framer-B3qY6 .framer-14ueb64 > :last-child, .framer-B3qY6 .framer-i4ik2a > :last-child, .framer-B3qY6 .framer-z1q3tn > :last-child, .framer-B3qY6 .framer-hdm77u > :last-child, .framer-B3qY6 .framer-uyud55 > :last-child, .framer-B3qY6 .framer-1u5teej > :last-child, .framer-B3qY6 .framer-1q89cso > :last-child, .framer-B3qY6 .framer-1c30m9o > :last-child, .framer-B3qY6 .framer-1by9xc8 > :last-child, .framer-B3qY6 .framer-xdb21g > :last-child, .framer-B3qY6 .framer-trxlsi > :last-child, .framer-B3qY6 .framer-phrwfo > :last-child, .framer-B3qY6 .framer-1mhu1av > :last-child, .framer-B3qY6 .framer-jk8cmk > :last-child, .framer-B3qY6 .framer-1fp6y4x > :last-child, .framer-B3qY6 .framer-172v62a > :last-child, .framer-B3qY6 .framer-1slpfn0 > :last-child, .framer-B3qY6 .framer-1w95497 > :last-child, .framer-B3qY6 .framer-1oecfpk > :last-child, .framer-B3qY6 .framer-ogn6pn > :last-child, .framer-B3qY6 .framer-zk7z2s > :last-child, .framer-B3qY6 .framer-akds1w > :last-child, .framer-B3qY6 .framer-eo9eid > :last-child, .framer-B3qY6 .framer-18jjoqn > :last-child, .framer-B3qY6 .framer-gci3j1 > :last-child, .framer-B3qY6 .framer-d7qyz8 > :last-child, .framer-B3qY6 .framer-20cv5d > :last-child, .framer-B3qY6 .framer-8e8d4z > :last-child, .framer-B3qY6 .framer-1x6fkdy > :last-child, .framer-B3qY6 .framer-1xnpqxf > :last-child, .framer-B3qY6 .framer-1h9lbx2 > :last-child, .framer-B3qY6 .framer-74rgs2 > :last-child, .framer-B3qY6 .framer-1g6yrpz > :last-child, .framer-B3qY6 .framer-onqy4u > :last-child, .framer-B3qY6 .framer-1utem2f > :last-child, .framer-B3qY6 .framer-1hbhktt > :last-child { margin-bottom: 0px; } .framer-B3qY6 .framer-2vgzdi > *, .framer-B3qY6 .framer-1cws1gz > *, .framer-B3qY6 .framer-mxn11z > *, .framer-B3qY6 .framer-el4jxn > *, .framer-B3qY6 .framer-10sf2vi > *, .framer-B3qY6 .framer-1vygw2c > *, .framer-B3qY6 .framer-13j4c81 > *, .framer-B3qY6 .framer-oiawd > *, .framer-B3qY6 .framer-hroqbu > *, .framer-B3qY6 .framer-18ofwuc > *, .framer-B3qY6 .framer-1wko96z > *, .framer-B3qY6 .framer-1gie00g > *, .framer-B3qY6 .framer-1slbmfs > *, .framer-B3qY6 .framer-5kon9b > *, .framer-B3qY6 .framer-17rqe37 > *, .framer-B3qY6 .framer-w5a5pn > *, .framer-B3qY6 .framer-4r8c9r > *, .framer-B3qY6 .framer-11vimuz > *, .framer-B3qY6 .framer-1c7u1p9 > *, .framer-B3qY6 .framer-1hh2ptg > *, .framer-B3qY6 .framer-1iy9hy > *, .framer-B3qY6 .framer-ov9mh3 > *, .framer-B3qY6 .framer-bpakcd > *, .framer-B3qY6 .framer-v9avzj > *, .framer-B3qY6 .framer-e5vieq > *, .framer-B3qY6 .framer-1yr0ip3 > *, .framer-B3qY6 .framer-qfmpl2 > *, .framer-B3qY6 .framer-1e1u952 > *, .framer-B3qY6 .framer-g6296r > *, .framer-B3qY6 .framer-1cldc8p > *, .framer-B3qY6 .framer-h1ts3t > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-B3qY6 .framer-2vgzdi > :first-child, .framer-B3qY6 .framer-v7fll7 > :first-child, .framer-B3qY6 .framer-8m52p0 > :first-child, .framer-B3qY6 .framer-twth2h > :first-child, .framer-B3qY6 .framer-1ssgtvq > :first-child, .framer-B3qY6 .framer-8rtyhk > :first-child, .framer-B3qY6 .framer-ncfzrw > :first-child, .framer-B3qY6 .framer-sf6jw5 > :first-child, .framer-B3qY6 .framer-xlxunf > :first-child, .framer-B3qY6 .framer-7pmbda > :first-child, .framer-B3qY6 .framer-1uht0qa > :first-child, .framer-B3qY6 .framer-1cws1gz > :first-child, .framer-B3qY6 .framer-mxn11z > :first-child, .framer-B3qY6 .framer-el4jxn > :first-child, .framer-B3qY6 .framer-10sf2vi > :first-child, .framer-B3qY6 .framer-1vygw2c > :first-child, .framer-B3qY6 .framer-1rivve4 > :first-child, .framer-B3qY6 .framer-1y8mi7h > :first-child, .framer-B3qY6 .framer-1qfxpjh > :first-child, .framer-B3qY6 .framer-fupjit > :first-child, .framer-B3qY6 .framer-13j4c81 > :first-child, .framer-B3qY6 .framer-oiawd > :first-child, .framer-B3qY6 .framer-hroqbu > :first-child, .framer-B3qY6 .framer-9joca8 > :first-child, .framer-B3qY6 .framer-18ofwuc > :first-child, .framer-B3qY6 .framer-bwyv79 > :first-child, .framer-B3qY6 .framer-1wko96z > :first-child, .framer-B3qY6 .framer-1t9bi2i > :first-child, .framer-B3qY6 .framer-1gie00g > :first-child, .framer-B3qY6 .framer-wkn3i9 > :first-child, .framer-B3qY6 .framer-1flf2sj > :first-child, .framer-B3qY6 .framer-1slbmfs > :first-child, .framer-B3qY6 .framer-5kon9b > :first-child, .framer-B3qY6 .framer-17rqe37 > :first-child, .framer-B3qY6 .framer-w5a5pn > :first-child, .framer-B3qY6 .framer-4r8c9r > :first-child, .framer-B3qY6 .framer-11vimuz > :first-child, .framer-B3qY6 .framer-1c7u1p9 > :first-child, .framer-B3qY6 .framer-8n0i23 > :first-child, .framer-B3qY6 .framer-1hh2ptg > :first-child, .framer-B3qY6 .framer-1iy9hy > :first-child, .framer-B3qY6 .framer-ov9mh3 > :first-child, .framer-B3qY6 .framer-bpakcd > :first-child, .framer-B3qY6 .framer-v9avzj > :first-child, .framer-B3qY6 .framer-e5vieq > :first-child, .framer-B3qY6 .framer-r934rp > :first-child, .framer-B3qY6 .framer-1yr0ip3 > :first-child, .framer-B3qY6 .framer-qfmpl2 > :first-child, .framer-B3qY6 .framer-1e1u952 > :first-child, .framer-B3qY6 .framer-g6296r > :first-child, .framer-B3qY6 .framer-1cldc8p > :first-child, .framer-B3qY6 .framer-xzd3n5 > :first-child, .framer-B3qY6 .framer-2w1rn4 > :first-child, .framer-B3qY6 .framer-15m6821 > :first-child, .framer-B3qY6 .framer-yv5f1u > :first-child, .framer-B3qY6 .framer-17lrjxe > :first-child, .framer-B3qY6 .framer-1m93830 > :first-child, .framer-B3qY6 .framer-qp8yqn > :first-child, .framer-B3qY6 .framer-ow0xry > :first-child, .framer-B3qY6 .framer-1lijz1h > :first-child, .framer-B3qY6 .framer-bnjppf > :first-child, .framer-B3qY6 .framer-13ntroz > :first-child, .framer-B3qY6 .framer-yj3m9a > :first-child, .framer-B3qY6 .framer-h1ts3t > :first-child, .framer-B3qY6 .framer-tbvpc1 > :first-child, .framer-B3qY6 .framer-1fobkga > :first-child { margin-left: 0px; } .framer-B3qY6 .framer-2vgzdi > :last-child, .framer-B3qY6 .framer-v7fll7 > :last-child, .framer-B3qY6 .framer-8m52p0 > :last-child, .framer-B3qY6 .framer-twth2h > :last-child, .framer-B3qY6 .framer-1ssgtvq > :last-child, .framer-B3qY6 .framer-8rtyhk > :last-child, .framer-B3qY6 .framer-ncfzrw > :last-child, .framer-B3qY6 .framer-sf6jw5 > :last-child, .framer-B3qY6 .framer-xlxunf > :last-child, .framer-B3qY6 .framer-7pmbda > :last-child, .framer-B3qY6 .framer-1uht0qa > :last-child, .framer-B3qY6 .framer-1cws1gz > :last-child, .framer-B3qY6 .framer-mxn11z > :last-child, .framer-B3qY6 .framer-el4jxn > :last-child, .framer-B3qY6 .framer-10sf2vi > :last-child, .framer-B3qY6 .framer-1vygw2c > :last-child, .framer-B3qY6 .framer-1rivve4 > :last-child, .framer-B3qY6 .framer-1y8mi7h > :last-child, .framer-B3qY6 .framer-1qfxpjh > :last-child, .framer-B3qY6 .framer-fupjit > :last-child, .framer-B3qY6 .framer-13j4c81 > :last-child, .framer-B3qY6 .framer-oiawd > :last-child, .framer-B3qY6 .framer-hroqbu > :last-child, .framer-B3qY6 .framer-9joca8 > :last-child, .framer-B3qY6 .framer-18ofwuc > :last-child, .framer-B3qY6 .framer-bwyv79 > :last-child, .framer-B3qY6 .framer-1wko96z > :last-child, .framer-B3qY6 .framer-1t9bi2i > :last-child, .framer-B3qY6 .framer-1gie00g > :last-child, .framer-B3qY6 .framer-wkn3i9 > :last-child, .framer-B3qY6 .framer-1flf2sj > :last-child, .framer-B3qY6 .framer-1slbmfs > :last-child, .framer-B3qY6 .framer-5kon9b > :last-child, .framer-B3qY6 .framer-17rqe37 > :last-child, .framer-B3qY6 .framer-w5a5pn > :last-child, .framer-B3qY6 .framer-4r8c9r > :last-child, .framer-B3qY6 .framer-11vimuz > :last-child, .framer-B3qY6 .framer-1c7u1p9 > :last-child, .framer-B3qY6 .framer-8n0i23 > :last-child, .framer-B3qY6 .framer-1hh2ptg > :last-child, .framer-B3qY6 .framer-1iy9hy > :last-child, .framer-B3qY6 .framer-ov9mh3 > :last-child, .framer-B3qY6 .framer-bpakcd > :last-child, .framer-B3qY6 .framer-v9avzj > :last-child, .framer-B3qY6 .framer-e5vieq > :last-child, .framer-B3qY6 .framer-r934rp > :last-child, .framer-B3qY6 .framer-1yr0ip3 > :last-child, .framer-B3qY6 .framer-qfmpl2 > :last-child, .framer-B3qY6 .framer-1e1u952 > :last-child, .framer-B3qY6 .framer-g6296r > :last-child, .framer-B3qY6 .framer-1cldc8p > :last-child, .framer-B3qY6 .framer-xzd3n5 > :last-child, .framer-B3qY6 .framer-2w1rn4 > :last-child, .framer-B3qY6 .framer-15m6821 > :last-child, .framer-B3qY6 .framer-yv5f1u > :last-child, .framer-B3qY6 .framer-17lrjxe > :last-child, .framer-B3qY6 .framer-1m93830 > :last-child, .framer-B3qY6 .framer-qp8yqn > :last-child, .framer-B3qY6 .framer-ow0xry > :last-child, .framer-B3qY6 .framer-1lijz1h > :last-child, .framer-B3qY6 .framer-bnjppf > :last-child, .framer-B3qY6 .framer-13ntroz > :last-child, .framer-B3qY6 .framer-yj3m9a > :last-child, .framer-B3qY6 .framer-h1ts3t > :last-child, .framer-B3qY6 .framer-tbvpc1 > :last-child, .framer-B3qY6 .framer-1fobkga > :last-child { margin-right: 0px; } .framer-B3qY6 .framer-v7fll7 > *, .framer-B3qY6 .framer-8m52p0 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-B3qY6 .framer-twth2h > *, .framer-B3qY6 .framer-1ssgtvq > *, .framer-B3qY6 .framer-sf6jw5 > *, .framer-B3qY6 .framer-7pmbda > *, .framer-B3qY6 .framer-1uht0qa > *, .framer-B3qY6 .framer-1flf2sj > *, .framer-B3qY6 .framer-8n0i23 > *, .framer-B3qY6 .framer-r934rp > *, .framer-B3qY6 .framer-xzd3n5 > *, .framer-B3qY6 .framer-2w1rn4 > *, .framer-B3qY6 .framer-15m6821 > *, .framer-B3qY6 .framer-yv5f1u > *, .framer-B3qY6 .framer-17lrjxe > *, .framer-B3qY6 .framer-1m93830 > *, .framer-B3qY6 .framer-qp8yqn > *, .framer-B3qY6 .framer-ow0xry > *, .framer-B3qY6 .framer-1lijz1h > *, .framer-B3qY6 .framer-bnjppf > *, .framer-B3qY6 .framer-13ntroz > *, .framer-B3qY6 .framer-yj3m9a > * { margin: 0px; margin-left: calc(6.25px / 2); margin-right: calc(6.25px / 2); } .framer-B3qY6 .framer-8rtyhk > * { margin: 0px; margin-left: calc(36px / 2); margin-right: calc(36px / 2); } .framer-B3qY6 .framer-ncfzrw > * { margin: 0px; margin-left: calc(46px / 2); margin-right: calc(46px / 2); } .framer-B3qY6 .framer-xlxunf > *, .framer-B3qY6 .framer-tbvpc1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-B3qY6 .framer-i4ik2a > *, .framer-B3qY6 .framer-z1q3tn > *, .framer-B3qY6 .framer-hdm77u > *, .framer-B3qY6 .framer-1q89cso > *, .framer-B3qY6 .framer-trxlsi > *, .framer-B3qY6 .framer-1fp6y4x > *, .framer-B3qY6 .framer-1w95497 > *, .framer-B3qY6 .framer-1oecfpk > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-B3qY6 .framer-1rivve4 > *, .framer-B3qY6 .framer-1y8mi7h > *, .framer-B3qY6 .framer-1qfxpjh > * { margin: 0px; margin-left: calc(1.953125px / 2); margin-right: calc(1.953125px / 2); } .framer-B3qY6 .framer-fupjit > * { margin: 0px; margin-left: calc(25px / 2); margin-right: calc(25px / 2); } .framer-B3qY6 .framer-1c30m9o > *, .framer-B3qY6 .framer-phrwfo > *, .framer-B3qY6 .framer-172v62a > * { margin: 0px; margin-bottom: calc(19px / 2); margin-top: calc(19px / 2); } .framer-B3qY6 .framer-9joca8 > *, .framer-B3qY6 .framer-bwyv79 > *, .framer-B3qY6 .framer-1t9bi2i > *, .framer-B3qY6 .framer-wkn3i9 > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-B3qY6 .framer-ogn6pn > *, .framer-B3qY6 .framer-zk7z2s > *, .framer-B3qY6 .framer-akds1w > *, .framer-B3qY6 .framer-eo9eid > *, .framer-B3qY6 .framer-18jjoqn > *, .framer-B3qY6 .framer-gci3j1 > *, .framer-B3qY6 .framer-d7qyz8 > *, .framer-B3qY6 .framer-20cv5d > *, .framer-B3qY6 .framer-8e8d4z > *, .framer-B3qY6 .framer-1x6fkdy > *, .framer-B3qY6 .framer-1xnpqxf > *, .framer-B3qY6 .framer-1h9lbx2 > *, .framer-B3qY6 .framer-74rgs2 > *, .framer-B3qY6 .framer-1g6yrpz > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-B3qY6 .framer-onqy4u > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-B3qY6 .framer-1utem2f > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-B3qY6 .framer-1fobkga > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",`@media (max-width: 809px) { .${metadata.bodyClassName}-framer-B3qY6 { background: rgb(0, 0, 0); } .framer-B3qY6.framer-ro665a { width: 375px; } .framer-B3qY6 .framer-2vgzdi { order: 2; } .framer-B3qY6 .framer-1i4u3gc, .framer-B3qY6 .framer-14tfkt-container, .framer-B3qY6 .framer-wjfxbf-container { order: 1; } .framer-B3qY6 .framer-1hak7mu, .framer-B3qY6 .framer-onqy4u { order: 3; } .framer-B3qY6 .framer-mojvwa { left: calc(49.916666666666686% - 127px / 2); top: 119px; } .framer-B3qY6 .framer-1h8drr7 { bottom: unset; left: 0px; right: 0px; top: 48%; transform: translateY(-50%); width: unset; } .framer-B3qY6 .framer-sf6jw5 { height: 28px; left: 664px; top: 232px; width: 74px; } .framer-B3qY6 .framer-13w07ci, .framer-B3qY6 .framer-12z1me4, .framer-B3qY6 .framer-1fobkga { order: 0; } .framer-B3qY6 .framer-15we92s { order: 4; } .framer-B3qY6 .framer-xlxunf { order: 5; } .framer-B3qY6 .framer-1xm0khn { height: 300px; } .framer-B3qY6 .framer-1p2pwus { align-content: center; align-items: center; bottom: unset; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 52%; padding: 0px; top: 180px; transform: translateX(-50%); } .framer-B3qY6 .framer-7pmbda { left: unset; order: 1; position: relative; top: unset; transform: unset; } .framer-B3qY6 .framer-1uht0qa { left: unset; order: 0; position: relative; top: unset; transform: unset; } .framer-B3qY6 .framer-1n0807h { left: 50%; top: 50px; } .framer-B3qY6 .framer-1cws1gz { order: 6; } .framer-B3qY6 .framer-187oewz-container { left: 450px; } .framer-B3qY6 .framer-tgldoj { left: 450px; top: 57px; } .framer-B3qY6 .framer-el4jxn { order: 7; } .framer-B3qY6 .framer-1w6ode9 { height: 380px; } .framer-B3qY6 .framer-1ucaxng-container { aspect-ratio: 1.773356401384083 / 1; height: var(--framer-aspect-ratio-supported, 166px); width: 294px; } .framer-B3qY6 .framer-1vygw2c { flex-direction: column; gap: 50px; order: 8; } .framer-B3qY6 .framer-5jicz { height: 1560px; order: 9; width: 375px; } .framer-B3qY6 .framer-1hwwsap { min-height: 1284px; min-width: unset; top: 50%; width: 375px; } .framer-B3qY6 .framer-1ee2any { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex-direction: column; flex-wrap: wrap; gap: 0px; height: min-content; justify-content: center; min-height: 264px; padding: 0px; } .framer-B3qY6 .framer-nz6bb2 { bottom: 0px; height: unset; left: 41px; top: 1296px; width: 239px; } .framer-B3qY6 .framer-6yo9ip { bottom: 10px; height: 118px; right: unset; width: 216px; } .framer-B3qY6 .framer-1apscuq { bottom: unset; height: 31px; right: 0px; top: 101px; width: unset; } .framer-B3qY6 .framer-1g5akdl { bottom: unset; height: 22px; left: 0px; top: 73px; width: 25px; } .framer-B3qY6 .framer-1tigtfa { height: 66px; left: calc(13.432835820895523% - 66px / 2); width: 66px; } .framer-B3qY6 .framer-1gtehje { bottom: unset; height: 313px; left: 90px; top: 930px; width: 274px; } .framer-B3qY6 .framer-1uaevne { bottom: 0px; height: 135px; left: 0px; top: unset; width: 238px; } .framer-B3qY6 .framer-1hsgxuw { height: 66px; left: 0px; width: 66px; } .framer-B3qY6 .framer-w9dwcr { bottom: unset; left: 0px; right: unset; top: 71px; } .framer-B3qY6 .framer-1qo8usb { height: 254px; left: 41px; top: 596px; width: 274px; } .framer-B3qY6 .framer-1o7dg88 { bottom: -2px; height: 118px; left: 0px; right: 0px; top: unset; width: unset; } .framer-B3qY6 .framer-lsdv12 { height: 22px; left: 0px; top: 71px; width: 23px; } .framer-B3qY6 .framer-1ehhkm8 { height: 56px; left: 0px; width: 78px; } .framer-B3qY6 .framer-rz15c4 { height: 264px; left: 90px; top: 252px; width: 252px; } .framer-B3qY6 .framer-n2rmi { bottom: 0px; height: 118px; left: 0px; right: 0px; top: unset; width: unset; } .framer-B3qY6 .framer-hcojkk { height: 22px; left: 0px; top: 78px; width: 19px; } .framer-B3qY6 .framer-18g1q85 { height: 26%; left: 0px; width: 26%; } .framer-B3qY6 .framer-qfmpl2 { order: 10; } .framer-B3qY6 .framer-xpfo0q { height: 832px; overflow: visible; } .framer-B3qY6 .framer-h1ts3t { flex-direction: column; height: 858px; order: 11; } .framer-B3qY6 .framer-diskrk { align-content: center; align-items: center; aspect-ratio: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; order: 0; padding: 0px; width: 100%; } .framer-B3qY6 .framer-o3iia0 { height: 107px; left: unset; position: relative; top: unset; width: 375px; } .framer-B3qY6 .framer-pvcs61 { height: var(--framer-aspect-ratio-supported, 67px); left: 27px; top: 6px; width: 67px; } .framer-B3qY6 .framer-17mh25a { bottom: unset; height: 48px; left: 41px; overflow: visible; top: 40px; transform: unset; } .framer-B3qY6 .framer-1wkbh3n { bottom: unset; height: 19px; left: 41px; top: 88px; } .framer-B3qY6 .framer-1wqwuu9-container { bottom: unset; left: unset; position: relative; } .framer-B3qY6 .framer-1utem2f { padding: 40px 0px 0px 0px; } .framer-B3qY6 .framer-1hbhktt { padding: 40px 20px 40px 20px; } .framer-B3qY6 .framer-134ks7k { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-B3qY6 .framer-1ph388w { order: 1; overflow: hidden; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-B3qY6 .framer-1p2pwus, .framer-B3qY6 .framer-1vygw2c, .framer-B3qY6 .framer-1ee2any, .framer-B3qY6 .framer-h1ts3t, .framer-B3qY6 .framer-diskrk, .framer-B3qY6 .framer-134ks7k { gap: 0px; } .framer-B3qY6 .framer-1p2pwus > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-B3qY6 .framer-1p2pwus > :first-child { margin-left: 0px; } .framer-B3qY6 .framer-1p2pwus > :last-child { margin-right: 0px; } .framer-B3qY6 .framer-1vygw2c > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-B3qY6 .framer-1vygw2c > :first-child, .framer-B3qY6 .framer-1ee2any > :first-child, .framer-B3qY6 .framer-h1ts3t > :first-child, .framer-B3qY6 .framer-diskrk > :first-child, .framer-B3qY6 .framer-134ks7k > :first-child { margin-top: 0px; } .framer-B3qY6 .framer-1vygw2c > :last-child, .framer-B3qY6 .framer-1ee2any > :last-child, .framer-B3qY6 .framer-h1ts3t > :last-child, .framer-B3qY6 .framer-diskrk > :last-child, .framer-B3qY6 .framer-134ks7k > :last-child { margin-bottom: 0px; } .framer-B3qY6 .framer-1ee2any > *, .framer-B3qY6 .framer-diskrk > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-B3qY6 .framer-h1ts3t > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-B3qY6 .framer-134ks7k > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}`,`@media (min-width: 810px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-B3qY6 { background: rgb(0, 0, 0); } .framer-B3qY6.framer-ro665a, .framer-B3qY6 .framer-5jicz { width: 810px; } .framer-B3qY6 .framer-16py8f { height: 542px; width: 810px; } .framer-B3qY6 .framer-1c6gh61 { width: var(--framer-aspect-ratio-supported, 775px); } .framer-B3qY6 .framer-1pxtr5b { height: var(--framer-aspect-ratio-supported, 438px); } .framer-B3qY6 .framer-2o0etv { aspect-ratio: 1.10678531701891 / 1; bottom: -65px; width: var(--framer-aspect-ratio-supported, 671px); } .framer-B3qY6 .framer-1unxppl { aspect-ratio: 1.174766355140187 / 1; height: var(--framer-aspect-ratio-supported, 542px); width: 636px; } .framer-B3qY6 .framer-6d79mm { aspect-ratio: 1.3333333333333333 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 477px); right: 335px; } .framer-B3qY6 .framer-18zydbl { height: var(--framer-aspect-ratio-supported, 547px); width: 729px; } .framer-B3qY6 .framer-14ndl9q { height: var(--framer-aspect-ratio-supported, 508px); left: 50%; top: 49%; width: 363px; } .framer-B3qY6 .framer-1xbpl7h { bottom: 0px; width: 208px; } .framer-B3qY6 .framer-ts9riw { bottom: 13px; height: 131px; right: -251px; width: unset; } .framer-B3qY6 .framer-1thx3dt { left: 59px; top: 169px; } .framer-B3qY6 .framer-twth2h { left: 164px; top: 294px; width: 92px; } .framer-B3qY6 .framer-1ssgtvq { left: 59px; top: 294px; width: 92px; } .framer-B3qY6 .framer-8rtyhk { left: 59px; } .framer-B3qY6 .framer-1vks44b { left: 699px; } .framer-B3qY6 .framer-1hak7mu { height: var(--framer-aspect-ratio-supported, 412px); width: 810px; } .framer-B3qY6 .framer-mojvwa { aspect-ratio: 1.27 / 1; height: var(--framer-aspect-ratio-supported, 68px); left: 50%; top: 131px; transform: translateX(-50%); width: 86px; } .framer-B3qY6 .framer-1h8drr7 { bottom: unset; left: 0px; right: 0px; top: 231px; transform: unset; width: unset; z-index: 1; } .framer-B3qY6 .framer-sf6jw5 { height: 28px; left: calc(38.641975308641996% - 74px / 2); top: 215px; width: 74px; } .framer-B3qY6 .framer-1222q9h { height: var(--framer-aspect-ratio-supported, 348px); left: 377px; right: unset; top: 99px; width: 348px; } .framer-B3qY6 .framer-724z9 { bottom: 144px; left: 50px; } .framer-B3qY6 .framer-1l8fkyh { left: 540px; } .framer-B3qY6 .framer-1p2pwus { height: unset; left: calc(49.382716049382736% - 306px / 2); top: 1336px; width: 306px; } .framer-B3qY6 .framer-tgldoj { left: 257px; top: 61px; } .framer-B3qY6 .framer-z1q3tn { top: 50%; } .framer-B3qY6 .framer-10sf2vi { align-self: unset; width: 686px; } .framer-B3qY6 .framer-1ucaxng-container { height: 485px; width: 712px; } .framer-B3qY6 .framer-1vygw2c { height: 523px; } .framer-B3qY6 .framer-1ewzm8x { height: 429px; width: 810px; } .framer-B3qY6 .framer-fupjit { gap: 18px; left: 50%; top: 111px; transform: translateX(-50%); } .framer-B3qY6 .framer-1sbpgm { height: 277px; width: 219px; } .framer-B3qY6 .framer-hdm77u { aspect-ratio: 0.7926829268292683 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 276px); left: 50%; right: unset; top: 50%; transform: translate(-50%, -50%); width: 219px; } .framer-B3qY6 .framer-uyud55 { left: 50%; top: 15px; transform: translateX(-50%); width: min-content; } .framer-B3qY6 .framer-1u5teej { align-self: stretch; padding: 0px 0px 12px 0px; width: auto; } .framer-B3qY6 .framer-ovqpk0, .framer-B3qY6 .framer-77rce { left: 21px; top: 0px; transform: unset; } .framer-B3qY6 .framer-13j4c81 { gap: 7px; padding: 0px 0px 19px 21px; width: 219px; } .framer-B3qY6 .framer-oiawd { padding: 0px 0px 32px 31px; width: 219px; } .framer-B3qY6 .framer-1c30m9o { gap: 12px; height: min-content; } .framer-B3qY6 .framer-9joca8 { height: 13px; width: 59px; } .framer-B3qY6 .framer-rkfnqn, .framer-B3qY6 .framer-5pfkhk, .framer-B3qY6 .framer-1hwtvc1, .framer-B3qY6 .framer-op7ngg, .framer-B3qY6 .framer-15h0s2i { height: 13px; width: 13px; } .framer-B3qY6 .framer-bwyv79, .framer-B3qY6 .framer-4vjin0, .framer-B3qY6 .framer-h927o5 { height: 13px; width: 58px; } .framer-B3qY6 .framer-1t9bi2i, .framer-B3qY6 .framer-1vdos6q, .framer-B3qY6 .framer-gkuq6a { height: 13px; width: 78px; } .framer-B3qY6 .framer-wkn3i9, .framer-B3qY6 .framer-egj63l, .framer-B3qY6 .framer-p80adf { height: 13px; width: 81px; } .framer-B3qY6 .framer-1flf2sj, .framer-B3qY6 .framer-8n0i23, .framer-B3qY6 .framer-r934rp { height: 31px; width: 177px; } .framer-B3qY6 .framer-w2mqfl { aspect-ratio: 0.7926829268292683 / 1; height: var(--framer-aspect-ratio-supported, 276px); width: 219px; } .framer-B3qY6 .framer-1qqopsa { aspect-ratio: 0.7926829268292683 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 276px); } .framer-B3qY6 .framer-1by9xc8 { top: 15px; } .framer-B3qY6 .framer-xdb21g { flex-direction: row; justify-content: center; min-height: 12px; padding: 0px 0px 33px 0px; } .framer-B3qY6 .framer-1slbmfs, .framer-B3qY6 .framer-1hh2ptg { gap: 7px; padding: 0px 0px 19px 21px; } .framer-B3qY6 .framer-5kon9b { align-self: stretch; height: auto; } .framer-B3qY6 .framer-phrwfo, .framer-B3qY6 .framer-172v62a { gap: 12px; justify-content: flex-start; padding: 0px 0px 32px 31px; } .framer-B3qY6 .framer-w5a5pn { justify-content: flex-start; } .framer-B3qY6 .framer-1jftvlu { aspect-ratio: 1 / 1; height: 13px; width: var(--framer-aspect-ratio-supported, 13px); } .framer-B3qY6 .framer-pj0dhb, .framer-B3qY6 .framer-1w8efwx, .framer-B3qY6 .framer-h7i66h { bottom: 0px; left: unset; right: 0px; top: unset; transform: unset; } .framer-B3qY6 .framer-1ti4abi, .framer-B3qY6 .framer-1gc9gio { aspect-ratio: 1 / 1; bottom: 0px; height: unset; width: var(--framer-aspect-ratio-supported, 13px); } .framer-B3qY6 .framer-xnfgr5, .framer-B3qY6 .framer-1glg7rb, .framer-B3qY6 .framer-rd4gm7, .framer-B3qY6 .framer-genskb { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 13px); width: 13px; } .framer-B3qY6 .framer-ymo0bt { aspect-ratio: 0.7951219512195122 / 1; height: var(--framer-aspect-ratio-supported, 275px); width: 219px; } .framer-B3qY6 .framer-12vezpb { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; justify-content: center; padding: 0px; } .framer-B3qY6 .framer-1mhu1av { left: 50%; top: 15px; transform: translateX(-50%); } .framer-B3qY6 .framer-jk8cmk { padding: 0px 0px 33px 0px; } .framer-B3qY6 .framer-1ukq8y5 { left: 21px; } .framer-B3qY6 .framer-1ari1tk { height: 13px; width: 96px; } .framer-B3qY6 .framer-hlxiol { height: auto; left: 59px; top: 54px; white-space: pre; width: auto; } .framer-B3qY6 .framer-nz6bb2 { left: calc(40.370370370370395% - 536px / 2); } .framer-B3qY6 .framer-1gtehje { bottom: 506px; left: calc(63.086419753086446% - 559px / 2); } .framer-B3qY6 .framer-1uaevne { bottom: 15px; left: 0px; top: unset; } .framer-B3qY6 .framer-1x690jv { bottom: 76px; left: 0px; top: unset; } .framer-B3qY6 .framer-1hsgxuw { left: 0px; } .framer-B3qY6 .framer-w9dwcr { bottom: 133px; left: 0px; right: -1155px; width: unset; } .framer-B3qY6 .framer-1qo8usb { left: calc(43.950617283950635% - 595px / 2); } .framer-B3qY6 .framer-rz15c4 { left: calc(62.59259259259261% - 550px / 2); top: 381px; } .framer-B3qY6 .framer-wf4lyx { height: 184px; } .framer-B3qY6 .framer-1xohw4a { height: var(--framer-aspect-ratio-supported, 79px); left: 185px; right: unset; top: 74px; width: 79px; } .framer-B3qY6 .framer-1ppuhln { left: 0px; top: 104px; } .framer-B3qY6 .framer-ubqdrc { left: calc(50.00000000000002% - 794px / 2); width: 794px; } .framer-B3qY6 .framer-1slpfn0 { left: 59px; width: 282px; } .framer-B3qY6 .framer-1e1u952, .framer-B3qY6 .framer-g6296r, .framer-B3qY6 .framer-1cldc8p { align-self: unset; width: 100%; } .framer-B3qY6 .framer-xzd3n5 { order: 0; } .framer-B3qY6 .framer-15m6821 { order: 1; } .framer-B3qY6 .framer-17lrjxe { height: 42px; order: 2; padding: 0px; } .framer-B3qY6 .framer-diskrk { aspect-ratio: unset; height: 2788px; order: 0; width: 810px; } .framer-B3qY6 .framer-o3iia0 { left: 38px; } .framer-B3qY6 .framer-pvcs61 { height: var(--framer-aspect-ratio-supported, 69px); width: 69px; } .framer-B3qY6 .framer-17mh25a { bottom: unset; height: 60px; left: 21px; top: 30px; transform: unset; } .framer-B3qY6 .framer-1wkbh3n { bottom: unset; height: 19px; left: 21px; top: 87px; } .framer-B3qY6 .framer-t4y9gx { left: calc(54.19753086419755% - 580px / 2); } .framer-B3qY6 .framer-1q5cbj5 { bottom: 1072px; left: calc(49.876543209876566% - 698px / 2); top: unset; } .framer-B3qY6 .framer-17n5q3t { bottom: 387px; left: calc(50.617283950617306% - 631px / 2); top: unset; } .framer-B3qY6 .framer-onqy4u { width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-B3qY6 .framer-fupjit, .framer-B3qY6 .framer-13j4c81, .framer-B3qY6 .framer-1c30m9o, .framer-B3qY6 .framer-xdb21g, .framer-B3qY6 .framer-1slbmfs, .framer-B3qY6 .framer-phrwfo, .framer-B3qY6 .framer-12vezpb, .framer-B3qY6 .framer-1hh2ptg, .framer-B3qY6 .framer-172v62a { gap: 0px; } .framer-B3qY6 .framer-fupjit > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-B3qY6 .framer-fupjit > :first-child, .framer-B3qY6 .framer-13j4c81 > :first-child, .framer-B3qY6 .framer-xdb21g > :first-child, .framer-B3qY6 .framer-1slbmfs > :first-child, .framer-B3qY6 .framer-1hh2ptg > :first-child { margin-left: 0px; } .framer-B3qY6 .framer-fupjit > :last-child, .framer-B3qY6 .framer-13j4c81 > :last-child, .framer-B3qY6 .framer-xdb21g > :last-child, .framer-B3qY6 .framer-1slbmfs > :last-child, .framer-B3qY6 .framer-1hh2ptg > :last-child { margin-right: 0px; } .framer-B3qY6 .framer-13j4c81 > *, .framer-B3qY6 .framer-1slbmfs > *, .framer-B3qY6 .framer-1hh2ptg > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-B3qY6 .framer-1c30m9o > *, .framer-B3qY6 .framer-phrwfo > *, .framer-B3qY6 .framer-172v62a > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-B3qY6 .framer-1c30m9o > :first-child, .framer-B3qY6 .framer-phrwfo > :first-child, .framer-B3qY6 .framer-12vezpb > :first-child, .framer-B3qY6 .framer-172v62a > :first-child { margin-top: 0px; } .framer-B3qY6 .framer-1c30m9o > :last-child, .framer-B3qY6 .framer-phrwfo > :last-child, .framer-B3qY6 .framer-12vezpb > :last-child, .framer-B3qY6 .framer-172v62a > :last-child { margin-bottom: 0px; } .framer-B3qY6 .framer-xdb21g > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-B3qY6 .framer-12vezpb > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}`,...sharedStyle.css,'.framer-B3qY6[data-border=\"true\"]::after, .framer-B3qY6 [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 10894\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"XjnBlcXPa\":{\"layout\":[\"fixed\",\"auto\"]},\"dnFQOxw2M\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerhQTAjsr0W=withCSS(Component,css,\"framer-B3qY6\");export default FramerhQTAjsr0W;FramerhQTAjsr0W.displayName=\"Home\";FramerhQTAjsr0W.defaultProps={height:10894,width:1200};addFonts(FramerhQTAjsr0W,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtZ6Ew7Y3tcoqK5.woff2\",weight:\"500\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCu170w7Y3tcoqK5.woff2\",weight:\"600\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCtr6Ew7Y3tcoqK5.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCs16Ew7Y3tcoqK5.woff2\",weight:\"300\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCuM70w7Y3tcoqK5.woff2\",weight:\"700\"},{family:\"NanumSquareRoundOTF ExtraBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/NeMAPbFO3DA2kxl2rgxeKARkBTA.woff2\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"NanumSquareRoundOTF Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/M9pwfIGneaUZvbywnTqAHgYUo.woff2\"},{family:\"Montserrat\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/montserrat/v26/JTUHjIg1_i6t8kCHKm4532VJOt5-QNFgpCvr6Ew7Y3tcoqK5.woff2\",weight:\"200\"},{family:\"Figtree\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/figtree/v5/_Xmz-HUzqDCFdgfMsYiV_F7wfS-Bs_d_QF5bwkEU4HTy.woff2\",weight:\"400\"}]},...SlideshowFonts,...YouTubeFonts,...NavigationFonts,...MaterialFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerhQTAjsr0W\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XjnBlcXPa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dnFQOxw2M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"10894\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["OPACITY_0", "Slideshow", "props", "slots", "startFrom", "direction", "effectsOptions", "autoPlayControl", "dragControl", "alignment", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "itemAmount", "fadeOptions", "intervalControl", "transitionControl", "arrowOptions", "borderRadius", "progressOptions", "style", "effectsOpacity", "effectsScale", "effectsRotate", "effectsPerspective", "effectsHover", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowShouldSpace", "arrowShouldFadeIn", "arrowPosition", "arrowPadding", "arrowGap", "arrowPaddingTop", "arrowPaddingRight", "arrowPaddingBottom", "arrowPaddingLeft", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "hasChildren", "j", "isHorizontal", "isInverted", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "parentRef", "pe", "childrenRef", "se", "index", "W", "timeoutRef", "size", "setSize", "ye", "isHovering", "setIsHovering", "shouldPlayOnHover", "setShouldPlayOnHover", "isMouseDown", "setIsMouseDown", "isResizing", "setIsResizing", "dupedChildren", "duplicateBy", "measure", "te", "total", "parentLength", "start", "childrenLength", "itemSize", "itemWidth", "itemHeight", "viewportLength", "window", "scheduleMeasure", "sync", "fe", "initialResize", "ue", "resize", "contentSize", "timer", "totalItems", "childrenSize", "itemWithGap", "itemOffset", "currentItem", "setCurrentItem", "isDragging", "setIsDragging", "isVisible", "usePageVisibility", "factor", "xOrY", "useMotionValue", "canvasPosition", "newPosition", "wrappedValue", "useTransform", "value", "wrapped", "wrap", "wrappedIndex", "wrappedIndexInverted", "switchPages", "animate", "setDelta", "delta", "setPage", "currentItemWrapped", "currentItemWrappedInvert", "goto", "gotoInverted", "handleDragStart", "handleDragEnd", "event", "offset", "velocity", "offsetXorY", "velocityThreshold", "velocityXorY", "isHalfOfNext", "isHalfOfPrev", "normalizedOffset", "itemDelta", "itemDeltaFromOne", "childCounter", "columnOrRowValue", "child", "childIndex", "ref", "Slide", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "dots", "dotsBlurStyle", "i", "Dot", "dotStyle", "baseButtonStyles", "dragProps", "arrowHasTop", "arrowHasBottom", "arrowHasLeft", "arrowHasRight", "arrowHasMid", "containerStyle", "motion", "controlsStyles", "dotsContainerStyle", "addPropertyControls", "ControlType", "num", "min", "max", "Y", "_child_props", "_child_props1", "slideKey", "width", "height", "numChildren", "effects", "isLast", "childOffset", "scrollRange", "val", "rotateY", "rotateX", "opacity", "scale", "originXorY", "latest", "newValue", "_ref_current", "visibility", "mix", "LayoutGroup", "q", "selectedOpacity", "buttonStyle", "isSelected", "inlinePadding", "top", "bottom", "right", "left", "ImageWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Image2", "MotionDivWithOptimizedAppearEffect", "motion", "SlideshowFonts", "getFonts", "Slideshow", "YouTubeFonts", "Youtube", "MotionDivWithFX", "withFX", "NavigationFonts", "nBmFKsIm7_default", "MaterialFonts", "Icon", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "transformTemplate2", "animation", "transition1", "textEffect", "transformTemplate3", "transition2", "animation1", "animation2", "transition3", "animation3", "animation4", "animation5", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "elementId5", "ref7", "isDisplayed3", "elementId6", "ref8", "elementId7", "ref9", "isDisplayed4", "elementId8", "ref10", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "PropertyOverrides2", "getLoadingLazyAtYPosition", "SVG", "RichText2", "x", "Link", "ComponentViewportProvider", "Container", "css", "FramerhQTAjsr0W", "withCSS", "hQTAjsr0W_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
