{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js", "ssg:https://framerusercontent.com/modules/34jeAIzEaFyHX485jwzJ/CVwEQh5HkL7wwba5kk0m/LNyHo05Jg.js", "ssg:https://framerusercontent.com/modules/nh04wc7nvpHscRgQ8751/e8T23noCv0eUlbTl1pJl/nbm9vV3KQ.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);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(slots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===slots.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(slots,(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%\"};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]);}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,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"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\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (ebb081e)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"AZXOStK9M\",\"bJY7aj8Me\",\"IRHH8pZrX\",\"h9uUPNUa0\"];const serializationHash=\"framer-l8haL\";const variantClassNames={AZXOStK9M:\"framer-v-1nmuiq1\",bJY7aj8Me:\"framer-v-1q6bqx\",h9uUPNUa0:\"framer-v-7dv8wy\",IRHH8pZrX:\"framer-v-fr9tfd\"};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 transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Reach Out Desktop Revert\":\"IRHH8pZrX\",\"Reach Out Desktop\":\"AZXOStK9M\",\"Reach Out Tablet and Phone Revert\":\"h9uUPNUa0\",\"Reach Out Tablet and Phone\":\"bJY7aj8Me\"};const getProps=({height,id,link,title,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,Ht6fxtxVL:(_ref=title!==null&&title!==void 0?title:props.Ht6fxtxVL)!==null&&_ref!==void 0?_ref:\"Reach Out\",luSx2M3iE:link!==null&&link!==void 0?link:props.luSx2M3iE,variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"AZXOStK9M\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,luSx2M3iE,Ht6fxtxVL,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"AZXOStK9M\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-l8haL\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(Link,{href:luSx2M3iE,children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(\"framer-1nmuiq1\",className)} framer-4jt0hx`,\"data-framer-name\":\"Reach Out Desktop\",layoutDependency:layoutDependency,layoutId:\"AZXOStK9M\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{background:\"linear-gradient(180deg, rgb(245, 228, 204) 0%, rgba(245, 228, 204, 0.9) 31.56614601612091%, rgb(245, 228, 204) 100%)\",borderBottomLeftRadius:17.49,borderBottomRightRadius:17.49,borderTopLeftRadius:17.49,borderTopRightRadius:17.49,boxShadow:\"inset 2px 4px 5px 0px rgba(255, 255, 255, 0.25)\",...style},variants:{bJY7aj8Me:{borderBottomLeftRadius:10.49,borderBottomRightRadius:10.49,borderTopLeftRadius:10.49,borderTopRightRadius:10.49},h9uUPNUa0:{background:\"linear-gradient(180deg, rgb(30, 45, 16) 0%, rgba(30, 45, 16, 0.9) 31.56614601612091%, rgb(30, 45, 16) 100%)\",borderBottomLeftRadius:10.49,borderBottomRightRadius:10.49,borderTopLeftRadius:10.49,borderTopRightRadius:10.49,boxShadow:\"inset 2px 4px 5px 0px rgba(0, 0, 0, 0.25)\"},IRHH8pZrX:{background:\"linear-gradient(180deg, rgb(30, 45, 16) 0%, rgba(30, 45, 16, 0.9) 31.56614601612091%, rgb(30, 45, 16) 100%)\",boxShadow:\"inset 2px 4px 5px 0px rgba(0, 0, 0, 0.25)\"}},...addPropertyOverrides({bJY7aj8Me:{\"data-framer-name\":\"Reach Out Tablet and Phone\"},h9uUPNUa0:{\"data-framer-name\":\"Reach Out Tablet and Phone Revert\"},IRHH8pZrX:{\"data-framer-name\":\"Reach Out Desktop Revert\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOZXVlIExpZ2h0\",\"--framer-font-family\":'\"Helvetica Neue Light\", \"Helvetica Neue Light Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 45, 16))\"},children:\"Reach Out\"})}),className:\"framer-6sw0w1\",\"data-framer-name\":\"Button\",fonts:[\"CUSTOM;Helvetica Neue Light\"],layoutDependency:layoutDependency,layoutId:\"X6YZXVtZP\",style:{\"--extracted-r6o4lv\":\"rgb(30, 45, 16)\",\"--framer-paragraph-spacing\":\"0px\"},text:Ht6fxtxVL,variants:{h9uUPNUa0:{\"--extracted-r6o4lv\":\"rgb(245, 228, 204)\"},IRHH8pZrX:{\"--extracted-r6o4lv\":\"rgb(245, 228, 204)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({bJY7aj8Me:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOZXVlIExpZ2h0\",\"--framer-font-family\":'\"Helvetica Neue Light\", \"Helvetica Neue Light Placeholder\", sans-serif',\"--framer-font-size\":\"18.24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(30, 45, 16))\"},children:\"Reach Out\"})})},h9uUPNUa0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOZXVlIExpZ2h0\",\"--framer-font-family\":'\"Helvetica Neue Light\", \"Helvetica Neue Light Placeholder\", sans-serif',\"--framer-font-size\":\"18.24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 228, 204))\"},children:\"Reach Out\"})})},IRHH8pZrX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO0hlbHZldGljYSBOZXVlIExpZ2h0\",\"--framer-font-family\":'\"Helvetica Neue Light\", \"Helvetica Neue Light Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 228, 204))\"},children:\"Reach Out\"})})}},baseVariant,gestureVariant)})})})})})});});const css=['.framer-l8haL [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-l8haL .framer-4jt0hx { display: block; }\",\".framer-l8haL .framer-1nmuiq1 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 49px; justify-content: center; overflow: visible; padding: 6px 13px 6px 13px; position: relative; text-decoration: none; width: 187px; }\",\".framer-l8haL .framer-6sw0w1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-l8haL .framer-1nmuiq1 { gap: 0px; } .framer-l8haL .framer-1nmuiq1 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-l8haL .framer-1nmuiq1 > :first-child { margin-left: 0px; } .framer-l8haL .framer-1nmuiq1 > :last-child { margin-right: 0px; } }\",\".framer-l8haL.framer-v-1q6bqx .framer-1nmuiq1, .framer-l8haL.framer-v-7dv8wy .framer-1nmuiq1 { height: 37px; width: 127px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 187\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"bJY7aj8Me\":{\"layout\":[\"fixed\",\"fixed\"]},\"IRHH8pZrX\":{\"layout\":[\"fixed\",\"fixed\"]},\"h9uUPNUa0\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"luSx2M3iE\":\"link\",\"Ht6fxtxVL\":\"title\"}\n * @framerImmutableVariables true\n */const FramerLNyHo05Jg=withCSS(Component,css,\"framer-l8haL\");export default FramerLNyHo05Jg;FramerLNyHo05Jg.displayName=\"Reach Out\";FramerLNyHo05Jg.defaultProps={height:49,width:187};addPropertyControls(FramerLNyHo05Jg,{variant:{options:[\"AZXOStK9M\",\"bJY7aj8Me\",\"IRHH8pZrX\",\"h9uUPNUa0\"],optionTitles:[\"Reach Out Desktop\",\"Reach Out Tablet and Phone\",\"Reach Out Desktop Revert\",\"Reach Out Tablet and Phone Revert\"],title:\"Variant\",type:ControlType.Enum},luSx2M3iE:{title:\"Link\",type:ControlType.Link},Ht6fxtxVL:{defaultValue:\"Reach Out\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramerLNyHo05Jg,[{family:\"Helvetica Neue Light\",url:\"https://framerusercontent.com/assets/BPuPFS3rp2G6n6uZdfnFVuSv4wA.ttf\"}]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLNyHo05Jg\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"187\",\"framerIntrinsicHeight\":\"49\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"bJY7aj8Me\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IRHH8pZrX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"h9uUPNUa0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"luSx2M3iE\\\":\\\"link\\\",\\\"Ht6fxtxVL\\\":\\\"title\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LNyHo05Jg.map", "// Generated by Framer (eb93fa7)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,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/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import NavBarRevert from\"#framer/local/canvasComponent/cK3u2Jx2T/cK3u2Jx2T.js\";import Footer from\"#framer/local/canvasComponent/lh3jBvTDP/lh3jBvTDP.js\";import ReachOut from\"#framer/local/canvasComponent/LNyHo05Jg/LNyHo05Jg.js\";import metadataProvider from\"#framer/local/webPageMetadata/nbm9vV3KQ/nbm9vV3KQ.js\";const NavBarRevertFonts=getFonts(NavBarRevert);const ReachOutFonts=getFonts(ReachOut);const TickerFonts=getFonts(Ticker);const FooterFonts=getFonts(Footer);const breakpoints={EavNGh3ay:\"(max-width: 809px)\",NI0LPn9qw:\"(min-width: 810px) and (max-width: 1199px)\",nND46lUu6:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-pqKtQ\";const variantClassNames={EavNGh3ay:\"framer-v-8r4k60\",NI0LPn9qw:\"framer-v-7jxngc\",nND46lUu6:\"framer-v-nq8dw4\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition1};const transition2={delay:0,duration:.5,ease:[.44,0,.56,1],type:\"tween\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition2};const transition3={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,transition:transition3};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"nND46lUu6\",Phone:\"EavNGh3ay\",Tablet:\"NI0LPn9qw\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"nND46lUu6\"};};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 isDisplayed=()=>{if(!isBrowser())return true;if([\"NI0LPn9qw\",\"EavNGh3ay\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"NI0LPn9qw\",\"EavNGh3ay\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"EavNGh3ay\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"NI0LPn9qw\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"EavNGh3ay\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"nND46lUu6\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(245, 238, 228); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-nq8dw4\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:156,y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1smmo6y-container\",nodeId:\"IQzln32v4\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{variant:\"MC8kjhExo\"},NI0LPn9qw:{variant:\"kegnufGdh\"}},children:/*#__PURE__*/_jsx(NavBarRevert,{height:\"100%\",id:\"IQzln32v4\",layoutId:\"IQzln32v4\",variant:\"a52xV54NY\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oq1fxi\",\"data-framer-name\":\"Info with badges\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-snv8l4\",\"data-framer-name\":\"Info Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-inqshw\",\"data-framer-name\":\"description with button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kkby58\",\"data-framer-name\":\"About me\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"About Me\"})})},NI0LPn9qw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"About Me\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"About Me\"})}),className:\"framer-12zd6qo\",\"data-framer-name\":\"About Me\",fonts:[\"GF;Helvetica Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Hi, I'm Aleks \u2013 a dynamic, experienced Graphic and Product Designer currently based in Lisbon.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"I'm passionate about shaping a better future through thoughtful, user-centred design.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"During the pandemic, I realised how important it is to dedicate your daily work to something you truly love. I'd dreamed of becoming a designer since my teenage years. One year after completing an online graphic design degree \u2014 while still working full-time \u2014 I decided to expand my skills into UX/UI. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"That journey made one thing clear: the most impactful design solutions are always built around the needs of real people.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Curious to learn more? \"}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"GvRqJezyy\",openInNewTab:false,scopeId:\"nbm9vV3KQ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Let\u2019s connect!\"})})})]})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Hi, I'm Aleks \u2013 a dynamic, experienced Graphic and Product Designer currently based in Lisbon.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"I'm passionate about shaping a better future through thoughtful, user-centred design.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"During the pandemic, I realised how important it is to dedicate your daily work to something you truly love. I'd dreamed of becoming a designer since my teenage years. \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"One year after completing an online graphic design degree \u2014 while still working full-time \u2014 \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"I decided to expand my skills into UX/UI. That journey made one thing clear: the most impactful design solutions are always built around the needs of real people.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Curious to learn more? \"}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"GvRqJezyy\",openInNewTab:false,scopeId:\"nbm9vV3KQ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Let\u2019s connect!\"})})})]})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Hi, I'm Aleks \u2013 a dynamic, experienced Graphic and Product Designer currently based in Lisbon.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"I'm passionate about shaping a better future through thoughtful, user-centred design.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"During the pandemic, I realised how important it is to dedicate your daily work to something you truly love. I'd dreamed of becoming a designer since my teenage years. One year after completing an online graphic design degree \u2014 while still working full-time \u2014 I decided to expand my skills into UX/UI. That journey made one thing clear: the most impactful design solutions are always built around the needs of real people.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Curious to learn more? \"}),/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"GvRqJezyy\",openInNewTab:false,scopeId:\"nbm9vV3KQ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:/*#__PURE__*/_jsx(\"strong\",{children:\"Let\u2019s connect!\"})})})]})]}),className:\"framer-ko86lu\",\"data-framer-name\":\"My name is Aleks, and I'm a passionate and experienced designer from Switzerland and currently based in Berlin. I\u2019m striving to impact the future society in a more healthy way with UX solutions. During the pandemic I realised how important it is to dedicate your daily work to something you love. I wanted to become a Designer since I \u0301m a teenager, but back in the days it was really hard to find a creative study place in the little town I grew up. One year in Graphic Design I decided to up-skill my competences to UX/UI as realised that successful design solutions and products are centred around the end users. Get in touch with me to hear more about me and my background!\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fujwuh hidden-7jxngc hidden-8r4k60\",\"data-framer-name\":\"Reach Out Frame\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-cnm9q3-container\",nodeId:\"LxkNY9FXT\",rendersWithMotion:true,scopeId:\"nbm9vV3KQ\",whileHover:animation,children:/*#__PURE__*/_jsx(ReachOut,{height:\"100%\",Ht6fxtxVL:\"Reach Out\",id:\"LxkNY9FXT\",layoutId:\"LxkNY9FXT\",luSx2M3iE:\"mailto:j.aleksandra@live.de\",style:{height:\"100%\",width:\"100%\"},variant:\"IRHH8pZrX\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ntkznv hidden-nq8dw4\",\"data-framer-name\":\"Button Frame\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-rqq4i7\",\"data-framer-name\":\"Button Frame\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{whileHover:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-16purel-container\",nodeId:\"xhrSM3c30\",rendersWithMotion:true,scopeId:\"nbm9vV3KQ\",whileHover:animation,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{variant:\"h9uUPNUa0\"},NI0LPn9qw:{variant:\"h9uUPNUa0\"}},children:/*#__PURE__*/_jsx(ReachOut,{height:\"100%\",Ht6fxtxVL:\"Reach Out\",id:\"xhrSM3c30\",layoutId:\"xhrSM3c30\",luSx2M3iE:\"mailto:j.aleksandra@live.de\",style:{height:\"100%\",width:\"100%\"},variant:\"bJY7aj8Me\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4obb42\",\"data-framer-name\":\"Portrait\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+204+0+0+0+930+0+6.1597),pixelHeight:3024,pixelWidth:4032,sizes:\"330px\",src:\"https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg\",srcSet:\"https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg 4032w\"}},NI0LPn9qw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+293+0+0+0+0+.7695),pixelHeight:3024,pixelWidth:4032,sizes:\"345px\",src:\"https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg\",srcSet:\"https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg 4032w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4032,intrinsicWidth:3024,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+292+0+0+0+0+-.6503),pixelHeight:3024,pixelWidth:4032,sizes:\"447px\",src:\"https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg\",srcSet:\"https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/912HQaFBEj7B9CiF4FnSVOxAMkA.jpeg 4032w\"},className:\"framer-1ive6yv\",\"data-framer-name\":\"Portrait Placeholder\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p7503o\",\"data-framer-name\":\"Bade Autolayout\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wq0pqm\",\"data-framer-name\":\"Single Skill\",whileHover:animation1,children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.credential.net/385551e0-cc44-4675-ac05-446162a8170e#gs.4ipc4y\",motionChild:true,nodeId:\"DgrHnPiLv\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-vip3zf framer-19ws3cp\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+204+0+0+0+930+0+295.9858+23.3273+0+0+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/kGH7wm1XHtylNzxvCEks9UmIyWk.jpg\"}},NI0LPn9qw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+293+0+0+0+0+336.7695+0+3.2305+0+-1.6152+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/kGH7wm1XHtylNzxvCEks9UmIyWk.jpg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+292+0+0+0+0+566.3497+0+2.6169+0+-1.3084+0+0),pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/kGH7wm1XHtylNzxvCEks9UmIyWk.jpg\"},className:\"framer-6n2ur3\",\"data-framer-name\":\"Frame 3\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Ironhack\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"UX/UI Designer\"})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Ironhack\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"UX/UI Designer\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(66, 66, 66, 1)\"},children:\"Ironhack\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(66, 66, 66, 1)\"},children:\"UX/UI Designer\"})})]}),className:\"framer-kjna8x\",\"data-framer-name\":\"Ironhack UX/UI Designer\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{whileHover:undefined}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-11fsar6\",\"data-framer-name\":\"Single Skill\",whileHover:animation1,children:[/*#__PURE__*/_jsx(Link,{href:\"https://drive.google.com/file/d/1u8r_QCP9UJf3dHGtAu292u5jGd5ufyQu/view?usp=sharing\",motionChild:true,nodeId:\"fVH39UX_1\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1oo0zvu framer-19ws3cp\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+204+0+0+0+930+0+295.9858+23+0+0+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/XKVN5knmbxA1mS7F75PrvmRSk.png\"}},NI0LPn9qw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+293+0+0+0+0+336.7695+0+0+0+0+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/XKVN5knmbxA1mS7F75PrvmRSk.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+292+0+0+0+0+566.3497+0+0+0+0+0+0),pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/XKVN5knmbxA1mS7F75PrvmRSk.png\"},className:\"framer-expxof\",\"data-framer-name\":\"Frame 3\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"OFG\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Graphic Designer\"})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"OFG\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Graphic Designer\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(66, 66, 66, 1)\"},children:\"OFG\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\"',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgba(66, 66, 66, 1)\"},children:\"Graphic Designer\"})})]}),className:\"framer-upivya\",\"data-framer-name\":\"OFG Graphic Designer\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-od197v\",\"data-framer-name\":\"Title Skills with skills grid\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gewm21\",\"data-framer-name\":\"Title Value with Descirption and Value Grid\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gu3q7f\",\"data-framer-name\":\"Title Values with Description\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"My Values\"})})},NI0LPn9qw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"My Values\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\"',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgba(30, 45, 16, 1)\"},children:\"My Values\"})})}),className:\"framer-w3rohn\",\"data-framer-name\":\"My Values\",fonts:[\"GF;Helvetica Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rcgof6\",\"data-framer-name\":\"Value Frame\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tj3iu1\",\"data-framer-name\":\"Row 1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ishfat\",\"data-framer-name\":\"Single Value\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:311,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1625+0+0+0+142+0+0+0+0+0+0),pixelHeight:311,pixelWidth:311,src:\"https://framerusercontent.com/images/SaAL9NiGw4JE7k0VxQdO6aWcy10.png\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-1xnpdtf\",\"data-border\":true,\"data-framer-name\":\"Frame 5\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dp1rdf hidden-8r4k60\",\"data-framer-name\":\"Illustrative Icon 13\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-19cbf72\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"12\" viewBox=\"-1 -1 23 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.625 9.38495C4.10172 4.21834 10.6448 1.19076 20.0539 0.573608\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-13xpmn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:50,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"50\" viewBox=\"-1 -1 26 50\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.1216 0.650269C-0.409264 0.650269 0.505154 22.5704 0.505154 22.5704C33.366 29.5723 21.8081 47.8412 21.8081 47.8412C21.8081 47.8412 18.144 42.0575 21.6821 34.9877\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16105nc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:24,svg:'<svg width=\"24\" height=\"21\" viewBox=\"-1 -1 24 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M21.8469 18.7576C20.9421 12.4795 17.0421 0.650269 0.492188 0.650269\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18b0ct5\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:33,intrinsicWidth:5,svg:'<svg width=\"5\" height=\"33\" viewBox=\"-1 -1 5 33\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.79492 29.9648V1.65027\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q5jj9b\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"10\" viewBox=\"-1 -1 21 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.121094 7.83389L18.3868 0.525024\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vk2fby\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:10,intrinsicWidth:19,svg:'<svg width=\"19\" height=\"10\" viewBox=\"-1 -1 19 10\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M16.815 7.35044L0.355469 0.959229\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-oh80zm\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:11,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"11\" viewBox=\"-1 -1 23 11\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M20.7959 8.00646L0.113281 0.397095\" stroke=\"#1E2D10\" stroke-width=\"1.63843\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Integrity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Having strong moral principles, being honest, and maintaining consistency between one's actions, values, and beliefs\"})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Integrity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Having strong moral principles, being honest, and maintaining consistency between one's actions, values, and beliefs\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Integrity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Having strong moral principles, being honest, and maintaining consistency between one's actions, values, and beliefs\"})]}),className:\"framer-m3pmj7\",\"data-framer-name\":\"Integrity Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut , consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam\",fonts:[\"GF;Helvetica Neue-regular\",\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nj9po3\",\"data-framer-name\":\"Single Value\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:312,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1625+0+0+0+142+0+0+0+304+0+0),pixelHeight:312,pixelWidth:311,src:\"https://framerusercontent.com/images/dz3xSOK2RHRPbVQxaxqfGch08qc.png\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-eppthj\",\"data-border\":true,\"data-framer-name\":\"Frame 6\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ibtml0 hidden-8r4k60\",\"data-framer-name\":\"Illustrative Icon 13\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-10jrg8b\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"18\" viewBox=\"-1 -1 29 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M26.7657 0.135986C26.7657 0.215027 26.7657 0.294065 26.7657 0.369154C26.7657 0.369154 27.4889 14.0392 10.7877 15.6872L9.11603 15.6555C5.4288 15.2564 2.60706 14.2644 0.445312 12.9642\" stroke=\"#1E2D10\" stroke-width=\"1.56366\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-2a5ljl\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:35,intrinsicWidth:36,svg:'<svg width=\"36\" height=\"35\" viewBox=\"-1 -1 36 35\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 18.2625C0.677841 21.3253 2.34955 31.2963 16.4622 32.6874L18.1339 32.6557C34.5347 30.8813 33.8194 17.3694 33.8194 17.3694C33.8194 11.6785 30.7171 5.72674 27.1247 0.577271C23.5323 5.72279 20.43 11.6785 20.43 17.3694C20.43 17.3694 20.3035 19.792 21.3982 22.7204\" stroke=\"#1E2D10\" stroke-width=\"1.56366\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-we3azt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"48\" viewBox=\"-1 -1 21 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M6.36465 45.043C19.1099 41.8656 18.3985 30.3731 18.3985 30.3731C18.3985 18.1456 4.91821 4.71269 0.511719 0.650024\" stroke=\"#1E2D10\" stroke-width=\"1.56366\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xdy69r\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"48\" viewBox=\"-1 -1 21 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.7256 0.678101C14.2835 4.78029 0.874372 18.1737 0.874372 30.3696C0.874372 30.3696 0.123475 42.4943 13.9753 45.2805\" stroke=\"#1E2D10\" stroke-width=\"1.56366\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Transparency\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Openly sharing information, decisions, and processes, fostering trust and clarity in interactions with users and stakeholders\"})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Transparency\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Openly sharing information, decisions, and processes, fostering trust and clarity in interactions with users and stakeholders\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Transparency\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Openly sharing information, decisions, and processes, fostering trust and clarity in interactions with users and stakeholders\"})]}),className:\"framer-1mzr4os\",\"data-framer-name\":\"Transparency Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut , consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam\",fonts:[\"GF;Helvetica Neue-regular\",\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n1jifl\",\"data-framer-name\":\"Row 2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t9r8a9\",\"data-framer-name\":\"Single Value\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:311,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1625+0+0+0+142+0+608+0+0+0+0),pixelHeight:311,pixelWidth:311,src:\"https://framerusercontent.com/images/7xcvR1bWcX6XDHDlBijOOUJGGE.png\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-3eunz7\",\"data-border\":true,\"data-framer-name\":\"Frame 5\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3r4hqq hidden-8r4k60\",\"data-framer-name\":\"Illustrative Icon 10\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-s4bwo2\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"48\" viewBox=\"-1 -1 40 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.6028 28.3267C17.3944 34.0624 23.5585 36.1837 28.0881 37.5563C32.6176 38.9289 37.5963 45.6504 37.5963 45.6504C37.5963 45.6504 31.8648 39.5528 31.3199 34.8527C30.775 30.1527 29.7851 23.7098 24.9935 17.9741C20.202 12.2383 14.0378 10.1171 9.50827 8.74448C4.97874 7.3719 0 0.650391 0 0.650391C0 0.650391 5.7316 6.74799 6.27647 11.4481C6.82134 16.1481 7.81125 22.591 12.6028 28.3267Z\" stroke=\"#1E2D10\" stroke-width=\"1.56236\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tq3cnt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:40,svg:'<svg width=\"40\" height=\"48\" viewBox=\"-1 -1 40 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.2045 28.3266C20.4129 34.0623 14.2488 36.1836 9.71923 37.5562C5.1897 38.9288 0.210938 45.6503 0.210938 45.6503C0.210938 45.6503 5.94253 39.5527 6.48741 34.8526C7.03228 30.1525 8.02219 23.7097 12.8138 17.974C17.6053 12.2382 23.7695 10.1169 28.299 8.74436C32.8285 7.37177 37.8073 0.650269 37.8073 0.650269C37.8073 0.650269 32.0757 6.74787 31.5308 11.4479C30.986 16.148 29.9961 22.5908 25.2045 28.3266Z\" stroke=\"#1E2D10\" stroke-width=\"1.56236\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Connection\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Bridge the gap between users and digital experiences, fostering a sense of empathy, understanding, and resonance in the UX/UI design process\"})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Connection\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Bridge the gap between users and digital experiences, fostering a sense of empathy, understanding, and resonance in the UX/UI design process\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Connection\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Bridge the gap between users and digital experiences, fostering a sense of empathy, understanding, and resonance in the UX/UI design process\"})]}),className:\"framer-7si5kf\",\"data-framer-name\":\"Integrity Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut , consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam\",fonts:[\"GF;Helvetica Neue-regular\",\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ynx1ma\",\"data-framer-name\":\"Single Value\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:312,intrinsicWidth:311,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1625+0+0+0+142+0+608+0+304+0+0),pixelHeight:312,pixelWidth:311,src:\"https://framerusercontent.com/images/8kxKBDQ3Q8dFLeBkipY63wB0HEc.png\"}}},children:/*#__PURE__*/_jsx(Image,{className:\"framer-10kysr\",\"data-border\":true,\"data-framer-name\":\"Frame 5\",children:isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-loa9nl hidden-8r4k60\",\"data-framer-name\":\"Illustrative Icon 13\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yk85c6\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:19,intrinsicWidth:14,svg:'<svg width=\"14\" height=\"19\" viewBox=\"0 0 14 19\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.658844 0.0490723C0.658844 0.0490723 -1.3361 13.8613 13.0166 18.3264C14.2208 3.34617 0.658844 0.0490723 0.658844 0.0490723Z\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1szkefg\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:43,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"43\" viewBox=\"0 0 22 43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M9.04774 42.8758C9.04774 42.8758 20.1287 37.8304 21.6993 22.6035C23.2699 7.37669 13.4475 0.176758 13.4475 0.176758C13.4475 0.176758 2.3665 5.22215 0.795933 20.449C0.574675 22.5818 0.578301 24.5586 0.748778 26.3794\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ttq2tz\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:42,svg:'<svg width=\"42\" height=\"24\" viewBox=\"0 0 42 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M41.2828 18.8623C41.2828 18.8623 38.722 6.95791 24.1806 2.17368C9.63933 -2.61419 0.509766 5.44173 0.509766 5.44173C0.509766 5.44173 3.07055 17.3461 17.6119 22.1303C32.1532 26.9182 41.2828 18.8623 41.2828 18.8623Z\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16167np\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:1,svg:'<svg width=\"1\" height=\"25\" viewBox=\"0 0 1 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.924086 24.6265L0.623047 0.0125732\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16l5lrq\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:9,intrinsicWidth:26,svg:'<svg width=\"26\" height=\"9\" viewBox=\"0 0 26 9\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M25.3212 8.32932L0.40625 0.824707\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-vhi5pn\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:25,intrinsicWidth:9,svg:'<svg width=\"9\" height=\"25\" viewBox=\"0 0 9 25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.424372 24.9745C0.145081 23.4293 0 21.8406 0 20.2157C0 12.3375 3.42766 5.26088 8.87567 0.396851\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1agd4rt\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:31,svg:'<svg width=\"31\" height=\"8\" viewBox=\"-1 -1 31 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.478516 4.08884C4.34145 1.89803 8.8065 0.650269 13.5617 0.650269C19.0931 0.650269 24.2292 2.34053 28.4839 5.23501\" stroke=\"#1E2D10\" stroke-width=\"1.84012\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Humanity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Putting the needs, emotions, and well-being of users at the forefront to create meaningful and impactful experiences.\"})]})},NI0LPn9qw:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Humanity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Putting the needs, emotions, and well-being of users at the forefront to create meaningful and impactful experiences.\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Humanity\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"23px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Putting the needs, emotions, and well-being of users at the forefront to create meaningful and impactful experiences.\"})]}),className:\"framer-1yxpiae\",\"data-framer-name\":\"Integrity Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut , consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et dolore magna aliquyam\",fonts:[\"GF;Helvetica Neue-regular\",\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sgj6bq\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wx6o95\",\"data-framer-name\":\"skill frame with title\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"I work with\"})})},NI0LPn9qw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"I work with\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"I work with\"})}),className:\"framer-4n93to\",\"data-framer-name\":\"I work with\",fonts:[\"GF;Helvetica Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qbpym7-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"nMLwH6cP1\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"flex-end\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"nMLwH6cP1\",layoutId:\"nMLwH6cP1\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m4s8tz\",\"data-framer-name\":\"Figma\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-jngudi\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:922,pixelWidth:924,sizes:\"97px\",src:\"https://framerusercontent.com/images/KNDBQgO9SSkq40okizEwxHnaWX0.png\",srcSet:\"https://framerusercontent.com/images/KNDBQgO9SSkq40okizEwxHnaWX0.png?scale-down-to=512 512w,https://framerusercontent.com/images/KNDBQgO9SSkq40okizEwxHnaWX0.png 924w\"},className:\"framer-14e0tzv\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Figma\"})}),className:\"framer-p6rkgr\",\"data-framer-name\":\"User Centric Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1azgvkb\",\"data-framer-name\":\"Adobe Creative Suite\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ndrcf8\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2160,intrinsicWidth:2160,pixelHeight:2160,pixelWidth:2160,sizes:\"97px\",src:\"https://framerusercontent.com/images/zv7AoHlFzUtp7lpxpazdlc6CDM.png\",srcSet:\"https://framerusercontent.com/images/zv7AoHlFzUtp7lpxpazdlc6CDM.png?scale-down-to=512 512w,https://framerusercontent.com/images/zv7AoHlFzUtp7lpxpazdlc6CDM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/zv7AoHlFzUtp7lpxpazdlc6CDM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/zv7AoHlFzUtp7lpxpazdlc6CDM.png 2160w\"},className:\"framer-eqcjo4\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Adobe Creative Suite\"})}),className:\"framer-1yxcu4p\",\"data-framer-name\":\"Project Management\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1c0pib3\",\"data-framer-name\":\"Framer\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-d25adg\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:659,intrinsicWidth:661,pixelHeight:659,pixelWidth:661,sizes:\"97px\",src:\"https://framerusercontent.com/images/q4O8TIkAtWjgvswJGyp2VL2Ng4A.jpg\",srcSet:\"https://framerusercontent.com/images/q4O8TIkAtWjgvswJGyp2VL2Ng4A.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/q4O8TIkAtWjgvswJGyp2VL2Ng4A.jpg 661w\"},className:\"framer-plqlwh\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Framer\"})}),className:\"framer-va876f\",\"data-framer-name\":\"Project Management\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-doogdj\",\"data-framer-name\":\"CapCut\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-175gx22\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1920,pixelWidth:1920,sizes:\"97px\",src:\"https://framerusercontent.com/images/NxMwqENtd1e7QfsOb0Sh9W2IU.jpg\",srcSet:\"https://framerusercontent.com/images/NxMwqENtd1e7QfsOb0Sh9W2IU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NxMwqENtd1e7QfsOb0Sh9W2IU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/NxMwqENtd1e7QfsOb0Sh9W2IU.jpg 1920w\"},className:\"framer-zmlv3n\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"CapCut\"})}),className:\"framer-1rbl14i\",\"data-framer-name\":\"Atomic Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1r75i2q\",\"data-framer-name\":\"Canva\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-16rfwa\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/NJEcgHtcxK3p8uPBoyHOuBTqVfo.png\"},className:\"framer-rvod3m\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Canva\"})}),className:\"framer-sx4he6\",\"data-framer-name\":\"User Centric Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bh1daj\",\"data-framer-name\":\"Slack\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i3sdlx\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:777,intrinsicWidth:777,pixelHeight:777,pixelWidth:777,sizes:\"97px\",src:\"https://framerusercontent.com/images/pHzgIkGQoa7dVyVhWID8343e0.png\",srcSet:\"https://framerusercontent.com/images/pHzgIkGQoa7dVyVhWID8343e0.png?scale-down-to=512 512w,https://framerusercontent.com/images/pHzgIkGQoa7dVyVhWID8343e0.png 777w\"},className:\"framer-1wg8gq6\",\"data-framer-name\":\"Frame 4\",whileHover:animation3})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Slack\"})}),className:\"framer-h6v6zz\",\"data-framer-name\":\"Project Management\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ynjzg9\",\"data-framer-name\":\"Zoom\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ovt4io\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:292,intrinsicWidth:287,pixelHeight:292,pixelWidth:287,src:\"https://framerusercontent.com/images/qxNP9u6selaQYHQxo2ZBwHnOOw.jpg\"},className:\"framer-mbrj3o\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Zoom\"})}),className:\"framer-yzbhn5\",\"data-framer-name\":\"Project Management\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-15z24qw\",\"data-framer-name\":\"Microsoft Teams\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mqx3gb\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/OmMMJq1YVK7mQZRzJUg5zJNblA.png\"},className:\"framer-4k8yki\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Microsoft Teams\"})}),className:\"framer-1aih5f\",\"data-framer-name\":\"Atomic Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yswu87\",\"data-framer-name\":\"Notion\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12uzqj0\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-t3goix\",\"data-framer-name\":\"Notion Logo\",whileHover:animation2,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-urwfcr\",\"data-framer-name\":\"Frame 3\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:468,pixelWidth:512,src:\"https://framerusercontent.com/images/bEqybyTfEEjFqISTHxSjJ6Ymd4.png\"},className:\"framer-1c0snen\",\"data-framer-name\":\"Frame 3\",transformTemplate:transformTemplate1})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Notion\"})}),className:\"framer-1ygyzoo\",\"data-framer-name\":\"UI Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g7mf1y\",\"data-framer-name\":\"Google Workplace\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-p1bzi1\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13raux4\",\"data-framer-name\":\"Frame 3\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/0LMlkZ9GIM2Y5NpLBLzKW2zmI.jpeg\"},className:\"framer-hw920n\",\"data-framer-name\":\"Frame 4\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Google Workplace\"})}),className:\"framer-hhhm6n\",\"data-framer-name\":\"User Centric Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-75sgz5\",\"data-framer-name\":\"Trello\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rkgb6e\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1seclgc\",\"data-framer-name\":\"Frame 3\",whileHover:animation2,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:451,intrinsicWidth:455,pixelHeight:451,pixelWidth:455,src:\"https://framerusercontent.com/images/r4x0Le24RU5OzO3BUW6dwiHJg.png\"},className:\"framer-1crpjgc\",\"data-framer-name\":\"Frame 4\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"Trello\"})}),className:\"framer-17b5o0t\",\"data-framer-name\":\"User Centric Design\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7ce4dx\",\"data-framer-name\":\"WeTransfer\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vsgymh\",\"data-framer-name\":\"Illustration Placeholder\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:512,intrinsicWidth:512,pixelHeight:512,pixelWidth:512,src:\"https://framerusercontent.com/images/phTTAUuMVL2V8VSrV21eMMHOozc.png\"},className:\"framer-1al05l8\",\"data-framer-name\":\"Frame 3\",whileHover:animation2})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(66, 66, 66)\"},children:\"WeTransfer\"})}),className:\"framer-9g6zrq\",\"data-framer-name\":\"Information Architecture\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})]})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1susan7\",\"data-framer-name\":\"Status with reach out button\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bmcfn4\",\"data-framer-name\":\"Title Values with Description\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", \"Helvetica Neue Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Status\"})})},NI0LPn9qw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Status\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"30px\"},children:/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Helvetica Neue\"',\"--framer-font-size\":\"30px\",\"--framer-text-color\":\"rgba(30, 45, 16, 1)\"},children:\"Status\"})})}),className:\"framer-zhwk62\",\"data-framer-name\":\"Status\",fonts:[\"GF;Helvetica Neue-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-weight\":\"200\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Currently in Lisbon/Portugal, Freelancing as a Marketing and UX/UI Designer at Kurve and open to more projects and remote opportunities.\"})})},NI0LPn9qw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Currently in Lisbon/Portugal, Freelancing as a Marketing and UX/UI Designer at Kurve and open to more projects and remote opportunities.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SGVsdmV0aWNhIE5ldWUtMjAw\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-font-weight\":\"200\",\"--framer-text-color\":\"rgb(30, 45, 16)\"},children:\"Currently in Lisbon/Portugal, Freelancing as a Marketing and UX/UI Designer at Kurve and open to more projects and remote opportunities.\"})}),className:\"framer-i33mxf\",\"data-framer-name\":\"Currently based in Berlin, open and ready to relocate to any new town and looking for exciting job opportunities!\",fonts:[\"GF;Helvetica Neue-200\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-y58im0\",\"data-framer-name\":\"Reach Out Frame\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tmkwq7 hidden-nq8dw4\",\"data-framer-name\":\"Button Frame\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bz1m3f\",\"data-framer-name\":\"Button Frame\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{whileHover:undefined}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ez8y89-container\",nodeId:\"m8hjV39zr\",rendersWithMotion:true,scopeId:\"nbm9vV3KQ\",whileHover:animation,children:/*#__PURE__*/_jsx(ReachOut,{height:\"100%\",Ht6fxtxVL:\"Reach Out\",id:\"m8hjV39zr\",layoutId:\"m8hjV39zr\",luSx2M3iE:\"mailto:j.aleksandra@live.de\",style:{height:\"100%\",width:\"100%\"},variant:\"h9uUPNUa0\",width:\"100%\"})})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-wpjkpc hidden-7jxngc hidden-8r4k60\",\"data-framer-name\":\"Adjustable Button\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-mnbl32-container\",nodeId:\"Ol3ODf2Fm\",rendersWithMotion:true,scopeId:\"nbm9vV3KQ\",whileHover:animation,children:/*#__PURE__*/_jsx(ReachOut,{height:\"100%\",Ht6fxtxVL:\"Reach Out\",id:\"Ol3ODf2Fm\",layoutId:\"Ol3ODf2Fm\",luSx2M3iE:\"mailto:j.aleksandra@live.de\",style:{height:\"100%\",width:\"100%\"},variant:\"IRHH8pZrX\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-r3pjoc\",\"data-framer-name\":\"Footer\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:136,width:\"1440px\",y:(componentViewport?.y||0)+0+2931+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bezpfp-container hidden-7jxngc hidden-8r4k60\",nodeId:\"e9BtGk2ct\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"e9BtGk2ct\",layoutId:\"e9BtGk2ct\",style:{width:\"100%\"},variant:\"waz8x4Unp\",width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{NI0LPn9qw:{height:136,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+2696.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-scfwqk-container hidden-nq8dw4 hidden-8r4k60\",nodeId:\"RQ6IAYH13\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"RQ6IAYH13\",layoutId:\"RQ6IAYH13\",style:{width:\"100%\"},variant:\"hiAoJEQO0\",width:\"100%\"})})})}),isDisplayed4()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EavNGh3ay:{height:136,y:(componentViewport?.y||0)+0+3405+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18mai6r-container hidden-nq8dw4 hidden-7jxngc\",nodeId:\"PzfumY4MH\",scopeId:\"nbm9vV3KQ\",children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"PzfumY4MH\",layoutId:\"PzfumY4MH\",variant:\"HNHsY8Uny\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pqKtQ.framer-19ws3cp, .framer-pqKtQ .framer-19ws3cp { display: block; }\",\".framer-pqKtQ.framer-nq8dw4 { align-content: center; align-items: center; background-color: #f5eee4; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 136px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-pqKtQ .framer-1smmo6y-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pqKtQ .framer-1oq1fxi { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-snv8l4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 69px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-inqshw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 58px; height: 721px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 447px; }\",\".framer-pqKtQ .framer-kkby58 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 447px; }\",\".framer-pqKtQ .framer-12zd6qo, .framer-pqKtQ .framer-kjna8x, .framer-pqKtQ .framer-upivya, .framer-pqKtQ .framer-w3rohn, .framer-pqKtQ .framer-p6rkgr, .framer-pqKtQ .framer-1yxcu4p, .framer-pqKtQ .framer-va876f, .framer-pqKtQ .framer-1rbl14i, .framer-pqKtQ .framer-sx4he6, .framer-pqKtQ .framer-h6v6zz, .framer-pqKtQ .framer-yzbhn5, .framer-pqKtQ .framer-1aih5f, .framer-pqKtQ .framer-1ygyzoo, .framer-pqKtQ .framer-hhhm6n, .framer-pqKtQ .framer-17b5o0t, .framer-pqKtQ .framer-9g6zrq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-pqKtQ .framer-ko86lu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 447px; word-break: break-word; word-wrap: break-word; }\",\".framer-pqKtQ .framer-1fujwuh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 447px; }\",\".framer-pqKtQ .framer-cnm9q3-container, .framer-pqKtQ .framer-mnbl32-container { flex: none; height: 49px; position: relative; width: 187px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-1ntkznv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8.818647384643555px; height: 43px; justify-content: center; overflow: visible; padding: 2.645594358444214px 0px 2.645594358444214px 0px; position: relative; width: 331px; }\",\".framer-pqKtQ .framer-rqq4i7, .framer-pqKtQ .framer-1bz1m3f { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 28px; justify-content: center; overflow: visible; padding: 3px 0px 3px 0px; position: relative; width: 128px; }\",\".framer-pqKtQ .framer-16purel-container, .framer-pqKtQ .framer-1ez8y89-container { flex: none; height: 37px; position: relative; width: 127px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-4obb42 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 175px; height: 721px; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-1ive6yv { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: 392px; position: relative; width: 447px; }\",\".framer-pqKtQ .framer-1p7503o { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 344px; }\",\".framer-pqKtQ .framer-wq0pqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18.153242111206055px; height: 152px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-vip3zf, .framer-pqKtQ .framer-1oo0zvu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7.5638508796691895px; height: min-content; justify-content: center; overflow: visible; padding: 0px 43.113948822021484px 0px 43.113948822021484px; position: relative; text-decoration: none; width: min-content; }\",\".framer-pqKtQ .framer-6n2ur3 { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; gap: 0px; height: 88px; overflow: visible; position: relative; width: 97px; }\",\".framer-pqKtQ .framer-11fsar6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18.153242111206055px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-expxof { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: inset 0px -9.833005905151367px 6.051080703735352px 0px rgba(83, 51, 38, 0.25); flex: none; gap: 0px; height: 88px; overflow: visible; position: relative; width: 97px; }\",\".framer-pqKtQ .framer-od197v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-gewm21 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-1gu3q7f, .framer-pqKtQ .framer-1susan7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-1rcgof6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 39px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-tj3iu1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-ishfat, .framer-pqKtQ .framer-1nj9po3, .framer-pqKtQ .framer-t9r8a9, .framer-pqKtQ .framer-ynx1ma { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 29px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 447px; }\",\".framer-pqKtQ .framer-1xnpdtf, .framer-pqKtQ .framer-eppthj, .framer-pqKtQ .framer-3eunz7, .framer-pqKtQ .framer-10kysr { --border-bottom-width: 0.5px; --border-color: #1e2d10; --border-left-width: 0.5px; --border-right-width: 0.5px; --border-style: solid; --border-top-width: 0.5px; background-color: #f5e4cc; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; flex: none; gap: 0px; height: 60px; overflow: visible; position: relative; width: 60px; }\",\".framer-pqKtQ .framer-dp1rdf { aspect-ratio: 0.9017178645496856 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 47px); left: 9px; overflow: visible; position: absolute; top: 6px; width: 43px; }\",\".framer-pqKtQ .framer-19cbf72 { bottom: 18px; flex: none; left: 21px; position: absolute; right: 2px; top: 20px; }\",\".framer-pqKtQ .framer-13xpmn { bottom: 1px; flex: none; left: -1px; position: absolute; right: 21px; top: -1px; }\",\".framer-pqKtQ .framer-16105nc { bottom: 31px; flex: none; left: 20px; position: absolute; right: 2px; top: -1px; }\",\".framer-pqKtQ .framer-18b0ct5 { bottom: 21px; flex: none; left: 19px; position: absolute; right: 24px; top: -2px; }\",\".framer-pqKtQ .framer-1q5jj9b { bottom: 29px; flex: none; left: 20px; position: absolute; right: 4px; top: 11px; }\",\".framer-pqKtQ .framer-1vk2fby { bottom: 35px; flex: none; left: 4px; position: absolute; right: 23px; top: 6px; }\",\".framer-pqKtQ .framer-oh80zm { bottom: 25px; flex: none; left: -1px; position: absolute; right: 22px; top: 15px; }\",\".framer-pqKtQ .framer-m3pmj7, .framer-pqKtQ .framer-1mzr4os, .framer-pqKtQ .framer-7si5kf, .framer-pqKtQ .framer-1yxpiae { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 385px; word-break: break-word; word-wrap: break-word; }\",\".framer-pqKtQ .framer-1ibtml0 { aspect-ratio: 1.1827941305888834 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 45px); left: 3px; overflow: visible; position: absolute; top: 7px; width: 53px; }\",\".framer-pqKtQ .framer-10jrg8b { bottom: 1px; flex: none; left: 26px; position: absolute; right: 1px; top: 28px; }\",\".framer-pqKtQ .framer-2a5ljl { bottom: 1px; flex: none; left: -1px; position: absolute; right: 21px; top: 11px; }\",\".framer-pqKtQ .framer-we3azt { bottom: 2px; flex: none; left: 26px; position: absolute; right: 9px; top: -2px; }\",\".framer-pqKtQ .framer-1xdy69r { bottom: 2px; flex: none; left: 6px; position: absolute; right: 30px; top: -2px; }\",\".framer-pqKtQ .framer-n1jifl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 53px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-3r4hqq { aspect-ratio: 1.217948489718967 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 45px); left: 3px; overflow: visible; position: absolute; top: 8px; width: 55px; }\",\".framer-pqKtQ .framer-s4bwo2 { bottom: 1px; flex: none; left: -1px; position: absolute; right: 18px; top: -1px; }\",\".framer-pqKtQ .framer-1tq3cnt { bottom: 2px; flex: none; left: 16px; position: absolute; right: 1px; top: -1px; }\",\".framer-pqKtQ .framer-loa9nl { aspect-ratio: 0.9975339781563237 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 53px); left: 4px; overflow: visible; position: absolute; top: 4px; width: 53px; }\",\".framer-pqKtQ .framer-yk85c6 { bottom: 25px; flex: none; left: 15px; position: absolute; right: 26px; top: 10px; }\",\".framer-pqKtQ .framer-1szkefg { flex: none; height: 43px; left: 31px; position: absolute; top: calc(54.716981132075496% - 43px / 2); width: 22px; }\",\".framer-pqKtQ .framer-1ttq2tz { bottom: 1px; flex: none; left: 2px; position: absolute; right: 10px; top: 30px; }\",\".framer-pqKtQ .framer-16167np { bottom: 5px; flex: none; left: 42px; position: absolute; right: 10px; top: 23px; }\",\".framer-pqKtQ .framer-16l5lrq { bottom: 6px; flex: none; left: 17px; position: absolute; right: 11px; top: 39px; }\",\".framer-pqKtQ .framer-vhi5pn { bottom: 22px; flex: none; left: 0px; position: absolute; right: 44px; top: 7px; }\",\".framer-pqKtQ .framer-1agd4rt { bottom: 50px; flex: none; left: 12px; position: absolute; right: 13px; top: -2px; }\",\".framer-pqKtQ .framer-sgj6bq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 69px; height: 271px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-1wx6o95 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-pqKtQ .framer-4n93to { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 179px; word-break: break-word; word-wrap: break-word; }\",\".framer-pqKtQ .framer-1qbpym7-container { flex: none; height: 161px; position: relative; width: 100%; }\",\".framer-pqKtQ .framer-m4s8tz, .framer-pqKtQ .framer-1azgvkb, .framer-pqKtQ .framer-1c0pib3, .framer-pqKtQ .framer-doogdj, .framer-pqKtQ .framer-1r75i2q, .framer-pqKtQ .framer-1bh1daj, .framer-pqKtQ .framer-1ynjzg9, .framer-pqKtQ .framer-15z24qw, .framer-pqKtQ .framer-1yswu87, .framer-pqKtQ .framer-g7mf1y, .framer-pqKtQ .framer-75sgz5, .framer-pqKtQ .framer-7ce4dx { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 219px; }\",\".framer-pqKtQ .framer-jngudi, .framer-pqKtQ .framer-d25adg, .framer-pqKtQ .framer-175gx22, .framer-pqKtQ .framer-16rfwa, .framer-pqKtQ .framer-1i3sdlx, .framer-pqKtQ .framer-ovt4io, .framer-pqKtQ .framer-1mqx3gb, .framer-pqKtQ .framer-12uzqj0, .framer-pqKtQ .framer-p1bzi1, .framer-pqKtQ .framer-1rkgb6e, .framer-pqKtQ .framer-1vsgymh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 57px 0px 57px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-14e0tzv, .framer-pqKtQ .framer-rvod3m { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 97px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-ndrcf8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 61px 0px 61px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-eqcjo4, .framer-pqKtQ .framer-plqlwh, .framer-pqKtQ .framer-zmlv3n, .framer-pqKtQ .framer-mbrj3o, .framer-pqKtQ .framer-4k8yki, .framer-pqKtQ .framer-1al05l8 { aspect-ratio: 1.0940170940170941 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 89px); overflow: visible; position: relative; width: 97px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-1wg8gq6 { align-content: center; align-items: center; aspect-ratio: 1.0940170940170941 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 89px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 97px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-t3goix { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); flex: none; height: 89px; overflow: visible; position: relative; width: 97px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-urwfcr { background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; gap: 0px; height: 89px; left: 0px; overflow: visible; position: absolute; top: 0px; width: 97px; }\",\".framer-pqKtQ .framer-1c0snen { aspect-ratio: 1.0940170940170941 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 79px); left: 49%; overflow: visible; position: absolute; top: 49%; transform: translate(-50%, -50%); width: 86px; }\",\".framer-pqKtQ .framer-13raux4, .framer-pqKtQ .framer-1seclgc { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 89px; justify-content: center; overflow: visible; padding: 10px; position: relative; width: 97px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-pqKtQ .framer-hw920n, .framer-pqKtQ .framer-1crpjgc { align-content: center; align-items: center; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 89px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 97px; }\",\".framer-pqKtQ .framer-1bmcfn4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 11px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-zhwk62, .framer-pqKtQ .framer-i33mxf { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 960px; word-break: break-word; word-wrap: break-word; }\",\".framer-pqKtQ .framer-y58im0 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 960px; }\",\".framer-pqKtQ .framer-1tmkwq7 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8.818647384643555px; height: 43px; justify-content: center; overflow: visible; padding: 2.645594358444214px 0px 2.645594358444214px 0px; position: relative; width: 110px; }\",\".framer-pqKtQ .framer-wpjkpc { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; box-shadow: inset 0px -13px 8px 0px rgba(83, 51, 38, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pqKtQ .framer-r3pjoc { background-color: #1e2d10; flex: none; height: 136px; overflow: visible; position: relative; width: 100%; }\",\".framer-pqKtQ .framer-1bezpfp-container { flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 1440px; }\",\".framer-pqKtQ .framer-scfwqk-container { flex: none; height: auto; left: 0px; position: absolute; right: 0px; top: 50%; transform: translateY(-50%); }\",\".framer-pqKtQ .framer-18mai6r-container { bottom: -38px; flex: none; height: auto; left: 49%; position: absolute; transform: translateX(-50%); width: auto; }\",'.framer-pqKtQ[data-border=\"true\"]::after, .framer-pqKtQ [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1199px) { .framer-pqKtQ.framer-nq8dw4 { gap: 137px; width: 810px; } .framer-pqKtQ .framer-1smmo6y-container { order: 0; } .framer-pqKtQ .framer-1oq1fxi { order: 1; width: 720px; } .framer-pqKtQ .framer-snv8l4 { gap: 104px; width: 720px; } .framer-pqKtQ .framer-inqshw { gap: 82px; height: min-content; width: 269px; } .framer-pqKtQ .framer-kkby58 { width: 299px; } .framer-pqKtQ .framer-ko86lu { width: 300px; } .framer-pqKtQ .framer-1ntkznv { align-content: flex-start; align-items: flex-start; } .framer-pqKtQ .framer-4obb42 { gap: 33px; height: 463px; width: 345px; } .framer-pqKtQ .framer-1ive6yv { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 303px; justify-content: center; padding: 0px; width: 345px; } .framer-pqKtQ .framer-1p7503o { gap: 0px; width: 345px; } .framer-pqKtQ .framer-wq0pqm { height: 123px; } .framer-pqKtQ .framer-6n2ur3, .framer-pqKtQ .framer-expxof { aspect-ratio: 1.0960451977401129 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; height: var(--framer-aspect-ratio-supported, 72px); width: 79px; } .framer-pqKtQ .framer-od197v { order: 2; } .framer-pqKtQ .framer-gewm21, .framer-pqKtQ .framer-1gu3q7f, .framer-pqKtQ .framer-1rcgof6, .framer-pqKtQ .framer-4n93to, .framer-pqKtQ .framer-1bmcfn4, .framer-pqKtQ .framer-zhwk62, .framer-pqKtQ .framer-i33mxf { width: 720px; } .framer-pqKtQ .framer-tj3iu1 { gap: 48px; order: 0; width: 720px; } .framer-pqKtQ .framer-ishfat, .framer-pqKtQ .framer-t9r8a9, .framer-pqKtQ .framer-ynx1ma { width: 335px; } .framer-pqKtQ .framer-1xnpdtf { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 60px); } .framer-pqKtQ .framer-dp1rdf { height: var(--framer-aspect-ratio-supported, 48px); } .framer-pqKtQ .framer-m3pmj7, .framer-pqKtQ .framer-1mzr4os, .framer-pqKtQ .framer-7si5kf, .framer-pqKtQ .framer-1yxpiae { width: 246px; } .framer-pqKtQ .framer-1nj9po3 { width: 343px; } .framer-pqKtQ .framer-n1jifl { gap: 48px; order: 1; } .framer-pqKtQ .framer-sgj6bq { order: 3; width: 720px; } .framer-pqKtQ .framer-1wx6o95 { width: 87px; } .framer-pqKtQ .framer-1qbpym7-container { width: 721px; } .framer-pqKtQ .framer-1susan7 { order: 4; width: 720px; } .framer-pqKtQ .framer-y58im0 { width: 715px; } .framer-pqKtQ .framer-r3pjoc { order: 5; }}\",\"@media (max-width: 809px) { .framer-pqKtQ.framer-nq8dw4 { gap: 48px; width: 430px; } .framer-pqKtQ .framer-1smmo6y-container { order: 0; } .framer-pqKtQ .framer-1oq1fxi { order: 1; width: min-content; } .framer-pqKtQ .framer-snv8l4 { flex-direction: column; gap: 34px; width: 345px; } .framer-pqKtQ .framer-inqshw { gap: 19px; height: min-content; width: 345px; } .framer-pqKtQ .framer-kkby58, .framer-pqKtQ .framer-ko86lu, .framer-pqKtQ .framer-m3pmj7, .framer-pqKtQ .framer-1mzr4os, .framer-pqKtQ .framer-7si5kf, .framer-pqKtQ .framer-1yxpiae, .framer-pqKtQ .framer-1qbpym7-container, .framer-pqKtQ .framer-1bmcfn4, .framer-pqKtQ .framer-zhwk62, .framer-pqKtQ .framer-i33mxf, .framer-pqKtQ .framer-y58im0, .framer-pqKtQ .framer-1tmkwq7 { width: 345px; } .framer-pqKtQ .framer-12zd6qo { height: 25px; white-space: pre-wrap; width: 345px; word-break: break-word; word-wrap: break-word; } .framer-pqKtQ .framer-1ntkznv { align-content: center; align-items: center; width: 345px; } .framer-pqKtQ .framer-16purel-container, .framer-pqKtQ .framer-1ez8y89-container { will-change: unset; } .framer-pqKtQ .framer-4obb42 { align-content: center; align-items: center; gap: 0px; height: 443px; justify-content: center; width: 345px; } .framer-pqKtQ .framer-1ive6yv { align-content: center; align-items: center; aspect-ratio: 1.1386138613861385 / 1; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 19px; height: var(--framer-aspect-ratio-supported, 290px); justify-content: center; padding: 0px; width: 330px; } .framer-pqKtQ .framer-1p7503o { align-content: center; align-items: center; gap: 47px; justify-content: center; padding: 23px 13px 23px 13px; width: 345px; } .framer-pqKtQ .framer-wq0pqm { gap: 8px; height: min-content; will-change: unset; } .framer-pqKtQ .framer-vip3zf { gap: 8px; padding: 0px; } .framer-pqKtQ .framer-6n2ur3 { aspect-ratio: 1.0960451977401129 / 1; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; height: var(--framer-aspect-ratio-supported, 56px); width: 61px; } .framer-pqKtQ .framer-11fsar6 { gap: 8px; will-change: unset; } .framer-pqKtQ .framer-1oo0zvu { padding: 0px; } .framer-pqKtQ .framer-expxof { aspect-ratio: 1.0960451977401129 / 1; border-bottom-left-radius: 11px; border-bottom-right-radius: 11px; border-top-left-radius: 11px; border-top-right-radius: 11px; height: var(--framer-aspect-ratio-supported, 56px); width: 61px; } .framer-pqKtQ .framer-od197v { order: 2; width: 345px; } .framer-pqKtQ .framer-gewm21 { align-content: center; align-items: center; gap: 22px; justify-content: center; width: 345px; } .framer-pqKtQ .framer-1gu3q7f { gap: 7px; width: 345px; } .framer-pqKtQ .framer-w3rohn { white-space: pre-wrap; width: 345px; word-break: break-word; word-wrap: break-word; } .framer-pqKtQ .framer-1rcgof6 { gap: 22px; width: 345px; } .framer-pqKtQ .framer-tj3iu1, .framer-pqKtQ .framer-n1jifl { flex-direction: column; gap: 22px; width: 345px; } .framer-pqKtQ .framer-ishfat, .framer-pqKtQ .framer-1nj9po3, .framer-pqKtQ .framer-t9r8a9, .framer-pqKtQ .framer-ynx1ma { align-content: center; align-items: center; flex-direction: column; width: 345px; } .framer-pqKtQ .framer-1xnpdtf, .framer-pqKtQ .framer-eppthj, .framer-pqKtQ .framer-3eunz7, .framer-pqKtQ .framer-10kysr { aspect-ratio: 1 / 1; background-color: unset; height: var(--framer-aspect-ratio-supported, 61px); width: 61px; } .framer-pqKtQ .framer-sgj6bq { align-content: center; align-items: center; height: 0px; order: 3; width: 100%; } .framer-pqKtQ .framer-1wx6o95 { width: 98px; } .framer-pqKtQ .framer-4n93to { width: 99px; } .framer-pqKtQ .framer-1susan7 { gap: 30px; order: 4; width: 345px; } .framer-pqKtQ .framer-1bz1m3f { align-content: center; align-items: center; flex-direction: row; gap: 0px; height: min-content; width: 345px; } .framer-pqKtQ .framer-r3pjoc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; order: 5; padding: 0px; } .framer-pqKtQ .framer-18mai6r-container { bottom: unset; left: unset; position: relative; transform: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2534\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NI0LPn9qw\":{\"layout\":[\"fixed\",\"auto\"]},\"EavNGh3ay\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const Framernbm9vV3KQ=withCSS(Component,css,\"framer-pqKtQ\");export default Framernbm9vV3KQ;Framernbm9vV3KQ.displayName=\"About\";Framernbm9vV3KQ.defaultProps={height:2534,width:1200};addFonts(Framernbm9vV3KQ,[{explicitInter:true,fonts:[]},...NavBarRevertFonts,...ReachOutFonts,...TickerFonts,...FooterFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framernbm9vV3KQ\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"2534\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NI0LPn9qw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EavNGh3ay\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "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", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "height", "id", "link", "title", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "useLocaleInfo", "style", "className", "layoutId", "luSx2M3iE", "Ht6fxtxVL", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "Link", "RichText2", "x", "css", "FramerLNyHo05Jg", "withCSS", "LNyHo05Jg_default", "addPropertyControls", "ControlType", "addFonts", "NavBarRevertFonts", "getFonts", "cK3u2Jx2T_default", "ReachOutFonts", "LNyHo05Jg_default", "TickerFonts", "Ticker", "FooterFonts", "lh3jBvTDP_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "transition3", "animation3", "transformTemplate1", "_", "t", "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", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "x", "RichText2", "Link", "getLoadingLazyAtYPosition", "Image2", "SVG", "css", "Framernbm9vV3KQ", "withCSS", "nbm9vV3KQ_default", "addFonts", "__FramerMetadata__"]
}
