{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/qHRKww4EaopEOOxJTfDl/3neDWT3UjyG5xw0NkS4j/dmVDjfkQo.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (915daba)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import Button from\"#framer/local/canvasComponent/iiV6GoqTz/iiV6GoqTz.js\";import FooterDark from\"#framer/local/canvasComponent/jOJGYtCHS/jOJGYtCHS.js\";import ButtonCopy from\"#framer/local/canvasComponent/lFCMkEFJA/lFCMkEFJA.js\";import Pill from\"#framer/local/canvasComponent/NSIEQ_Qhy/NSIEQ_Qhy.js\";import MyProcess from\"#framer/local/canvasComponent/OryuxHYne/OryuxHYne.js\";import Logo from\"#framer/local/canvasComponent/QR5H7t0Kh/QR5H7t0Kh.js\";import DesktopMockUpNonScroll from\"#framer/local/canvasComponent/qy7DZgG1D/qy7DZgG1D.js\";import MobileMockUpNonScroll from\"#framer/local/canvasComponent/sC_gkpznH/sC_gkpznH.js\";import Menu from\"#framer/local/canvasComponent/tBQ2XFy34/tBQ2XFy34.js\";import{withHover}from\"#framer/local/codeFile/JKIGVrv/Examples_1.js\";import*as sharedStyle3 from\"#framer/local/css/A8GVuovpX/A8GVuovpX.js\";import*as sharedStyle4 from\"#framer/local/css/aKFy5hl49/aKFy5hl49.js\";import*as sharedStyle2 from\"#framer/local/css/JA_s_JBrt/JA_s_JBrt.js\";import*as sharedStyle5 from\"#framer/local/css/OyrOLgifr/OyrOLgifr.js\";import*as sharedStyle1 from\"#framer/local/css/RyHv3RYyz/RyHv3RYyz.js\";import*as sharedStyle from\"#framer/local/css/UrKJc4gxC/UrKJc4gxC.js\";import metadataProvider from\"#framer/local/webPageMetadata/dmVDjfkQo/dmVDjfkQo.js\";const MenuFonts=getFonts(Menu);const MenuWithVariantAppearEffect=withVariantAppearEffect(Menu);const RichTextWithFX=withFX(RichText);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const PillFonts=getFonts(Pill);const ButtonFonts=getFonts(Button);const DesktopMockUpNonScrollFonts=getFonts(DesktopMockUpNonScroll);const DesktopMockUpNonScrollWithVariantAppearEffect=withVariantAppearEffect(DesktopMockUpNonScroll);const MobileMockUpNonScrollFonts=getFonts(MobileMockUpNonScroll);const MobileMockUpNonScrollWithVariantAppearEffect=withVariantAppearEffect(MobileMockUpNonScroll);const MotionDivWithHover1qri2e=withCodeBoundaryForOverrides(motion.div,{nodeId:\"MwdfQLT6o\",override:withHover,scopeId:\"dmVDjfkQo\"});const MyProcessFonts=getFonts(MyProcess);const MyProcessWithVariantAppearEffect=withVariantAppearEffect(MyProcess);const LogoFonts=getFonts(Logo);const ButtonCopyFonts=getFonts(ButtonCopy);const FooterDarkFonts=getFonts(FooterDark);const MotionDivWithHoverbg49d6=withCodeBoundaryForOverrides(motion.div,{nodeId:\"YnMK2tCiw\",override:withHover,scopeId:\"dmVDjfkQo\"});const MotionDivWithHoverky5bhx=withCodeBoundaryForOverrides(motion.div,{nodeId:\"dy7M4zZCn\",override:withHover,scopeId:\"dmVDjfkQo\"});const MotionDivWithHover1i61c3x=withCodeBoundaryForOverrides(motion.div,{nodeId:\"GDctlOV9a\",override:withHover,scopeId:\"dmVDjfkQo\"});const MotionDivWithHoverlabqx9=withCodeBoundaryForOverrides(motion.div,{nodeId:\"YrY7aBhk7\",override:withHover,scopeId:\"dmVDjfkQo\"});const MotionDivWithHover16yycy9=withCodeBoundaryForOverrides(motion.div,{nodeId:\"Z7VlTzniM\",override:withHover,scopeId:\"dmVDjfkQo\"});const MotionDivWithHoverckw8ps=withCodeBoundaryForOverrides(motion.div,{nodeId:\"yUkvbej8r\",override:withHover,scopeId:\"dmVDjfkQo\"});const breakpoints={oa907ZUdK:\"(min-width: 1200px)\",qcMCb2YZH:\"(max-width: 809px)\",xw30xKmo2:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Fl3DV\";const variantClassNames={oa907ZUdK:\"framer-v-10v0fa0\",qcMCb2YZH:\"framer-v-4rpamr\",xw30xKmo2:\"framer-v-jy8kzq\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:123};const transition1={bounce:.25,delay:.5,duration:3,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:123};const transition2={bounce:.25,delay:1,duration:3,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:123};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-10};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:-10};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-56};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:-56};const transition3={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:20};const transition4={delay:.75,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation9={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:25};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:30};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition5={delay:0,duration:1.2,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"oa907ZUdK\",Phone:\"qcMCb2YZH\",Tablet:\"xw30xKmo2\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oa907ZUdK\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();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=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"qcMCb2YZH\")return false;return true;};const elementId=useRouteElementId(\"OXupDrWk0\");const elementId1=useRouteElementId(\"CufkIZPUp\");const ref5=React.useRef(null);const router=useRouter();const elementId2=useRouteElementId(\"sTUApQaYe\");const ref6=React.useRef(null);const elementId3=useRouteElementId(\"q53qv82aQ\");const ref7=React.useRef(null);const elementId4=useRouteElementId(\"x7poe53kk\");const ref8=React.useRef(null);const elementId5=useRouteElementId(\"IKm2Ku_ZD\");const ref9=React.useRef(null);const elementId6=useRouteElementId(\"yarvfi4Vk\");const ref10=React.useRef(null);const elementId7=useRouteElementId(\"W8XrBUeB1\");const ref11=React.useRef(null);const elementId8=useRouteElementId(\"qKFaOoaxG\");const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"qcMCb2YZH\")return true;return false;};const defaultLayoutId=React.useId();useCustomCursors({});const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"oa907ZUdK\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250)); } @media (max-width: 809px) { html body { background: var(--token-ce87dc29-1b42-4533-89d6-61183c25a18d, rgb(245, 245, 245)) } }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-10v0fa0\",className),ref:ref??ref1,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:54,y:10,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l9dpv2-container\",layoutScroll:true,nodeId:\"U8t8fWOwU\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(MenuWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"UDs5vT00L\"},{offset:135,ref:ref3,target:\"sSZPm5DBT\"},{offset:0,ref:ref4,target:\"sEmRpSg9M\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"U8t8fWOwU\",layoutId:\"U8t8fWOwU\",variant:\"UDs5vT00L\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-z86km2\",\"data-framer-name\":\"Header Image\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:800,pixelWidth:1200,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/AosAaHWksfsoFUxVTTec8ela7Kw.svg\",srcSet:\"https://framerusercontent.com/images/AosAaHWksfsoFUxVTTec8ela7Kw.svg?scale-down-to=512 512w,https://framerusercontent.com/images/AosAaHWksfsoFUxVTTec8ela7Kw.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/AosAaHWksfsoFUxVTTec8ela7Kw.svg 1200w\"},className:\"framer-1ssyq75\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18imefy\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15vmx7s\",\"data-framer-name\":\"name\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-uiwtph\",\"data-styles-preset\":\"UrKJc4gxC\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Daniel Cubas\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"90px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-2px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Daniel Cubas\"})}),className:\"framer-i6ekv2\",fonts:[\"GF;Inter-500\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Senior Product Designer at Sage based in Atlanta, Georgia\"})}),className:\"framer-1lt1mbw\",fonts:[\"GF;Inter-regular\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1806hmb\",\"data-framer-name\":\"Companies\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e0gjo9\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1onhmme\",\"data-styles-preset\":\"RyHv3RYyz\",children:\"Companies I have worked with\"})}),className:\"framer-evwkes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation5,__framer__exit:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1of1fmo\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x1soar-container\",isModuleExternal:true,nodeId:\"u9FOmDGIu\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{padding:4,paddingBottom:4,paddingLeft:4,paddingRight:4,paddingTop:4,sizingOptions:{heightType:false,widthType:true}}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:32,height:\"100%\",hoverFactor:1,id:\"u9FOmDGIu\",layoutId:\"u9FOmDGIu\",padding:8,paddingBottom:8,paddingLeft:8,paddingPerSide:false,paddingRight:8,paddingTop:8,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1259,intrinsicWidth:1679,pixelHeight:2518,pixelWidth:3358,sizes:\"143px\",src:\"https://framerusercontent.com/images/VJE617aIsigKpf1TcwiPWQSqHg.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/VJE617aIsigKpf1TcwiPWQSqHg.png?scale-down-to=512 512w,https://framerusercontent.com/images/VJE617aIsigKpf1TcwiPWQSqHg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VJE617aIsigKpf1TcwiPWQSqHg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/VJE617aIsigKpf1TcwiPWQSqHg.png 3358w\"},className:\"framer-3vkodt\",\"data-framer-name\":\"Sage New 2022\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fsn30q\",\"data-framer-name\":\"Delta\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qtesy9\",\"data-framer-name\":\"Delta_logo\",fill:\"black\",intrinsicHeight:154,intrinsicWidth:1e3,svg:'<svg version=\"1.1\" id=\"Layer_1\" xmlns=\"http://www.w3.org/2000/svg\" x=\"0\" y=\"0\" viewBox=\"0 0 1000 154\" style=\"enable-background:new 0 0 1000 154\" xml:space=\"preserve\"><style>.st0{fill:#98002e}</style><path class=\"st0\" d=\"m185.7 137.6-89.3-43V0l89.3 137.6zm7.1 16.4-96.4-40.7V154h96.4z\"/><path d=\"M7.1 137.6 96.4 0v94.6l-89.3 43M0 154h96.4v-40.7L0 154\" style=\"fill:#e31837\"/><path class=\"st0\" d=\"M200.6 125.8c3.5 0 6.4 2.8 6.4 6.3s-2.8 6.4-6.3 6.4-6.4-2.8-6.4-6.3c0-3.6 2.8-6.4 6.3-6.4zm0 11.7c3 0 5.4-2.4 5.4-5.4 0-3-2.4-5.4-5.4-5.4-3 0-5.4 2.4-5.4 5.4 0 3 2.4 5.4 5.4 5.4zm-1.4-1.7h-.9v-7.3h2.8c1.7 0 2.3.7 2.3 2 .1 1.1-.8 2-1.8 2.1l2.2 3.2h-1l-2.2-3.2h-1.3l-.1 3.2zm0-4.1h1.2c1 0 2.1-.1 2.1-1.3 0-.9-.9-1.2-1.6-1.2h-1.6v2.5z\"/><path d=\"M268.1 137.6h43.3c44.6 0 71.1-23.1 71.1-61.4S356 14.9 311.4 14.9h-43.3v122.7zm27.4-101.4h15.9c28.9 0 43.4 14.3 43.4 40s-14.5 40-43.4 40h-15.9v-80zm180.2 48.2h52.1V63.1h-52.1V36.2h58.9V14.9h-86.4v122.7h88.3v-21.3h-60.8zm217 31.9h-52.9V14.9h-27.5v122.7h80.4zm148-101.4H730.6v21.3h41.2v101.4h27.6V36.2h41.3zM1000 137.6h-28.7l-12-30.7h-49.9l-12 30.7h-26.8l51.3-123.2h27.7l50.4 123.2zm-48.5-51.3-17.1-43.6-17.2 43.6h34.3z\" style=\"fill:#003d79\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1f8kcyh\",\"data-framer-name\":\"Moment Studio\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVGhpbg==\",\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"100\"},children:\"MOMENT STUDIO\"})}),className:\"framer-xwxg0n\",fonts:[\"Inter-Thin\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-en1db3\",\"data-framer-name\":\"Theneo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-8fh5gn\",\"data-framer-name\":\"Logo\",fill:\"black\",intrinsicHeight:76,intrinsicWidth:145,svg:'<svg width=\"145\" height=\"76\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path opacity=\".25\" d=\"M29.368 58.776c11.289 0 20.44-9.151 20.44-20.44 0-11.289-9.151-20.44-20.44-20.44-11.289 0-20.44 9.151-20.44 20.44 0 11.289 9.151 20.44 20.44 20.44Z\" fill=\"#5E81F4\"/><path opacity=\".5\" d=\"M12.584 34.544A12.582 12.582 0 0 1 3.68 13.072c4.914-4.912 12.88-4.912 17.792 0a12.582 12.582 0 0 1 0 17.792 12.468 12.468 0 0 1-8.888 3.68Zm34.032 33.248a12.583 12.583 0 0 1-4.818-24.21 12.584 12.584 0 0 1 13.706 20.53 12.508 12.508 0 0 1-8.888 3.68Z\" fill=\"#5E81F4\"/><path d=\"M12.92 67.656A12.582 12.582 0 0 1 1.288 59.9 12.582 12.582 0 0 1 4 46.184c.55-.536 1.146-1.02 1.784-1.448l.616-.392c.432-.256.88-.488 1.352-.712.24-.104.48-.216.744-.312.492-.18.994-.326 1.504-.44l.32-.088c.054-.02.112-.036.168-.048l2.848-.208c.368 0 .8.072 1.192.128H16a18.395 18.395 0 0 0 13.048-5.6 18.294 18.294 0 0 0 5.232-13.176v-.272a3.017 3.017 0 0 1-.048-.464v-.384l-.104-.368c0-.224-.056-.464-.064-.696l.192-2.64v-.112c0-.064.12-.416.12-.416.12-.542.276-1.076.464-1.6.088-.24.2-.48.312-.72.21-.474.45-.934.72-1.376v-.072c.112-.184.216-.368.344-.544.42-.634.9-1.226 1.432-1.768 4.922-4.93 12.91-4.938 17.84-.016s4.938 12.91.016 17.84c-.546.532-1.14 1.01-1.776 1.432-.192.136-.36.232-.528.336l-.096.056c-.464.272-.912.512-1.344.712-.256.112-.488.224-.728.312-.504.184-1.02.336-1.544.456-.11.024-.22.052-.328.088l-.2.056-2.792.192c-.352 0-.728-.064-1.12-.112h-1.52c-10.204.15-18.372 8.508-18.288 18.712v.28c.02.14.034.282.04.424 0 .152 0 .296.04.44.04.144 0 .272.048.416.028.206.044.416.048.624l-.2 2.744a2.014 2.014 0 0 1-.056.216l-.072.248a11.676 11.676 0 0 1-.456 1.6c-.088.24-.208.488-.32.736-.204.462-.43.914-.68 1.352a7.406 7.406 0 0 1-.384.616c-.424.64-.908 1.238-1.448 1.784a12.507 12.507 0 0 1-8.88 3.68v-.024Z\" fill=\"#FF7F13\"/></g><path d=\"M83.627 30.281V44.5h-2.92V30.281h2.92Zm4.375 0v2.295H76.4v-2.295h11.602Zm4.438-.781v15h-2.812v-15h2.812Zm-.4 9.346h-.772a7.15 7.15 0 0 1 .293-2.031 4.984 4.984 0 0 1 .81-1.622 3.74 3.74 0 0 1 1.26-1.074 3.54 3.54 0 0 1 1.641-.38c.521 0 .993.074 1.416.224.43.143.798.377 1.104.703.312.319.553.739.722 1.26.17.52.254 1.152.254 1.894v6.68h-2.832v-6.7c0-.468-.068-.836-.205-1.103a1.13 1.13 0 0 0-.576-.576c-.247-.117-.553-.176-.918-.176-.403 0-.749.075-1.035.225-.28.15-.505.358-.674.625-.17.26-.293.566-.371.918-.078.352-.117.73-.117 1.133Zm13.93 5.85c-.82 0-1.556-.13-2.207-.391a4.849 4.849 0 0 1-1.66-1.104 4.91 4.91 0 0 1-1.035-1.63 5.489 5.489 0 0 1-.361-1.993v-.39c0-.801.114-1.534.341-2.198a5.17 5.17 0 0 1 .977-1.728c.43-.489.951-.863 1.562-1.123.612-.267 1.303-.4 2.071-.4.749 0 1.413.123 1.992.37a3.91 3.91 0 0 1 1.455 1.055c.397.456.697 1.003.899 1.64.201.632.302 1.335.302 2.11v1.172h-8.398V38.21h5.635v-.215c0-.39-.072-.739-.215-1.045a1.66 1.66 0 0 0-.625-.742c-.28-.182-.638-.274-1.074-.274-.372 0-.691.082-.958.245-.266.162-.485.39-.654.683a3.723 3.723 0 0 0-.371 1.035c-.078.391-.117.82-.117 1.29v.39c0 .423.058.814.176 1.172.123.358.296.667.517.928.228.26.502.462.821.605a2.71 2.71 0 0 0 1.103.215c.508 0 .98-.098 1.416-.293a3.065 3.065 0 0 0 1.143-.908l1.367 1.484c-.221.32-.524.625-.908.918a4.858 4.858 0 0 1-1.368.723c-.533.182-1.142.273-1.826.273Zm8.892-8.506v8.31h-2.813V33.934h2.637l.176 2.256Zm-.41 2.656h-.762c0-.781.101-1.485.303-2.11a4.798 4.798 0 0 1 .849-1.611c.365-.45.798-.791 1.299-1.025a3.914 3.914 0 0 1 1.699-.362c.495 0 .947.072 1.358.215.41.143.761.371 1.054.684.3.312.528.726.684 1.24.163.514.244 1.142.244 1.885V44.5h-2.832v-6.748c0-.469-.065-.833-.195-1.094a1.1 1.1 0 0 0-.576-.547c-.248-.11-.554-.166-.918-.166a2.06 2.06 0 0 0-.987.225 1.96 1.96 0 0 0-.683.625c-.176.26-.31.566-.401.918a4.51 4.51 0 0 0-.136 1.133Zm13.93 5.85c-.82 0-1.556-.13-2.207-.391a4.849 4.849 0 0 1-1.66-1.104 4.91 4.91 0 0 1-1.035-1.63 5.49 5.49 0 0 1-.362-1.993v-.39c0-.801.114-1.534.342-2.198a5.17 5.17 0 0 1 .977-1.728c.429-.489.95-.863 1.562-1.123.612-.267 1.302-.4 2.071-.4.748 0 1.412.123 1.992.37a3.91 3.91 0 0 1 1.455 1.055c.397.456.696 1.003.898 1.64.202.632.303 1.335.303 2.11v1.172h-8.398V38.21h5.634v-.215c0-.39-.071-.739-.215-1.045a1.654 1.654 0 0 0-.625-.742c-.279-.182-.638-.274-1.074-.274-.371 0-.69.082-.957.245-.267.162-.485.39-.654.683a3.692 3.692 0 0 0-.371 1.035c-.078.391-.117.82-.117 1.29v.39c0 .423.058.814.175 1.172.124.358.297.667.518.928.228.26.501.462.82.605.326.143.694.215 1.104.215.508 0 .98-.098 1.416-.293a3.062 3.062 0 0 0 1.142-.908l1.368 1.484a4.14 4.14 0 0 1-.909.918 4.838 4.838 0 0 1-1.367.723c-.534.182-1.142.273-1.826.273Zm5.688-5.372v-.205c0-.775.111-1.487.332-2.139a4.962 4.962 0 0 1 .967-1.708 4.329 4.329 0 0 1 1.563-1.124c.618-.273 1.328-.41 2.129-.41.8 0 1.513.137 2.138.41a4.312 4.312 0 0 1 1.572 1.123c.43.482.756 1.052.977 1.71.221.65.332 1.363.332 2.138v.205c0 .768-.111 1.481-.332 2.139a4.975 4.975 0 0 1-.977 1.709 4.333 4.333 0 0 1-1.562 1.123c-.619.267-1.328.4-2.129.4-.801 0-1.514-.133-2.139-.4a4.432 4.432 0 0 1-1.572-1.123 5.086 5.086 0 0 1-.967-1.71 6.674 6.674 0 0 1-.332-2.138Zm2.813-.205v.205c0 .443.039.856.117 1.24.078.385.202.723.371 1.016.176.287.404.511.684.674.28.163.621.244 1.025.244.391 0 .726-.081 1.006-.244.28-.163.504-.387.674-.674.169-.293.293-.631.371-1.015a5.8 5.8 0 0 0 .127-1.24v-.206c0-.43-.043-.833-.127-1.21a3.188 3.188 0 0 0-.381-1.016 1.888 1.888 0 0 0-.674-.703c-.28-.17-.618-.255-1.015-.255-.398 0-.736.085-1.016.255a1.988 1.988 0 0 0-.674.703 3.355 3.355 0 0 0-.371 1.015 5.98 5.98 0 0 0-.117 1.211Z\" fill=\"#4B5BA9\"/><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(0 8)\" d=\"M0 0h60v60H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:25.5,intrinsicWidth:80.5,pixelHeight:51,pixelWidth:161,src:\"https://framerusercontent.com/images/EzP1HgVXnM0YzobGuGpkEd2sGk.svg\"},className:\"framer-gv2s5i\",\"data-framer-name\":\"Helio Sleep\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__loop:animation7,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition3,__perspectiveFX:false,__targetOpacity:1,animate:animation8,className:\"framer-adtgtm hidden-4rpamr\",\"data-framer-appear-id\":\"adtgtm\",initial:animation9,optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t449p1\",\"data-framer-name\":\"chevron_down_double_svgrepo_com\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 50 50\"><path d=\"M 14.583 27.083 L 25 37.5 L 35.417 27.083 M 14.583 12.5 L 25 22.917 L 35.417 12.5\" fill=\"transparent\" stroke-width=\"2\" stroke=\"var(--token-cb1bd714-0c15-4e2f-8fa4-e284a176d348, rgb(18, 18, 18)) /* {&quot;name&quot;:&quot;Black&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12044105377,withExternalLayout:true})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sqi308 hidden-4rpamr\",\"data-framer-name\":\"Features\",id:elementId,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w8p9kc\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kurl2p\",\"data-framer-name\":\"DBT\",id:elementId1,ref:ref5,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g7w7tl\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c8n8ik\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-color\":\"var(--token-6407c3d4-4753-41ef-8743-80a4297c5ebf, rgb(44, 80, 130))\"},children:\"Delta Airlines: Business Traveler \"})}),className:\"framer-sqoxv2\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qederr\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h6hrkk-container\",nodeId:\"pI7E52Q8O\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"pI7E52Q8O\",layoutId:\"pI7E52Q8O\",opmGTYnzp:\"rgb(227, 229, 237)\",UC8Lx12g_:\"Dashboard\",variant:\"pVWRC2UCi\",width:\"100%\",Y7WYnWouV:\"Dashboard\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1diqbdi-container\",nodeId:\"pxHcgqA6a\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"pxHcgqA6a\",layoutId:\"pxHcgqA6a\",opmGTYnzp:\"rgb(227, 229, 237)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dg1py1-container\",nodeId:\"ReZGMzPCr\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"ReZGMzPCr\",layoutId:\"ReZGMzPCr\",opmGTYnzp:\"rgb(227, 229, 237)\",UC8Lx12g_:\"Promotions\",variant:\"J3mMMgPlv\",width:\"100%\",Y7WYnWouV:\"WbAuto\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"The Delta Business Traveler product offers exclusive rewards and perks to business travelers, integrating with SkyMiles for a seamless experience. Tailored for small business owners, freelancers, and corporate employees, it provides customized offers from Delta and partners to maximize travel benefits.\"})}),className:\"framer-lt25dv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"zMtQ5Ee03\"},implicitPathVariables:undefined},{href:{webPageId:\"zMtQ5Ee03\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k91kd8-container\",nodeId:\"gKdZKF2bG\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{vq_MaRHVY:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"gKdZKF2bG\",layoutId:\"gKdZKF2bG\",OdhidLxwW:\"View Case Study\",style:{height:\"100%\"},variant:\"C_VFQy7O1\",vq_MaRHVY:resolvedLinks[0],width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uyr40v\",\"data-framer-name\":\"Skeleton\",id:elementId2,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19rj1f1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x1j5rj\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-color\":\"var(--token-6407c3d4-4753-41ef-8743-80a4297c5ebf, rgb(44, 80, 130))\"},children:\"Delta Air Lines: Skeleton and Lazy Loading UI\"})}),className:\"framer-o22nvr\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vphndm\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q5l34o-container\",nodeId:\"jHWvzGMhh\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"jHWvzGMhh\",layoutId:\"jHWvzGMhh\",opmGTYnzp:\"rgb(227, 229, 237)\",UC8Lx12g_:\"Optimization\",variant:\"uWi1zifPs\",width:\"100%\",Y7WYnWouV:\"Web\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k2dewe-container\",nodeId:\"eLwbxTFmh\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"eLwbxTFmh\",layoutId:\"eLwbxTFmh\",opmGTYnzp:\"rgb(227, 229, 237)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yjz0rr-container\",nodeId:\"LUmExDpy3\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"LUmExDpy3\",layoutId:\"LUmExDpy3\",opmGTYnzp:\"rgb(227, 229, 237)\",UC8Lx12g_:\"Motion Design\",variant:\"hAJnYmdIv\",width:\"100%\",Y7WYnWouV:\"Web\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Improved loading solution for faster response time and better user feedback. Elevated user experience of our website by implementing a comprehensive solution that adds lazy loading, optimized load times, and engaging animations.\"})}),className:\"framer-9ylrou\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"RgwwtO8en\"},implicitPathVariables:undefined},{href:{webPageId:\"RgwwtO8en\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-r6b1g-container\",nodeId:\"MRKkc0tQk\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{vq_MaRHVY:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"MRKkc0tQk\",layoutId:\"MRKkc0tQk\",OdhidLxwW:\"View Case Study\",style:{height:\"100%\",width:\"100%\"},variant:\"C_VFQy7O1\",vq_MaRHVY:resolvedLinks1[0],width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e6few1\",\"data-framer-name\":\"Amex\",id:elementId3,ref:ref7,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-imf6ty\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1csklne\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-color\":\"var(--token-1eb60e51-8d64-4c95-8035-648b90aae60c, rgb(148, 106, 0))\"},children:\"Delta Air Lines: AMEX Co-brand Benefits\"})}),className:\"framer-1d4d291\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ko9ho\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cpvlj6-container\",nodeId:\"h_GoKMg2I\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"h_GoKMg2I\",layoutId:\"h_GoKMg2I\",opmGTYnzp:\"rgba(148, 106, 0, 0.1)\",UC8Lx12g_:\"Promotions\",variant:\"J3mMMgPlv\",width:\"100%\",Y7WYnWouV:\"WbAuto\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hhni0z-container\",nodeId:\"DhodpHxLs\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"DhodpHxLs\",layoutId:\"DhodpHxLs\",opmGTYnzp:\"rgba(148, 106, 0, 0.1)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gisgmv-container\",nodeId:\"RBy518sIG\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"RBy518sIG\",layoutId:\"RBy518sIG\",opmGTYnzp:\"rgba(148, 106, 0, 0.1)\",UC8Lx12g_:\"eCommerce\",variant:\"TqG0ehse_\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Created unique shopping experiences for the 4 different tiers of AMEX cards and for non card members highlighting the benefits that cardholders can earn by signing up for an AMEX card, showcasing the value of the promotion, and encouraging card sign-ups\"})}),className:\"framer-phujr3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CR_SGEZl4\"},implicitPathVariables:undefined},{href:{webPageId:\"CR_SGEZl4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1p023mw-container\",nodeId:\"I3blE5lRE\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{vq_MaRHVY:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"I3blE5lRE\",layoutId:\"I3blE5lRE\",OdhidLxwW:\"View Case Study\",style:{height:\"100%\",width:\"100%\"},variant:\"C_VFQy7O1\",vq_MaRHVY:resolvedLinks2[0],width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ris6rk\",\"data-framer-name\":\"Helio\",id:elementId4,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kpjzin\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t5rpv6\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-color\":\"var(--token-aeb7b2b3-ed07-4078-a81a-9c4a8c212541, rgb(219, 100, 26))\"},children:\"Helio Sleep\"})}),className:\"framer-132yvid\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tg42ru\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f9twbd-container\",nodeId:\"nZWRjK4h3\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"nZWRjK4h3\",layoutId:\"nZWRjK4h3\",opmGTYnzp:\"rgb(248, 236, 229)\",UC8Lx12g_:\"eCommerce\",variant:\"TqG0ehse_\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tuvlg-container\",nodeId:\"JegCBszVt\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"JegCBszVt\",layoutId:\"JegCBszVt\",opmGTYnzp:\"rgb(248, 236, 229)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h9yocw-container\",nodeId:\"gBD0FIaXb\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"gBD0FIaXb\",layoutId:\"gBD0FIaXb\",opmGTYnzp:\"rgb(248, 236, 229)\",UC8Lx12g_:\"Redesign\",variant:\"HVYwJb8HT\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Improved Helio Sleep product landing page by redesigning the layout and include more accurate and helpful information regarding the different products. Redesign the checkout process to improve instructions and clarity for customers ordering prescription home sleep apnea tests and oral appliances.\"})}),className:\"framer-1e1pfk5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"YKkLfaJ7F\"},implicitPathVariables:undefined},{href:{webPageId:\"YKkLfaJ7F\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11zcg0z-container\",nodeId:\"w2neP9sji\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{vq_MaRHVY:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"w2neP9sji\",layoutId:\"w2neP9sji\",OdhidLxwW:\"View Case Study\",style:{height:\"100%\",width:\"100%\"},variant:\"C_VFQy7O1\",vq_MaRHVY:resolvedLinks3[0],width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-159yctq\",\"data-framer-name\":\"Theneo\",id:elementId5,ref:ref9,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uyujel\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-czu3vv\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-color\":\"var(--token-f0acf98d-d2e7-4e6e-8f7a-f099cceeb4be, rgb(114, 104, 207))\"},children:\"Theneo API\"})}),className:\"framer-pfgi3b\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vgi308\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1prhutx-container\",nodeId:\"aTfD_98Uu\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"aTfD_98Uu\",layoutId:\"aTfD_98Uu\",opmGTYnzp:\"rgb(236, 236, 246)\",UC8Lx12g_:\"Landing Page\",variant:\"HVYwJb8HT\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-i6ephe-container\",nodeId:\"O_ed_W43N\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"O_ed_W43N\",layoutId:\"O_ed_W43N\",opmGTYnzp:\"rgb(236, 236, 246)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max((min(max(${componentViewport?.width||\"100vw\"} / 2, 1px) - 60px, 530px) - 10px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wrs635-container\",nodeId:\"qIsE7zmCR\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"qIsE7zmCR\",layoutId:\"qIsE7zmCR\",opmGTYnzp:\"rgb(236, 236, 246)\",UC8Lx12g_:\"Motion Design\",variant:\"hAJnYmdIv\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Landing and pricing page re-design of Theneo API website. Clearly conveyed how their tools tool that helps developers and project team members generate API documentation.\"})}),className:\"framer-zbsi3r\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"S85fQtOHw\"},implicitPathVariables:undefined},{href:{webPageId:\"S85fQtOHw\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"175px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7mw0u9-container\",nodeId:\"KUCWcUO3u\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{vq_MaRHVY:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"KUCWcUO3u\",layoutId:\"KUCWcUO3u\",OdhidLxwW:\"View Case Study\",style:{height:\"100%\",width:\"100%\"},variant:\"C_VFQy7O1\",vq_MaRHVY:resolvedLinks4[0],width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-aqa5mv\",\"data-framer-name\":\"Left\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-222u30\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-m19au5\",children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-jur8k7\",\"data-styles-preset\":\"aKFy5hl49\",style:{\"--framer-text-color\":\"var(--token-cb1bd714-0c15-4e2f-8fa4-e284a176d348, rgb(18, 18, 18))\"},children:\"Featured Works\"})}),className:\"framer-169paqp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(MotionDivWithHover1qri2e,{className:\"framer-1qri2e\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`max(min(${componentViewport?.width||\"100vw\"} / 2, ${componentViewport?.width||\"100vw\"}) - 70px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,width:\"540px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mz4cn9-container\",nodeId:\"cBfh1tTAE\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"dYFRdZHAr\"},{ref:ref7,target:\"jxA_KzuFa\"},{ref:ref8,target:\"Dko1NQh7O\"},{ref:ref9,target:\"sS_8QINfZ\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"cBfh1tTAE\",layoutId:\"cBfh1tTAE\",style:{width:\"100%\"},variant:\"wlEyht195\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{width:`calc((min(${componentViewport?.width||\"100vw\"} / 2, ${componentViewport?.width||\"100vw\"}) - 70px) / 4)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,width:\"135px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-17shaw-container\",nodeId:\"tVNhoh8Ft\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref6,target:\"RzWuGYOdW\"},{ref:ref7,target:\"Wz2hFtQKX\"},{ref:ref8,target:\"NHyXNyCTF\"},{ref:ref9,target:\"hedkwwsmh\"}],__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"tVNhoh8Ft\",layoutId:\"tVNhoh8Ft\",style:{width:\"100%\"},variant:\"LBcrIrsAp\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"itSGhZ4vq\"},implicitPathVariables:undefined},{href:{webPageId:\"itSGhZ4vq\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"200px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-139otre-container\",nodeId:\"bHRz6Ubqy\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xw30xKmo2:{vq_MaRHVY:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"bHRz6Ubqy\",layoutId:\"bHRz6Ubqy\",OdhidLxwW:\"View All Case Studies\",style:{height:\"100%\",width:\"100%\"},variant:\"JI9FCZjz6\",vq_MaRHVY:resolvedLinks5[0],width:\"100%\"})})})})})]})})]}),/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:3500,intrinsicWidth:5e3,pixelHeight:3500,pixelWidth:5e3,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/rkgBDTgWsvDpAmpUFhs6TUidek.jpg\",srcSet:\"https://framerusercontent.com/images/rkgBDTgWsvDpAmpUFhs6TUidek.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/rkgBDTgWsvDpAmpUFhs6TUidek.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/rkgBDTgWsvDpAmpUFhs6TUidek.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/rkgBDTgWsvDpAmpUFhs6TUidek.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/rkgBDTgWsvDpAmpUFhs6TUidek.jpg 5000w\"},className:\"framer-1svhrzp\",\"data-framer-name\":\"Skills\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:719,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hjxw03-container\",id:elementId6,nodeId:\"yarvfi4Vk\",ref:ref10,rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{__framer__variantAppearEffectEnabled:undefined,variant:\"CaJMQPiKd\"}},children:/*#__PURE__*/_jsx(MyProcessWithVariantAppearEffect,{__framer__animateOnce:true,__framer__obscuredVariantId:\"l7b4dyHAP\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"BZJrc519B\",height:\"100%\",id:\"yarvfi4Vk\",layoutId:\"yarvfi4Vk\",style:{width:\"100%\"},tbvXau2hS:\"My Process\",variant:\"l7b4dyHAP\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-163cbi1\",\"data-framer-name\":\"Skills\",id:elementId7,ref:ref11,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d34090a7-90f7-43da-8dfa-24f2d0a506d0, rgb(6, 40, 76))\"},children:\"Skills and Toolkit\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-jur8k7\",\"data-styles-preset\":\"aKFy5hl49\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d34090a7-90f7-43da-8dfa-24f2d0a506d0, rgb(6, 40, 76))\"},children:\"Skills and Toolkit\"})}),className:\"framer-ja7bl7\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x417eu\",\"data-framer-name\":\"Rows\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1drydth\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f08vmu\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"UX Design\"})}),className:\"framer-tyxvpr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1e5jubx\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"UI Design\"})}),className:\"framer-19h5zer\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1drnwj1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Product Design\"})}),className:\"framer-ruww3q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1w9ih81\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Branding\"})}),className:\"framer-1vw1vrt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1km0cun\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Interactive Design\"})}),className:\"framer-1e686kb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ntfxhn\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Responsive Web Design\"})}),className:\"framer-a9914w\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vta3kt\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Wireframing\"})}),className:\"framer-18vpiwr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-6wkjmj\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Prototyping\"})}),className:\"framer-1anj9cx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hm900\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Design Architechture\"})}),className:\"framer-6jpymr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ex1q7\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Design Systems\"})}),className:\"framer-6or9gj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-140l1wf\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Mobile Applications\"})}),className:\"framer-1shabg3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a2co9r\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"UX Research\"})}),className:\"framer-2s4xrs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a4v24t\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"User Testing\"})}),className:\"framer-kzvsx6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-u5t78r\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Usability Testing\"})}),className:\"framer-irtryj\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1y1sof9\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Storybook\"})}),className:\"framer-1lywafr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ocxqez\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"HTML\"})}),className:\"framer-dikl2j\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q1qxpq\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"CSS\"})}),className:\"framer-magm7e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1utduyc\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"No-Code Tools\"})}),className:\"framer-1bhi22e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xfj2ir\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"Mentoring\"})}),className:\"framer-ltz2ap\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-11s2g79\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",style:{\"--framer-text-color\":\"var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, rgb(250, 250, 250))\"},children:\"+ More\"})}),className:\"framer-1nk2dub\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s5ukt7-container\",isModuleExternal:true,nodeId:\"tEwZGKP6g\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{gap:32},xw30xKmo2:{gap:32}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:64,height:\"100%\",hoverFactor:0,id:\"tEwZGKP6g\",layoutId:\"tEwZGKP6g\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1600,pixelHeight:1600,pixelWidth:1600,sizes:\"84px\",src:\"https://framerusercontent.com/images/ooRe7cBIVs68k5v9P4bFWH21pRg.png\",srcSet:\"https://framerusercontent.com/images/ooRe7cBIVs68k5v9P4bFWH21pRg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ooRe7cBIVs68k5v9P4bFWH21pRg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ooRe7cBIVs68k5v9P4bFWH21pRg.png 1600w\"},className:\"framer-osa7pt\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1600,pixelHeight:1600,pixelWidth:1600,sizes:\"84px\",src:\"https://framerusercontent.com/images/DvhS1ed9bK13NCpwh7I4Hmzk74Y.png\",srcSet:\"https://framerusercontent.com/images/DvhS1ed9bK13NCpwh7I4Hmzk74Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/DvhS1ed9bK13NCpwh7I4Hmzk74Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/DvhS1ed9bK13NCpwh7I4Hmzk74Y.png 1600w\"},className:\"framer-4u1ftv\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1600,intrinsicWidth:1600,pixelHeight:1600,pixelWidth:1600,sizes:\"84px\",src:\"https://framerusercontent.com/images/TAJZHRInhsXGZvvxtjV1FkJezjk.png\",srcSet:\"https://framerusercontent.com/images/TAJZHRInhsXGZvvxtjV1FkJezjk.png?scale-down-to=512 512w,https://framerusercontent.com/images/TAJZHRInhsXGZvvxtjV1FkJezjk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/TAJZHRInhsXGZvvxtjV1FkJezjk.png 1600w\"},className:\"framer-1nfr7t4\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1618,intrinsicWidth:1618,pixelHeight:1618,pixelWidth:1618,sizes:\"84px\",src:\"https://framerusercontent.com/images/KtcxDqZTJOEsXTToXBaRmtl1WJA.png\",srcSet:\"https://framerusercontent.com/images/KtcxDqZTJOEsXTToXBaRmtl1WJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/KtcxDqZTJOEsXTToXBaRmtl1WJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KtcxDqZTJOEsXTToXBaRmtl1WJA.png 1618w\"},className:\"framer-kzmf3j\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oqg74h\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-t6zozj\",\"data-framer-name\":\"Applications\",fill:\"rgb(230, 53, 53)\",intrinsicHeight:667,intrinsicWidth:667,svg:'<svg height=\"666.667\" style=\"shape-rendering:geometricPrecision;text-rendering:geometricPrecision;image-rendering:optimizeQuality;fill-rule:evenodd;clip-rule:evenodd\" viewBox=\"0 0 17639 17639\" width=\"666.667\" xml:space=\"preserve\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m10438 4190-16 9712-7089-982c162-163 368-204 602-297 202-80 360-141 559-220 387-153 788-345 1150-445l1-6624 4793-1144zm-7251 8644s62 72 123 112c68 44 87 46 163 78 114 47 233 85 355 128 245 84 452 167 699 260l4200 1552c1864 654 1327 764 2879 298l2227-652c401-119 576-89 619-278V3306c-81-169-40-114-291-187l-1118-322c-490-139-980-285-1484-435-539-160-977-395-1477-190L3187 4752v8082z\" style=\"fill:#eb3b00\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:123,intrinsicWidth:123,pixelHeight:246,pixelWidth:246,src:\"https://framerusercontent.com/images/d2NEYLzUfgbmEH90x16kJYLV4fg.png\"},className:\"framer-1a8lxo2\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-m78hub\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:202,intrinsicWidth:202,pixelHeight:404,pixelWidth:404,src:\"https://framerusercontent.com/images/HxScM0rQ4SNlUpqhC582O8rFWA8.png\"},className:\"framer-1td48o2\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:158,intrinsicWidth:158,pixelHeight:254,pixelWidth:254,src:\"https://framerusercontent.com/images/sE17Fbz1IV77OFGrH4CjydPCGEA.png\"},className:\"framer-t1psf4\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:200,intrinsicWidth:200,pixelHeight:400,pixelWidth:400,src:\"https://framerusercontent.com/images/i8fu8xdPUB7RkHXZrFs5u07H4Y.png\"},className:\"framer-pwfv37\",\"data-framer-name\":\"Image\"})],speed:50,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lp5hf\",\"data-framer-name\":\"Contact\",id:elementId8,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6b4gqj\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dmmt69-container\",nodeId:\"ZwPvRsD8I\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"ZwPvRsD8I\",layoutId:\"ZwPvRsD8I\",style:{width:\"100%\"},variant:\"ol1dOnIzq\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m62ggx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d34090a7-90f7-43da-8dfa-24f2d0a506d0, rgb(6, 40, 76))\"},children:\"Get in Touch!\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation11,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-jur8k7\",\"data-styles-preset\":\"aKFy5hl49\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d34090a7-90f7-43da-8dfa-24f2d0a506d0, rgb(6, 40, 76))\"},children:\"Get in Touch!\"})}),className:\"framer-1h32cho\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(FormContainer,{action:\"https://api.framer.com/forms/v1/forms/d9329e84-63ab-40c2-a467-04e066118fb9/submit\",className:\"framer-bs5bzq\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i807a8\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-11wadll\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1onhmme\",\"data-styles-preset\":\"RyHv3RYyz\",children:\"Name\"})}),className:\"framer-1achxih\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1pwipb0\",inputName:\"Name\",placeholder:\"Jane Smith\",required:true,type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-biktoa\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1onhmme\",\"data-styles-preset\":\"RyHv3RYyz\",children:\"Email\"})}),className:\"framer-73ptlv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1dto7ev\",inputName:\"Email\",placeholder:\"name@email.com\",required:true,type:\"email\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-2febig\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1onhmme\",\"data-styles-preset\":\"RyHv3RYyz\",children:\"Message\"})}),className:\"framer-1htsat6\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-jfhluh\",inputName:\"Message\",placeholder:\"Type your message\",required:true,type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pxozvk-container\",nodeId:\"VMuGCfRsq\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(ButtonCopy,{height:\"100%\",id:\"VMuGCfRsq\",layoutId:\"VMuGCfRsq\",style:{height:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"vkhsSpkdX\",success:\"FMOe7wGix\"},\"kVRqZgJOU\"),width:\"100%\"})})})]})})]})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:217,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-11d1c6g-container\",nodeId:\"yiCABK6IJ\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{variant:\"B6Th5sxEO\"},xw30xKmo2:{variant:\"ju9NYvlWx\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"yiCABK6IJ\",layoutId:\"yiCABK6IJ\",style:{width:\"100%\"},variant:\"b7EhRHs0c\",width:\"100%\"})})})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1457s8 hidden-10v0fa0 hidden-jy8kzq\",\"data-framer-name\":\"Works\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xfb1l5\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-495sgt\",\"data-styles-preset\":\"JA_s_JBrt\",style:{\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Featured Works\"})}),className:\"framer-16l0aw1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15pr5yu\",\"data-framer-name\":\"Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pysmx7\",\"data-framer-name\":\"Skeleton\",children:[/*#__PURE__*/_jsxs(MotionDivWithHoverbg49d6,{className:\"framer-bg49d6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u3k38p-container\",nodeId:\"O0B0d_DK_\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScroll,{height:\"100%\",id:\"O0B0d_DK_\",layoutId:\"O0B0d_DK_\",style:{width:\"100%\"},variant:\"dYFRdZHAr\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px) / 4.023)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-syl449-container\",nodeId:\"OyF9woTVD\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"OyF9woTVD\",layoutId:\"OyF9woTVD\",style:{width:\"100%\"},variant:\"RzWuGYOdW\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1skgim7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tvdw8v\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kiuf3u\",\"data-styles-preset\":\"OyrOLgifr\",style:{\"--framer-text-color\":\"var(--token-6407c3d4-4753-41ef-8743-80a4297c5ebf, rgb(44, 80, 130))\"},children:\"Delta Air Lines: Skeleton and Lazy Loading UI\"})}),className:\"framer-7ea73z\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fifv8q\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19pah1s-container\",nodeId:\"YVUfIpXb5\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"YVUfIpXb5\",layoutId:\"YVUfIpXb5\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"Optimization\",variant:\"uWi1zifPs\",width:\"100%\",Y7WYnWouV:\"Web\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j1e69c-container\",nodeId:\"shvVugvLp\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"shvVugvLp\",layoutId:\"shvVugvLp\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Improved loading solution for faster response time and better user feedback. Elevated user experience of our website by implementing a comprehensive solution that adds lazy loading, optimized load times, and engaging animations.\"})}),className:\"framer-al4deb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-128wnwy\",\"data-framer-name\":\"Amex\",children:[/*#__PURE__*/_jsxs(MotionDivWithHoverky5bhx,{className:\"framer-ky5bhx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q3ble3-container\",nodeId:\"xYGLNubDO\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScroll,{height:\"100%\",id:\"xYGLNubDO\",layoutId:\"xYGLNubDO\",style:{width:\"100%\"},variant:\"jxA_KzuFa\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px) / 4.023)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ebwmij-container\",nodeId:\"KXM_N2YYt\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"KXM_N2YYt\",layoutId:\"KXM_N2YYt\",style:{width:\"100%\"},variant:\"Wz2hFtQKX\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2xzo0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4dfxo\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kiuf3u\",\"data-styles-preset\":\"OyrOLgifr\",style:{\"--framer-text-color\":\"var(--token-1eb60e51-8d64-4c95-8035-648b90aae60c, rgb(148, 106, 0))\"},children:\"Delta Air Lines: AMEX Co-brand Benefits\"})}),className:\"framer-1hr6dlz\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wd5cjf\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t1ak75-container\",nodeId:\"acdjzRSSC\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"acdjzRSSC\",layoutId:\"acdjzRSSC\",opmGTYnzp:\"rgba(148, 106, 0, 0.2)\",UC8Lx12g_:\"eCommerce\",variant:\"TqG0ehse_\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uolir0-container\",nodeId:\"Q4NupKMf7\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"Q4NupKMf7\",layoutId:\"Q4NupKMf7\",opmGTYnzp:\"rgba(148, 106, 0, 0.2)\",UC8Lx12g_:\"New Product\",variant:\"My0goZ5pz\",width:\"100%\",Y7WYnWouV:\"WbAuto\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3zvmhz-container\",nodeId:\"azsxK1y3r\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"azsxK1y3r\",layoutId:\"azsxK1y3r\",opmGTYnzp:\"rgba(148, 106, 0, 0.2)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Created unique shopping experiences for the 4 different tiers of AMEX cards and for non card members highlighting the benefits that cardholders can earn by signing up for an AMEX card, showcasing the value of the promotion, and encouraging card sign-ups\"})}),className:\"framer-14g0hjb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ezrue\",\"data-framer-name\":\"Name\",children:[/*#__PURE__*/_jsxs(MotionDivWithHover1i61c3x,{className:\"framer-1i61c3x\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6tno3y-container\",nodeId:\"xBrwzLFMV\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScroll,{height:\"100%\",id:\"xBrwzLFMV\",layoutId:\"xBrwzLFMV\",style:{width:\"100%\"},variant:\"wlEyht195\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px) / 4.023)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6hbsdy-container\",nodeId:\"yMdC1FzMm\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"yMdC1FzMm\",layoutId:\"yMdC1FzMm\",style:{width:\"100%\"},variant:\"LBcrIrsAp\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1axxtmj\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13axxyq\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kiuf3u\",\"data-styles-preset\":\"OyrOLgifr\",style:{\"--framer-text-color\":\"var(--token-6407c3d4-4753-41ef-8743-80a4297c5ebf, rgb(44, 80, 130))\"},children:\"Delta Airlines: Business Traveler \"})}),className:\"framer-fvzoae\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1h65eny\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ma4sf-container\",nodeId:\"J1rPnRjZY\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"J1rPnRjZY\",layoutId:\"J1rPnRjZY\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"Promotions\",variant:\"J3mMMgPlv\",width:\"100%\",Y7WYnWouV:\"WbAuto\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-67vk1p-container\",nodeId:\"ke_CAQt6O\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"ke_CAQt6O\",layoutId:\"ke_CAQt6O\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"New Product\",variant:\"My0goZ5pz\",width:\"100%\",Y7WYnWouV:\"WbAuto\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12gh2fy-container\",nodeId:\"TtW4CCEGy\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"TtW4CCEGy\",layoutId:\"TtW4CCEGy\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"The Delta Business Traveler digital product is designed to offer exclusive rewards and perks to individual business travelers, integrating seamlessly with existing SkyMiles accounts. It provides tailored offers from Delta and its partners, streamlining the experience for small business owners, freelancers, and corporate employees to maximize travel benefits.\"})}),className:\"framer-foukgy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z622w1\",\"data-framer-name\":\"Helio\",children:[/*#__PURE__*/_jsxs(MotionDivWithHoverlabqx9,{className:\"framer-labqx9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hc6po1-container\",nodeId:\"nBc796xH8\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScroll,{height:\"100%\",id:\"nBc796xH8\",layoutId:\"nBc796xH8\",style:{width:\"100%\"},variant:\"Dko1NQh7O\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px) / 4.023)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-mnc65a-container\",nodeId:\"h5EURgDKu\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"h5EURgDKu\",layoutId:\"h5EURgDKu\",style:{width:\"100%\"},variant:\"NHyXNyCTF\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16zylyh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c3y2x1\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kiuf3u\",\"data-styles-preset\":\"OyrOLgifr\",style:{\"--framer-text-color\":\"var(--token-aeb7b2b3-ed07-4078-a81a-9c4a8c212541, rgb(219, 100, 26))\"},children:\"Helio Sleep\"})}),className:\"framer-wm6fa7\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1obs89d\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1r1ttus-container\",nodeId:\"VEYfB7Qme\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"VEYfB7Qme\",layoutId:\"VEYfB7Qme\",opmGTYnzp:\"rgba(219, 100, 26, 0.2)\",UC8Lx12g_:\"Redesign\",variant:\"HVYwJb8HT\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ni09u8-container\",nodeId:\"szfFCRPve\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"szfFCRPve\",layoutId:\"szfFCRPve\",opmGTYnzp:\"rgba(219, 100, 26, 0.2)\",UC8Lx12g_:\"eCommerce\",variant:\"TqG0ehse_\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zamtk2-container\",nodeId:\"ua_ld8h7D\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"ua_ld8h7D\",layoutId:\"ua_ld8h7D\",opmGTYnzp:\"rgba(219, 100, 26, 0.2)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Improved Helio Sleep product landing page by redesigning the layout and include more accurate and helpful information regarding the different products. Redesign the checkout process to improve instructions and clarity for customers ordering prescription home sleep apnea tests and oral appliances.\"})}),className:\"framer-m7cir9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rftofm\",\"data-framer-name\":\"Flex\",children:[/*#__PURE__*/_jsxs(MotionDivWithHover16yycy9,{className:\"framer-16yycy9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13xnver-container\",nodeId:\"UBaQvCnYz\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScroll,{height:\"100%\",id:\"UBaQvCnYz\",layoutId:\"UBaQvCnYz\",style:{width:\"100%\"},variant:\"m25HBl4lF\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px) / 4.023)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hy3cvz-container\",nodeId:\"Rcav_tDf0\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"Rcav_tDf0\",layoutId:\"Rcav_tDf0\",style:{width:\"100%\"},variant:\"R092ZxwVV\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sckm8v\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i5zbbg\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kiuf3u\",\"data-styles-preset\":\"OyrOLgifr\",style:{\"--framer-text-color\":\"var(--token-6407c3d4-4753-41ef-8743-80a4297c5ebf, rgb(44, 80, 130))\"},children:\"Delta Airlines: Flexible Pages Optimization\"})}),className:\"framer-15g426t\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1umwaxz\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q65b5p-container\",nodeId:\"RVqBrjP8O\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"RVqBrjP8O\",layoutId:\"RVqBrjP8O\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"Optimization\",variant:\"uWi1zifPs\",width:\"100%\",Y7WYnWouV:\"Web\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qmdcff-container\",nodeId:\"rRLdKCng_\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"rRLdKCng_\",layoutId:\"rRLdKCng_\",opmGTYnzp:\"rgba(44, 80, 130, 0.2)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Enhancing Delta Airlines Flexible Date Pages with Visible Filters, Fewer Clicks, Optimized Layout, Clear Badges, and to Create a more User-Friendly Interface.\"})}),className:\"framer-13cgm8i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kqz9h8\",\"data-framer-name\":\"Theneo\",children:[/*#__PURE__*/_jsxs(MotionDivWithHoverckw8ps,{className:\"framer-ckw8ps\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1140px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:342,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nrla1t-container\",nodeId:\"GZSBffZyE\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(DesktopMockUpNonScroll,{height:\"100%\",id:\"GZSBffZyE\",layoutId:\"GZSBffZyE\",style:{width:\"100%\"},variant:\"sS_8QINfZ\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`calc((min(${componentViewport?.width||\"100vw\"}, 1140px) - 40px) / 4.023)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:809,children:/*#__PURE__*/_jsx(Container,{className:\"framer-6us0mx-container\",nodeId:\"sVkrfV0dt\",rendersWithMotion:true,scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(MobileMockUpNonScrollWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"sVkrfV0dt\",layoutId:\"sVkrfV0dt\",style:{width:\"100%\"},variant:\"hedkwwsmh\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cfl3s2\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-91btte\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:10}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1kiuf3u\",\"data-styles-preset\":\"OyrOLgifr\",style:{\"--framer-text-color\":\"var(--token-f0acf98d-d2e7-4e6e-8f7a-f099cceeb4be, rgb(114, 104, 207))\"},children:\"Theneo API\"})}),className:\"framer-1klqv5o\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-alys2p\",\"data-framer-name\":\"Pill Stack\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-iqb1b4-container\",nodeId:\"U1jvT6QB2\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"U1jvT6QB2\",layoutId:\"U1jvT6QB2\",opmGTYnzp:\"rgba(114, 104, 207, 0.2)\",UC8Lx12g_:\"Redesign\",variant:\"HVYwJb8HT\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bvbq1y-container\",nodeId:\"TnAv_BlJl\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"TnAv_BlJl\",layoutId:\"TnAv_BlJl\",opmGTYnzp:\"rgba(114, 104, 207, 0.2)\",UC8Lx12g_:\"Motion Design\",variant:\"hAJnYmdIv\",width:\"100%\",Y7WYnWouV:\"Web\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{qcMCb2YZH:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1140px) - 50px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:31,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iwl2xw-container\",nodeId:\"Kly2JUxJk\",scopeId:\"dmVDjfkQo\",children:/*#__PURE__*/_jsx(Pill,{height:\"100%\",id:\"Kly2JUxJk\",layoutId:\"Kly2JUxJk\",opmGTYnzp:\"rgba(114, 104, 207, 0.2)\",UC8Lx12g_:\"Responsive Web\",variant:\"Xs_6X_NJJ\",width:\"100%\",Y7WYnWouV:\"Web\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p5aqrm\",\"data-styles-preset\":\"A8GVuovpX\",children:\"Landing and pricing page re-design of Theneo API website. Clearly conveyed how their tools tool that helps developers and project team members generate API documentation.\"})}),className:\"framer-1qlu4dy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Fl3DV.framer-disfj8, .framer-Fl3DV .framer-disfj8 { display: block; }\",\".framer-Fl3DV.framer-10v0fa0 { align-content: center; align-items: center; background-color: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-Fl3DV .framer-1l9dpv2-container { flex: none; height: auto; left: 50%; position: fixed; top: 10px; transform: translateX(-50%); width: auto; z-index: 10; }\",'.framer-Fl3DV .framer-z86km2 { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa) /* {\"name\":\"Off White\"} */ 0%, rgb(250, 250, 250) 71.15005630630631%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 100vh; justify-content: center; overflow: hidden; padding: 60px; position: relative; width: 100%; }',\".framer-Fl3DV .framer-1ssyq75 { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-Fl3DV .framer-18imefy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-Fl3DV .framer-15vmx7s { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 3; }\",\".framer-Fl3DV .framer-i6ekv2, .framer-Fl3DV .framer-1lt1mbw { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 636px; word-break: break-word; word-wrap: break-word; }\",\".framer-Fl3DV .framer-1806hmb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 716px; z-index: 1; }\",\".framer-Fl3DV .framer-1e0gjo9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-evwkes { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Fl3DV .framer-1of1fmo { 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: 10px; height: 100px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Fl3DV .framer-x1soar-container { flex: none; height: 100px; position: relative; width: 571px; z-index: 6; }\",\".framer-Fl3DV .framer-3vkodt { aspect-ratio: 2.0384615384615383 / 1; height: var(--framer-aspect-ratio-supported, 70px); overflow: visible; position: relative; width: 143px; }\",\".framer-Fl3DV .framer-fsn30q, .framer-Fl3DV .framer-en1db3 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Fl3DV .framer-qtesy9 { aspect-ratio: 6.4935064935064934 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 35px); position: relative; width: 227px; }\",\".framer-Fl3DV .framer-1f8kcyh { align-content: center; align-items: center; border-bottom-left-radius: 4px; border-bottom-right-radius: 4px; border-top-left-radius: 4px; border-top-right-radius: 4px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fl3DV .framer-xwxg0n, .framer-Fl3DV .framer-tyxvpr, .framer-Fl3DV .framer-19h5zer, .framer-Fl3DV .framer-ruww3q, .framer-Fl3DV .framer-1vw1vrt, .framer-Fl3DV .framer-1e686kb, .framer-Fl3DV .framer-a9914w, .framer-Fl3DV .framer-18vpiwr, .framer-Fl3DV .framer-1anj9cx, .framer-Fl3DV .framer-6jpymr, .framer-Fl3DV .framer-6or9gj, .framer-Fl3DV .framer-1shabg3, .framer-Fl3DV .framer-2s4xrs, .framer-Fl3DV .framer-kzvsx6, .framer-Fl3DV .framer-irtryj, .framer-Fl3DV .framer-1lywafr, .framer-Fl3DV .framer-dikl2j, .framer-Fl3DV .framer-magm7e, .framer-Fl3DV .framer-1bhi22e, .framer-Fl3DV .framer-ltz2ap, .framer-Fl3DV .framer-1nk2dub { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Fl3DV .framer-8fh5gn { aspect-ratio: 1.9078947368421053 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 70px); position: relative; width: 134px; }\",\".framer-Fl3DV .framer-gv2s5i { aspect-ratio: 3.156862745098039 / 1; height: var(--framer-aspect-ratio-supported, 60px); overflow: visible; position: relative; width: 190px; }\",\".framer-Fl3DV .framer-adtgtm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-Fl3DV .framer-t449p1 { background-color: rgba(0, 0, 0, 0); flex: none; height: 50px; position: relative; width: 50px; }\",\".framer-Fl3DV .framer-1sqi308 { align-content: flex-start; align-items: flex-start; background-color: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 135px; width: 100%; z-index: 3; }\",\".framer-Fl3DV .framer-1w8p9kc { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Fl3DV .framer-1kurl2p, .framer-Fl3DV .framer-ris6rk, .framer-Fl3DV .framer-159yctq { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100vh; justify-content: center; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-g7w7tl, .framer-Fl3DV .framer-imf6ty, .framer-Fl3DV .framer-1kpjzin, .framer-Fl3DV .framer-uyujel { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 530px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-c8n8ik, .framer-Fl3DV .framer-x1j5rj, .framer-Fl3DV .framer-1csklne, .framer-Fl3DV .framer-1t5rpv6, .framer-Fl3DV .framer-czu3vv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-sqoxv2, .framer-Fl3DV .framer-lt25dv, .framer-Fl3DV .framer-o22nvr, .framer-Fl3DV .framer-9ylrou, .framer-Fl3DV .framer-1d4d291, .framer-Fl3DV .framer-phujr3, .framer-Fl3DV .framer-132yvid, .framer-Fl3DV .framer-1e1pfk5, .framer-Fl3DV .framer-pfgi3b, .framer-Fl3DV .framer-zbsi3r, .framer-Fl3DV .framer-7ea73z, .framer-Fl3DV .framer-1hr6dlz, .framer-Fl3DV .framer-fvzoae, .framer-Fl3DV .framer-wm6fa7, .framer-Fl3DV .framer-15g426t, .framer-Fl3DV .framer-1klqv5o { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fl3DV .framer-1qederr, .framer-Fl3DV .framer-vphndm, .framer-Fl3DV .framer-1ko9ho, .framer-Fl3DV .framer-1tg42ru, .framer-Fl3DV .framer-vgi308, .framer-Fl3DV .framer-1fifv8q, .framer-Fl3DV .framer-1umwaxz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Fl3DV .framer-1h6hrkk-container, .framer-Fl3DV .framer-1diqbdi-container, .framer-Fl3DV .framer-1dg1py1-container, .framer-Fl3DV .framer-1q5l34o-container, .framer-Fl3DV .framer-k2dewe-container, .framer-Fl3DV .framer-yjz0rr-container, .framer-Fl3DV .framer-1cpvlj6-container, .framer-Fl3DV .framer-hhni0z-container, .framer-Fl3DV .framer-gisgmv-container, .framer-Fl3DV .framer-1f9twbd-container, .framer-Fl3DV .framer-tuvlg-container, .framer-Fl3DV .framer-1h9yocw-container, .framer-Fl3DV .framer-1prhutx-container, .framer-Fl3DV .framer-i6ephe-container, .framer-Fl3DV .framer-1wrs635-container, .framer-Fl3DV .framer-19pah1s-container, .framer-Fl3DV .framer-j1e69c-container, .framer-Fl3DV .framer-1q65b5p-container, .framer-Fl3DV .framer-qmdcff-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Fl3DV .framer-1k91kd8-container, .framer-Fl3DV .framer-pxozvk-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-Fl3DV .framer-uyr40v { align-content: flex-end; align-items: flex-end; background-color: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; max-width: 100%; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-19rj1f1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 530px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-Fl3DV .framer-r6b1g-container, .framer-Fl3DV .framer-1p023mw-container, .framer-Fl3DV .framer-11zcg0z-container, .framer-Fl3DV .framer-7mw0u9-container { flex: none; height: 40px; position: relative; width: 175px; }\",\".framer-Fl3DV .framer-e6few1 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; max-width: 100%; overflow: visible; padding: 30px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-aqa5mv { align-content: flex-start; align-items: flex-start; background-color: var(--token-ce87dc29-1b42-4533-89d6-61183c25a18d, #f5f5f5); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 100vh; justify-content: center; max-width: 100%; overflow: visible; padding: 30px 40px 30px 30px; position: sticky; top: 0px; width: 50%; will-change: transform; z-index: 1; }\",\".framer-Fl3DV .framer-222u30 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 540px; }\",\".framer-Fl3DV .framer-m19au5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 0px; position: relative; width: 540px; z-index: 1; }\",\".framer-Fl3DV .framer-169paqp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; z-index: 0; }\",\".framer-Fl3DV .framer-1qri2e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 540px; }\",\".framer-Fl3DV .framer-1mz4cn9-container { flex: none; height: auto; position: relative; width: 540px; }\",\".framer-Fl3DV .framer-17shaw-container { bottom: 0px; flex: none; height: auto; position: absolute; right: 0px; width: 135px; z-index: 1; }\",\".framer-Fl3DV .framer-139otre-container { flex: none; height: 40px; position: sticky; width: 200px; will-change: transform; z-index: 1; }\",\".framer-Fl3DV .framer-1svhrzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-Fl3DV .framer-1hjxw03-container { flex: none; height: auto; position: relative; scroll-margin-top: 100px; width: 100%; z-index: 2; }\",\".framer-Fl3DV .framer-163cbi1 { align-content: center; align-items: center; background-color: var(--token-ce87dc29-1b42-4533-89d6-61183c25a18d, #f5f6f6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; scroll-margin-top: 100px; width: 100%; z-index: 1; }\",\".framer-Fl3DV .framer-ja7bl7 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 1080px; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fl3DV .framer-x417eu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-1drydth { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 16px; height: min-content; justify-content: flex-start; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-f08vmu, .framer-Fl3DV .framer-1e5jubx, .framer-Fl3DV .framer-1drnwj1, .framer-Fl3DV .framer-1w9ih81, .framer-Fl3DV .framer-1km0cun, .framer-Fl3DV .framer-1ntfxhn, .framer-Fl3DV .framer-vta3kt, .framer-Fl3DV .framer-6wkjmj, .framer-Fl3DV .framer-1hm900, .framer-Fl3DV .framer-1ex1q7, .framer-Fl3DV .framer-140l1wf, .framer-Fl3DV .framer-a2co9r, .framer-Fl3DV .framer-a4v24t, .framer-Fl3DV .framer-u5t78r, .framer-Fl3DV .framer-1y1sof9, .framer-Fl3DV .framer-1ocxqez, .framer-Fl3DV .framer-q1qxpq, .framer-Fl3DV .framer-1utduyc, .framer-Fl3DV .framer-xfj2ir, .framer-Fl3DV .framer-11s2g79 { align-content: center; align-items: center; background-color: var(--token-af83853f-c9e0-4ae4-84c8-66502b18f855, #333333); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; box-shadow: 0px 0.7961918735236395px 2.3885756205709185px -0.625px rgba(0, 0, 0, 0.05), 0px 2.414506143104518px 7.2435184293135535px -1.25px rgba(0, 0, 0, 0.05), 0px 6.382653521484461px 19.147960564453385px -1.875px rgba(0, 0, 0, 0.05), 0px 20px 60px -2.5px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 16px 8px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fl3DV .framer-s5ukt7-container { flex: none; height: 103px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-osa7pt, .framer-Fl3DV .framer-4u1ftv, .framer-Fl3DV .framer-1nfr7t4, .framer-Fl3DV .framer-kzmf3j { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 84px); position: relative; width: 84px; }\",\".framer-Fl3DV .framer-1oqg74h, .framer-Fl3DV .framer-m78hub { background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: 84px; overflow: hidden; position: relative; width: 84px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fl3DV .framer-t6zozj { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-Fl3DV .framer-1a8lxo2 { aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; height: var(--framer-aspect-ratio-supported, 83px); overflow: visible; position: relative; width: 83px; }\",\".framer-Fl3DV .framer-1td48o2 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-Fl3DV .framer-t1psf4, .framer-Fl3DV .framer-pwfv37 { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 84px); overflow: visible; position: relative; width: 84px; }\",\".framer-Fl3DV .framer-1lp5hf { align-content: center; align-items: center; background-color: var(--token-ce87dc29-1b42-4533-89d6-61183c25a18d, #f5f5f5); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 120px 0px 120px 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-Fl3DV .framer-6b4gqj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Fl3DV .framer-dmmt69-container { flex: none; height: auto; position: relative; width: 40%; }\",\".framer-Fl3DV .framer-m62ggx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Fl3DV .framer-1h32cho { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fl3DV .framer-bs5bzq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-i807a8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-11wadll, .framer-Fl3DV .framer-biktoa { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Fl3DV .framer-1achxih, .framer-Fl3DV .framer-73ptlv, .framer-Fl3DV .framer-1htsat6 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",'.framer-Fl3DV .framer-1pwipb0, .framer-Fl3DV .framer-1dto7ev { --framer-input-background: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-af83853f-c9e0-4ae4-84c8-66502b18f855, #333333); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-Fl3DV .framer-2febig { 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; padding: 0px; position: relative; width: 100%; }\",'.framer-Fl3DV .framer-jfhluh { --framer-input-background: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa); --framer-input-border-bottom-width: 1px; --framer-input-border-color: rgba(136, 136, 136, 0.1); --framer-input-border-left-width: 1px; --framer-input-border-radius-bottom-left: 10px; --framer-input-border-radius-bottom-right: 10px; --framer-input-border-radius-top-left: 10px; --framer-input-border-radius-top-right: 10px; --framer-input-border-right-width: 1px; --framer-input-border-style: solid; --framer-input-border-top-width: 1px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: var(--token-af83853f-c9e0-4ae4-84c8-66502b18f855, #333333); --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-Fl3DV .framer-11d1c6g-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-Fl3DV .framer-1457s8 { align-content: center; align-items: center; background-color: var(--token-749488af-5f16-4cbd-a100-8ae060b44db0, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-Fl3DV .framer-xfb1l5 { align-content: center; align-items: center; background-color: var(--token-ce87dc29-1b42-4533-89d6-61183c25a18d, #f5f5f5); box-shadow: 0px 1px 2px 0px rgba(0, 0, 0, 0.25); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1140px; overflow: hidden; padding: 10px; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 6; }\",\".framer-Fl3DV .framer-16l0aw1 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; z-index: 0; }\",\".framer-Fl3DV .framer-15pr5yu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1140px; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-pysmx7, .framer-Fl3DV .framer-128wnwy, .framer-Fl3DV .framer-5ezrue, .framer-Fl3DV .framer-z622w1, .framer-Fl3DV .framer-1rftofm, .framer-Fl3DV .framer-kqz9h8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-bg49d6, .framer-Fl3DV .framer-1i61c3x, .framer-Fl3DV .framer-16yycy9 { align-content: center; align-items: center; background-color: rgba(0, 83, 166, 0.5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fl3DV .framer-u3k38p-container, .framer-Fl3DV .framer-1q3ble3-container, .framer-Fl3DV .framer-6tno3y-container, .framer-Fl3DV .framer-1hc6po1-container, .framer-Fl3DV .framer-13xnver-container, .framer-Fl3DV .framer-nrla1t-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-syl449-container, .framer-Fl3DV .framer-ebwmij-container, .framer-Fl3DV .framer-6hbsdy-container, .framer-Fl3DV .framer-mnc65a-container, .framer-Fl3DV .framer-1hy3cvz-container, .framer-Fl3DV .framer-6us0mx-container { bottom: 10px; flex: none; height: auto; position: absolute; right: 10px; width: 25%; z-index: 1; }\",\".framer-Fl3DV .framer-1skgim7, .framer-Fl3DV .framer-n2xzo0, .framer-Fl3DV .framer-1axxtmj, .framer-Fl3DV .framer-16zylyh, .framer-Fl3DV .framer-sckm8v, .framer-Fl3DV .framer-1cfl3s2 { 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: center; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-1tvdw8v, .framer-Fl3DV .framer-g4dfxo, .framer-Fl3DV .framer-13axxyq, .framer-Fl3DV .framer-c3y2x1, .framer-Fl3DV .framer-i5zbbg, .framer-Fl3DV .framer-91btte { 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: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-al4deb, .framer-Fl3DV .framer-14g0hjb, .framer-Fl3DV .framer-foukgy, .framer-Fl3DV .framer-m7cir9, .framer-Fl3DV .framer-13cgm8i, .framer-Fl3DV .framer-1qlu4dy { --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Fl3DV .framer-ky5bhx { align-content: center; align-items: center; background-color: rgba(209, 162, 42, 0.5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fl3DV .framer-1wd5cjf, .framer-Fl3DV .framer-1h65eny, .framer-Fl3DV .framer-1obs89d, .framer-Fl3DV .framer-alys2p { display: grid; flex: none; gap: 10px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-1t1ak75-container, .framer-Fl3DV .framer-1uolir0-container, .framer-Fl3DV .framer-3zvmhz-container, .framer-Fl3DV .framer-ma4sf-container, .framer-Fl3DV .framer-67vk1p-container, .framer-Fl3DV .framer-12gh2fy-container, .framer-Fl3DV .framer-1r1ttus-container, .framer-Fl3DV .framer-1ni09u8-container, .framer-Fl3DV .framer-zamtk2-container, .framer-Fl3DV .framer-iqb1b4-container, .framer-Fl3DV .framer-1bvbq1y-container, .framer-Fl3DV .framer-1iwl2xw-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-Fl3DV .framer-labqx9 { align-content: center; align-items: center; background-color: rgba(219, 100, 26, 0.5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Fl3DV .framer-ckw8ps { align-content: center; align-items: center; background-color: rgba(114, 104, 207, 0.5); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fl3DV.framer-10v0fa0, .framer-Fl3DV .framer-z86km2, .framer-Fl3DV .framer-18imefy, .framer-Fl3DV .framer-15vmx7s, .framer-Fl3DV .framer-1806hmb, .framer-Fl3DV .framer-1e0gjo9, .framer-Fl3DV .framer-1of1fmo, .framer-Fl3DV .framer-fsn30q, .framer-Fl3DV .framer-1f8kcyh, .framer-Fl3DV .framer-en1db3, .framer-Fl3DV .framer-adtgtm, .framer-Fl3DV .framer-1sqi308, .framer-Fl3DV .framer-1w8p9kc, .framer-Fl3DV .framer-1kurl2p, .framer-Fl3DV .framer-g7w7tl, .framer-Fl3DV .framer-c8n8ik, .framer-Fl3DV .framer-1qederr, .framer-Fl3DV .framer-uyr40v, .framer-Fl3DV .framer-19rj1f1, .framer-Fl3DV .framer-x1j5rj, .framer-Fl3DV .framer-vphndm, .framer-Fl3DV .framer-e6few1, .framer-Fl3DV .framer-imf6ty, .framer-Fl3DV .framer-1csklne, .framer-Fl3DV .framer-1ko9ho, .framer-Fl3DV .framer-ris6rk, .framer-Fl3DV .framer-1kpjzin, .framer-Fl3DV .framer-1t5rpv6, .framer-Fl3DV .framer-1tg42ru, .framer-Fl3DV .framer-159yctq, .framer-Fl3DV .framer-uyujel, .framer-Fl3DV .framer-czu3vv, .framer-Fl3DV .framer-vgi308, .framer-Fl3DV .framer-aqa5mv, .framer-Fl3DV .framer-222u30, .framer-Fl3DV .framer-m19au5, .framer-Fl3DV .framer-1qri2e, .framer-Fl3DV .framer-1svhrzp, .framer-Fl3DV .framer-163cbi1, .framer-Fl3DV .framer-x417eu, .framer-Fl3DV .framer-1drydth, .framer-Fl3DV .framer-f08vmu, .framer-Fl3DV .framer-1e5jubx, .framer-Fl3DV .framer-1drnwj1, .framer-Fl3DV .framer-1w9ih81, .framer-Fl3DV .framer-1km0cun, .framer-Fl3DV .framer-1ntfxhn, .framer-Fl3DV .framer-vta3kt, .framer-Fl3DV .framer-6wkjmj, .framer-Fl3DV .framer-1hm900, .framer-Fl3DV .framer-1ex1q7, .framer-Fl3DV .framer-140l1wf, .framer-Fl3DV .framer-a2co9r, .framer-Fl3DV .framer-a4v24t, .framer-Fl3DV .framer-u5t78r, .framer-Fl3DV .framer-1y1sof9, .framer-Fl3DV .framer-1ocxqez, .framer-Fl3DV .framer-q1qxpq, .framer-Fl3DV .framer-1utduyc, .framer-Fl3DV .framer-xfj2ir, .framer-Fl3DV .framer-11s2g79, .framer-Fl3DV .framer-1lp5hf, .framer-Fl3DV .framer-6b4gqj, .framer-Fl3DV .framer-m62ggx, .framer-Fl3DV .framer-bs5bzq, .framer-Fl3DV .framer-i807a8, .framer-Fl3DV .framer-11wadll, .framer-Fl3DV .framer-biktoa, .framer-Fl3DV .framer-2febig, .framer-Fl3DV .framer-1457s8, .framer-Fl3DV .framer-xfb1l5, .framer-Fl3DV .framer-15pr5yu, .framer-Fl3DV .framer-pysmx7, .framer-Fl3DV .framer-bg49d6, .framer-Fl3DV .framer-1skgim7, .framer-Fl3DV .framer-1tvdw8v, .framer-Fl3DV .framer-1fifv8q, .framer-Fl3DV .framer-128wnwy, .framer-Fl3DV .framer-ky5bhx, .framer-Fl3DV .framer-n2xzo0, .framer-Fl3DV .framer-g4dfxo, .framer-Fl3DV .framer-5ezrue, .framer-Fl3DV .framer-1i61c3x, .framer-Fl3DV .framer-1axxtmj, .framer-Fl3DV .framer-13axxyq, .framer-Fl3DV .framer-z622w1, .framer-Fl3DV .framer-labqx9, .framer-Fl3DV .framer-16zylyh, .framer-Fl3DV .framer-c3y2x1, .framer-Fl3DV .framer-1rftofm, .framer-Fl3DV .framer-16yycy9, .framer-Fl3DV .framer-sckm8v, .framer-Fl3DV .framer-i5zbbg, .framer-Fl3DV .framer-1umwaxz, .framer-Fl3DV .framer-kqz9h8, .framer-Fl3DV .framer-ckw8ps, .framer-Fl3DV .framer-1cfl3s2, .framer-Fl3DV .framer-91btte { gap: 0px; } .framer-Fl3DV.framer-10v0fa0 > *, .framer-Fl3DV .framer-1w8p9kc > *, .framer-Fl3DV .framer-1svhrzp > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Fl3DV.framer-10v0fa0 > :first-child, .framer-Fl3DV .framer-z86km2 > :first-child, .framer-Fl3DV .framer-15vmx7s > :first-child, .framer-Fl3DV .framer-1806hmb > :first-child, .framer-Fl3DV .framer-1e0gjo9 > :first-child, .framer-Fl3DV .framer-fsn30q > :first-child, .framer-Fl3DV .framer-en1db3 > :first-child, .framer-Fl3DV .framer-1w8p9kc > :first-child, .framer-Fl3DV .framer-1kurl2p > :first-child, .framer-Fl3DV .framer-g7w7tl > :first-child, .framer-Fl3DV .framer-c8n8ik > :first-child, .framer-Fl3DV .framer-uyr40v > :first-child, .framer-Fl3DV .framer-19rj1f1 > :first-child, .framer-Fl3DV .framer-x1j5rj > :first-child, .framer-Fl3DV .framer-e6few1 > :first-child, .framer-Fl3DV .framer-imf6ty > :first-child, .framer-Fl3DV .framer-1csklne > :first-child, .framer-Fl3DV .framer-ris6rk > :first-child, .framer-Fl3DV .framer-1kpjzin > :first-child, .framer-Fl3DV .framer-1t5rpv6 > :first-child, .framer-Fl3DV .framer-159yctq > :first-child, .framer-Fl3DV .framer-uyujel > :first-child, .framer-Fl3DV .framer-czu3vv > :first-child, .framer-Fl3DV .framer-aqa5mv > :first-child, .framer-Fl3DV .framer-222u30 > :first-child, .framer-Fl3DV .framer-1svhrzp > :first-child, .framer-Fl3DV .framer-163cbi1 > :first-child, .framer-Fl3DV .framer-x417eu > :first-child, .framer-Fl3DV .framer-m62ggx > :first-child, .framer-Fl3DV .framer-bs5bzq > :first-child, .framer-Fl3DV .framer-11wadll > :first-child, .framer-Fl3DV .framer-biktoa > :first-child, .framer-Fl3DV .framer-2febig > :first-child, .framer-Fl3DV .framer-1457s8 > :first-child, .framer-Fl3DV .framer-15pr5yu > :first-child, .framer-Fl3DV .framer-pysmx7 > :first-child, .framer-Fl3DV .framer-1skgim7 > :first-child, .framer-Fl3DV .framer-1tvdw8v > :first-child, .framer-Fl3DV .framer-128wnwy > :first-child, .framer-Fl3DV .framer-n2xzo0 > :first-child, .framer-Fl3DV .framer-g4dfxo > :first-child, .framer-Fl3DV .framer-5ezrue > :first-child, .framer-Fl3DV .framer-1axxtmj > :first-child, .framer-Fl3DV .framer-13axxyq > :first-child, .framer-Fl3DV .framer-z622w1 > :first-child, .framer-Fl3DV .framer-16zylyh > :first-child, .framer-Fl3DV .framer-c3y2x1 > :first-child, .framer-Fl3DV .framer-1rftofm > :first-child, .framer-Fl3DV .framer-sckm8v > :first-child, .framer-Fl3DV .framer-i5zbbg > :first-child, .framer-Fl3DV .framer-kqz9h8 > :first-child, .framer-Fl3DV .framer-1cfl3s2 > :first-child, .framer-Fl3DV .framer-91btte > :first-child { margin-top: 0px; } .framer-Fl3DV.framer-10v0fa0 > :last-child, .framer-Fl3DV .framer-z86km2 > :last-child, .framer-Fl3DV .framer-15vmx7s > :last-child, .framer-Fl3DV .framer-1806hmb > :last-child, .framer-Fl3DV .framer-1e0gjo9 > :last-child, .framer-Fl3DV .framer-fsn30q > :last-child, .framer-Fl3DV .framer-en1db3 > :last-child, .framer-Fl3DV .framer-1w8p9kc > :last-child, .framer-Fl3DV .framer-1kurl2p > :last-child, .framer-Fl3DV .framer-g7w7tl > :last-child, .framer-Fl3DV .framer-c8n8ik > :last-child, .framer-Fl3DV .framer-uyr40v > :last-child, .framer-Fl3DV .framer-19rj1f1 > :last-child, .framer-Fl3DV .framer-x1j5rj > :last-child, .framer-Fl3DV .framer-e6few1 > :last-child, .framer-Fl3DV .framer-imf6ty > :last-child, .framer-Fl3DV .framer-1csklne > :last-child, .framer-Fl3DV .framer-ris6rk > :last-child, .framer-Fl3DV .framer-1kpjzin > :last-child, .framer-Fl3DV .framer-1t5rpv6 > :last-child, .framer-Fl3DV .framer-159yctq > :last-child, .framer-Fl3DV .framer-uyujel > :last-child, .framer-Fl3DV .framer-czu3vv > :last-child, .framer-Fl3DV .framer-aqa5mv > :last-child, .framer-Fl3DV .framer-222u30 > :last-child, .framer-Fl3DV .framer-1svhrzp > :last-child, .framer-Fl3DV .framer-163cbi1 > :last-child, .framer-Fl3DV .framer-x417eu > :last-child, .framer-Fl3DV .framer-m62ggx > :last-child, .framer-Fl3DV .framer-bs5bzq > :last-child, .framer-Fl3DV .framer-11wadll > :last-child, .framer-Fl3DV .framer-biktoa > :last-child, .framer-Fl3DV .framer-2febig > :last-child, .framer-Fl3DV .framer-1457s8 > :last-child, .framer-Fl3DV .framer-15pr5yu > :last-child, .framer-Fl3DV .framer-pysmx7 > :last-child, .framer-Fl3DV .framer-1skgim7 > :last-child, .framer-Fl3DV .framer-1tvdw8v > :last-child, .framer-Fl3DV .framer-128wnwy > :last-child, .framer-Fl3DV .framer-n2xzo0 > :last-child, .framer-Fl3DV .framer-g4dfxo > :last-child, .framer-Fl3DV .framer-5ezrue > :last-child, .framer-Fl3DV .framer-1axxtmj > :last-child, .framer-Fl3DV .framer-13axxyq > :last-child, .framer-Fl3DV .framer-z622w1 > :last-child, .framer-Fl3DV .framer-16zylyh > :last-child, .framer-Fl3DV .framer-c3y2x1 > :last-child, .framer-Fl3DV .framer-1rftofm > :last-child, .framer-Fl3DV .framer-sckm8v > :last-child, .framer-Fl3DV .framer-i5zbbg > :last-child, .framer-Fl3DV .framer-kqz9h8 > :last-child, .framer-Fl3DV .framer-1cfl3s2 > :last-child, .framer-Fl3DV .framer-91btte > :last-child { margin-bottom: 0px; } .framer-Fl3DV .framer-z86km2 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Fl3DV .framer-18imefy > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Fl3DV .framer-18imefy > :first-child, .framer-Fl3DV .framer-1of1fmo > :first-child, .framer-Fl3DV .framer-1f8kcyh > :first-child, .framer-Fl3DV .framer-adtgtm > :first-child, .framer-Fl3DV .framer-1sqi308 > :first-child, .framer-Fl3DV .framer-1qederr > :first-child, .framer-Fl3DV .framer-vphndm > :first-child, .framer-Fl3DV .framer-1ko9ho > :first-child, .framer-Fl3DV .framer-1tg42ru > :first-child, .framer-Fl3DV .framer-vgi308 > :first-child, .framer-Fl3DV .framer-m19au5 > :first-child, .framer-Fl3DV .framer-1qri2e > :first-child, .framer-Fl3DV .framer-1drydth > :first-child, .framer-Fl3DV .framer-f08vmu > :first-child, .framer-Fl3DV .framer-1e5jubx > :first-child, .framer-Fl3DV .framer-1drnwj1 > :first-child, .framer-Fl3DV .framer-1w9ih81 > :first-child, .framer-Fl3DV .framer-1km0cun > :first-child, .framer-Fl3DV .framer-1ntfxhn > :first-child, .framer-Fl3DV .framer-vta3kt > :first-child, .framer-Fl3DV .framer-6wkjmj > :first-child, .framer-Fl3DV .framer-1hm900 > :first-child, .framer-Fl3DV .framer-1ex1q7 > :first-child, .framer-Fl3DV .framer-140l1wf > :first-child, .framer-Fl3DV .framer-a2co9r > :first-child, .framer-Fl3DV .framer-a4v24t > :first-child, .framer-Fl3DV .framer-u5t78r > :first-child, .framer-Fl3DV .framer-1y1sof9 > :first-child, .framer-Fl3DV .framer-1ocxqez > :first-child, .framer-Fl3DV .framer-q1qxpq > :first-child, .framer-Fl3DV .framer-1utduyc > :first-child, .framer-Fl3DV .framer-xfj2ir > :first-child, .framer-Fl3DV .framer-11s2g79 > :first-child, .framer-Fl3DV .framer-1lp5hf > :first-child, .framer-Fl3DV .framer-6b4gqj > :first-child, .framer-Fl3DV .framer-i807a8 > :first-child, .framer-Fl3DV .framer-xfb1l5 > :first-child, .framer-Fl3DV .framer-bg49d6 > :first-child, .framer-Fl3DV .framer-1fifv8q > :first-child, .framer-Fl3DV .framer-ky5bhx > :first-child, .framer-Fl3DV .framer-1i61c3x > :first-child, .framer-Fl3DV .framer-labqx9 > :first-child, .framer-Fl3DV .framer-16yycy9 > :first-child, .framer-Fl3DV .framer-1umwaxz > :first-child, .framer-Fl3DV .framer-ckw8ps > :first-child { margin-left: 0px; } .framer-Fl3DV .framer-18imefy > :last-child, .framer-Fl3DV .framer-1of1fmo > :last-child, .framer-Fl3DV .framer-1f8kcyh > :last-child, .framer-Fl3DV .framer-adtgtm > :last-child, .framer-Fl3DV .framer-1sqi308 > :last-child, .framer-Fl3DV .framer-1qederr > :last-child, .framer-Fl3DV .framer-vphndm > :last-child, .framer-Fl3DV .framer-1ko9ho > :last-child, .framer-Fl3DV .framer-1tg42ru > :last-child, .framer-Fl3DV .framer-vgi308 > :last-child, .framer-Fl3DV .framer-m19au5 > :last-child, .framer-Fl3DV .framer-1qri2e > :last-child, .framer-Fl3DV .framer-1drydth > :last-child, .framer-Fl3DV .framer-f08vmu > :last-child, .framer-Fl3DV .framer-1e5jubx > :last-child, .framer-Fl3DV .framer-1drnwj1 > :last-child, .framer-Fl3DV .framer-1w9ih81 > :last-child, .framer-Fl3DV .framer-1km0cun > :last-child, .framer-Fl3DV .framer-1ntfxhn > :last-child, .framer-Fl3DV .framer-vta3kt > :last-child, .framer-Fl3DV .framer-6wkjmj > :last-child, .framer-Fl3DV .framer-1hm900 > :last-child, .framer-Fl3DV .framer-1ex1q7 > :last-child, .framer-Fl3DV .framer-140l1wf > :last-child, .framer-Fl3DV .framer-a2co9r > :last-child, .framer-Fl3DV .framer-a4v24t > :last-child, .framer-Fl3DV .framer-u5t78r > :last-child, .framer-Fl3DV .framer-1y1sof9 > :last-child, .framer-Fl3DV .framer-1ocxqez > :last-child, .framer-Fl3DV .framer-q1qxpq > :last-child, .framer-Fl3DV .framer-1utduyc > :last-child, .framer-Fl3DV .framer-xfj2ir > :last-child, .framer-Fl3DV .framer-11s2g79 > :last-child, .framer-Fl3DV .framer-1lp5hf > :last-child, .framer-Fl3DV .framer-6b4gqj > :last-child, .framer-Fl3DV .framer-i807a8 > :last-child, .framer-Fl3DV .framer-xfb1l5 > :last-child, .framer-Fl3DV .framer-bg49d6 > :last-child, .framer-Fl3DV .framer-1fifv8q > :last-child, .framer-Fl3DV .framer-ky5bhx > :last-child, .framer-Fl3DV .framer-1i61c3x > :last-child, .framer-Fl3DV .framer-labqx9 > :last-child, .framer-Fl3DV .framer-16yycy9 > :last-child, .framer-Fl3DV .framer-1umwaxz > :last-child, .framer-Fl3DV .framer-ckw8ps > :last-child { margin-right: 0px; } .framer-Fl3DV .framer-15vmx7s > *, .framer-Fl3DV .framer-1e0gjo9 > *, .framer-Fl3DV .framer-x417eu > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Fl3DV .framer-1806hmb > *, .framer-Fl3DV .framer-163cbi1 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Fl3DV .framer-1of1fmo > *, .framer-Fl3DV .framer-1f8kcyh > *, .framer-Fl3DV .framer-adtgtm > *, .framer-Fl3DV .framer-1qederr > *, .framer-Fl3DV .framer-vphndm > *, .framer-Fl3DV .framer-1ko9ho > *, .framer-Fl3DV .framer-1tg42ru > *, .framer-Fl3DV .framer-vgi308 > *, .framer-Fl3DV .framer-m19au5 > *, .framer-Fl3DV .framer-1qri2e > *, .framer-Fl3DV .framer-f08vmu > *, .framer-Fl3DV .framer-1e5jubx > *, .framer-Fl3DV .framer-1drnwj1 > *, .framer-Fl3DV .framer-1w9ih81 > *, .framer-Fl3DV .framer-1km0cun > *, .framer-Fl3DV .framer-1ntfxhn > *, .framer-Fl3DV .framer-vta3kt > *, .framer-Fl3DV .framer-6wkjmj > *, .framer-Fl3DV .framer-1hm900 > *, .framer-Fl3DV .framer-1ex1q7 > *, .framer-Fl3DV .framer-140l1wf > *, .framer-Fl3DV .framer-a2co9r > *, .framer-Fl3DV .framer-a4v24t > *, .framer-Fl3DV .framer-u5t78r > *, .framer-Fl3DV .framer-1y1sof9 > *, .framer-Fl3DV .framer-1ocxqez > *, .framer-Fl3DV .framer-q1qxpq > *, .framer-Fl3DV .framer-1utduyc > *, .framer-Fl3DV .framer-xfj2ir > *, .framer-Fl3DV .framer-11s2g79 > *, .framer-Fl3DV .framer-xfb1l5 > *, .framer-Fl3DV .framer-bg49d6 > *, .framer-Fl3DV .framer-1fifv8q > *, .framer-Fl3DV .framer-ky5bhx > *, .framer-Fl3DV .framer-1i61c3x > *, .framer-Fl3DV .framer-labqx9 > *, .framer-Fl3DV .framer-16yycy9 > *, .framer-Fl3DV .framer-1umwaxz > *, .framer-Fl3DV .framer-ckw8ps > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Fl3DV .framer-fsn30q > *, .framer-Fl3DV .framer-en1db3 > *, .framer-Fl3DV .framer-1kurl2p > *, .framer-Fl3DV .framer-ris6rk > *, .framer-Fl3DV .framer-159yctq > *, .framer-Fl3DV .framer-m62ggx > *, .framer-Fl3DV .framer-11wadll > *, .framer-Fl3DV .framer-biktoa > *, .framer-Fl3DV .framer-2febig > *, .framer-Fl3DV .framer-1skgim7 > *, .framer-Fl3DV .framer-1tvdw8v > *, .framer-Fl3DV .framer-n2xzo0 > *, .framer-Fl3DV .framer-g4dfxo > *, .framer-Fl3DV .framer-1axxtmj > *, .framer-Fl3DV .framer-13axxyq > *, .framer-Fl3DV .framer-16zylyh > *, .framer-Fl3DV .framer-c3y2x1 > *, .framer-Fl3DV .framer-sckm8v > *, .framer-Fl3DV .framer-i5zbbg > *, .framer-Fl3DV .framer-1cfl3s2 > *, .framer-Fl3DV .framer-91btte > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Fl3DV .framer-1sqi308 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Fl3DV .framer-g7w7tl > *, .framer-Fl3DV .framer-19rj1f1 > *, .framer-Fl3DV .framer-imf6ty > *, .framer-Fl3DV .framer-1kpjzin > *, .framer-Fl3DV .framer-uyujel > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Fl3DV .framer-c8n8ik > *, .framer-Fl3DV .framer-x1j5rj > *, .framer-Fl3DV .framer-1csklne > *, .framer-Fl3DV .framer-1t5rpv6 > *, .framer-Fl3DV .framer-czu3vv > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-Fl3DV .framer-uyr40v > *, .framer-Fl3DV .framer-e6few1 > *, .framer-Fl3DV .framer-aqa5mv > *, .framer-Fl3DV .framer-1457s8 > *, .framer-Fl3DV .framer-15pr5yu > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Fl3DV .framer-222u30 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-Fl3DV .framer-1drydth > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-Fl3DV .framer-1lp5hf > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Fl3DV .framer-6b4gqj > *, .framer-Fl3DV .framer-i807a8 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Fl3DV .framer-bs5bzq > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Fl3DV .framer-pysmx7 > *, .framer-Fl3DV .framer-128wnwy > *, .framer-Fl3DV .framer-5ezrue > *, .framer-Fl3DV .framer-z622w1 > *, .framer-Fl3DV .framer-1rftofm > *, .framer-Fl3DV .framer-kqz9h8 > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-Fl3DV.framer-10v0fa0 { width: 810px; } .framer-Fl3DV .framer-1l9dpv2-container { order: 8; } .framer-Fl3DV .framer-z86km2 { height: 800px; order: 3; padding: 30px; } .framer-Fl3DV .framer-18imefy, .framer-Fl3DV .framer-222u30, .framer-Fl3DV .framer-1qri2e { width: 100%; } .framer-Fl3DV .framer-15vmx7s, .framer-Fl3DV .framer-1mz4cn9-container { flex: 1 0 0px; width: 1px; } .framer-Fl3DV .framer-x1soar-container { width: 379px; } .framer-Fl3DV .framer-1sqi308 { order: 4; } .framer-Fl3DV .framer-1qederr, .framer-Fl3DV .framer-1ko9ho, .framer-Fl3DV .framer-1tg42ru, .framer-Fl3DV .framer-vgi308 { align-content: unset; align-items: unset; display: grid; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 100%; } .framer-Fl3DV .framer-1h6hrkk-container, .framer-Fl3DV .framer-1diqbdi-container, .framer-Fl3DV .framer-1dg1py1-container, .framer-Fl3DV .framer-1cpvlj6-container, .framer-Fl3DV .framer-hhni0z-container, .framer-Fl3DV .framer-gisgmv-container, .framer-Fl3DV .framer-1f9twbd-container, .framer-Fl3DV .framer-tuvlg-container, .framer-Fl3DV .framer-1h9yocw-container, .framer-Fl3DV .framer-1prhutx-container, .framer-Fl3DV .framer-i6ephe-container, .framer-Fl3DV .framer-1wrs635-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-Fl3DV .framer-m19au5 { padding: 0px 0px 0px 30px; width: 100%; } .framer-Fl3DV .framer-17shaw-container { width: 25%; } .framer-Fl3DV .framer-1svhrzp { order: 5; } .framer-Fl3DV .framer-163cbi1 { padding: 100px 30px 100px 30px; } .framer-Fl3DV .framer-1lp5hf { order: 6; padding: 100px 30px 120px 30px; } .framer-Fl3DV .framer-bs5bzq { padding: 20px 0px 20px 0px; } .framer-Fl3DV .framer-i807a8 { flex-direction: column; } .framer-Fl3DV .framer-11wadll, .framer-Fl3DV .framer-biktoa { flex: none; width: 100%; } .framer-Fl3DV .framer-11d1c6g-container { order: 7; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fl3DV .framer-1qederr, .framer-Fl3DV .framer-1ko9ho, .framer-Fl3DV .framer-1tg42ru, .framer-Fl3DV .framer-vgi308, .framer-Fl3DV .framer-i807a8 { gap: 0px; } .framer-Fl3DV .framer-1qederr > *, .framer-Fl3DV .framer-1qederr > :first-child, .framer-Fl3DV .framer-1qederr > :last-child, .framer-Fl3DV .framer-1ko9ho > *, .framer-Fl3DV .framer-1ko9ho > :first-child, .framer-Fl3DV .framer-1ko9ho > :last-child, .framer-Fl3DV .framer-1tg42ru > *, .framer-Fl3DV .framer-1tg42ru > :first-child, .framer-Fl3DV .framer-1tg42ru > :last-child, .framer-Fl3DV .framer-vgi308 > *, .framer-Fl3DV .framer-vgi308 > :first-child, .framer-Fl3DV .framer-vgi308 > :last-child { margin: 0px; } .framer-Fl3DV .framer-i807a8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Fl3DV .framer-i807a8 > :first-child { margin-top: 0px; } .framer-Fl3DV .framer-i807a8 > :last-child { margin-bottom: 0px; } }}\",\"@media (max-width: 809px) { .framer-Fl3DV.framer-10v0fa0 { background-color: var(--token-ce87dc29-1b42-4533-89d6-61183c25a18d, #f5f5f5); width: 390px; } .framer-Fl3DV .framer-1l9dpv2-container, .framer-Fl3DV .framer-1e5jubx, .framer-Fl3DV .framer-15pr5yu, .framer-Fl3DV .framer-pysmx7 { order: 1; } .framer-Fl3DV .framer-z86km2 { height: min-content; order: 3; padding: 20px; } .framer-Fl3DV .framer-18imefy { flex-direction: column; gap: 64px; padding: 72px 0px 0px 0px; width: 100%; } .framer-Fl3DV .framer-15vmx7s { align-content: center; align-items: center; justify-content: center; width: 100%; } .framer-Fl3DV .framer-i6ekv2 { max-width: unset; white-space: pre; width: auto; z-index: 1; } .framer-Fl3DV .framer-1lt1mbw { max-width: unset; overflow: hidden; width: 100%; z-index: 1; } .framer-Fl3DV .framer-1806hmb { width: 100%; } .framer-Fl3DV .framer-1of1fmo { height: 81px; width: 100%; } .framer-Fl3DV .framer-x1soar-container { flex: 1 0 0px; height: 100%; width: 1px; } .framer-Fl3DV .framer-1svhrzp, .framer-Fl3DV .framer-6wkjmj { order: 7; } .framer-Fl3DV .framer-163cbi1 { gap: 60px; padding: 60px 20px 60px 20px; } .framer-Fl3DV .framer-f08vmu, .framer-Fl3DV .framer-xfb1l5, .framer-Fl3DV .framer-5ezrue { order: 0; } .framer-Fl3DV .framer-1drnwj1, .framer-Fl3DV .framer-128wnwy { order: 2; } .framer-Fl3DV .framer-1w9ih81, .framer-Fl3DV .framer-1rftofm { order: 3; } .framer-Fl3DV .framer-1km0cun, .framer-Fl3DV .framer-z622w1 { order: 4; } .framer-Fl3DV .framer-1ntfxhn { order: 6; } .framer-Fl3DV .framer-vta3kt, .framer-Fl3DV .framer-kqz9h8 { order: 5; } .framer-Fl3DV .framer-1hm900 { order: 8; } .framer-Fl3DV .framer-1ex1q7, .framer-Fl3DV .framer-11d1c6g-container { order: 9; } .framer-Fl3DV .framer-140l1wf { order: 11; } .framer-Fl3DV .framer-a2co9r { order: 10; } .framer-Fl3DV .framer-a4v24t { order: 12; } .framer-Fl3DV .framer-u5t78r { order: 13; } .framer-Fl3DV .framer-1y1sof9 { order: 14; } .framer-Fl3DV .framer-1ocxqez { order: 15; } .framer-Fl3DV .framer-q1qxpq { order: 16; } .framer-Fl3DV .framer-1utduyc { order: 17; } .framer-Fl3DV .framer-xfj2ir { order: 18; } .framer-Fl3DV .framer-11s2g79 { order: 19; } .framer-Fl3DV .framer-1lp5hf { flex-direction: column; gap: 30px; order: 8; padding: 60px 20px 60px 20px; } .framer-Fl3DV .framer-6b4gqj { flex: none; flex-direction: column; width: 100%; } .framer-Fl3DV .framer-dmmt69-container { width: 66%; } .framer-Fl3DV .framer-m62ggx, .framer-Fl3DV .framer-11wadll, .framer-Fl3DV .framer-biktoa { flex: none; width: 100%; } .framer-Fl3DV .framer-bs5bzq { padding: 0px; z-index: 1; } .framer-Fl3DV .framer-i807a8 { flex-direction: column; } .framer-Fl3DV .framer-1457s8 { gap: 0px; order: 5; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Fl3DV .framer-18imefy, .framer-Fl3DV .framer-163cbi1, .framer-Fl3DV .framer-1lp5hf, .framer-Fl3DV .framer-6b4gqj, .framer-Fl3DV .framer-i807a8, .framer-Fl3DV .framer-1457s8 { gap: 0px; } .framer-Fl3DV .framer-18imefy > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Fl3DV .framer-18imefy > :first-child, .framer-Fl3DV .framer-163cbi1 > :first-child, .framer-Fl3DV .framer-1lp5hf > :first-child, .framer-Fl3DV .framer-6b4gqj > :first-child, .framer-Fl3DV .framer-i807a8 > :first-child, .framer-Fl3DV .framer-1457s8 > :first-child { margin-top: 0px; } .framer-Fl3DV .framer-18imefy > :last-child, .framer-Fl3DV .framer-163cbi1 > :last-child, .framer-Fl3DV .framer-1lp5hf > :last-child, .framer-Fl3DV .framer-6b4gqj > :last-child, .framer-Fl3DV .framer-i807a8 > :last-child, .framer-Fl3DV .framer-1457s8 > :last-child { margin-bottom: 0px; } .framer-Fl3DV .framer-163cbi1 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-Fl3DV .framer-1lp5hf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-Fl3DV .framer-6b4gqj > *, .framer-Fl3DV .framer-i807a8 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Fl3DV .framer-1457s8 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7663.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xw30xKmo2\":{\"layout\":[\"fixed\",\"auto\"]},\"qcMCb2YZH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"OXupDrWk0\":{\"pattern\":\":OXupDrWk0\",\"name\":\"portfolio\"},\"CufkIZPUp\":{\"pattern\":\":CufkIZPUp\",\"name\":\"dbt\"},\"sTUApQaYe\":{\"pattern\":\":sTUApQaYe\",\"name\":\"skeleton\"},\"q53qv82aQ\":{\"pattern\":\":q53qv82aQ\",\"name\":\"amex\"},\"x7poe53kk\":{\"pattern\":\":x7poe53kk\",\"name\":\"helio\"},\"IKm2Ku_ZD\":{\"pattern\":\":IKm2Ku_ZD\",\"name\":\"theneo\"},\"yarvfi4Vk\":{\"pattern\":\":yarvfi4Vk\",\"name\":\"myprocess\"},\"W8XrBUeB1\":{\"pattern\":\":W8XrBUeB1\",\"name\":\"skills\"},\"qKFaOoaxG\":{\"pattern\":\":qKFaOoaxG\",\"name\":\"contact\"}}\n * @framerResponsiveScreen\n */const FramerdmVDjfkQo=withCSS(Component,css,\"framer-Fl3DV\");export default FramerdmVDjfkQo;FramerdmVDjfkQo.displayName=\"Home\";FramerdmVDjfkQo.defaultProps={height:7663.5,width:1200};addFonts(FramerdmVDjfkQo,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/NXxvFRoY5LDh3yCm7MEP2jqYk.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/5CcgcVyoWSqO1THBiISd6oCog.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/MF544SVCvk3yNpLIz3pwDXFZPKM.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/TNtxudDBkAm2RXdtU3rvTBwoM.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/fIabp4VN5z7iJ3lNOz9qfNeQHc.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/YSOgKh50dqzzsXffetgcarlLHcI.woff2\",weight:\"100\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/9iRSYClnXA0RMygyIn6yjjWXJw.woff2\",weight:\"100\"}]},...MenuFonts,...TickerFonts,...PillFonts,...ButtonFonts,...DesktopMockUpNonScrollFonts,...MobileMockUpNonScrollFonts,...MyProcessFonts,...LogoFonts,...ButtonCopyFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdmVDjfkQo\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerScrollSections\":\"{\\\"OXupDrWk0\\\":{\\\"pattern\\\":\\\":OXupDrWk0\\\",\\\"name\\\":\\\"portfolio\\\"},\\\"CufkIZPUp\\\":{\\\"pattern\\\":\\\":CufkIZPUp\\\",\\\"name\\\":\\\"dbt\\\"},\\\"sTUApQaYe\\\":{\\\"pattern\\\":\\\":sTUApQaYe\\\",\\\"name\\\":\\\"skeleton\\\"},\\\"q53qv82aQ\\\":{\\\"pattern\\\":\\\":q53qv82aQ\\\",\\\"name\\\":\\\"amex\\\"},\\\"x7poe53kk\\\":{\\\"pattern\\\":\\\":x7poe53kk\\\",\\\"name\\\":\\\"helio\\\"},\\\"IKm2Ku_ZD\\\":{\\\"pattern\\\":\\\":IKm2Ku_ZD\\\",\\\"name\\\":\\\"theneo\\\"},\\\"yarvfi4Vk\\\":{\\\"pattern\\\":\\\":yarvfi4Vk\\\",\\\"name\\\":\\\"myprocess\\\"},\\\"W8XrBUeB1\\\":{\\\"pattern\\\":\\\":W8XrBUeB1\\\",\\\"name\\\":\\\"skills\\\"},\\\"qKFaOoaxG\\\":{\\\"pattern\\\":\\\":qKFaOoaxG\\\",\\\"name\\\":\\\"contact\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xw30xKmo2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qcMCb2YZH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"7663.5\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "MenuFonts", "getFonts", "tBQ2XFy34_default", "MenuWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithFX", "withFX", "RichText2", "TickerFonts", "Ticker", "MotionDivWithFX", "motion", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "PillFonts", "NSIEQ_Qhy_default", "ButtonFonts", "iiV6GoqTz_default", "DesktopMockUpNonScrollFonts", "qy7DZgG1D_default", "DesktopMockUpNonScrollWithVariantAppearEffect", "MobileMockUpNonScrollFonts", "sC_gkpznH_default", "MobileMockUpNonScrollWithVariantAppearEffect", "MotionDivWithHover1qri2e", "withCodeBoundaryForOverrides", "withHover", "MyProcessFonts", "OryuxHYne_default", "MyProcessWithVariantAppearEffect", "LogoFonts", "QR5H7t0Kh_default", "ButtonCopyFonts", "lFCMkEFJA_default", "FooterDarkFonts", "jOJGYtCHS_default", "MotionDivWithHoverbg49d6", "MotionDivWithHoverky5bhx", "MotionDivWithHover1i61c3x", "MotionDivWithHoverlabqx9", "MotionDivWithHover16yycy9", "MotionDivWithHoverckw8ps", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transformTemplate1", "_", "t", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "animation4", "animation5", "animation6", "transition3", "animation7", "transition4", "animation8", "animation9", "animation10", "animation11", "animation12", "animation13", "transition5", "animation14", "formVariants", "form", "variants", "currentVariant", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "ref1", "pe", "ref2", "ref3", "ref4", "isDisplayed", "elementId", "useRouteElementId", "elementId1", "ref5", "router", "useRouter", "elementId2", "ref6", "elementId3", "ref7", "elementId4", "ref8", "elementId5", "ref9", "elementId6", "ref10", "elementId7", "ref11", "elementId8", "isDisplayed1", "defaultLayoutId", "ae", "useCustomCursors", "componentViewport", "useComponentViewport", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "Container", "Image2", "PropertyOverrides2", "x", "SVG", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FramerdmVDjfkQo", "withCSS", "dmVDjfkQo_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
