{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js", "ssg:https://framerusercontent.com/modules/oZdS822FBsH5c4qULGto/85LpmomhIO6h5o8F9oEn/eBukJNXdC.js", "ssg:https://framerusercontent.com/modules/2J37MPHvP0E38UYmQJjM/nFxeLilXvAF9c5vaavw3/I59iOr1UA.js", "ssg:https://framerusercontent.com/modules/UeljYbS3tPs0tmRUUC2B/fKFuezkJSr5GJ7FqiYii/iTsk7BJyU.js", "ssg:https://framerusercontent.com/modules/SM4ysts5MghnWdA0AW0j/h6tkJWWqrxgv58OVKLxN/jUcVzII2K.js", "ssg:https://framerusercontent.com/modules/cqVmT3XkPLTMQGhYXhAl/livSEEQFIlxQfZDdgeMQ/k4KAFR5Vt.js", "ssg:https://framerusercontent.com/modules/AcEJh9FVQlSvxtfbehpO/wkJDEgTG8kguJPeu8mG7/LTIVc7OgR.js", "ssg:https://framerusercontent.com/modules/b5ZnHoCLWRqXNdQT0gZu/2CUMfiIzSKmJHymFzfQP/MGlP_63Dd.js", "ssg:https://framerusercontent.com/modules/6yaxXjXuvvjcoflYgdmb/oAsarvlRqESNZ4F5FzM1/QgyqFJFNY.js", "ssg:https://framerusercontent.com/modules/nFq1KuC9T879ILVFVU2C/KezKSkOM8IxWDNduJlAz/qKsakgcRz.js", "ssg:https://framerusercontent.com/modules/bQ9BZLHAlX3MFyKVyXzo/X1FiJCrkhdQHZGxBakg0/SSYeBVxn8.js", "ssg:https://framerusercontent.com/modules/2Kzufy1nsJKtsltlZzBu/emwtzJ929JWcLQ6hMuPW/TyKxaU_Gw.js", "ssg:https://framerusercontent.com/modules/RSGeZBxPx2glbnZ4yleK/pJU2F9Hy0Zy1erU77f26/UWQYo2TO7.js", "ssg:https://framerusercontent.com/modules/9soHg47fx5q3eBCJdS2M/LvPZX6TY0BAiXFewhR8L/vrp1Ulq8u.js", "ssg:https://framerusercontent.com/modules/y9QR94sjntroz7uQLryD/EonOPauJSB5GBeLBFrHV/Zvf6SmrwZ.js", "ssg:https://framerusercontent.com/modules/2gg96G9ZqOaeWnmOXCHU/g1syir3e707h5OP7zoWt/j_oTc3ChB.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vNBf7OKPD\",\"jSmF3ztsz\"];const serializationHash=\"framer-Dfcoz\";const variantClassNames={jSmF3ztsz:\"framer-v-n062wd\",vNBf7OKPD:\"framer-v-1sfo3t0\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vNBf7OKPD\",\"Variant 2\":\"jSmF3ztsz\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vNBf7OKPD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vNBf7OKPD\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1azh4u3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"jSmF3ztsz\");});const onMouseLeavep0kbnx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"vNBf7OKPD\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"jSmF3ztsz\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:451,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:902,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/8Zzz3qDqs2mmd0PcfkxR96wjOfM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/8Zzz3qDqs2mmd0PcfkxR96wjOfM.png?scale-down-to=1024 577w,https://framerusercontent.com/images/8Zzz3qDqs2mmd0PcfkxR96wjOfM.png 902w\"},className:cx(scopingClassNames,\"framer-1sfo3t0\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vNBf7OKPD\",onMouseEnter:onMouseEnter1azh4u3,ref:ref??ref1,style:{...style},...addPropertyOverrides({jSmF3ztsz:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavep0kbnx}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-yz3gew\",layoutDependency:layoutDependency,layoutId:\"VTl2lspb7\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/TuHfoQq7ZiG1x4vX5FoapxuMwjU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TuHfoQq7ZiG1x4vX5FoapxuMwjU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TuHfoQq7ZiG1x4vX5FoapxuMwjU.png 800w\"},className:\"framer-1wtx25r\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"xxDiMOtra\",...addPropertyOverrides({jSmF3ztsz:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/TuHfoQq7ZiG1x4vX5FoapxuMwjU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/TuHfoQq7ZiG1x4vX5FoapxuMwjU.png?scale-down-to=512 512w,https://framerusercontent.com/images/TuHfoQq7ZiG1x4vX5FoapxuMwjU.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Shifen, Taiwan\"})}),className:\"framer-qzlllt\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"Apd7ostzq\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Dfcoz.framer-1vlim7p, .framer-Dfcoz .framer-1vlim7p { display: block; }\",\".framer-Dfcoz.framer-1sfo3t0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-Dfcoz .framer-yz3gew { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Dfcoz .framer-1wtx25r { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-Dfcoz .framer-qzlllt { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Dfcoz.framer-1sfo3t0, .framer-Dfcoz .framer-yz3gew { gap: 0px; } .framer-Dfcoz.framer-1sfo3t0 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Dfcoz.framer-1sfo3t0 > :first-child { margin-top: 0px; } .framer-Dfcoz.framer-1sfo3t0 > :last-child { margin-bottom: 0px; } .framer-Dfcoz .framer-yz3gew > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Dfcoz .framer-yz3gew > :first-child { margin-left: 0px; } .framer-Dfcoz .framer-yz3gew > :last-child { margin-right: 0px; } }\",\".framer-Dfcoz.framer-v-n062wd.framer-1sfo3t0 { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"jSmF3ztsz\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereBukJNXdC=withCSS(Component,css,\"framer-Dfcoz\");export default FramereBukJNXdC;FramereBukJNXdC.displayName=\"4664cd08-29f1-470d-938d-f44c6c2fbe85 1\";FramereBukJNXdC.defaultProps={height:400,width:277};addPropertyControls(FramereBukJNXdC,{variant:{options:[\"vNBf7OKPD\",\"jSmF3ztsz\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramereBukJNXdC,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereBukJNXdC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"jSmF3ztsz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"277\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eBukJNXdC.map", "// Generated by Framer (ff86393)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={HsacDPmLg:{hover:true}};const serializationHash=\"framer-X9QO3\";const variantClassNames={HsacDPmLg:\"framer-v-1uvzbak\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"HsacDPmLg\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":fs1bBiysv\",webPageId:\"j_oTc3ChB\"},nodeId:\"HsacDPmLg\",openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1uvzbak\",className,classNames)} framer-p9rteu`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HsacDPmLg\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(0, 0, 0)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:2,borderBottomRightRadius:2,borderTopLeftRadius:2,borderTopRightRadius:2,...style},variants:{\"HsacDPmLg-hover\":{\"--border-color\":\"rgb(97, 97, 97)\"}},...addPropertyOverrides({\"HsacDPmLg-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\"},children:\"Jump to top\"})}),className:\"framer-13jw244\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"UWZ_v7xP9\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"HsacDPmLg-hover\":{\"--extracted-r6o4lv\":\"rgb(97, 97, 97)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"HsacDPmLg-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(97, 97, 97))\"},children:\"Jump to top\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||33)-16-12)/2)),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/96Iibsmk0F02MOTEBvjdkwrW6A.png\"},className:\"framer-1mx8wgm\",\"data-framer-name\":\"Up_Arrow\",layoutDependency:layoutDependency,layoutId:\"tmCt8ebHr\",...addPropertyOverrides({\"HsacDPmLg-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:50,intrinsicWidth:50,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+(8+(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||33)-16-12)/2)),pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/trCLLxNx8idZo4Lb5lVCvnWCuRo.svg\"}}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-X9QO3.framer-p9rteu, .framer-X9QO3 .framer-p9rteu { display: block; }\",\".framer-X9QO3.framer-1uvzbak { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; text-decoration: none; width: 190px; will-change: var(--framer-will-change-override, transform); }\",\".framer-X9QO3 .framer-13jw244 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-X9QO3 .framer-1mx8wgm { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); overflow: visible; position: relative; width: 12px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-X9QO3.framer-1uvzbak { gap: 0px; } .framer-X9QO3.framer-1uvzbak > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-X9QO3.framer-1uvzbak > :first-child { margin-left: 0px; } .framer-X9QO3.framer-1uvzbak > :last-child { margin-right: 0px; } }\",'.framer-X9QO3[data-border=\"true\"]::after, .framer-X9QO3 [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 33\n * @framerIntrinsicWidth 190\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"TFMzjl8EV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerI59iOr1UA=withCSS(Component,css,\"framer-X9QO3\");export default FramerI59iOr1UA;FramerI59iOr1UA.displayName=\"AboutJumpTop\";FramerI59iOr1UA.defaultProps={height:33,width:190};addFonts(FramerI59iOr1UA,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerI59iOr1UA\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"190\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TFMzjl8EV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"33\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./I59iOr1UA.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"Sp_wqCle5\",\"OgH36sKXD\"];const serializationHash=\"framer-tFW7w\";const variantClassNames={OgH36sKXD:\"framer-v-103s4w9\",Sp_wqCle5:\"framer-v-8s9xm5\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Sp_wqCle5\",\"Variant 2\":\"OgH36sKXD\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Sp_wqCle5\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Sp_wqCle5\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1s1kdp3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"OgH36sKXD\");});const onMouseLeavehoug7h=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"Sp_wqCle5\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"OgH36sKXD\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1067,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:2134,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/aDubIvzxTCtxKrAWYHq12oWeB08.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/aDubIvzxTCtxKrAWYHq12oWeB08.png?scale-down-to=512 512w,https://framerusercontent.com/images/aDubIvzxTCtxKrAWYHq12oWeB08.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aDubIvzxTCtxKrAWYHq12oWeB08.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/aDubIvzxTCtxKrAWYHq12oWeB08.png 2134w\"},className:cx(scopingClassNames,\"framer-8s9xm5\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Sp_wqCle5\",onMouseEnter:onMouseEnter1s1kdp3,ref:ref??ref1,style:{...style},...addPropertyOverrides({OgH36sKXD:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavehoug7h}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m1pcxu\",layoutDependency:layoutDependency,layoutId:\"XjT1393Q3\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512 512w,https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png 800w\"},className:\"framer-1be1hro\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"Rj4UtU2Qq\",...addPropertyOverrides({OgH36sKXD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512 512w,https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Reykjav\\xedk, Iceland\"})}),className:\"framer-u0mjrs\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"vHQW316JI\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tFW7w.framer-zbiysk, .framer-tFW7w .framer-zbiysk { display: block; }\",\".framer-tFW7w.framer-8s9xm5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-tFW7w .framer-1m1pcxu { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-tFW7w .framer-1be1hro { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-tFW7w .framer-u0mjrs { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-tFW7w.framer-8s9xm5, .framer-tFW7w .framer-1m1pcxu { gap: 0px; } .framer-tFW7w.framer-8s9xm5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-tFW7w.framer-8s9xm5 > :first-child { margin-top: 0px; } .framer-tFW7w.framer-8s9xm5 > :last-child { margin-bottom: 0px; } .framer-tFW7w .framer-1m1pcxu > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-tFW7w .framer-1m1pcxu > :first-child { margin-left: 0px; } .framer-tFW7w .framer-1m1pcxu > :last-child { margin-right: 0px; } }\",\".framer-tFW7w.framer-v-103s4w9.framer-8s9xm5 { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"OgH36sKXD\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameriTsk7BJyU=withCSS(Component,css,\"framer-tFW7w\");export default FrameriTsk7BJyU;FrameriTsk7BJyU.displayName=\"IMG 6755 3 1\";FrameriTsk7BJyU.defaultProps={height:400,width:277};addPropertyControls(FrameriTsk7BJyU,{variant:{options:[\"Sp_wqCle5\",\"OgH36sKXD\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameriTsk7BJyU,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameriTsk7BJyU\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"277\",\"framerIntrinsicHeight\":\"400\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OgH36sKXD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./iTsk7BJyU.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"DE6XZ0EU2\",\"GtnOLfAL7\"];const serializationHash=\"framer-I1kvA\";const variantClassNames={DE6XZ0EU2:\"framer-v-ckuy40\",GtnOLfAL7:\"framer-v-14udtmq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"DE6XZ0EU2\",\"Variant 2\":\"GtnOLfAL7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"DE6XZ0EU2\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"DE6XZ0EU2\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter104pxji=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"GtnOLfAL7\");});const onMouseLeave13lh6l7=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"DE6XZ0EU2\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"GtnOLfAL7\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:821.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1643,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/uE06Q1z1mPDYE9s4n0iWqRFBKYg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/uE06Q1z1mPDYE9s4n0iWqRFBKYg.png?scale-down-to=512 512w,https://framerusercontent.com/images/uE06Q1z1mPDYE9s4n0iWqRFBKYg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uE06Q1z1mPDYE9s4n0iWqRFBKYg.png 1643w\"},className:cx(scopingClassNames,\"framer-ckuy40\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DE6XZ0EU2\",onMouseEnter:onMouseEnter104pxji,ref:ref??ref1,style:{...style},...addPropertyOverrides({GtnOLfAL7:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave13lh6l7}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d61qq2\",layoutDependency:layoutDependency,layoutId:\"zqj3mXggn\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png 800w\"},className:\"framer-1mk4oo9\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"Eyw8eFA5R\",...addPropertyOverrides({GtnOLfAL7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Hawaii, USA\"})}),className:\"framer-1cdvq4w\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"n20nscuRh\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-I1kvA.framer-2fqv6o, .framer-I1kvA .framer-2fqv6o { display: block; }\",\".framer-I1kvA.framer-ckuy40 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-I1kvA .framer-d61qq2 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-I1kvA .framer-1mk4oo9 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-I1kvA .framer-1cdvq4w { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-I1kvA.framer-ckuy40, .framer-I1kvA .framer-d61qq2 { gap: 0px; } .framer-I1kvA.framer-ckuy40 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-I1kvA.framer-ckuy40 > :first-child { margin-top: 0px; } .framer-I1kvA.framer-ckuy40 > :last-child { margin-bottom: 0px; } .framer-I1kvA .framer-d61qq2 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-I1kvA .framer-d61qq2 > :first-child { margin-left: 0px; } .framer-I1kvA .framer-d61qq2 > :last-child { margin-right: 0px; } }\",\".framer-I1kvA.framer-v-14udtmq.framer-ckuy40 { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"GtnOLfAL7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerjUcVzII2K=withCSS(Component,css,\"framer-I1kvA\");export default FramerjUcVzII2K;FramerjUcVzII2K.displayName=\"929e9222-48db-48b6-bff9-84cda15df4b6 2 1\";FramerjUcVzII2K.defaultProps={height:400,width:277};addPropertyControls(FramerjUcVzII2K,{variant:{options:[\"DE6XZ0EU2\",\"GtnOLfAL7\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerjUcVzII2K,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjUcVzII2K\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"277\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"GtnOLfAL7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"400\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jUcVzII2K.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ZUt6xVwE8\",\"BAMTkKqUX\"];const serializationHash=\"framer-w2Sac\";const variantClassNames={BAMTkKqUX:\"framer-v-1rnk34p\",ZUt6xVwE8:\"framer-v-18yxcgq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ZUt6xVwE8\",\"Variant 2\":\"BAMTkKqUX\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZUt6xVwE8\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ZUt6xVwE8\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1jlvqj0=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"BAMTkKqUX\");});const onMouseLeave1idoghv=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"ZUt6xVwE8\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"BAMTkKqUX\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/mntit6kgPkfCrgi484Mjpamlygo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/mntit6kgPkfCrgi484Mjpamlygo.png?scale-down-to=1024 768w,https://framerusercontent.com/images/mntit6kgPkfCrgi484Mjpamlygo.png 1200w\"},className:cx(scopingClassNames,\"framer-18yxcgq\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZUt6xVwE8\",onMouseEnter:onMouseEnter1jlvqj0,ref:ref??ref1,style:{...style},...addPropertyOverrides({BAMTkKqUX:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1idoghv}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-946jnp\",layoutDependency:layoutDependency,layoutId:\"BoIwC0aKG\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/KcwT1F1zbyXGruM1IhL1YDZqxXk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KcwT1F1zbyXGruM1IhL1YDZqxXk.png?scale-down-to=512 512w,https://framerusercontent.com/images/KcwT1F1zbyXGruM1IhL1YDZqxXk.png 800w\"},className:\"framer-1qpkby6\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"GDwSOFA3x\",...addPropertyOverrides({BAMTkKqUX:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/KcwT1F1zbyXGruM1IhL1YDZqxXk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KcwT1F1zbyXGruM1IhL1YDZqxXk.png?scale-down-to=512 512w,https://framerusercontent.com/images/KcwT1F1zbyXGruM1IhL1YDZqxXk.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Vancouver, Canada\"})}),className:\"framer-1lcdets\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"ucWK_adKE\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-w2Sac.framer-807avy, .framer-w2Sac .framer-807avy { display: block; }\",\".framer-w2Sac.framer-18yxcgq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-w2Sac .framer-946jnp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-w2Sac .framer-1qpkby6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-w2Sac .framer-1lcdets { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-w2Sac.framer-18yxcgq, .framer-w2Sac .framer-946jnp { gap: 0px; } .framer-w2Sac.framer-18yxcgq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-w2Sac.framer-18yxcgq > :first-child { margin-top: 0px; } .framer-w2Sac.framer-18yxcgq > :last-child { margin-bottom: 0px; } .framer-w2Sac .framer-946jnp > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-w2Sac .framer-946jnp > :first-child { margin-left: 0px; } .framer-w2Sac .framer-946jnp > :last-child { margin-right: 0px; } }\",\".framer-w2Sac.framer-v-1rnk34p.framer-18yxcgq { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"BAMTkKqUX\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerk4KAFR5Vt=withCSS(Component,css,\"framer-w2Sac\");export default Framerk4KAFR5Vt;Framerk4KAFR5Vt.displayName=\"IMG 0764 1\";Framerk4KAFR5Vt.defaultProps={height:400,width:277};addPropertyControls(Framerk4KAFR5Vt,{variant:{options:[\"ZUt6xVwE8\",\"BAMTkKqUX\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerk4KAFR5Vt,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerk4KAFR5Vt\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"400\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"277\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BAMTkKqUX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./k4KAFR5Vt.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"wXtq3yS1m\",\"lvlUEzZfA\"];const serializationHash=\"framer-mrh3F\";const variantClassNames={lvlUEzZfA:\"framer-v-ux2xh7\",wXtq3yS1m:\"framer-v-r6xu3u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"wXtq3yS1m\",\"Variant 2\":\"lvlUEzZfA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wXtq3yS1m\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"wXtq3yS1m\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterusiujb=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"lvlUEzZfA\");});const onMouseLeave4eqltk=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"wXtq3yS1m\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"lvlUEzZfA\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800.5,intrinsicWidth:600.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1601,pixelWidth:1201,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/aVEimKnNRdhoSAm3kaYFjLGVzO0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/aVEimKnNRdhoSAm3kaYFjLGVzO0.png?scale-down-to=1024 768w,https://framerusercontent.com/images/aVEimKnNRdhoSAm3kaYFjLGVzO0.png 1201w\"},className:cx(scopingClassNames,\"framer-r6xu3u\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"wXtq3yS1m\",onMouseEnter:onMouseEnterusiujb,ref:ref??ref1,style:{...style},...addPropertyOverrides({lvlUEzZfA:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave4eqltk}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-61fp2q\",layoutDependency:layoutDependency,layoutId:\"nicM8U96k\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"},className:\"framer-dlrhak\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"c1DSO9ADj\",...addPropertyOverrides({lvlUEzZfA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0-(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Kanazawa, Japan\"})}),className:\"framer-nyphze\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"C2c1aDVrM\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-mrh3F.framer-obbs8z, .framer-mrh3F .framer-obbs8z { display: block; }\",\".framer-mrh3F.framer-r6xu3u { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-mrh3F .framer-61fp2q { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-mrh3F .framer-dlrhak { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-mrh3F .framer-nyphze { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-mrh3F.framer-r6xu3u, .framer-mrh3F .framer-61fp2q { gap: 0px; } .framer-mrh3F.framer-r6xu3u > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-mrh3F.framer-r6xu3u > :first-child { margin-top: 0px; } .framer-mrh3F.framer-r6xu3u > :last-child { margin-bottom: 0px; } .framer-mrh3F .framer-61fp2q > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-mrh3F .framer-61fp2q > :first-child { margin-left: 0px; } .framer-mrh3F .framer-61fp2q > :last-child { margin-right: 0px; } }\",\".framer-mrh3F.framer-v-ux2xh7.framer-r6xu3u { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"lvlUEzZfA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerLTIVc7OgR=withCSS(Component,css,\"framer-mrh3F\");export default FramerLTIVc7OgR;FramerLTIVc7OgR.displayName=\"IMG 1485 1\";FramerLTIVc7OgR.defaultProps={height:400,width:277};addPropertyControls(FramerLTIVc7OgR,{variant:{options:[\"wXtq3yS1m\",\"lvlUEzZfA\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerLTIVc7OgR,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLTIVc7OgR\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"lvlUEzZfA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"277\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LTIVc7OgR.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"ab_0PJiFe\",\"F5yjJcJgy\"];const serializationHash=\"framer-Yg3xD\";const variantClassNames={ab_0PJiFe:\"framer-v-51ovc8\",F5yjJcJgy:\"framer-v-4d75jq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"ab_0PJiFe\",\"Variant 2\":\"F5yjJcJgy\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ab_0PJiFe\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ab_0PJiFe\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnteri0kz3x=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"F5yjJcJgy\");});const onMouseLeavei0agtj=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"ab_0PJiFe\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"F5yjJcJgy\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/RjpHRxfu7AFWjA13Yf4KRXeVI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RjpHRxfu7AFWjA13Yf4KRXeVI.png?scale-down-to=1024 768w,https://framerusercontent.com/images/RjpHRxfu7AFWjA13Yf4KRXeVI.png 1200w\"},className:cx(scopingClassNames,\"framer-51ovc8\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ab_0PJiFe\",onMouseEnter:onMouseEnteri0kz3x,ref:ref??ref1,style:{...style},...addPropertyOverrides({F5yjJcJgy:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeavei0agtj}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wnsde3\",layoutDependency:layoutDependency,layoutId:\"BnCPHwcyA\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"},className:\"framer-xdpz6k\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"JZd4sSLw5\",...addPropertyOverrides({F5yjJcJgy:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Yokohama, Japan\"})}),className:\"framer-1ygyvhp\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"AQtTZlPfo\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Yg3xD.framer-749tix, .framer-Yg3xD .framer-749tix { display: block; }\",\".framer-Yg3xD.framer-51ovc8 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-Yg3xD .framer-wnsde3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Yg3xD .framer-xdpz6k { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-Yg3xD .framer-1ygyvhp { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Yg3xD.framer-51ovc8, .framer-Yg3xD .framer-wnsde3 { gap: 0px; } .framer-Yg3xD.framer-51ovc8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Yg3xD.framer-51ovc8 > :first-child { margin-top: 0px; } .framer-Yg3xD.framer-51ovc8 > :last-child { margin-bottom: 0px; } .framer-Yg3xD .framer-wnsde3 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Yg3xD .framer-wnsde3 > :first-child { margin-left: 0px; } .framer-Yg3xD .framer-wnsde3 > :last-child { margin-right: 0px; } }\",\".framer-Yg3xD.framer-v-4d75jq.framer-51ovc8 { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"F5yjJcJgy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerMGlP_63Dd=withCSS(Component,css,\"framer-Yg3xD\");export default FramerMGlP_63Dd;FramerMGlP_63Dd.displayName=\"IMG 7278 2 1\";FramerMGlP_63Dd.defaultProps={height:400,width:277};addPropertyControls(FramerMGlP_63Dd,{variant:{options:[\"ab_0PJiFe\",\"F5yjJcJgy\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMGlP_63Dd,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMGlP_63Dd\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"F5yjJcJgy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"277\",\"framerIntrinsicHeight\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./MGlP_63Dd.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"RBY0YkB7S\",\"eFzGswK1A\"];const serializationHash=\"framer-zdc87\";const variantClassNames={eFzGswK1A:\"framer-v-1yoc0xm\",RBY0YkB7S:\"framer-v-l3bz92\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"RBY0YkB7S\",\"Variant 2\":\"eFzGswK1A\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RBY0YkB7S\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RBY0YkB7S\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1nat7lt=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"eFzGswK1A\");});const onMouseLeaveulzjhw=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"RBY0YkB7S\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"eFzGswK1A\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/Uwz69NHLNxDGPkbaOyWSh51fAJQ.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Uwz69NHLNxDGPkbaOyWSh51fAJQ.png?scale-down-to=1024 768w,https://framerusercontent.com/images/Uwz69NHLNxDGPkbaOyWSh51fAJQ.png 1200w\"},className:cx(scopingClassNames,\"framer-l3bz92\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RBY0YkB7S\",onMouseEnter:onMouseEnter1nat7lt,ref:ref??ref1,style:{...style},...addPropertyOverrides({eFzGswK1A:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeaveulzjhw}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e5ar6\",layoutDependency:layoutDependency,layoutId:\"SZgylc6ZT\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png 800w\"},className:\"framer-kp7csu\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"V6kHIvmG3\",...addPropertyOverrides({eFzGswK1A:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0-(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Seoul, South Korea\"})}),className:\"framer-bu5k4w\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"v3QNWyi3k\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zdc87.framer-126iv43, .framer-zdc87 .framer-126iv43 { display: block; }\",\".framer-zdc87.framer-l3bz92 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-zdc87 .framer-1e5ar6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zdc87 .framer-kp7csu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-zdc87 .framer-bu5k4w { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zdc87.framer-l3bz92, .framer-zdc87 .framer-1e5ar6 { gap: 0px; } .framer-zdc87.framer-l3bz92 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zdc87.framer-l3bz92 > :first-child { margin-top: 0px; } .framer-zdc87.framer-l3bz92 > :last-child { margin-bottom: 0px; } .framer-zdc87 .framer-1e5ar6 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-zdc87 .framer-1e5ar6 > :first-child { margin-left: 0px; } .framer-zdc87 .framer-1e5ar6 > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"eFzGswK1A\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQgyqFJFNY=withCSS(Component,css,\"framer-zdc87\");export default FramerQgyqFJFNY;FramerQgyqFJFNY.displayName=\"IMG 0859 2 1\";FramerQgyqFJFNY.defaultProps={height:400,width:277};addPropertyControls(FramerQgyqFJFNY,{variant:{options:[\"RBY0YkB7S\",\"eFzGswK1A\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerQgyqFJFNY,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQgyqFJFNY\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"277\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eFzGswK1A\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QgyqFJFNY.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"oPmGKDyTA\",\"qrzsvf52p\"];const serializationHash=\"framer-VaLiD\";const variantClassNames={oPmGKDyTA:\"framer-v-1p520tu\",qrzsvf52p:\"framer-v-74963u\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"oPmGKDyTA\",\"Variant 2\":\"qrzsvf52p\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oPmGKDyTA\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oPmGKDyTA\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1n9iru5=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"qrzsvf52p\");});const onMouseLeave1jbi5w4=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"oPmGKDyTA\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"qrzsvf52p\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:527.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1055,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/q1xBD6xrTn7990wWxnNKXDgYoY.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/q1xBD6xrTn7990wWxnNKXDgYoY.png?scale-down-to=1024 675w,https://framerusercontent.com/images/q1xBD6xrTn7990wWxnNKXDgYoY.png 1055w\"},className:cx(scopingClassNames,\"framer-1p520tu\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oPmGKDyTA\",onMouseEnter:onMouseEnter1n9iru5,ref:ref??ref1,style:{...style},...addPropertyOverrides({qrzsvf52p:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1jbi5w4}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wtz72p\",layoutDependency:layoutDependency,layoutId:\"auy31n67d\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/RJ6LaaefoIskZKExw49iIfU9pA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RJ6LaaefoIskZKExw49iIfU9pA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJ6LaaefoIskZKExw49iIfU9pA.png 800w\"},className:\"framer-13ghh7n\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"y9LXmlfep\",...addPropertyOverrides({qrzsvf52p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0-(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/RJ6LaaefoIskZKExw49iIfU9pA.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/RJ6LaaefoIskZKExw49iIfU9pA.png?scale-down-to=512 512w,https://framerusercontent.com/images/RJ6LaaefoIskZKExw49iIfU9pA.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"London, UK\"})}),className:\"framer-7yxs5u\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"xZ7JTbEc1\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-VaLiD.framer-gyu3ze, .framer-VaLiD .framer-gyu3ze { display: block; }\",\".framer-VaLiD.framer-1p520tu { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-VaLiD .framer-wtz72p { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-VaLiD .framer-13ghh7n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-VaLiD .framer-7yxs5u { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-VaLiD.framer-1p520tu, .framer-VaLiD .framer-wtz72p { gap: 0px; } .framer-VaLiD.framer-1p520tu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-VaLiD.framer-1p520tu > :first-child { margin-top: 0px; } .framer-VaLiD.framer-1p520tu > :last-child { margin-bottom: 0px; } .framer-VaLiD .framer-wtz72p > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-VaLiD .framer-wtz72p > :first-child { margin-left: 0px; } .framer-VaLiD .framer-wtz72p > :last-child { margin-right: 0px; } }\",\".framer-VaLiD.framer-v-74963u.framer-1p520tu { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qrzsvf52p\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqKsakgcRz=withCSS(Component,css,\"framer-VaLiD\");export default FramerqKsakgcRz;FramerqKsakgcRz.displayName=\"IMG 6656 4 1\";FramerqKsakgcRz.defaultProps={height:400,width:277};addPropertyControls(FramerqKsakgcRz,{variant:{options:[\"oPmGKDyTA\",\"qrzsvf52p\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerqKsakgcRz,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqKsakgcRz\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"277\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qrzsvf52p\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qKsakgcRz.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"H0oe3UL69\",\"UYYcSjbgS\"];const serializationHash=\"framer-rmNPX\";const variantClassNames={H0oe3UL69:\"framer-v-ttsdvx\",UYYcSjbgS:\"framer-v-wksvdm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"H0oe3UL69\",\"Variant 2\":\"UYYcSjbgS\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"H0oe3UL69\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"H0oe3UL69\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter8cu87w=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"UYYcSjbgS\");});const onMouseLeaveznb2t3=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"H0oe3UL69\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"UYYcSjbgS\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800.5,intrinsicWidth:600.5,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1601,pixelWidth:1201,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/bVQM79JRJna4ttPESDwP0iHXJ0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/bVQM79JRJna4ttPESDwP0iHXJ0.png?scale-down-to=1024 768w,https://framerusercontent.com/images/bVQM79JRJna4ttPESDwP0iHXJ0.png 1201w\"},className:cx(scopingClassNames,\"framer-ttsdvx\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"H0oe3UL69\",onMouseEnter:onMouseEnter8cu87w,ref:ref??ref1,style:{...style},...addPropertyOverrides({UYYcSjbgS:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeaveznb2t3}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1etri53\",layoutDependency:layoutDependency,layoutId:\"CRFC208ou\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png 800w\"},className:\"framer-16ky4is\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"XW7MGku0e\",...addPropertyOverrides({UYYcSjbgS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||400)-0-(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1+0))/2+0+0)+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png?scale-down-to=512 512w,https://framerusercontent.com/images/PsZXnh8hh9Gs72LZY5Pr404OyAE.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Busan, South Korea\"})}),className:\"framer-ccae2s\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"Ifk0aVK5I\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rmNPX.framer-l752u1, .framer-rmNPX .framer-l752u1 { display: block; }\",\".framer-rmNPX.framer-ttsdvx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-rmNPX .framer-1etri53 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-rmNPX .framer-16ky4is { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-rmNPX .framer-ccae2s { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rmNPX.framer-ttsdvx, .framer-rmNPX .framer-1etri53 { gap: 0px; } .framer-rmNPX.framer-ttsdvx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rmNPX.framer-ttsdvx > :first-child { margin-top: 0px; } .framer-rmNPX.framer-ttsdvx > :last-child { margin-bottom: 0px; } .framer-rmNPX .framer-1etri53 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-rmNPX .framer-1etri53 > :first-child { margin-left: 0px; } .framer-rmNPX .framer-1etri53 > :last-child { margin-right: 0px; } }\",\".framer-rmNPX.framer-v-wksvdm.framer-ttsdvx { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"UYYcSjbgS\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerSSYeBVxn8=withCSS(Component,css,\"framer-rmNPX\");export default FramerSSYeBVxn8;FramerSSYeBVxn8.displayName=\"IMG 0685 2 1\";FramerSSYeBVxn8.defaultProps={height:400,width:277};addPropertyControls(FramerSSYeBVxn8,{variant:{options:[\"H0oe3UL69\",\"UYYcSjbgS\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerSSYeBVxn8,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerSSYeBVxn8\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"UYYcSjbgS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"277\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SSYeBVxn8.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"RXBloc5dK\",\"yYmxY5lGR\"];const serializationHash=\"framer-vev2W\";const variantClassNames={RXBloc5dK:\"framer-v-1w8t9fc\",yYmxY5lGR:\"framer-v-13eszvn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"RXBloc5dK\",\"Variant 2\":\"yYmxY5lGR\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"RXBloc5dK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RXBloc5dK\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEntery553t2=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"yYmxY5lGR\");});const onMouseLeave1lip3x=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"RXBloc5dK\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"yYmxY5lGR\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/s5ONsMuZiBZUZWZHHNtkFIOoIuI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/s5ONsMuZiBZUZWZHHNtkFIOoIuI.png?scale-down-to=1024 768w,https://framerusercontent.com/images/s5ONsMuZiBZUZWZHHNtkFIOoIuI.png 1200w\"},className:cx(scopingClassNames,\"framer-1w8t9fc\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RXBloc5dK\",onMouseEnter:onMouseEntery553t2,ref:ref??ref1,style:{...style},...addPropertyOverrides({yYmxY5lGR:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1lip3x}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3rumvz\",layoutDependency:layoutDependency,layoutId:\"T_kojricJ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"},className:\"framer-ytlfct\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"D9s59QTjw\",...addPropertyOverrides({yYmxY5lGR:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Kawagoe, Japan\"})}),className:\"framer-9hskfb\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"YYThE9xeg\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vev2W.framer-o1bfna, .framer-vev2W .framer-o1bfna { display: block; }\",\".framer-vev2W.framer-1w8t9fc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-vev2W .framer-3rumvz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vev2W .framer-ytlfct { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-vev2W .framer-9hskfb { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vev2W.framer-1w8t9fc, .framer-vev2W .framer-3rumvz { gap: 0px; } .framer-vev2W.framer-1w8t9fc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vev2W.framer-1w8t9fc > :first-child { margin-top: 0px; } .framer-vev2W.framer-1w8t9fc > :last-child { margin-bottom: 0px; } .framer-vev2W .framer-3rumvz > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-vev2W .framer-3rumvz > :first-child { margin-left: 0px; } .framer-vev2W .framer-3rumvz > :last-child { margin-right: 0px; } }\",\".framer-vev2W.framer-v-13eszvn.framer-1w8t9fc { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yYmxY5lGR\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerTyKxaU_Gw=withCSS(Component,css,\"framer-vev2W\");export default FramerTyKxaU_Gw;FramerTyKxaU_Gw.displayName=\"IMG 4267 1\";FramerTyKxaU_Gw.defaultProps={height:400,width:277};addPropertyControls(FramerTyKxaU_Gw,{variant:{options:[\"RXBloc5dK\",\"yYmxY5lGR\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerTyKxaU_Gw,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTyKxaU_Gw\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yYmxY5lGR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"277\",\"framerIntrinsicHeight\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TyKxaU_Gw.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"KsR9RIweM\",\"csKPFEDBQ\"];const serializationHash=\"framer-yAUNQ\";const variantClassNames={csKPFEDBQ:\"framer-v-thrxb5\",KsR9RIweM:\"framer-v-3qkpzx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"KsR9RIweM\",\"Variant 2\":\"csKPFEDBQ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KsR9RIweM\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KsR9RIweM\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterrwnvbq=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"csKPFEDBQ\");});const onMouseLeave105ioua=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"KsR9RIweM\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"csKPFEDBQ\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800.5,intrinsicWidth:1033,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1601,pixelWidth:2066,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/VxDi6qHtcwVwjD4N8a0694eFk.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VxDi6qHtcwVwjD4N8a0694eFk.png?scale-down-to=512 512w,https://framerusercontent.com/images/VxDi6qHtcwVwjD4N8a0694eFk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VxDi6qHtcwVwjD4N8a0694eFk.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VxDi6qHtcwVwjD4N8a0694eFk.png 2066w\"},className:cx(scopingClassNames,\"framer-3qkpzx\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"KsR9RIweM\",onMouseEnter:onMouseEnterrwnvbq,ref:ref??ref1,style:{...style},...addPropertyOverrides({csKPFEDBQ:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave105ioua}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12iloes\",layoutDependency:layoutDependency,layoutId:\"j9MYG0SBZ\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png 800w\"},className:\"framer-hy4wpp\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"VA5khaVmG\",...addPropertyOverrides({csKPFEDBQ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png?scale-down-to=512 512w,https://framerusercontent.com/images/0seeRZkoE6YGRw08TbEhf0CwRCM.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Hawaii, USA\"})}),className:\"framer-12nf6hk\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"o3d36Uljg\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yAUNQ.framer-1555ctx, .framer-yAUNQ .framer-1555ctx { display: block; }\",\".framer-yAUNQ.framer-3qkpzx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-yAUNQ .framer-12iloes { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-yAUNQ .framer-hy4wpp { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-yAUNQ .framer-12nf6hk { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yAUNQ.framer-3qkpzx, .framer-yAUNQ .framer-12iloes { gap: 0px; } .framer-yAUNQ.framer-3qkpzx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-yAUNQ.framer-3qkpzx > :first-child { margin-top: 0px; } .framer-yAUNQ.framer-3qkpzx > :last-child { margin-bottom: 0px; } .framer-yAUNQ .framer-12iloes > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-yAUNQ .framer-12iloes > :first-child { margin-left: 0px; } .framer-yAUNQ .framer-12iloes > :last-child { margin-right: 0px; } }\",\".framer-yAUNQ.framer-v-thrxb5.framer-3qkpzx { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"csKPFEDBQ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUWQYo2TO7=withCSS(Component,css,\"framer-yAUNQ\");export default FramerUWQYo2TO7;FramerUWQYo2TO7.displayName=\"IMG 3331 2 2\";FramerUWQYo2TO7.defaultProps={height:400,width:277};addPropertyControls(FramerUWQYo2TO7,{variant:{options:[\"KsR9RIweM\",\"csKPFEDBQ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUWQYo2TO7,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUWQYo2TO7\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"csKPFEDBQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"400\",\"framerIntrinsicWidth\":\"277\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UWQYo2TO7.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"vFlO2bLEP\",\"Hbah0DFO7\"];const serializationHash=\"framer-SnPJV\";const variantClassNames={Hbah0DFO7:\"framer-v-1k1tnpo\",vFlO2bLEP:\"framer-v-1q9tfmn\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"vFlO2bLEP\",\"Variant 2\":\"Hbah0DFO7\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"vFlO2bLEP\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vFlO2bLEP\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterquzwdf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"Hbah0DFO7\");});const onMouseLeave1cjxunx=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"vFlO2bLEP\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Hbah0DFO7\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/7ZGmXZdlqQVLGaT5Y6JqewMJP8.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7ZGmXZdlqQVLGaT5Y6JqewMJP8.png?scale-down-to=1024 768w,https://framerusercontent.com/images/7ZGmXZdlqQVLGaT5Y6JqewMJP8.png 1200w\"},className:cx(scopingClassNames,\"framer-1q9tfmn\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"vFlO2bLEP\",onMouseEnter:onMouseEnterquzwdf,ref:ref??ref1,style:{...style},...addPropertyOverrides({Hbah0DFO7:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave1cjxunx}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qsl5oq\",layoutDependency:layoutDependency,layoutId:\"Q9xCQFUPA\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"},className:\"framer-1nd6o2x\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"hyn4cWGlp\",...addPropertyOverrides({Hbah0DFO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png?scale-down-to=512 512w,https://framerusercontent.com/images/rlLNbBqgz79nyYkDff6yiJQsvE.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Tokyo, Japan\"})}),className:\"framer-1t4wtro\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"vA4kyU6xJ\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-SnPJV.framer-157nrmj, .framer-SnPJV .framer-157nrmj { display: block; }\",\".framer-SnPJV.framer-1q9tfmn { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-SnPJV .framer-qsl5oq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-SnPJV .framer-1nd6o2x { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-SnPJV .framer-1t4wtro { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-SnPJV.framer-1q9tfmn, .framer-SnPJV .framer-qsl5oq { gap: 0px; } .framer-SnPJV.framer-1q9tfmn > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-SnPJV.framer-1q9tfmn > :first-child { margin-top: 0px; } .framer-SnPJV.framer-1q9tfmn > :last-child { margin-bottom: 0px; } .framer-SnPJV .framer-qsl5oq > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-SnPJV .framer-qsl5oq > :first-child { margin-left: 0px; } .framer-SnPJV .framer-qsl5oq > :last-child { margin-right: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Hbah0DFO7\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framervrp1Ulq8u=withCSS(Component,css,\"framer-SnPJV\");export default Framervrp1Ulq8u;Framervrp1Ulq8u.displayName=\"IMG 8388 2 1\";Framervrp1Ulq8u.defaultProps={height:400,width:277};addPropertyControls(Framervrp1Ulq8u,{variant:{options:[\"vFlO2bLEP\",\"Hbah0DFO7\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framervrp1Ulq8u,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framervrp1Ulq8u\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"400\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Hbah0DFO7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"277\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vrp1Ulq8u.map", "// Generated by Framer (ea53337)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"i3qGc9isH\",\"bSZySi5ZJ\"];const serializationHash=\"framer-Ym0sO\";const variantClassNames={bSZySi5ZJ:\"framer-v-eimd3y\",i3qGc9isH:\"framer-v-wbsjla\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"i3qGc9isH\",\"Variant 2\":\"bSZySi5ZJ\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"i3qGc9isH\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"i3qGc9isH\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnterfqmcau=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});setVariant(\"bSZySi5ZJ\");});const onMouseLeave170u9hf=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"i3qGc9isH\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"bSZySi5ZJ\")return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Image,{...restProps,...gestureHandlers,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:600,loading:getLoadingLazyAtYPosition(componentViewport?.y||0),pixelHeight:1600,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/BqhvAh94H1wXgHAmhHGitCph0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/BqhvAh94H1wXgHAmhHGitCph0.png?scale-down-to=1024 768w,https://framerusercontent.com/images/BqhvAh94H1wXgHAmhHGitCph0.png 1200w\"},className:cx(scopingClassNames,\"framer-wbsjla\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"i3qGc9isH\",onMouseEnter:onMouseEnterfqmcau,ref:ref??ref1,style:{...style},...addPropertyOverrides({bSZySi5ZJ:{\"data-framer-name\":\"Variant 2\",onMouseLeave:onMouseLeave170u9hf}},baseVariant,gestureVariant),children:isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j4qvx\",layoutDependency:layoutDependency,layoutId:\"wSxVcKcpd\",style:{backgroundColor:\"rgba(0, 0, 0, 0.8)\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512 512w,https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png 800w\"},className:\"framer-x50fs6\",\"data-framer-name\":\"\\xd0\\x9f\\x87\\xac\\xf0\\x9f\\x87\\xa7\",layoutDependency:layoutDependency,layoutId:\"xd7xiipTu\",...addPropertyOverrides({bSZySi5ZJ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+(0+(Math.max(0,((componentViewport?.height||400)-0-0)/1)*1-0-18)/2)),pixelHeight:800,pixelWidth:800,sizes:\"18px\",src:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png?scale-down-to=512 512w,https://framerusercontent.com/images/sLJhhnFGJAPpmq1lyc5c2CZQsyk.png 800w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Reykjav\\xedk, Iceland\"})}),className:\"framer-1qnq8y9\",fonts:[\"CUSTOM;Inter Tight Medium\"],layoutDependency:layoutDependency,layoutId:\"nviJ0hClY\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ym0sO.framer-1tckyzu, .framer-Ym0sO .framer-1tckyzu { display: block; }\",\".framer-Ym0sO.framer-wbsjla { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 400px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 277px; }\",\".framer-Ym0sO .framer-1j4qvx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: 1px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Ym0sO .framer-x50fs6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: visible; position: relative; width: 18px; }\",\".framer-Ym0sO .framer-1qnq8y9 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ym0sO.framer-wbsjla, .framer-Ym0sO .framer-1j4qvx { gap: 0px; } .framer-Ym0sO.framer-wbsjla > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Ym0sO.framer-wbsjla > :first-child { margin-top: 0px; } .framer-Ym0sO.framer-wbsjla > :last-child { margin-bottom: 0px; } .framer-Ym0sO .framer-1j4qvx > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-Ym0sO .framer-1j4qvx > :first-child { margin-left: 0px; } .framer-Ym0sO .framer-1j4qvx > :last-child { margin-right: 0px; } }\",\".framer-Ym0sO.framer-v-eimd3y.framer-wbsjla { aspect-ratio: 0.6923076923076923 / 1; height: var(--framer-aspect-ratio-supported, 400px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 400\n * @framerIntrinsicWidth 277\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bSZySi5ZJ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZvf6SmrwZ=withCSS(Component,css,\"framer-Ym0sO\");export default FramerZvf6SmrwZ;FramerZvf6SmrwZ.displayName=\"IMG 0744 3 1\";FramerZvf6SmrwZ.defaultProps={height:400,width:277};addPropertyControls(FramerZvf6SmrwZ,{variant:{options:[\"i3qGc9isH\",\"bSZySi5ZJ\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerZvf6SmrwZ,[{explicitInter:true,fonts:[{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZvf6SmrwZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"277\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bSZySi5ZJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"400\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Zvf6SmrwZ.map", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import JumpTop from\"#framer/local/canvasComponent/D0D1BLkCH/D0D1BLkCH.js\";import Cd0829f1470d938dF44c6c2fbe851 from\"#framer/local/canvasComponent/eBukJNXdC/eBukJNXdC.js\";import AboutJumpTop from\"#framer/local/canvasComponent/I59iOr1UA/I59iOr1UA.js\";import IMG675531 from\"#framer/local/canvasComponent/iTsk7BJyU/iTsk7BJyU.js\";import E922248db48b6Bff984cda15df4b621 from\"#framer/local/canvasComponent/jUcVzII2K/jUcVzII2K.js\";import IMG07641 from\"#framer/local/canvasComponent/k4KAFR5Vt/k4KAFR5Vt.js\";import IMG14851 from\"#framer/local/canvasComponent/LTIVc7OgR/LTIVc7OgR.js\";import IMG727821 from\"#framer/local/canvasComponent/MGlP_63Dd/MGlP_63Dd.js\";import NavigationCopy from\"#framer/local/canvasComponent/mIBYVtmpE/mIBYVtmpE.js\";import EmailCircle from\"#framer/local/canvasComponent/MqJOACMQf/MqJOACMQf.js\";import LinkedInIcon from\"#framer/local/canvasComponent/pX56SUeX5/pX56SUeX5.js\";import IMG085921 from\"#framer/local/canvasComponent/QgyqFJFNY/QgyqFJFNY.js\";import IMG665641 from\"#framer/local/canvasComponent/qKsakgcRz/qKsakgcRz.js\";import IMG068521 from\"#framer/local/canvasComponent/SSYeBVxn8/SSYeBVxn8.js\";import IMG42671 from\"#framer/local/canvasComponent/TyKxaU_Gw/TyKxaU_Gw.js\";import LinkedinCircle from\"#framer/local/canvasComponent/UCyNrHtu9/UCyNrHtu9.js\";import EmailIcon from\"#framer/local/canvasComponent/uf8xHI45B/uf8xHI45B.js\";import IMG333122 from\"#framer/local/canvasComponent/UWQYo2TO7/UWQYo2TO7.js\";import IMG838821 from\"#framer/local/canvasComponent/vrp1Ulq8u/vrp1Ulq8u.js\";import IMG074431 from\"#framer/local/canvasComponent/Zvf6SmrwZ/Zvf6SmrwZ.js\";import metadataProvider from\"#framer/local/webPageMetadata/j_oTc3ChB/j_oTc3ChB.js\";const NavigationCopyFonts=getFonts(NavigationCopy);const LinkedinCircleFonts=getFonts(LinkedinCircle);const EmailCircleFonts=getFonts(EmailCircle);const IMG665641Fonts=getFonts(IMG665641);const IMG074431Fonts=getFonts(IMG074431);const IMG675531Fonts=getFonts(IMG675531);const IMG333122Fonts=getFonts(IMG333122);const E922248db48b6Bff984cda15df4b621Fonts=getFonts(E922248db48b6Bff984cda15df4b621);const IMG07641Fonts=getFonts(IMG07641);const IMG068521Fonts=getFonts(IMG068521);const IMG085921Fonts=getFonts(IMG085921);const IMG727821Fonts=getFonts(IMG727821);const IMG838821Fonts=getFonts(IMG838821);const IMG14851Fonts=getFonts(IMG14851);const IMG42671Fonts=getFonts(IMG42671);const Cd0829f1470d938dF44c6c2fbe851Fonts=getFonts(Cd0829f1470d938dF44c6c2fbe851);const TickerFonts=getFonts(Ticker);const AboutJumpTopFonts=getFonts(AboutJumpTop);const JumpTopFonts=getFonts(JumpTop);const LinkedInIconFonts=getFonts(LinkedInIcon);const EmailIconFonts=getFonts(EmailIcon);const breakpoints={cPs_2syO7:\"(min-width: 1440px) and (max-width: 1919px)\",mUaom_OVf:\"(max-width: 599px)\",q16YyAYT8:\"(min-width: 600px) and (max-width: 1023px)\",sNJzdADUo:\"(min-width: 1024px) and (max-width: 1439px)\",ZzfsIT3xc:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Lqb4f\";const variantClassNames={cPs_2syO7:\"framer-v-1p0t8sw\",mUaom_OVf:\"framer-v-16fxpdr\",q16YyAYT8:\"framer-v-1rkry6v\",sNJzdADUo:\"framer-v-1vvlq7q\",ZzfsIT3xc:\"framer-v-o65trm\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"ZzfsIT3xc\",Laptop:\"cPs_2syO7\",Phone:\"mUaom_OVf\",SmallLaptop:\"sNJzdADUo\",Tablet:\"q16YyAYT8\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"ZzfsIT3xc\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"hHTLQNdZT\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"BXhhuuN3K\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"q16YyAYT8\",\"mUaom_OVf\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"q16YyAYT8\",\"mUaom_OVf\"].includes(baseVariant))return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"ZzfsIT3xc\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-o65trm\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19xb5r3-container\",layoutScroll:true,nodeId:\"fy_QJK_HS\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{variant:\"ifNbDpHnM\"},mUaom_OVf:{variant:\"VIfKETtUT\"},q16YyAYT8:{variant:\"uN8qiMj3v\"},sNJzdADUo:{variant:\"gVvmZFMaA\"}},children:/*#__PURE__*/_jsx(NavigationCopy,{height:\"100%\",id:\"fy_QJK_HS\",layoutId:\"fy_QJK_HS\",style:{width:\"100%\"},variant:\"b3LfKFxNu\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{style:{originY:0,scale:.8}},sNJzdADUo:{style:{originY:0,scale:.6}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jfw2tx\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9grq4\",\"data-framer-name\":\"Intro\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cldtw6\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-p8f02j\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:482,intrinsicWidth:827.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0),pixelHeight:1446,pixelWidth:1958,sizes:\"800px\",src:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png 1958w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:482,intrinsicWidth:827.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+0+0),pixelHeight:1446,pixelWidth:1958,sizes:`max(${componentViewport?.width||\"100vw\"} - 32px, 1px)`,src:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png 1958w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:482,intrinsicWidth:827.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+0+0),pixelHeight:1446,pixelWidth:1958,sizes:`max(${componentViewport?.width||\"100vw\"} - 48px, 1px)`,src:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png 1958w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:482,intrinsicWidth:827.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0),pixelHeight:1446,pixelWidth:1958,sizes:\"800px\",src:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png 1958w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:482,intrinsicWidth:827.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+0),pixelHeight:1446,pixelWidth:1958,sizes:\"800px\",src:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=512 512w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wx4QUVlPJoq5yHKYdqzfFeS2CWs.png 1958w\"},className:\"framer-1s3kwoz\",\"data-framer-name\":\"AboutPagePic\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-150qvxk\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a93vww\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mUaom_OVf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IEJvbGQ=\",\"--framer-font-family\":'\"Inter Tight Bold\", \"Inter Tight Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\"},children:\"Welcome. \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IEJvbGQ=\",\"--framer-font-family\":'\"Inter Tight Bold\", \"Inter Tight Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\"},children:\"Welcome. \"})}),className:\"framer-ht18qi\",fonts:[\"CUSTOM;Inter Tight Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-elxqd0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mUaom_OVf:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IEJvbGQ=\",\"--framer-font-family\":'\"Inter Tight Bold\", \"Inter Tight Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.6)\"},children:\"I'm Sherman.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IEJvbGQ=\",\"--framer-font-family\":'\"Inter Tight Bold\", \"Inter Tight Bold Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.6)\"},children:\"I'm Sherman.\"})}),className:\"framer-4v22h0\",fonts:[\"CUSTOM;Inter Tight Bold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0+0+0+320+6),pixelHeight:161,pixelWidth:160,src:\"https://framerusercontent.com/images/RCe83MbNteE4vjPe7DpQ391BE.png\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+0+0+240+4),pixelHeight:161,pixelWidth:160,src:\"https://framerusercontent.com/images/RCe83MbNteE4vjPe7DpQ391BE.png\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+0+0+320+6),pixelHeight:161,pixelWidth:160,src:\"https://framerusercontent.com/images/RCe83MbNteE4vjPe7DpQ391BE.png\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0+0+0+320+6),pixelHeight:161,pixelWidth:160,src:\"https://framerusercontent.com/images/RCe83MbNteE4vjPe7DpQ391BE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:80.5,intrinsicWidth:80,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+0+0+0+320+6),pixelHeight:161,pixelWidth:160,src:\"https://framerusercontent.com/images/RCe83MbNteE4vjPe7DpQ391BE.png\"},className:\"framer-1lo9gte\",\"data-framer-name\":\"\\xf0_\"})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"1.3em\"},children:\"I'm a Product Designer that thrives in ambitious yet ambiguous environments where I find excitement in uncovering clarity and purpose. I embrace experimentation, and focus on simplifying complex problems to drive real measurable impact through design.\"})}),className:\"framer-15o5uxw\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"My first interaction with the field of Product Design came about back in 2019 when I first stumbled across the documentary \u201CDesign Disruptors\u201D, produced by InVision. The documentary explored the transformative impact of design and its role in shaping the success of modern businesses. Companies all over the world are leveraging the power of design in order to disrupt their respective industries in order to stay competitive in a rapidly evolving market.\"})}),className:\"framer-qqz65e\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bSBJdGFsaWM=\",\"--framer-font-family\":'\"Inter Tight Medium Italic\", \"Inter Tight Medium Italic Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\"},children:\"Inspired by the ethos of human centricity, I dived into the world of design thinking & user experience design.\"})}),className:\"framer-1au92x4\",fonts:[\"CUSTOM;Inter Tight Medium Italic\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mdmkdp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qadcx7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uke1qt\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Tight SemiBold\", \"Inter Tight SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"By Day\"})}),className:\"framer-rpnu00\",fonts:[\"CUSTOM;Inter Tight SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png 1000w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+709+0+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png 1000w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png 1000w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png?scale-down-to=512 512w,https://framerusercontent.com/images/nSpybbwwdfwJwfRxohV1IPShk.png 1000w\"},className:\"framer-1fmjo1g\",\"data-framer-name\":\"Sun\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"I am a Service Designer working in public service for The Ministry of Energy Climate Solution, CleanBC. I graduated with a bachelors in design from SIAT SFU and had designed previously at Nokia & OSENSA Innovations.\"})}),className:\"framer-1bqsxoe\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-45daxa\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rezwzi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFNlbWlCb2xk\",\"--framer-font-family\":'\"Inter Tight SemiBold\", \"Inter Tight SemiBold Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-line-height\":\"1.4em\"},children:\"By Night\"})}),className:\"framer-zssnrb\",fonts:[\"CUSTOM;Inter Tight SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png 1000w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+709+0+188+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png 1000w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png 1000w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+148+0+0+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+120+0+0+0+805+0+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png?scale-down-to=512 512w,https://framerusercontent.com/images/iZNUscFfITubfaZVljKhsDOeU.png 1000w\"},className:\"framer-ontzc2\",\"data-framer-name\":\"Moon\"})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"When I'm not designing, you'll catch me playing video games, planning my next travel destination, perfecting my golf swing, and preparing for the JLPT N4 exam, a test to certify Japanese proficiency for non-native speakers.\"})}),className:\"framer-dde366\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hl2qud\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{y:(componentViewport?.y||0)+0+0+0+0+148+0+0+0+973+0},mUaom_OVf:{y:(componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+1065+0},q16YyAYT8:{y:(componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+973+0},sNJzdADUo:{y:(componentViewport?.y||0)+0+0+0+0+148+0+0+0+973+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+0+120+0+0+0+973+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tu6skf-container\",nodeId:\"G_akQIg7t\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(LinkedinCircle,{height:\"100%\",id:\"G_akQIg7t\",layoutId:\"G_akQIg7t\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{y:(componentViewport?.y||0)+0+0+0+0+148+0+0+0+973+0},mUaom_OVf:{y:(componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+1065+0},q16YyAYT8:{y:(componentViewport?.y||0)+0+0+0+0+120+0+0+640+0+973+0},sNJzdADUo:{y:(componentViewport?.y||0)+0+0+0+0+148+0+0+0+973+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+0+120+0+0+0+973+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vt86jt-container\",nodeId:\"Ficx69PCf\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(EmailCircle,{height:\"100%\",id:\"Ficx69PCf\",layoutId:\"Ficx69PCf\",width:\"100%\"})})})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-159jnou\",\"data-framer-name\":\"Line\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11zj1es\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1luabf4\",\"data-framer-name\":\"Mantra\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"28px\"},children:\"My Design Mantra's\"})}),className:\"framer-91djjp\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-904qct\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uqn0yi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"48px\",src:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png 800w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1966+80+248+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"48px\",src:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png 800w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1874+80+248+0+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"48px\",src:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png 800w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"48px\",src:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:400,intrinsicWidth:400,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+821+80+248+0+0+0),pixelHeight:800,pixelWidth:800,sizes:\"48px\",src:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png?scale-down-to=512 512w,https://framerusercontent.com/images/H8IRvMrH4yfxNYfqc58mtjVSOxs.png 800w\"},className:\"framer-1epvi7b\",\"data-framer-name\":\"\\xd0\\x9f\\xa7\\x91\\xf0\\x9f\\x8f\\xbb\\xe2\\x80\\x8d\\xf0\\x9f\\x8e\\xa8\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ap4j78\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"Be Comfortable being Uncomfortable.\"})}),className:\"framer-1pp5mho\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Designing for the ever-changing problems and needs of businesses and users means designing for change, complexity, and ambiguity. I've learned to stay resilient and resourceful amid the process. \"})}),className:\"framer-scn84t\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1scz7so\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png 1000w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1966+80+248+0+358+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png 1000w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1874+80+248+0+358+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png 1000w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+821+80+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png?scale-down-to=512 512w,https://framerusercontent.com/images/cVbazQ5S5YH4o5ubG0IwdAQHgk.png 1000w\"},className:\"framer-1nolrcq\",\"data-framer-name\":\"\\xd0\\x9f\\x9a\\x80\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ilkca\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"Design with Passion & Purpose.\"})}),className:\"framer-155p0hl\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"I am dedicated and passionate in what I do, and I take full ownership of each product I design and ship. Having seen firsthand the impact of my work, I am driven by the opportunity to make a difference.\"})}),className:\"framer-g8i0ex\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r8u0kf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png 1000w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1966+80+248+0+708+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png 1000w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1874+80+248+0+708+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png 1000w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+821+80+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png?scale-down-to=512 512w,https://framerusercontent.com/images/cCrq1KnJ3ZAaQuPN6CrIXF9KP4.png 1000w\"},className:\"framer-1ji9ipo\",\"data-framer-name\":\"\\xd0\\x9f\\x92\\xad\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s7adv9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"Learn to Fail Quickly\"})}),className:\"framer-ciwv5n\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"Fast-paced, quick iterations drive my ideation process, enabling me to explore a wide range of functional and creative solutions while iterating thoughtfully and with purpose.\"})}),className:\"framer-1ppinbo\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wctq1v\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png 1000w\"}},mUaom_OVf:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1966+80+248+0+1518+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png 1000w\"}},q16YyAYT8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1874+80+248+0+1518+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png 1000w\"}},sNJzdADUo:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+889+60+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png 1000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+821+80+248+0+0+0),pixelHeight:1e3,pixelWidth:1e3,sizes:\"40px\",src:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png?scale-down-to=512 512w,https://framerusercontent.com/images/KeFgAaBR2LVhObsCtnIDAfiUKNU.png 1000w\"},className:\"framer-1ej88pl\",\"data-framer-name\":\"\\xd0\\x9f\\x8e\\x93s\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fm3vrk\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif',\"--framer-font-size\":\"18px\"},children:\"Stay Hungry, Stay Curious, Stay Foolish. \"})}),className:\"framer-zhcjqq\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"rgba(0, 0, 0, 0.7)\"},children:\"I am a lifelong learner, both in my profession and personal life. I deeply value the exchange of feedback and critiques in order to push each other to continuously improve and skill up. \"})}),className:\"framer-116cjkl\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gghcoa\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7ea528\",\"data-framer-name\":\"Mantra\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-xz27zs-container\",isModuleExternal:true,nodeId:\"gmZydBvTr\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-start\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:8,height:\"100%\",hoverFactor:0,id:\"gmZydBvTr\",layoutId:\"gmZydBvTr\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-5utuhl-container\",inComponentSlot:true,nodeId:\"Y1ydkdegM\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG665641,{height:\"100%\",id:\"Y1ydkdegM\",layoutId:\"Y1ydkdegM\",style:{height:\"100%\",width:\"100%\"},variant:\"oPmGKDyTA\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r5uc15-container\",inComponentSlot:true,nodeId:\"soQ2YEkKT\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG074431,{height:\"100%\",id:\"soQ2YEkKT\",layoutId:\"soQ2YEkKT\",style:{height:\"100%\",width:\"100%\"},variant:\"i3qGc9isH\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vxpi1j-container\",inComponentSlot:true,nodeId:\"f9m8nA55j\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG675531,{height:\"100%\",id:\"f9m8nA55j\",layoutId:\"f9m8nA55j\",style:{height:\"100%\",width:\"100%\"},variant:\"Sp_wqCle5\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x27sye-container\",inComponentSlot:true,nodeId:\"E4Ur97N28\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG333122,{height:\"100%\",id:\"E4Ur97N28\",layoutId:\"E4Ur97N28\",style:{height:\"100%\",width:\"100%\"},variant:\"KsR9RIweM\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cqqw4z-container\",inComponentSlot:true,nodeId:\"QRPK3CsM5\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(E922248db48b6Bff984cda15df4b621,{height:\"100%\",id:\"QRPK3CsM5\",layoutId:\"QRPK3CsM5\",style:{height:\"100%\",width:\"100%\"},variant:\"DE6XZ0EU2\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-t57v59-container\",inComponentSlot:true,nodeId:\"NtIHX1ZRC\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG07641,{height:\"100%\",id:\"NtIHX1ZRC\",layoutId:\"NtIHX1ZRC\",style:{height:\"100%\",width:\"100%\"},variant:\"ZUt6xVwE8\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1112aqy-container\",inComponentSlot:true,nodeId:\"caDr8weVo\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG068521,{height:\"100%\",id:\"caDr8weVo\",layoutId:\"caDr8weVo\",style:{height:\"100%\",width:\"100%\"},variant:\"H0oe3UL69\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-f2l1k7-container\",inComponentSlot:true,nodeId:\"GtmawcyxM\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG085921,{height:\"100%\",id:\"GtmawcyxM\",layoutId:\"GtmawcyxM\",style:{height:\"100%\",width:\"100%\"},variant:\"RBY0YkB7S\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-vfaz1a-container\",inComponentSlot:true,nodeId:\"nAO3SJ4UQ\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG727821,{height:\"100%\",id:\"nAO3SJ4UQ\",layoutId:\"nAO3SJ4UQ\",style:{height:\"100%\",width:\"100%\"},variant:\"ab_0PJiFe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-18ri4sg-container\",inComponentSlot:true,nodeId:\"tcrNXtLdt\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG838821,{height:\"100%\",id:\"tcrNXtLdt\",layoutId:\"tcrNXtLdt\",style:{height:\"100%\",width:\"100%\"},variant:\"vFlO2bLEP\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16fww5a-container\",inComponentSlot:true,nodeId:\"jDYDY_OcP\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG14851,{height:\"100%\",id:\"jDYDY_OcP\",layoutId:\"jDYDY_OcP\",style:{height:\"100%\",width:\"100%\"},variant:\"wXtq3yS1m\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-osc55q-container\",inComponentSlot:true,nodeId:\"uXLlZWbU_\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(IMG42671,{height:\"100%\",id:\"uXLlZWbU_\",layoutId:\"uXLlZWbU_\",style:{height:\"100%\",width:\"100%\"},variant:\"RXBloc5dK\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:400,width:\"277px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-xc1q2j-container\",inComponentSlot:true,nodeId:\"ZJQOruspH\",rendersWithMotion:true,scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(Cd0829f1470d938dF44c6c2fbe851,{height:\"100%\",id:\"ZJQOruspH\",layoutId:\"ZJQOruspH\",style:{height:\"100%\",width:\"100%\"},variant:\"vNBf7OKPD\",width:\"100%\"})})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{style:{originY:0,scale:.889}},sNJzdADUo:{style:{originY:0,scale:.938}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jiio28 hidden-1rkry6v hidden-16fxpdr\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-8s5jww\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n4xj00\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3na2t1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif'},children:\"LET'S GET IN TOUCH.\"})}),className:\"framer-8nyhpu\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\"},children:\"Designed by Sherman Ming @2024\"})}),className:\"framer-83qdww\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{y:(componentViewport?.y||0)+1686-561+0+440+0+41+3.5},sNJzdADUo:{y:(componentViewport?.y||0)+1433-561+0+440+0+41+3.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:\"190px\",y:(componentViewport?.y||0)+0+1979+0+530+0+41+3.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rh9scl-container\",nodeId:\"aAlrNWwqi\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(AboutJumpTop,{height:\"100%\",id:\"aAlrNWwqi\",layoutId:\"aAlrNWwqi\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17ngqbd\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{y:(componentViewport?.y||0)+1686-561+0+440+0+41+0+0},sNJzdADUo:{y:(componentViewport?.y||0)+1433-561+0+440+0+41+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1979+0+530+0+41+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a4a62w-container\",nodeId:\"AJFW8w2Ku\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(LinkedinCircle,{height:\"100%\",id:\"AJFW8w2Ku\",layoutId:\"AJFW8w2Ku\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cPs_2syO7:{y:(componentViewport?.y||0)+1686-561+0+440+0+41+0+0},sNJzdADUo:{y:(componentViewport?.y||0)+1433-561+0+440+0+41+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1979+0+530+0+41+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11ypbf-container\",nodeId:\"OIEetBQRX\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(EmailCircle,{height:\"100%\",id:\"OIEetBQRX\",layoutId:\"OIEetBQRX\",width:\"100%\"})})})})]})]})]})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g9xdpr hidden-o65trm hidden-1p0t8sw hidden-1vvlq7q\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k8j1lx\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130o5ch\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d137vz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IE1lZGl1bQ==\",\"--framer-font-family\":'\"Inter Tight Medium\", \"Inter Tight Medium Placeholder\", sans-serif'},children:\"LET'S GET IN TOUCH.\"})}),className:\"framer-13q7b9l\",fonts:[\"CUSTOM;Inter Tight Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0ludGVyIFRpZ2h0IFJlZ3VsYXI=\",\"--framer-font-family\":'\"Inter Tight Regular\", \"Inter Tight Regular Placeholder\", sans-serif',\"--framer-font-size\":\"12px\"},children:\"Designed by Sherman Ming @2024\"})}),className:\"framer-1gesqwp\",fonts:[\"CUSTOM;Inter Tight Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mUaom_OVf:{y:(componentViewport?.y||0)+0+5162+40+41+0+0},q16YyAYT8:{y:(componentViewport?.y||0)+0+5070+40+41+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:33,width:\"190px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-6r0llw-container\",nodeId:\"JUl9aXRBj\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(JumpTop,{height:\"100%\",id:\"JUl9aXRBj\",layoutId:\"JUl9aXRBj\",style:{width:\"100%\"},variant:\"piDtmIb5Q\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tuyat5\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-625h9a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mUaom_OVf:{y:(componentViewport?.y||0)+0+5162+40+41+0+114.6+0+0},q16YyAYT8:{y:(componentViewport?.y||0)+0+5070+40+41+0+114.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1samctt-container\",nodeId:\"a7ySB2LTw\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(LinkedInIcon,{height:\"100%\",id:\"a7ySB2LTw\",layoutId:\"a7ySB2LTw\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mUaom_OVf:{y:(componentViewport?.y||0)+0+5162+40+41+0+114.6+0+0},q16YyAYT8:{y:(componentViewport?.y||0)+0+5070+40+41+0+114.6+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,width:\"30px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-13cdqpi-container\",nodeId:\"f8o5R4xw4\",scopeId:\"j_oTc3ChB\",children:/*#__PURE__*/_jsx(EmailIcon,{height:\"100%\",id:\"f8o5R4xw4\",layoutId:\"f8o5R4xw4\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Lqb4f.framer-jblo0g, .framer-Lqb4f .framer-jblo0g { display: block; }\",\".framer-Lqb4f.framer-o65trm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-Lqb4f .framer-19xb5r3-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 2; }\",\".framer-Lqb4f .framer-jfw2tx, .framer-Lqb4f .framer-1ap4j78, .framer-Lqb4f .framer-ilkca, .framer-Lqb4f .framer-1s7adv9, .framer-Lqb4f .framer-1fm3vrk, .framer-Lqb4f .framer-gghcoa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-v9grq4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 80px 80px 80px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-cldtw6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-Lqb4f .framer-p8f02j { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 600px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Lqb4f .framer-1s3kwoz { aspect-ratio: 1.3466666666666667 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 149px); overflow: visible; position: relative; width: 1px; }\",\".framer-Lqb4f .framer-150qvxk { align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 80px; position: relative; width: 1px; }\",\".framer-Lqb4f .framer-a93vww, .framer-Lqb4f .framer-1d137vz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-ht18qi, .framer-Lqb4f .framer-15o5uxw, .framer-Lqb4f .framer-qqz65e, .framer-Lqb4f .framer-1au92x4, .framer-Lqb4f .framer-1bqsxoe, .framer-Lqb4f .framer-dde366, .framer-Lqb4f .framer-1pp5mho, .framer-Lqb4f .framer-scn84t, .framer-Lqb4f .framer-155p0hl, .framer-Lqb4f .framer-g8i0ex, .framer-Lqb4f .framer-ciwv5n, .framer-Lqb4f .framer-1ppinbo, .framer-Lqb4f .framer-zhcjqq, .framer-Lqb4f .framer-116cjkl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Lqb4f .framer-elxqd0 { 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-Lqb4f .framer-4v22h0, .framer-Lqb4f .framer-rpnu00, .framer-Lqb4f .framer-zssnrb, .framer-Lqb4f .framer-8nyhpu, .framer-Lqb4f .framer-83qdww, .framer-Lqb4f .framer-13q7b9l, .framer-Lqb4f .framer-1gesqwp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Lqb4f .framer-1lo9gte { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); overflow: visible; position: relative; width: 52px; }\",\".framer-Lqb4f .framer-mdmkdp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-qadcx7, .framer-Lqb4f .framer-45daxa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Lqb4f .framer-uke1qt, .framer-Lqb4f .framer-rezwzi { 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: min-content; }\",\".framer-Lqb4f .framer-1fmjo1g, .framer-Lqb4f .framer-ontzc2, .framer-Lqb4f .framer-1nolrcq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 40px; }\",\".framer-Lqb4f .framer-hl2qud { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-1tu6skf-container { flex: none; height: auto; left: -9px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-Lqb4f .framer-vt86jt-container { flex: none; height: auto; left: 33px; position: absolute; top: 0px; width: auto; z-index: 1; }\",\".framer-Lqb4f .framer-159jnou { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 80px 0px 80px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-11zj1es { background-color: rgba(0, 0, 0, 0.25); flex: none; height: 1px; overflow: hidden; position: relative; width: 1600px; }\",\".framer-Lqb4f .framer-1luabf4 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-91djjp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1600px; word-break: break-word; word-wrap: break-word; }\",\".framer-Lqb4f .framer-904qct { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1600px; }\",\".framer-Lqb4f .framer-uqn0yi, .framer-Lqb4f .framer-1scz7so, .framer-Lqb4f .framer-1r8u0kf, .framer-Lqb4f .framer-wctq1v { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Lqb4f .framer-1epvi7b { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-Lqb4f .framer-1ji9ipo, .framer-Lqb4f .framer-1ej88pl { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 500px); overflow: visible; position: relative; width: 40px; }\",\".framer-Lqb4f .framer-7ea528 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 80px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-xz27zs-container { flex: none; height: 400px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-5utuhl-container, .framer-Lqb4f .framer-1r5uc15-container, .framer-Lqb4f .framer-vxpi1j-container, .framer-Lqb4f .framer-1x27sye-container, .framer-Lqb4f .framer-1cqqw4z-container, .framer-Lqb4f .framer-t57v59-container, .framer-Lqb4f .framer-1112aqy-container, .framer-Lqb4f .framer-f2l1k7-container, .framer-Lqb4f .framer-vfaz1a-container, .framer-Lqb4f .framer-18ri4sg-container, .framer-Lqb4f .framer-16fww5a-container, .framer-Lqb4f .framer-osc55q-container, .framer-Lqb4f .framer-xc1q2j-container { height: 400px; position: relative; width: 277px; }\",\".framer-Lqb4f .framer-jiio28 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 120px 40px 120px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-8s5jww, .framer-Lqb4f .framer-1k8j1lx { background-color: rgba(0, 0, 0, 0.3); flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-n4xj00 { 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-Lqb4f .framer-3na2t1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 190px; }\",\".framer-Lqb4f .framer-1rh9scl-container, .framer-Lqb4f .framer-6r0llw-container { flex: none; height: auto; position: relative; width: 190px; }\",\".framer-Lqb4f .framer-17ngqbd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 190px; }\",\".framer-Lqb4f .framer-a4a62w-container, .framer-Lqb4f .framer-11ypbf-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-Lqb4f .framer-1g9xdpr { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-130o5ch { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-1tuyat5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Lqb4f .framer-625h9a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Lqb4f .framer-1samctt-container, .framer-Lqb4f .framer-13cdqpi-container { flex: none; height: 30px; position: relative; width: 30px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lqb4f.framer-o65trm, .framer-Lqb4f .framer-jfw2tx, .framer-Lqb4f .framer-v9grq4, .framer-Lqb4f .framer-cldtw6, .framer-Lqb4f .framer-p8f02j, .framer-Lqb4f .framer-150qvxk, .framer-Lqb4f .framer-a93vww, .framer-Lqb4f .framer-elxqd0, .framer-Lqb4f .framer-mdmkdp, .framer-Lqb4f .framer-qadcx7, .framer-Lqb4f .framer-uke1qt, .framer-Lqb4f .framer-45daxa, .framer-Lqb4f .framer-rezwzi, .framer-Lqb4f .framer-hl2qud, .framer-Lqb4f .framer-159jnou, .framer-Lqb4f .framer-1luabf4, .framer-Lqb4f .framer-904qct, .framer-Lqb4f .framer-uqn0yi, .framer-Lqb4f .framer-1ap4j78, .framer-Lqb4f .framer-1scz7so, .framer-Lqb4f .framer-ilkca, .framer-Lqb4f .framer-1r8u0kf, .framer-Lqb4f .framer-1s7adv9, .framer-Lqb4f .framer-wctq1v, .framer-Lqb4f .framer-1fm3vrk, .framer-Lqb4f .framer-gghcoa, .framer-Lqb4f .framer-7ea528, .framer-Lqb4f .framer-jiio28, .framer-Lqb4f .framer-3na2t1, .framer-Lqb4f .framer-17ngqbd, .framer-Lqb4f .framer-1g9xdpr, .framer-Lqb4f .framer-130o5ch, .framer-Lqb4f .framer-1d137vz, .framer-Lqb4f .framer-1tuyat5, .framer-Lqb4f .framer-625h9a { gap: 0px; } .framer-Lqb4f.framer-o65trm > *, .framer-Lqb4f .framer-a93vww > *, .framer-Lqb4f .framer-3na2t1 > *, .framer-Lqb4f .framer-1d137vz > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Lqb4f.framer-o65trm > :first-child, .framer-Lqb4f .framer-jfw2tx > :first-child, .framer-Lqb4f .framer-v9grq4 > :first-child, .framer-Lqb4f .framer-150qvxk > :first-child, .framer-Lqb4f .framer-a93vww > :first-child, .framer-Lqb4f .framer-qadcx7 > :first-child, .framer-Lqb4f .framer-45daxa > :first-child, .framer-Lqb4f .framer-159jnou > :first-child, .framer-Lqb4f .framer-1luabf4 > :first-child, .framer-Lqb4f .framer-uqn0yi > :first-child, .framer-Lqb4f .framer-1ap4j78 > :first-child, .framer-Lqb4f .framer-1scz7so > :first-child, .framer-Lqb4f .framer-ilkca > :first-child, .framer-Lqb4f .framer-1r8u0kf > :first-child, .framer-Lqb4f .framer-1s7adv9 > :first-child, .framer-Lqb4f .framer-wctq1v > :first-child, .framer-Lqb4f .framer-1fm3vrk > :first-child, .framer-Lqb4f .framer-gghcoa > :first-child, .framer-Lqb4f .framer-7ea528 > :first-child, .framer-Lqb4f .framer-jiio28 > :first-child, .framer-Lqb4f .framer-3na2t1 > :first-child, .framer-Lqb4f .framer-1g9xdpr > :first-child, .framer-Lqb4f .framer-130o5ch > :first-child, .framer-Lqb4f .framer-1d137vz > :first-child { margin-top: 0px; } .framer-Lqb4f.framer-o65trm > :last-child, .framer-Lqb4f .framer-jfw2tx > :last-child, .framer-Lqb4f .framer-v9grq4 > :last-child, .framer-Lqb4f .framer-150qvxk > :last-child, .framer-Lqb4f .framer-a93vww > :last-child, .framer-Lqb4f .framer-qadcx7 > :last-child, .framer-Lqb4f .framer-45daxa > :last-child, .framer-Lqb4f .framer-159jnou > :last-child, .framer-Lqb4f .framer-1luabf4 > :last-child, .framer-Lqb4f .framer-uqn0yi > :last-child, .framer-Lqb4f .framer-1ap4j78 > :last-child, .framer-Lqb4f .framer-1scz7so > :last-child, .framer-Lqb4f .framer-ilkca > :last-child, .framer-Lqb4f .framer-1r8u0kf > :last-child, .framer-Lqb4f .framer-1s7adv9 > :last-child, .framer-Lqb4f .framer-wctq1v > :last-child, .framer-Lqb4f .framer-1fm3vrk > :last-child, .framer-Lqb4f .framer-gghcoa > :last-child, .framer-Lqb4f .framer-7ea528 > :last-child, .framer-Lqb4f .framer-jiio28 > :last-child, .framer-Lqb4f .framer-3na2t1 > :last-child, .framer-Lqb4f .framer-1g9xdpr > :last-child, .framer-Lqb4f .framer-130o5ch > :last-child, .framer-Lqb4f .framer-1d137vz > :last-child { margin-bottom: 0px; } .framer-Lqb4f .framer-jfw2tx > *, .framer-Lqb4f .framer-qadcx7 > *, .framer-Lqb4f .framer-45daxa > *, .framer-Lqb4f .framer-1ap4j78 > *, .framer-Lqb4f .framer-ilkca > *, .framer-Lqb4f .framer-1s7adv9 > *, .framer-Lqb4f .framer-1fm3vrk > *, .framer-Lqb4f .framer-gghcoa > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Lqb4f .framer-v9grq4 > *, .framer-Lqb4f .framer-1luabf4 > *, .framer-Lqb4f .framer-7ea528 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Lqb4f .framer-cldtw6 > *, .framer-Lqb4f .framer-17ngqbd > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Lqb4f .framer-cldtw6 > :first-child, .framer-Lqb4f .framer-p8f02j > :first-child, .framer-Lqb4f .framer-elxqd0 > :first-child, .framer-Lqb4f .framer-mdmkdp > :first-child, .framer-Lqb4f .framer-uke1qt > :first-child, .framer-Lqb4f .framer-rezwzi > :first-child, .framer-Lqb4f .framer-hl2qud > :first-child, .framer-Lqb4f .framer-904qct > :first-child, .framer-Lqb4f .framer-17ngqbd > :first-child, .framer-Lqb4f .framer-1tuyat5 > :first-child, .framer-Lqb4f .framer-625h9a > :first-child { margin-left: 0px; } .framer-Lqb4f .framer-cldtw6 > :last-child, .framer-Lqb4f .framer-p8f02j > :last-child, .framer-Lqb4f .framer-elxqd0 > :last-child, .framer-Lqb4f .framer-mdmkdp > :last-child, .framer-Lqb4f .framer-uke1qt > :last-child, .framer-Lqb4f .framer-rezwzi > :last-child, .framer-Lqb4f .framer-hl2qud > :last-child, .framer-Lqb4f .framer-904qct > :last-child, .framer-Lqb4f .framer-17ngqbd > :last-child, .framer-Lqb4f .framer-1tuyat5 > :last-child, .framer-Lqb4f .framer-625h9a > :last-child { margin-right: 0px; } .framer-Lqb4f .framer-p8f02j > *, .framer-Lqb4f .framer-1tuyat5 > *, .framer-Lqb4f .framer-625h9a > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-Lqb4f .framer-150qvxk > *, .framer-Lqb4f .framer-uqn0yi > *, .framer-Lqb4f .framer-1scz7so > *, .framer-Lqb4f .framer-1r8u0kf > *, .framer-Lqb4f .framer-wctq1v > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Lqb4f .framer-elxqd0 > *, .framer-Lqb4f .framer-uke1qt > *, .framer-Lqb4f .framer-rezwzi > *, .framer-Lqb4f .framer-hl2qud > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Lqb4f .framer-mdmkdp > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Lqb4f .framer-159jnou > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Lqb4f .framer-904qct > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Lqb4f .framer-jiio28 > *, .framer-Lqb4f .framer-1g9xdpr > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Lqb4f .framer-130o5ch > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\"@media (min-width: 600px) and (max-width: 1023px) { .framer-Lqb4f.framer-o65trm { width: 600px; } .framer-Lqb4f .framer-v9grq4 { padding: 120px 24px 80px 24px; } .framer-Lqb4f .framer-cldtw6 { flex-direction: column; gap: 40px; width: 100%; } .framer-Lqb4f .framer-p8f02j { flex: none; height: min-content; width: 100%; } .framer-Lqb4f .framer-150qvxk { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; } .framer-Lqb4f .framer-159jnou { padding: 0px 24px 0px 24px; } .framer-Lqb4f .framer-11zj1es, .framer-Lqb4f .framer-91djjp { width: 100%; } .framer-Lqb4f .framer-1luabf4 { padding: 80px 24px 80px 24px; } .framer-Lqb4f .framer-904qct { flex-direction: column; width: 100%; } .framer-Lqb4f .framer-uqn0yi, .framer-Lqb4f .framer-1scz7so, .framer-Lqb4f .framer-1r8u0kf, .framer-Lqb4f .framer-wctq1v { flex: none; width: 100%; } .framer-Lqb4f .framer-1g9xdpr { padding: 40px 24px 40px 24px; } .framer-Lqb4f .framer-6r0llw-container { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lqb4f .framer-cldtw6, .framer-Lqb4f .framer-904qct { gap: 0px; } .framer-Lqb4f .framer-cldtw6 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Lqb4f .framer-cldtw6 > :first-child, .framer-Lqb4f .framer-904qct > :first-child { margin-top: 0px; } .framer-Lqb4f .framer-cldtw6 > :last-child, .framer-Lqb4f .framer-904qct > :last-child { margin-bottom: 0px; } .framer-Lqb4f .framer-904qct > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (max-width: 599px) { .framer-Lqb4f.framer-o65trm { width: 390px; } .framer-Lqb4f .framer-v9grq4 { padding: 120px 16px 80px 16px; } .framer-Lqb4f .framer-cldtw6 { flex-direction: column; gap: 40px; width: 100%; } .framer-Lqb4f .framer-p8f02j { flex: none; height: min-content; width: 100%; } .framer-Lqb4f .framer-150qvxk { align-self: unset; flex: none; height: min-content; padding: 0px; width: 100%; } .framer-Lqb4f .framer-1lo9gte { height: var(--framer-aspect-ratio-supported, 40px); width: 40px; } .framer-Lqb4f .framer-mdmkdp { flex-direction: column; } .framer-Lqb4f .framer-qadcx7, .framer-Lqb4f .framer-45daxa, .framer-Lqb4f .framer-uqn0yi, .framer-Lqb4f .framer-1scz7so, .framer-Lqb4f .framer-1r8u0kf, .framer-Lqb4f .framer-wctq1v { flex: none; width: 100%; } .framer-Lqb4f .framer-159jnou { padding: 0px 16px 0px 16px; } .framer-Lqb4f .framer-11zj1es, .framer-Lqb4f .framer-91djjp { width: 100%; } .framer-Lqb4f .framer-1luabf4 { padding: 80px 16px 80px 16px; } .framer-Lqb4f .framer-904qct { flex-direction: column; width: 100%; } .framer-Lqb4f .framer-1g9xdpr { padding: 40px 16px 40px 16px; } .framer-Lqb4f .framer-6r0llw-container { order: 0; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lqb4f .framer-cldtw6, .framer-Lqb4f .framer-mdmkdp, .framer-Lqb4f .framer-904qct { gap: 0px; } .framer-Lqb4f .framer-cldtw6 > *, .framer-Lqb4f .framer-mdmkdp > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Lqb4f .framer-cldtw6 > :first-child, .framer-Lqb4f .framer-mdmkdp > :first-child, .framer-Lqb4f .framer-904qct > :first-child { margin-top: 0px; } .framer-Lqb4f .framer-cldtw6 > :last-child, .framer-Lqb4f .framer-mdmkdp > :last-child, .framer-Lqb4f .framer-904qct > :last-child { margin-bottom: 0px; } .framer-Lqb4f .framer-904qct > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } }}\",\"@media (min-width: 1440px) and (max-width: 1919px) { .framer-Lqb4f.framer-o65trm { height: 1686px; width: 1440px; } .framer-Lqb4f .framer-jfw2tx { gap: 40px; width: 1600px; } .framer-Lqb4f .framer-v9grq4 { justify-content: flex-end; padding: 148px 0px 60px 0px; } .framer-Lqb4f .framer-cldtw6, .framer-Lqb4f .framer-11zj1es, .framer-Lqb4f .framer-91djjp, .framer-Lqb4f .framer-904qct { width: 100%; } .framer-Lqb4f .framer-159jnou { padding: 0px; } .framer-Lqb4f .framer-1luabf4 { padding: 60px 0px 0px 0px; } .framer-Lqb4f .framer-gghcoa { bottom: 0px; gap: 0px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; } .framer-Lqb4f .framer-7ea528 { padding: 0px 0px 40px 0px; } .framer-Lqb4f .framer-jiio28 { padding: 0px 0px 40px 0px; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lqb4f .framer-jfw2tx, .framer-Lqb4f .framer-gghcoa { gap: 0px; } .framer-Lqb4f .framer-jfw2tx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Lqb4f .framer-jfw2tx > :first-child, .framer-Lqb4f .framer-gghcoa > :first-child { margin-top: 0px; } .framer-Lqb4f .framer-jfw2tx > :last-child, .framer-Lqb4f .framer-gghcoa > :last-child { margin-bottom: 0px; } .framer-Lqb4f .framer-gghcoa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\",\"@media (min-width: 1024px) and (max-width: 1439px) { .framer-Lqb4f.framer-o65trm { height: 1433px; width: 1024px; } .framer-Lqb4f .framer-jfw2tx { gap: 40px; width: 1600px; } .framer-Lqb4f .framer-v9grq4 { justify-content: flex-end; padding: 148px 0px 60px 0px; } .framer-Lqb4f .framer-cldtw6, .framer-Lqb4f .framer-11zj1es, .framer-Lqb4f .framer-91djjp, .framer-Lqb4f .framer-904qct { width: 100%; } .framer-Lqb4f .framer-159jnou { padding: 0px; } .framer-Lqb4f .framer-1luabf4 { padding: 60px 0px 0px 0px; } .framer-Lqb4f .framer-gghcoa { bottom: 0px; gap: 0px; left: 0px; position: absolute; right: 0px; width: unset; z-index: 1; } .framer-Lqb4f .framer-7ea528 { padding: 0px 0px 40px 0px; } .framer-Lqb4f .framer-jiio28 { padding: 0px 0px 40px 0px; z-index: 1; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Lqb4f .framer-jfw2tx, .framer-Lqb4f .framer-gghcoa { gap: 0px; } .framer-Lqb4f .framer-jfw2tx > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Lqb4f .framer-jfw2tx > :first-child, .framer-Lqb4f .framer-gghcoa > :first-child { margin-top: 0px; } .framer-Lqb4f .framer-jfw2tx > :last-child, .framer-Lqb4f .framer-gghcoa > :last-child { margin-bottom: 0px; } .framer-Lqb4f .framer-gghcoa > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1936\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"q16YyAYT8\":{\"layout\":[\"fixed\",\"auto\"]},\"mUaom_OVf\":{\"layout\":[\"fixed\",\"auto\"]},\"cPs_2syO7\":{\"layout\":[\"fixed\",\"fixed\"]},\"sNJzdADUo\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"hHTLQNdZT\":{\"pattern\":\":hHTLQNdZT\",\"name\":\"top\"},\"BXhhuuN3K\":{\"pattern\":\":BXhhuuN3K\",\"name\":\"top\"}}\n * @framerResponsiveScreen\n */const Framerj_oTc3ChB=withCSS(Component,css,\"framer-Lqb4f\");export default Framerj_oTc3ChB;Framerj_oTc3ChB.displayName=\"Nokia Nsp\";Framerj_oTc3ChB.defaultProps={height:1936,width:1920};addFonts(Framerj_oTc3ChB,[{explicitInter:true,fonts:[{family:\"Inter Tight Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/viFpes9dUlUO8CCcAtcQsDtZA.woff2\"},{family:\"Inter Tight Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/o5hCKvrzxPnDIDXiA6icOum4zs.woff2\"},{family:\"Inter Tight Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/alQStfoYFSo7dk7Sy2KewCH9ueE.woff2\"},{family:\"Inter Tight Medium Italic\",source:\"custom\",url:\"https://framerusercontent.com/assets/6dbilIhVK5PqizoJBdVxxFM6g.woff2\"},{family:\"Inter Tight SemiBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/gct6hbbVFoxWtfqgSo4ybi6Ecs.woff2\"}]},...NavigationCopyFonts,...LinkedinCircleFonts,...EmailCircleFonts,...IMG665641Fonts,...IMG074431Fonts,...IMG675531Fonts,...IMG333122Fonts,...E922248db48b6Bff984cda15df4b621Fonts,...IMG07641Fonts,...IMG068521Fonts,...IMG085921Fonts,...IMG727821Fonts,...IMG838821Fonts,...IMG14851Fonts,...IMG42671Fonts,...Cd0829f1470d938dF44c6c2fbe851Fonts,...TickerFonts,...AboutJumpTopFonts,...JumpTopFonts,...LinkedInIconFonts,...EmailIconFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerj_oTc3ChB\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q16YyAYT8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mUaom_OVf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cPs_2syO7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"sNJzdADUo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerScrollSections\":\"{\\\"hHTLQNdZT\\\":{\\\"pattern\\\":\\\":hHTLQNdZT\\\",\\\"name\\\":\\\"top\\\"},\\\"BXhhuuN3K\\\":{\\\"pattern\\\":\\\":BXhhuuN3K\\\",\\\"name\\\":\\\"top\\\"}}\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"1936\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "currentTarget", "RenderTarget", "isCanvas", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1azh4u3", "args", "onMouseLeavep0kbnx", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramereBukJNXdC", "withCSS", "eBukJNXdC_default", "addPropertyControls", "ControlType", "addFonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "cx", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "FramerI59iOr1UA", "withCSS", "I59iOr1UA_default", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1s1kdp3", "args", "onMouseLeavehoug7h", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FrameriTsk7BJyU", "withCSS", "iTsk7BJyU_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter104pxji", "args", "onMouseLeave13lh6l7", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerjUcVzII2K", "withCSS", "jUcVzII2K_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1jlvqj0", "args", "onMouseLeave1idoghv", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "Framerk4KAFR5Vt", "withCSS", "k4KAFR5Vt_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterusiujb", "args", "onMouseLeave4eqltk", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerLTIVc7OgR", "withCSS", "LTIVc7OgR_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnteri0kz3x", "args", "onMouseLeavei0agtj", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerMGlP_63Dd", "withCSS", "MGlP_63Dd_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1nat7lt", "args", "onMouseLeaveulzjhw", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerQgyqFJFNY", "withCSS", "QgyqFJFNY_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1n9iru5", "args", "onMouseLeave1jbi5w4", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerqKsakgcRz", "withCSS", "qKsakgcRz_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter8cu87w", "args", "onMouseLeaveznb2t3", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerSSYeBVxn8", "withCSS", "SSYeBVxn8_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEntery553t2", "args", "onMouseLeave1lip3x", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerTyKxaU_Gw", "withCSS", "TyKxaU_Gw_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterrwnvbq", "args", "onMouseLeave105ioua", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerUWQYo2TO7", "withCSS", "UWQYo2TO7_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterquzwdf", "args", "onMouseLeave1cjxunx", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "Framervrp1Ulq8u", "withCSS", "vrp1Ulq8u_default", "addPropertyControls", "ControlType", "addFonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnterfqmcau", "args", "onMouseLeave170u9hf", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Image2", "getLoadingLazyAtYPosition", "u", "RichText2", "css", "FramerZvf6SmrwZ", "withCSS", "Zvf6SmrwZ_default", "addPropertyControls", "ControlType", "addFonts", "NavigationCopyFonts", "getFonts", "mIBYVtmpE_default", "LinkedinCircleFonts", "UCyNrHtu9_default", "EmailCircleFonts", "MqJOACMQf_default", "IMG665641Fonts", "qKsakgcRz_default", "IMG074431Fonts", "Zvf6SmrwZ_default", "IMG675531Fonts", "iTsk7BJyU_default", "IMG333122Fonts", "UWQYo2TO7_default", "E922248db48b6Bff984cda15df4b621Fonts", "jUcVzII2K_default", "IMG07641Fonts", "k4KAFR5Vt_default", "IMG068521Fonts", "SSYeBVxn8_default", "IMG085921Fonts", "QgyqFJFNY_default", "IMG727821Fonts", "MGlP_63Dd_default", "IMG838821Fonts", "vrp1Ulq8u_default", "IMG14851Fonts", "LTIVc7OgR_default", "IMG42671Fonts", "TyKxaU_Gw_default", "Cd0829f1470d938dF44c6c2fbe851Fonts", "eBukJNXdC_default", "TickerFonts", "Ticker", "AboutJumpTopFonts", "I59iOr1UA_default", "JumpTopFonts", "D0D1BLkCH_default", "LinkedInIconFonts", "pX56SUeX5_default", "EmailIconFonts", "uf8xHI45B_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "css", "Framerj_oTc3ChB", "withCSS", "j_oTc3ChB_default", "addFonts", "__FramerMetadata__"]
}
