{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/xg7YmOj399iw3Eg3dx10/khUAbGaqdWwj5t5Qy8pJ/augiA20Il.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 (f712822)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import ContactFormFooter from\"#framer/local/canvasComponent/da_tcwAis/da_tcwAis.js\";import Buttons from\"#framer/local/canvasComponent/weIwb8rR7/weIwb8rR7.js\";import Navigation from\"#framer/local/canvasComponent/zsZ2G_7iq/zsZ2G_7iq.js\";import*as sharedStyle4 from\"#framer/local/css/Ciyauyj20/Ciyauyj20.js\";import*as sharedStyle from\"#framer/local/css/GqBUBwLDP/GqBUBwLDP.js\";import*as sharedStyle7 from\"#framer/local/css/mDgaY6MYV/mDgaY6MYV.js\";import*as sharedStyle2 from\"#framer/local/css/MEw3iFBzM/MEw3iFBzM.js\";import*as sharedStyle3 from\"#framer/local/css/rw7ACZtXP/rw7ACZtXP.js\";import*as sharedStyle5 from\"#framer/local/css/tyoasmiLq/tyoasmiLq.js\";import*as sharedStyle6 from\"#framer/local/css/WvhoCOscR/WvhoCOscR.js\";import*as sharedStyle1 from\"#framer/local/css/yRvQPIsOg/yRvQPIsOg.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const ButtonsFonts=getFonts(Buttons);const TickerFonts=getFonts(Ticker);const ContactFormFooterFonts=getFonts(ContactFormFooter);const breakpoints={EsqxUGzC5:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1200px)\",wx3nVDEIW:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-5PvxT\";const variantClassNames={EsqxUGzC5:\"framer-v-sk5vz5\",WQLkyLRf1:\"framer-v-72rtr7\",wx3nVDEIW:\"framer-v-uqsh7w\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"EsqxUGzC5\",Tablet:\"wx3nVDEIW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"C_zJutueV\");const ref1=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ejn0i1-container\",nodeId:\"av0wOF7x4\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{variant:\"x1_8VCejK\"},wx3nVDEIW:{variant:\"x1_8VCejK\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"av0wOF7x4\",layoutId:\"av0wOF7x4\",style:{width:\"100%\"},variant:\"U4QVu7gGc\",width:\"100%\"})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ys4x8\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gpzwpz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w01mte\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{background:{alt:\"Image of Alison. Short Blue hair, slight smile.\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:3088,pixelWidth:2316,positionX:\"center\",positionY:\"center\",sizes:\"64px\",src:\"https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg 2316w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Image of Alison. Short Blue hair, slight smile.\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+32+0+0+0+0),pixelHeight:3088,pixelWidth:2316,positionX:\"center\",positionY:\"center\",sizes:\"64px\",src:\"https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg?scale-down-to=1024 768w,https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg?scale-down-to=2048 1536w,https://framerusercontent.com/images/dbv1HyjHRm5GWwgpQHNHEqGmcY.jpg 2316w\"},className:\"framer-12sbcts\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-p5k9ns\",\"data-styles-preset\":\"GqBUBwLDP\",style:{\"--framer-text-alignment\":\"left\"},children:\"ALISON WOODLIFFE\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-p5k9ns\",\"data-styles-preset\":\"GqBUBwLDP\",children:\"ALISON WOODLIFFE\"})}),className:\"framer-h3reaz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19p58jo\",\"data-styles-preset\":\"MEw3iFBzM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Designer\"})})},wx3nVDEIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-19p58jo\",\"data-styles-preset\":\"MEw3iFBzM\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Designer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1yir9io\",\"data-styles-preset\":\"yRvQPIsOg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Product Designer\"})}),className:\"framer-8atd0p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1afs119\",\"data-styles-preset\":\"Ciyauyj20\",style:{\"--framer-text-alignment\":\"center\"},children:\"I\u2019m Alison Woodliffe, a product designer dedicated to creating accessible, user-focused experiences. I enjoy collaborating with brands and businesses of all sizes\u2014let\u2019s work together to elevate user experience and accessibility.\"})})},wx3nVDEIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1afs119\",\"data-styles-preset\":\"Ciyauyj20\",style:{\"--framer-text-alignment\":\"center\"},children:\"I\u2019m Alison Woodliffe, a product designer dedicated to creating accessible, user-focused experiences. I enjoy collaborating with brands and businesses of all sizes\u2014let\u2019s work together to elevate user experience and accessibility.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-auw1jf\",\"data-styles-preset\":\"rw7ACZtXP\",style:{\"--framer-text-alignment\":\"center\"},children:\"I\u2019m Alison Woodliffe, a product designer dedicated to creating accessible, user-focused experiences. I enjoy collaborating with brands and businesses of all sizes\u2014let\u2019s work together to elevate user experience and accessibility.\"})}),className:\"framer-18u41oy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tyjfst\",\"data-framer-name\":\"Case Studies\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1u7zlum\",\"data-styles-preset\":\"WvhoCOscR\",children:\"Case Studies\"})})},wx3nVDEIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1u7zlum\",\"data-styles-preset\":\"WvhoCOscR\",children:\"Case Studies\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f66ijx\",\"data-styles-preset\":\"tyoasmiLq\",children:\"Case Studies\"})}),className:\"framer-hyomeu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sljspy\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"s4NXSnvE7\"},motionChild:true,nodeId:\"BAusPndRt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-m01lsf framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2194,pixelWidth:2310,sizes:\"320px\",src:\"https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png 2310w\"}},wx3nVDEIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+356+32+65.6+0+0+0+0),pixelHeight:2194,pixelWidth:2310,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png 2310w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+420.8+48+88+0+0+0+0),pixelHeight:2194,pixelWidth:2310,sizes:`max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px), 100px)`,src:\"https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=512 512w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Y6tn6mB07MxOC7LqVqU1dMWFmMI.png 2310w\"},className:\"framer-1iextg4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nrdkc9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Design System\"})}),className:\"framer-cqn2i9\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ovti2w\",\"data-styles-preset\":\"mDgaY6MYV\",style:{\"--framer-text-alignment\":\"left\"},children:\"Ensuring AODA compliance, we built an accessible design system that adapts seamlessly to SickKids\u2019 evolving campaigns.\"})}),className:\"framer-1741nci\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"s4NXSnvE7\"},implicitPathVariables:undefined},{href:{webPageId:\"s4NXSnvE7\"},implicitPathVariables:undefined},{href:{webPageId:\"s4NXSnvE7\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{width:\"260px\",y:undefined},wx3nVDEIW:{y:(componentViewport?.y||0)+0+356+32+65.6+0+0+0+240+30+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px), 100px) - 60px)`,y:(componentViewport?.y||0)+0+420.8+48+88+0+0+0+240+30+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10sk1nc-container\",nodeId:\"WqrafWQ52\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{wLJj3Zxim:resolvedLinks[2]},wx3nVDEIW:{wLJj3Zxim:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"WqrafWQ52\",layoutId:\"WqrafWQ52\",sTURkbpAr:\"Go to case study\",style:{height:\"100%\",width:\"100%\"},variant:\"So0Gf4f0z\",width:\"100%\",wLJj3Zxim:resolvedLinks[0],X57lW_uyt:\"ArrowForward\",ZhOR0adVw:\"Sharp\"})})})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"Wkos0g6xZ\"},motionChild:true,nodeId:\"WE_tqmOAn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-17nmhic framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:1620,pixelWidth:1620,sizes:\"320px\",src:\"https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png 1620w\"}},wx3nVDEIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+356+32+65.6+0+0+0+0),pixelHeight:1620,pixelWidth:1620,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px)`,src:\"https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png 1620w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+420.8+48+88+0+0+0+0),pixelHeight:1620,pixelWidth:1620,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px)`,src:\"https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=512 512w,https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sY1Lbeop6ysuKKbcggOGDrIqCU.png 1620w\"},className:\"framer-ia0vf4\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lsm01d\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Product Management\"})}),className:\"framer-budnbi\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ovti2w\",\"data-styles-preset\":\"mDgaY6MYV\",style:{\"--framer-text-alignment\":\"left\"},children:\"We built a custom website for LakeHouse Bath + Kitchen, making it easy to manage and showcase their products.\"})}),className:\"framer-5jp6jd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Wkos0g6xZ\"},implicitPathVariables:undefined},{href:{webPageId:\"Wkos0g6xZ\"},implicitPathVariables:undefined},{href:{webPageId:\"Wkos0g6xZ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{width:\"260px\",y:undefined},wx3nVDEIW:{y:(componentViewport?.y||0)+0+356+32+65.6+0+0+0+240+30+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px) - 60px)`,y:(componentViewport?.y||0)+0+420.8+48+88+0+0+0+240+30+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-g3w8xm-container\",nodeId:\"PtUcTOOmX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{wLJj3Zxim:resolvedLinks1[2]},wx3nVDEIW:{wLJj3Zxim:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"PtUcTOOmX\",layoutId:\"PtUcTOOmX\",sTURkbpAr:\"Go to case study\",style:{height:\"100%\",width:\"100%\"},variant:\"So0Gf4f0z\",width:\"100%\",wLJj3Zxim:resolvedLinks1[0],X57lW_uyt:\"ArrowForward\",ZhOR0adVw:\"Sharp\"})})})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TMGtGBLBw\"},motionChild:true,nodeId:\"YqjwEZXv5\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1gyl5s4 framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2160,pixelWidth:2160,sizes:\"320px\",src:\"https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png 2160w\"}},wx3nVDEIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+356+32+65.6+0+554+0+0),pixelHeight:2160,pixelWidth:2160,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px)`,src:\"https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png 2160w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+420.8+48+88+0+554+0+0),pixelHeight:2160,pixelWidth:2160,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px)`,src:\"https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=512 512w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/jxa5Jw1uMR3YEOaqKEgO6xc6rn0.png 2160w\"},className:\"framer-1m3fdmt\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1prv59b\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Custom Expense System\"})}),className:\"framer-1ft9x0z\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ovti2w\",\"data-styles-preset\":\"mDgaY6MYV\",style:{\"--framer-text-alignment\":\"left\"},children:\"Designed a unified platform for expense management, OKR tracking, and ticketing, improving usability for all employees.\"})}),className:\"framer-17yh1zn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TMGtGBLBw\"},implicitPathVariables:undefined},{href:{webPageId:\"TMGtGBLBw\"},implicitPathVariables:undefined},{href:{webPageId:\"TMGtGBLBw\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{width:\"260px\",y:undefined},wx3nVDEIW:{y:(componentViewport?.y||0)+0+356+32+65.6+0+554+0+240+30+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px) - 60px)`,y:(componentViewport?.y||0)+0+420.8+48+88+0+554+0+240+30+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s3voe0-container\",nodeId:\"y2hAd31Jv\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{wLJj3Zxim:resolvedLinks2[2]},wx3nVDEIW:{wLJj3Zxim:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"y2hAd31Jv\",layoutId:\"y2hAd31Jv\",sTURkbpAr:\"Go to case study\",style:{height:\"100%\",width:\"100%\"},variant:\"So0Gf4f0z\",width:\"100%\",wLJj3Zxim:resolvedLinks2[0],X57lW_uyt:\"ArrowForward\",ZhOR0adVw:\"Sharp\"})})})})})})]})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"tqYK5fYfZ\"},motionChild:true,nodeId:\"io5teAPOF\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1j0za7y framer-lux5qc\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,pixelHeight:2194,pixelWidth:2298,sizes:\"320px\",src:\"https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=512 512w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png 2298w\"}},wx3nVDEIW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+356+32+65.6+0+554+0+0),pixelHeight:2194,pixelWidth:2298,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=512 512w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png 2298w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:720,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+420.8+48+88+0+554+0+0),pixelHeight:2194,pixelWidth:2298,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px)`,src:\"https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=512 512w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/LEKNEH0vBtmsDWSAKxYlwo.png 2298w\"},className:\"framer-9bn5gm\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gy2od5\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"UX Powered Redesign\"})}),className:\"framer-7mxeee\",fonts:[\"GF;Inter-600\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ovti2w\",\"data-styles-preset\":\"mDgaY6MYV\",style:{\"--framer-text-alignment\":\"left\"},children:\"I transformed Evo Sports Qatar's online experience by optimizing mobile accessibility and simplifying scheduling for parents.\"})}),className:\"framer-1trsqn2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"tqYK5fYfZ\"},implicitPathVariables:undefined},{href:{webPageId:\"tqYK5fYfZ\"},implicitPathVariables:undefined},{href:{webPageId:\"tqYK5fYfZ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{width:\"260px\",y:undefined},wx3nVDEIW:{y:(componentViewport?.y||0)+0+356+32+65.6+0+554+0+240+30+180}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(max((min(${componentViewport?.width||\"100vw\"} - 128px, 1200px) - 32px) / 2, 50px) - 60px)`,y:(componentViewport?.y||0)+0+420.8+48+88+0+554+0+240+30+180,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q510vx-container\",nodeId:\"jd0qUEFIY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{wLJj3Zxim:resolvedLinks3[2]},wx3nVDEIW:{wLJj3Zxim:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"jd0qUEFIY\",layoutId:\"jd0qUEFIY\",sTURkbpAr:\"Go to case study\",style:{height:\"100%\",width:\"100%\"},variant:\"So0Gf4f0z\",width:\"100%\",wLJj3Zxim:resolvedLinks3[0],X57lW_uyt:\"ArrowForward\",ZhOR0adVw:\"Sharp\"})})})})})})]})]})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nupjgc\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1u7zlum\",\"data-styles-preset\":\"WvhoCOscR\",children:\"I work with brands of all sizes\"})})},wx3nVDEIW:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1u7zlum\",\"data-styles-preset\":\"WvhoCOscR\",children:\"I work with brands of all sizes\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-f66ijx\",\"data-styles-preset\":\"tyoasmiLq\",children:\"I work with brands of all sizes\"})}),className:\"framer-symxng\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t6jy1g-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"U9aIliK9L\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{gap:48},wx3nVDEIW:{gap:64}},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:96,height:\"100%\",hoverFactor:1,id:\"U9aIliK9L\",layoutId:\"U9aIliK9L\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-t4uebv\",\"data-framer-name\":\"sickkids\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-154o2n2\",\"data-framer-name\":\"Sickkids-colour\",fill:\"black\",intrinsicHeight:64,intrinsicWidth:214,svg:'<svg width=\"214\" height=\"64\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\"><path d=\"M10.569 44.95c0 3.458 0 9.525 4.827 9.525 3.72 0 5.024-3.458 5.024-5.937C20.42 37.513 0 35.034 0 16.767 0 7.503 5.023 0 14.548 0c10.113 0 14.027 7.698 14.288 18.789H18.724c0-3.458 0-9.264-4.502-9.264-2.675 0-4.24 2.283-4.24 5.61 0 10.439 20.42 14.027 20.42 31.903C30.402 56.432 25.052 64 14.94 64 2.936 63.935.522 53.431.522 44.95h10.047Zm22.768-33.729h10.047V1.24H33.337v9.981Zm0 51.539h10.047V19.376H33.337V62.76Zm30.467-27.596c-.195-6.72-.783-9.264-2.936-9.264-2.283 0-2.74 2.61-2.74 16.245 0 10.895.849 13.504 3.197 13.504 3.001 0 3.197-5.023 3.784-9.525l7.698.261c-.195 8.025-1.826 16.832-12.004 17.028-7.894 0-13.896-5.937-13.896-22.377 0-16.44 6.068-22.378 13.896-22.378 9.656 0 11.352 7.633 12.004 16.245l-9.003.261ZM76.135 1.24H86.18v33.272h.196l7.698-15.136h8.286L95.445 32.49l8.155 30.27H93.554l-4.959-19.506h-.065l-2.349 4.762v14.81H76.135\" fill=\"#00D0FF\"/><path d=\"M107.58 1.24h11.221v25.77h.196l9.329-25.77h10.047l-8.416 20.68 10.112 40.906H129.24l-6.198-27.597h-.196l-4.045 9.656V62.76H107.58m35.36-51.539h10.047V1.24H142.94v9.981Zm0 51.539h10.047V19.376H142.94V62.76Zm31.576-61.52v20.55h-.196c-1.24-1.631-3.392-3.131-6.328-3.131-7.372 0-10.7 7.959-10.7 22.311 0 14.353 2.61 22.443 9.852 22.443 3.979 0 5.61-1.892 7.633-4.175h.195v3.457h9.591V1.24h-10.047Zm0 53.561c-.522.783-1.566 1.37-3.001 1.37-2.936 0-3.458-1.957-3.458-15.266s.783-15.462 3.719-15.462c1.304 0 2.348.588 2.74 1.37v27.988Zm30.075-23.356c-.326-2.674-.978-5.545-4.436-5.545-1.892 0-3.001 1.827-3.001 3.719 0 7.11 16.245 7.763 16.245 21.007 0 7.502-5.024 12.787-12.787 12.787-8.221 0-11.613-4.958-12.461-12.591l7.894-1.24c.718 4.697 1.696 6.59 5.023 6.59 2.088 0 3.393-1.566 3.393-3.524 0-6.85-15.527-7.241-15.527-21.985 0-6.916 4.893-12.005 11.939-12.005 7.045 0 10.438 5.09 11.09 11.613l-7.372 1.174Z\" fill=\"#01359D\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h213.399v64H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12b2go5\",\"data-framer-name\":\"Jacklinks\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:97.5,intrinsicWidth:149.5,pixelHeight:195,pixelWidth:299,src:\"https://framerusercontent.com/images/IleP6d3CgbVbY5QjQeykIDgXXE8.svg\"},className:\"framer-dtg73c\",\"data-framer-name\":\"Jacklinks-logo-colour\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zpcr5b\",\"data-framer-name\":\"Lakehouse\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-blifny\",\"data-framer-name\":\"LBK-logo-fullcolour\",fill:\"black\",intrinsicHeight:270,intrinsicWidth:493,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 493.3 270.4\" style=\"enable-background:new 0 0 493.3 270.4\" xml:space=\"preserve\"><path d=\"M0 205.4h47.6l.8-12.6-1.3-.2c-4 8.6-9.2 11-19.3 11h-8.2c-3.2 0-5-1.8-5-5V148c0-7.2.7-10.2 4-11.3v-1.4H0v1.4c3.3 1.1 4 4.1 4 11.3v44.6c0 7.2-.7 10.2-4 11.3v1.5zm91.3 0h10V204c-3.3-1.1-4-4.1-4-11.3v-19.3c0-12.2-5.7-18.7-17.8-18.7-9.1 0-16.8 4.6-22.4 11.5l1 .9c5.1-6.1 10.6-8.5 16.2-8.5 7.4 0 12.8 3.8 13 13.7l-11.1 3.2c-12.4 3.5-22.9 7.5-22.9 17.8 0 8.4 6.2 13.1 13.6 13.1 10.4 0 17.6-9.9 20.4-21.5v16.5c0 2.6 1.4 4 4 4zm-28.7-15.6c0-8.3 9.3-11.7 14-13l10.7-3.1v2.6c-.1 9-5.6 22.8-15.4 22.8-4.6 0-9.3-2.7-9.3-9.3zm43.7 15.6h18.2V204c-3.3-1.1-4-4.1-4-11.3v-7.9l7.2-7.2 8.3 15.8c4.8 9 9.4 12 14.3 12h8V204c-4.8 0-7.9-4.7-11.8-11.7l-11.9-21.5 6.4-6.4c5.1-5.1 9-6.6 12.2-7.6v-1.4h-12.7v.9c2 .7 2.1 4.5-4.3 10.9l-15.7 15.6v-57.6l-1-.8-13.2 5.8v1.4c2.5 1.1 4 2.1 4 8v53c0 7.2-.7 10.2-4 11.3v1.5zm73.9 1c11.6 0 19.5-8 24.1-15l-.9-1c-4.2 4.7-9.9 7.9-17.3 7.9-12.7 0-20.7-9.3-20.7-22.4 0-1.1.1-2.1.2-3.2h37.9c0-8.7-7.2-18-20.7-18-13 0-26.3 10.6-26.3 27.6 0 16.2 12.6 24.1 23.7 24.1zm-14.5-35.2c1.2-7.8 5.5-14.9 14-14.8 6.9.1 12.4 6.6 13.7 14.8h-27.7zm45.8 34.2h18.6V204c-3.3-1.1-4-4.1-4-11.3v-23.5h34.8v23.5c0 7.2-.7 10.2-4 11.3v1.4h18.6V204c-3.3-1.1-4-4.1-4-11.3V148c0-7.2.7-10.2 4-11.3v-1.4h-18.6v1.4c3.3 1.1 4 4.1 4 11.3v19.3h-34.8V148c0-7.2.7-10.2 4-11.3v-1.4h-18.6v1.4c3.3 1.1 4 4.1 4 11.3v44.6c0 7.2-.7 10.2-4 11.3v1.5zm98.1 1c11.8 0 26.6-9.7 26.6-26.8 0-17.6-14.2-24.9-26.6-24.9-13.7 0-26.7 10.8-26.7 27 0 17 13.7 24.7 26.7 24.7zm-16.7-32.3c0-8.6 2.9-16.6 11.6-17.5 12.9-1.3 21.6 17.8 21.6 30.5 0 8.5-3.2 17-13 17-13.2.1-20.2-18.2-20.2-30zm68.5 32.3c6.3 0 13.2-4 18.9-9.5v4.5c0 2.6 1.4 4 4 4h10.2V204c-3.3-1.1-4-4.1-4-11.3v-37.4l-1-.8-13.2 5.8v1.4c2.5 1.1 4 2.1 4 8v25.1c-4.9 4.9-9.8 7.6-14.3 7.6-7.7 0-9.4-5.3-9.4-16v-31.1l-1-.8-13.2 5.8v1.4c2.5 1.1 4 2.1 4 8v18c0 12.2 4.4 18.7 15 18.7zm58.3-.2c14.5 0 19.3-8.6 19.3-16.2 0-10.2-8.8-12.6-16.8-15.3-9-3-14-5.4-14-11 0-4.3 4.1-7.6 10.4-7.6 7.3 0 13.5 5.2 16.9 12.3l1.2-.2-.5-11c-3.4-1.4-9.5-2.5-15.2-2.5-13.6 0-19.5 7-19.5 14.6 0 9 6.5 11.9 17 15.1 8.7 2.7 13.8 5.2 13.8 11.6 0 4.6-4 8.7-10.2 8.6-8.9-.1-16.1-6.8-20.4-16.4l-1 .2 1 13.1c3.7 2.5 10.7 4.7 18 4.7zm49.5.2c11.6 0 19.5-8 24.1-15l-.9-1c-4.2 4.7-9.9 7.9-17.3 7.9-12.7 0-20.7-9.3-20.7-22.4 0-1.1.1-2.1.2-3.2h37.9c0-8.7-7.2-18-20.7-18-13 0-26.3 10.6-26.3 27.6 0 16.2 12.6 24.1 23.7 24.1zm-14.5-35.2c1.2-7.8 5.5-14.9 14-14.8 6.9.1 12.4 6.6 13.7 14.8h-27.7zM54.8 270v-21.6h8.4c1.3 0 2.4.3 3.3.8s1.6 1.2 2.1 2.1c.5.9.7 1.8.7 2.8 0 1.2-.3 2.2-.9 3.1S67 258.7 66 259v-.7c1.4.4 2.5 1.1 3.2 2 .8 1 1.2 2.2 1.2 3.5s-.3 2.4-.8 3.3-1.3 1.6-2.2 2.1c-1 .5-2.1.8-3.4.8h-9.2zm2.7-2.6h6c.8 0 1.5-.1 2.1-.4s1.1-.7 1.5-1.3c.4-.5.6-1.2.6-2 0-.7-.2-1.4-.5-2s-.8-1-1.4-1.4-1.3-.5-2-.5h-6.3v7.6zm0-10h5.7c.6 0 1.2-.1 1.7-.4s.9-.7 1.2-1.2c.3-.5.5-1.1.5-1.8 0-.9-.3-1.7-.9-2.3s-1.5-.9-2.5-.9h-5.7v6.6zM83.9 270l7.2-21.6h3.7l7.3 21.6h-2.8l-6.8-20.1h.8L86.7 270h-2.8zm3.5-5.1v-2.5h11.2v2.5H87.4zm33.2 5.1v-19.1h-7.4v-2.5h17.4v2.5h-7.4V270h-2.6zm24.5 0v-21.6h2.7v9.5h11.3v-9.5h2.7V270h-2.7v-9.5h-11.4v9.5h-2.6zm56.4-4v-5.7h-5.7v-2.2h5.7v-5.7h2.2v5.7h5.7v2.2h-5.7v5.7h-2.2zm41.8 4v-21.6h2.7v10.1l9.5-10.1h3.4l-9.8 10.5 10.6 11.1h-3.6L246 259.4V270h-2.7zm30.7 0v-21.6h2.7V270H274zm24.7 0v-19.1h-7.4v-2.5h17.4v2.5h-7.4V270h-2.6zm33.4.4c-2.2 0-4-.5-5.5-1.4-1.5-1-2.6-2.3-3.4-4s-1.2-3.6-1.2-5.9c0-2.2.4-4.2 1.2-5.9.8-1.7 1.9-3 3.4-4s3.3-1.4 5.5-1.4c2.5 0 4.6.6 6.2 1.9 1.6 1.3 2.7 3 3.3 5.1l-2.7.7c-.4-1.6-1.2-2.9-2.4-3.8-1.1-.9-2.6-1.4-4.4-1.4-1.6 0-3 .4-4 1.1-1.1.7-1.9 1.8-2.4 3.1s-.8 2.8-.8 4.5.3 3.2.8 4.5 1.4 2.3 2.4 3.1c1.1.7 2.4 1.1 4 1.1 1.8 0 3.3-.5 4.4-1.4s1.9-2.2 2.4-3.8l2.7.7c-.6 2.1-1.7 3.9-3.3 5.1-1.7 1.5-3.7 2.1-6.2 2.1zm24.8-.4v-21.6h2.7v9.5H371v-9.5h2.7V270H371v-9.5h-11.4v9.5h-2.7zm32.9 0v-21.6h13.7v2.5h-11v6.8h9.2v2.5h-9.2v7.2h11v2.5h-13.7v.1zm29.3 0v-21.6h2.7l11.3 16.9v-16.9h2.7V270h-2.7l-11.3-16.9V270h-2.7z\" style=\"fill:#0f364b\"/><path d=\"M247.1.6V0h-7.5v.6c0 20.9-18.4 38.9-42.5 39.2v7.5c20.9-.2 38.8-12.2 46.2-29 7.5 16.9 25.3 28.8 46.2 29v-7.5h.1c-24-.3-42.5-18.3-42.5-39.2z\" style=\"fill-rule:evenodd;clip-rule:evenodd;fill:#9ab6c3\"/><path style=\"fill:#9ab6c3\" d=\"M273.1 89h-59V52h8v29h43V52h8z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13j08s8\",\"data-framer-name\":\"rogers\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-18pmre0\",\"data-framer-name\":\"Rogers-logo-colour\",fill:\"black\",intrinsicHeight:44,intrinsicWidth:240,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 240 44\" style=\"enable-background:new 0 0 240 44\" xml:space=\"preserve\"><path d=\"M36.9 7.7c3.2 4 5 9 5 14.1 0 9.8-5.7 15.8-11.8 15.8-2.7 0-5.4-.8-7.7-2.5C32.2 30.9 38 21.9 38 14.4c-.1-2.4-.5-4.6-1.1-6.7zM7.3 5.2c2.1-.7 4.3-1.1 6.4-1.1 7.3 0 15.8 5.9 20 16.1 1.6-2.4 2.4-5.1 2.4-8C36.1 5.9 30.4 0 21 0c-5.1 0-9.9 1.9-13.7 5.2zM5 35.9c-.7-2.1-1-4.5-1-6.7 0-7.6 5.8-16.4 15.5-20.7-2.2-1.7-5-2.5-7.7-2.5C5.7 6 0 12 0 21.8c0 5.1 1.7 10.1 5 14.1zm29.6 2.4c-2.1.7-4.2 1.1-6.4 1.1-7.3 0-15.8-5.9-20-16.1-1.6 2.4-2.4 5.1-2.4 8 0 6.4 5.7 12.3 15.2 12.3 5-.1 9.9-1.9 13.6-5.3zm200-.2h-.5v-3.2H233v-.4h2.7v.4h-1.2l.1 3.2zm3.6-.8 1.1-2.8h.7v3.6h-.5V35l-1.2 3.1h-.3l-1.2-3.1v3.1h-.5v-3.6h.7l1.2 2.8zM83.1 21.8c0-10 5.5-16.8 14.7-16.8s14.7 6.9 14.7 16.8-5.7 16.7-14.7 16.7c-9.1 0-14.7-6.7-14.7-16.7zm23.4 0c0-7.3-2.8-11.8-8.7-11.8-5.9 0-8.7 4.3-8.7 11.8s3 11.7 8.7 11.7 8.7-4.3 8.7-11.7zm46.9-16.4v32.8h19.5v-4.9h-13.7v-9.4h12.1V19h-12.1v-8.7h12.1l1.6-4.9h-19.5zm-18.1 15.1-1.5 4.7h4.8v7.3c-1.4.7-3 1.1-4.5 1-6.7 0-10-4.6-10-11.7s3.4-11.9 10.1-11.9c2.6 0 5 .8 7.2 2.2l1.6-5c-2.9-1.4-6-2.1-9.2-2.1-9.7 0-15.8 7.3-15.8 17.2s5.4 16.3 15.6 16.3c3.7 0 7.4-.9 10.6-2.6V20.5h-8.9zM56.5 5.4H66c8.7 0 11.4 5.6 11.4 10 .2 3.9-2.1 7.5-5.8 9v.2c.6.2 1.9.8 3.6 4l5.2 9.6H74l-4.5-8.3c-1.8-3.4-2.6-4.5-5.4-4.5h-2v12.8h-5.6V5.4zm9.3 15.1c4.8 0 5.9-3.1 5.9-5.2 0-1.7-.8-5.1-5.9-5.1h-3.7v10.2l3.7.1zM180.9 5.4h9.5c8.7 0 11.4 5.6 11.4 10 .2 3.9-2.1 7.5-5.8 9v.2c.6.2 1.9.8 3.6 4l5.2 9.6h-6.4l-4.5-8.3c-1.8-3.4-2.6-4.5-5.4-4.5h-2v12.8h-5.6V5.4zm9.4 15.1c4.8 0 5.9-3.1 5.9-5.2 0-1.7-.9-5.1-5.9-5.1h-3.7v10.2l3.7.1zm24.8-6.8c0-2.6 2.4-3.7 5-3.7 2.3 0 4.7.5 6.8 1.4V5.9c-2.4-.7-4.9-1.1-7.3-1-6.9 0-10.6 4.2-10.6 9.1s3.8 7.3 6.8 9l2.2 1.2c2.6 1.4 4.5 2.6 4.5 5 0 2.8-2.6 4.2-5.3 4.2-2.7.1-5.4-.7-7.7-2l-1.5 4.9c2.9 1.5 6.1 2.2 9.3 2.1 6.4 0 11.3-4 11.3-9.7 0-4.1-2.7-6.8-7.2-9.2l-2.1-1.2c-2.3-1.2-4.2-2.3-4.2-4.6\" style=\"fill:#d9291c\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10xz6gv\",\"data-framer-name\":\"evo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-5sjxls\",\"data-framer-name\":\"Evo-logo\",fill:\"black\",intrinsicHeight:257,intrinsicWidth:257,svg:'<svg width=\"257\" height=\"257\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M124.493 168.904c-3.073-12.33-6.144-24.661-9.218-36.991-2.59-10.386-5.184-20.772-7.773-31.159-2.344-9.398-4.683-18.797-7.026-28.195-2.288-9.182-4.58-18.362-6.869-27.544l-2.29-9.194c-.533.214-1.067.427-1.597.652-11.915 5.04-22.617 12.255-31.809 21.447-9.191 9.191-16.407 19.893-21.447 31.808-5.217 12.334-7.862 25.439-7.862 38.95 0 13.511 2.645 26.615 7.862 38.949 5.04 11.915 12.256 22.617 21.447 31.809 9.192 9.191 19.894 16.406 31.809 21.447 12.334 5.217 25.438 7.862 38.948 7.862 13.511 0 26.616-2.645 38.949-7.862 11.915-5.04 22.617-12.256 31.809-21.447 9.191-9.192 16.406-19.894 21.446-31.809 5.217-12.334 7.863-25.438 7.863-38.949s-2.646-26.615-7.863-38.95c-5.039-11.915-12.255-22.617-21.446-31.808-9.192-9.192-19.894-16.407-31.809-21.447-.54-.229-1.084-.446-1.626-.664-.978 3.928-1.949 7.849-2.929 11.767-1.641 6.56-3.269 13.124-4.903 19.686-1.634 6.562-3.27 13.124-4.906 19.685l-4.891 19.612c-1.638 6.562-3.276 13.123-4.912 19.684-1.637 6.561-3.274 13.123-4.909 19.685-1.635 6.562-3.267 13.125-4.903 19.686l-4.91 19.689m-6.637 37.584a88.942 88.942 0 0 1-3.092-.239c-1.444-.143-2.89-.283-4.327-.486a139.04 139.04 0 0 1-5.098-.826c-5.045-.897-9.984-2.214-14.827-3.894-7.95-2.758-15.443-6.451-22.385-11.238-15.064-10.389-25.786-24.22-32.243-41.411-2.051-5.462-3.555-11.077-4.607-16.819-.541-2.951-.947-5.921-1.271-8.904-.061-.565-.097-1.133-.149-1.741.157-.032.29-.076.426-.084.245-.014.492-.005.739-.005h39.516c.292 0 .585-.009.848-.013.04-.064.055-.081.063-.101.008-.023.017-.051.011-.073-.943-3.823-1.887-7.646-2.834-11.469-.142-.574-.295-1.145-.45-1.743-.187-.024-.354-.057-.52-.064-.245-.01-.492-.003-.739-.003-12.089 0-24.177 0-36.267-.002-.315 0-.636.038-.975-.066-.01-.187-.038-.357-.024-.525.13-1.655.239-3.314.413-4.965.191-1.798.41-3.596.681-5.384a102.046 102.046 0 0 1 2.634-12.273c2.241-7.987 5.43-15.563 9.723-22.656 6.63-10.955 15.302-19.925 25.897-27.025a91.063 91.063 0 0 1 6.5-3.967c.21-.117.428-.217.649-.328.056.106.104.167.121.236 14.611 58.591 29.221 117.183 43.829 175.775.023.094.021.195.041.398-.815-.036-1.55-.057-2.283-.105Zm54.751-176.26c.317-.027.507.156.713.27a89.322 89.322 0 0 1 11.9 7.866c8.468 6.641 15.472 14.589 20.964 23.88 3.937 6.66 6.921 13.736 9.063 21.176a103.143 103.143 0 0 1 2.838 12.987c.471 3.09.818 6.192 1.039 9.31.207 2.921.371 5.843.246 8.771a158.355 158.355 0 0 1-.403 6.458c-.169 2-.387 3.998-.656 5.987a101.064 101.064 0 0 1-1.892 10.077c-1.496 6.234-3.544 12.276-6.268 18.076-7.349 15.656-18.401 27.969-33.02 37.05-7.35 4.566-15.207 7.98-23.494 10.408a99.977 99.977 0 0 1-11.351 2.625c-1.891.321-3.794.58-5.7.8-1.93.223-3.87.371-5.807.536-.588.05-1.18.052-1.771.068-.095.003-.19-.028-.312-.049.029-.163.046-.309.081-.449 14.608-58.614 29.219-117.227 43.83-175.847Zm69.766 32.216c-6.447-15.243-15.676-28.93-27.429-40.685-11.754-11.754-25.442-20.982-40.685-27.43C162.71 4.055 145.948.67 128.67.67S94.629 4.055 78.845 10.73C63.602 17.179 49.914 26.408 38.16 38.16 26.407 49.914 17.178 63.602 10.73 78.845 4.056 94.629.67 111.392.67 128.67c0 17.278 3.385 34.041 10.06 49.825 6.448 15.243 15.677 28.93 27.43 40.685 11.754 11.753 25.442 20.982 40.685 27.429 15.784 6.676 32.547 10.061 49.825 10.061 17.278 0 34.041-3.385 49.825-10.061 15.243-6.447 28.931-15.676 40.685-27.429 11.753-11.754 20.982-25.442 27.429-40.685 6.676-15.784 10.061-32.547 10.061-49.825 0-17.278-3.385-34.041-10.061-49.825l-.001-.002Zm-9.063 95.816c-5.951 14.069-14.471 26.706-25.325 37.56-10.853 10.853-23.49 19.373-37.56 25.325-14.564 6.16-30.038 9.283-45.991 9.283s-31.428-3.124-45.991-9.283c-14.07-5.951-26.707-14.472-37.56-25.325-10.853-10.854-19.373-23.491-25.325-37.56-6.16-14.564-9.283-30.038-9.283-45.991s3.123-31.428 9.283-45.992c5.95-14.07 14.47-26.706 25.325-37.56 10.853-10.853 23.49-19.373 37.56-25.325 14.564-6.16 30.038-9.283 45.991-9.283s31.428 3.124 45.991 9.284c14.07 5.95 26.707 14.471 37.56 25.324 10.854 10.854 19.374 23.49 25.325 37.56 6.161 14.565 9.283 30.039 9.283 45.992 0 15.953-3.123 31.427-9.283 45.991ZM167.618 36.471c11.915 5.039 22.617 12.255 31.808 21.447 9.192 9.19 16.407 19.893 21.447 31.808 5.217 12.334 7.862 25.438 7.862 38.949 0 13.512-2.645 26.615-7.862 38.95-5.039 11.915-12.255 22.617-21.447 31.808-9.191 9.192-19.893 16.407-31.808 21.447-12.334 5.217-25.438 7.862-38.949 7.862-13.51 0-26.615-2.645-38.949-7.862-11.915-5.039-22.617-12.255-31.808-21.447-9.191-9.191-16.407-19.893-21.447-31.808-5.217-12.334-7.862-25.438-7.862-38.95 0-13.511 2.645-26.614 7.862-38.949 5.04-11.915 12.255-22.617 21.447-31.809 9.191-9.191 19.893-16.406 31.809-21.447.53-.224 1.064-.437 1.596-.652l-1.84-7.39c-.038-.151-.055-.312-.154-.436-40.146 15.726-68.577 54.804-68.577 100.524 0 59.605 48.319 107.924 107.923 107.924 59.605 0 107.924-48.319 107.924-107.924 0-45.743-28.461-84.837-68.638-100.546-.662 2.616-1.313 5.227-1.963 7.836.543.219 1.087.436 1.627.665h-.001Zm-101.05 9.661Zm62.059-6.481c-.024-.033-.045-.068-.073-.097l-9.342-9.345c-.091-.09-.088-.09.007-.185l.687-.686c2.889-2.89 5.779-5.78 8.667-8.672.057-.057.093-.069.152-.005.113.12.232.234.35.35l8.93 8.936c.054.053.104.11.187.197-.056.04-.114.07-.158.114-3.061 3.06-6.121 6.122-9.18 9.183-.067.067-.126.14-.189.21h-.038Z\" fill=\"#E20000\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-jtlrpz\",\"data-framer-name\":\"Samsung\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-qeipjc\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 136 20\"><path d=\"M 74.534 9.327 C 74.534 9.327 73.22 8.55 72.407 8.25 C 72.407 8.25 69.891 7.136 69.391 6.606 C 69.391 6.606 68.411 5.724 68.985 4.699 C 68.985 4.699 69.225 4.028 70.262 4.028 C 70.262 4.028 71.611 4.099 71.611 5.158 L 71.611 6.652 L 76.446 6.652 L 76.438 4.451 C 76.438 4.451 76.81 0.848 70.742 0.69 C 70.742 0.69 65.97 0.39 64.602 2.845 C 64.602 2.845 64.065 3.392 64.065 5.299 L 64.065 6.677 C 64.065 6.677 64.01 8.267 64.86 9.291 C 64.86 9.291 65.34 9.963 66.524 10.704 C 66.524 10.704 68.928 11.94 70.371 12.648 C 70.371 12.648 71.828 13.442 71.636 14.705 C 71.636 14.705 71.517 16.003 70.111 15.95 C 70.111 15.95 68.825 15.895 68.825 14.622 L 68.825 13.129 L 63.672 13.129 L 63.672 15.298 C 63.672 15.298 63.528 19.446 70.149 19.446 C 70.149 19.446 76.475 19.568 76.77 15.189 L 76.77 13.423 C 76.769 13.423 76.993 10.74 74.534 9.327 Z M 49.78 1.206 L 48.161 10.896 L 47.782 10.896 L 46.235 1.293 L 38.159 1.293 L 37.754 18.84 L 42.536 18.84 L 42.593 5.619 L 42.97 5.619 L 45.504 18.837 L 50.535 18.837 L 53.039 5.624 L 53.372 5.624 L 53.488 18.84 L 58.295 18.84 L 57.777 1.206 Z M 21.313 1.279 L 18.131 18.82 L 23.279 18.82 L 25.164 5.22 L 25.587 5.22 L 27.471 18.82 L 32.619 18.82 L 29.438 1.279 Z M 129.336 9.085 L 129.336 11.673 L 130.657 11.673 L 130.657 14.45 C 130.657 15.808 129.442 15.833 129.442 15.833 C 127.964 15.833 128.02 14.543 128.02 14.543 L 128.02 4.935 C 128.02 3.946 129.331 3.893 129.331 3.893 C 130.589 3.893 130.598 5.073 130.598 5.073 L 130.598 6.534 L 135.445 6.534 C 135.603 3.682 135.008 2.992 135.008 2.992 C 133.805 0.414 129.257 0.554 129.257 0.554 C 122.267 0.554 123.043 5.676 123.043 5.676 L 123.043 14.966 C 123.193 19.769 130.081 19.281 130.197 19.277 C 133.261 18.953 134.186 18.023 134.186 18.023 C 135.037 17.419 135.257 16.583 135.257 16.583 C 135.5 16.095 135.561 14.543 135.561 14.543 L 135.561 9.085 Z M 113.27 11.94 L 113.059 11.94 L 108.14 1.211 L 102.255 1.211 L 102.255 18.842 L 107.045 18.842 L 106.758 8.114 L 106.972 8.114 L 112.068 18.842 L 117.774 18.842 L 117.774 1.209 L 112.924 1.209 Z M 90.563 14.449 C 90.563 14.449 90.632 15.896 89.227 15.896 C 89.227 15.896 87.75 15.971 87.75 14.485 L 87.735 1.221 L 82.481 1.221 L 82.481 14.379 C 82.481 14.379 81.942 19.359 89.302 19.359 C 89.302 19.359 95.697 19.432 95.697 14.608 L 95.697 1.222 L 90.563 1.222 Z M 11.298 9.327 C 11.298 9.327 9.985 8.55 9.171 8.251 C 9.171 8.251 6.656 7.138 6.157 6.607 C 6.157 6.607 5.176 5.723 5.751 4.7 C 5.751 4.7 5.991 4.029 7.026 4.029 C 7.026 4.029 8.377 4.099 8.377 5.158 L 8.377 6.652 L 13.213 6.652 L 13.204 4.451 C 13.204 4.451 13.574 0.848 7.509 0.691 C 7.509 0.691 7.052 0.662 6.381 0.695 C 6.381 0.695 2.707 0.883 1.393 2.808 C 1.386 2.822 1.375 2.833 1.367 2.846 C 1.367 2.846 0.831 3.392 0.831 5.3 L 0.831 6.678 C 0.831 6.678 0.775 8.268 1.626 9.292 C 1.626 9.292 2.107 9.964 3.291 10.705 C 3.291 10.705 5.694 11.941 7.137 12.649 C 7.137 12.649 8.595 13.441 8.402 14.706 C 8.402 14.706 8.283 16.004 6.877 15.95 C 6.877 15.95 5.591 15.896 5.591 14.623 L 5.591 13.129 L 0.438 13.129 L 0.438 15.3 C 0.438 15.3 0.294 19.447 6.914 19.447 C 6.914 19.447 13.239 19.57 13.536 15.191 L 13.536 13.427 C 13.536 13.425 13.757 10.74 11.298 9.327 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:9679834364,withExternalLayout:true})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:38,intrinsicWidth:68,pixelHeight:76,pixelWidth:136,src:\"https://framerusercontent.com/images/Ktshz8Xp5P4zbwHfpeAmYSWnHdQ.svg\"},className:\"framer-1qigtv1\",\"data-framer-name\":\"Beamish\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cc1mtv\",\"data-framer-name\":\"Compass\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-185ger4\",\"data-framer-name\":\"Compass\",fill:\"black\",intrinsicHeight:62,intrinsicWidth:200,svg:'<svg width=\"200\" height=\"62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.529 8.943c.259.141.448.244.625.244.452 0 .797-.323.797-.797 0-.474-.41-.82-1.034-1.078-.905-.41-2.069-.71-3.598-.71-4.137 0-7.67 3.382-7.67 7.519 0 4.589 3.447 7.562 7.67 7.562 1.53 0 2.758-.323 3.684-.754.603-.28 1.056-.581 1.056-1.077a.795.795 0 0 0-.797-.797c-.173 0-.357.097-.617.236-.259.137-.592.314-1.064.475a6.804 6.804 0 0 1-2.284.366c-3.167 0-5.86-2.435-5.86-6.011 0-3.275 2.671-5.969 5.86-5.969.991 0 1.702.151 2.262.345.419.147.726.314.97.446Zm9.603 5.22c0-3.253 2.543-5.946 5.84-5.946 3.296 0 5.86 2.693 5.86 5.947 0 3.253-2.564 5.925-5.86 5.925-3.297 0-5.84-2.65-5.84-5.925Zm-1.831 0c0 4.245 3.469 7.52 7.67 7.52 4.202 0 7.67-3.253 7.67-7.52 0-4.265-3.468-7.562-7.67-7.562-4.201 0-7.67 3.297-7.67 7.563Zm24.218-7.562c.452 0 .754.237.948.56l5.343 8.813 5.343-8.813c.194-.323.518-.56.948-.56.647 0 1.056.474 1.056 1.056v13.208c0 .452-.323.818-.819.818-.517 0-.84-.366-.84-.818V9.79l-4.848 7.843c-.172.28-.43.538-.84.538-.409 0-.668-.258-.84-.538l-4.848-7.843v11.075c0 .452-.323.818-.819.818-.517 0-.84-.366-.84-.818V7.657c0-.582.409-1.056 1.056-1.056Zm27.964 1.702c.927 0 1.702.173 2.371.668.774.539 1.249 1.4 1.249 2.65 0 1.207-.518 2.176-1.336 2.737-.711.474-1.615.582-2.521.582h-3.749V8.303h3.986Zm3.641-.474c-1.012-.775-2.111-1.034-3.382-1.034h-5.107a.86.86 0 0 0-.862.84v13.208c0 .452.388.84.862.84a.86.86 0 0 0 .862-.84v-4.395h4.029c1.229 0 2.435-.173 3.47-.927 1.141-.84 1.852-2.24 1.852-3.9 0-1.659-.668-2.951-1.724-3.792Zm11.738 1.638c-.774.84-1.163 2.111-1.163 3.49v1.875h8.296v-1.875c0-1.379-.41-2.628-1.186-3.49-.71-.776-1.723-1.271-2.973-1.271-1.227 0-2.262.474-2.974 1.27Zm8.857 11.376c0 .452-.41.84-.862.84a.846.846 0 0 1-.862-.84v-4.482h-8.296v4.482a.86.86 0 0 1-.862.84.86.86 0 0 1-.861-.84v-7.929c0-1.702.56-3.447 1.81-4.718.948-.948 2.305-1.595 4.05-1.595 1.767 0 3.125.625 4.072 1.595 1.229 1.27 1.811 3.016 1.811 4.718v7.929Zm15.647-12.055c.285.138.51.248.736.248.495 0 .818-.345.818-.797 0-.474-.473-.797-.99-1.013-.884-.388-2.22-.625-3.362-.625-3.382 0-5.192 1.487-5.192 3.9 0 1.616.905 2.607 2.175 3.232.874.425 1.707.672 2.499.906.614.183 1.203.357 1.767.602 1.056.453 1.854 1.12 1.854 2.24 0 1.53-1.035 2.716-3.361 2.716a5.804 5.804 0 0 1-2.586-.582 6.64 6.64 0 0 1-.977-.538c-.246-.158-.403-.26-.596-.26a.815.815 0 0 0-.84.84c0 .453.388.755.818.992.992.539 2.651 1.034 4.181 1.034 3.081 0 5.213-1.594 5.213-4.352 0-1.594-.883-2.586-1.895-3.189-.864-.493-1.788-.751-2.724-1.012-.535-.15-1.073-.3-1.606-.496-1.294-.474-2.112-1.099-2.112-2.176 0-1.53 1.077-2.37 3.296-2.37.862 0 1.551.172 2.154.388.289.099.525.213.73.312Zm17.666.248c-.226 0-.451-.11-.737-.248-.205-.1-.44-.213-.728-.312a6.21 6.21 0 0 0-2.155-.388c-2.22 0-3.296.84-3.296 2.37 0 1.077.818 1.702 2.111 2.176.533.196 1.072.346 1.607.496.936.26 1.861.519 2.723 1.012 1.014.603 1.897 1.595 1.897 3.189 0 2.758-2.133 4.352-5.214 4.352-1.53 0-3.189-.495-4.18-1.034-.431-.237-.819-.539-.819-.991 0-.496.366-.84.841-.84.192 0 .348.1.594.259.222.143.517.333.978.538a5.807 5.807 0 0 0 2.586.582c2.327 0 3.36-1.185 3.36-2.715 0-1.12-.796-1.788-1.852-2.24-.564-.245-1.153-.42-1.767-.602-.792-.235-1.625-.482-2.499-.907-1.272-.625-2.176-1.616-2.176-3.232 0-2.413 1.81-3.9 5.193-3.9 1.142 0 2.477.237 3.36.625.517.216.992.539.992 1.013 0 .452-.323.797-.819.797ZM72.664 34.885h3.8c1.855 0 2.717 1.048 2.717 2.303-.02 1.76-1.405 2.34-2.997 2.34h-3.52v-4.643Zm0-5.656h2.883c1.386 0 2.603.712 2.603 2.19 0 1.649-1.123 2.248-2.36 2.248h-3.126V29.23Zm-.75 11.535h4.57c2.154 0 4.214-1.03 4.214-3.408 0-1.667-.918-2.902-2.716-3.258v-.038c.993-.45 1.667-1.367 1.667-2.809 0-2.228-1.91-3.239-3.876-3.239h-3.858c-.43 0-.75.336-.75.73v11.292c0 .393.32.73.75.73Zm21.184-11.516c-2.865 0-5.075 2.34-5.075 5.168 0 2.847 2.21 5.15 5.075 5.15 2.866 0 5.094-2.322 5.094-5.15 0-2.828-2.228-5.168-5.094-5.168Zm0 11.704c-3.651 0-6.667-2.847-6.667-6.536 0-3.708 3.016-6.572 6.667-6.572 3.652 0 6.666 2.864 6.666 6.572s-3.014 6.536-6.666 6.536Zm22.28-5.413c0 1.256-.337 2.229-.955 2.923-.693.767-1.667 1.141-2.959 1.141-1.254 0-2.228-.374-2.92-1.141-.62-.694-.957-1.667-.957-2.923v-6.965a.734.734 0 0 0-.749-.73.747.747 0 0 0-.748.73v7.153c0 1.48.431 2.735 1.236 3.615.918 1.03 2.341 1.61 4.157 1.61 1.816 0 3.24-.58 4.157-1.61.806-.88 1.236-2.136 1.236-3.615v-7.153a.747.747 0 0 0-.749-.73.735.735 0 0 0-.749.73v6.965Zm16.404-5.58c-.195 0-.391-.095-.639-.215a5.435 5.435 0 0 0-.634-.272 5.394 5.394 0 0 0-1.872-.337c-1.929 0-2.866.73-2.866 2.06 0 .937.712 1.48 1.836 1.892.464.17.933.301 1.398.43.813.228 1.616.452 2.366.88.879.525 1.648 1.386 1.648 2.772 0 2.397-1.854 3.783-4.532 3.783-1.33 0-2.772-.43-3.633-.899-.374-.206-.711-.468-.711-.861 0-.431.317-.73.73-.73.167 0 .303.087.517.225.193.124.45.29.849.467a5.06 5.06 0 0 0 2.248.506c2.022 0 2.921-1.03 2.921-2.36 0-.974-.693-1.554-1.61-1.948-.49-.212-1.002-.363-1.534-.521-.689-.205-1.414-.42-2.174-.79-1.105-.542-1.892-1.403-1.892-2.809 0-2.097 1.573-3.388 4.513-3.388.993 0 2.154.205 2.922.543.45.187.861.467.861.88 0 .393-.28.692-.712.692Zm15.259-.215c.247.12.443.215.639.215.43 0 .712-.3.712-.692 0-.413-.413-.693-.862-.88-.767-.338-1.928-.543-2.921-.543-2.941 0-4.512 1.291-4.512 3.388 0 1.406.785 2.267 1.891 2.81.76.37 1.485.585 2.174.789.532.158 1.043.31 1.533.521.918.394 1.61.974 1.61 1.948 0 1.33-.898 2.36-2.921 2.36a5.054 5.054 0 0 1-2.247-.506 5.815 5.815 0 0 1-.85-.467c-.213-.138-.349-.225-.516-.225a.708.708 0 0 0-.731.73c0 .393.337.655.71.861.863.469 2.304.899 3.634.899 2.678 0 4.532-1.386 4.532-3.783 0-1.386-.768-2.247-1.649-2.771-.75-.429-1.553-.653-2.365-.88-.465-.13-.934-.26-1.397-.431-1.124-.412-1.837-.955-1.837-1.892 0-1.33.937-2.06 2.865-2.06.75 0 1.349.15 1.874.337.251.087.456.186.634.272Zm14.697-.496c-2.864 0-5.075 2.34-5.075 5.168 0 2.847 2.211 5.15 5.075 5.15 2.866 0 5.094-2.322 5.094-5.15 0-2.828-2.228-5.168-5.094-5.168Zm0 11.704c-3.651 0-6.666-2.847-6.666-6.536 0-3.708 3.015-6.572 6.666-6.572 3.653 0 6.667 2.864 6.667 6.572s-3.014 6.536-6.667 6.536Zm14.502-13.108a.734.734 0 0 0-.748.73v11.46c0 .393.317.73.748.73h6.854c.356 0 .637-.3.637-.655 0-.374-.281-.674-.637-.674h-6.105V28.574a.747.747 0 0 0-.749-.73Zm15.351 11.59h7.134c.357 0 .638.3.638.675a.648.648 0 0 1-.638.655h-7.882a.735.735 0 0 1-.749-.73V28.742c0-.394.318-.73.749-.73h7.882c.357 0 .638.3.638.655 0 .375-.281.674-.638.674h-7.134v4.364h6.162c.374 0 .656.318.656.674a.652.652 0 0 1-.656.656h-6.162v4.4ZM72.228 50.122c0-.628.17-1.149.5-1.51.309-.32.745-.5 1.244-.5.5 0 .958.17 1.255.5.33.35.49.882.49 1.51v.798h-3.489v-.798Zm4.084 4.328c.33 0 .596-.255.596-.574v-3.807c0-.851-.298-1.734-.968-2.34-.479-.425-1.127-.723-1.968-.723-.84 0-1.5.298-1.967.723-.66.606-.968 1.489-.968 2.34v3.807c0 .32.255.574.596.574a.59.59 0 0 0 .595-.574v-1.904h3.489v1.904c0 .32.265.574.595.574Zm4.648-6.87c0-.319.266-.574.596-.574.34 0 .595.255.595.574v3.265l3.478-3.658a.607.607 0 0 1 .425-.192c.298 0 .574.255.574.585a.521.521 0 0 1-.148.372l-2.393 2.425c.808.17 1.488.5 1.978 1.01.542.564.84 1.351.84 2.33 0 .51-.277.733-.606.733-.426 0-.607-.297-.607-.574 0-.787-.223-1.393-.638-1.808-.425-.457-1.063-.712-1.84-.787l-1.063 1.085v1.51a.59.59 0 0 1-.596.574.583.583 0 0 1-.595-.574V47.58Zm10.401-.574a.584.584 0 0 0-.595.574v6.296c0 .32.265.574.595.574.32 0 .596-.255.596-.574V47.58a.577.577 0 0 0-.596-.574Zm4.67.574c0-.319.265-.574.595-.574.34 0 .595.255.595.574v6.296c0 .32-.276.574-.595.574a.583.583 0 0 1-.596-.574V47.58Zm5.412 3.733c0 .287.224.51.5.51h2.627a.5.5 0 0 0 .489-.51c0-.276-.223-.521-.489-.521h-2.627c-.276 0-.5.245-.5.521Zm7.828-3.733c0-.319.265-.574.595-.574.34 0 .596.255.596.574v6.296c0 .32-.277.574-.596.574a.583.583 0 0 1-.595-.574V47.58Zm10.145.053a.524.524 0 0 0-.521-.532h-4.488a.53.53 0 0 0-.511.532.52.52 0 0 0 .511.522h3.414l-3.637 5.328a.56.56 0 0 0-.117.33c0 .297.223.531.521.531h4.562a.516.516 0 0 0 .511-.532.52.52 0 0 0-.511-.52h-3.488l3.669-5.361a.573.573 0 0 0 .085-.298Zm3.702-.053c0-.319.266-.574.596-.574.34 0 .595.255.595.574v2.595h3.818V47.58a.59.59 0 0 1 .595-.574c.341 0 .596.255.596.574v6.296c0 .32-.265.574-.596.574-.318 0-.595-.255-.595-.574v-2.648h-3.818v2.648a.59.59 0 0 1-.595.574.584.584 0 0 1-.596-.574V47.58Zm10.869-.574a.584.584 0 0 0-.595.574v6.296c0 .32.266.574.595.574.319 0 .596-.255.596-.574V47.58a.577.577 0 0 0-.596-.574Zm8.018 4.424a20.283 20.283 0 0 1-1.477-1.202 6.772 6.772 0 0 1-.735-.744v4.413a.558.558 0 0 1-.564.553.567.567 0 0 1-.574-.553v-6.349c0-.297.255-.542.574-.542.32 0 .564.255.564.542 0 .713 1.096 1.574 2.287 2.478.499.383 1 .798 1.489 1.223.287.245.532.5.734.745v-4.446c0-.297.255-.542.574-.542a.55.55 0 0 1 .564.542v6.35a.559.559 0 0 1-.564.552.582.582 0 0 1-.574-.553c0-.733-1.309-1.72-2.185-2.382l-.113-.085Zm8.467-.691c0-1.457 1.117-2.617 2.574-2.617 1.468 0 2.563 1.16 2.563 2.617s-1.095 2.605-2.563 2.605c-1.457 0-2.574-1.148-2.574-2.605Zm-1.255 0c0 2.148 1.745 3.711 3.829 3.711 2.073 0 3.828-1.552 3.828-3.711 0-2.16-1.755-3.733-3.828-3.733-2.084 0-3.829 1.574-3.829 3.733Zm14.973-2.617c-1.456 0-2.574 1.16-2.574 2.617s1.118 2.605 2.574 2.605c1.468 0 2.564-1.148 2.564-2.605s-1.096-2.617-2.564-2.617Zm0 6.328c-2.084 0-3.828-1.563-3.828-3.711 0-2.16 1.744-3.733 3.828-3.733 2.075 0 3.83 1.574 3.83 3.733s-1.755 3.711-3.83 3.711Zm14.763-3.212c0-.382-.245-.563-.532-.563h-2.647a.53.53 0 0 0-.512.532.53.53 0 0 0 .512.531h1.902a1.782 1.782 0 0 1-.807 1.255c-.394.256-.884.394-1.436.394-1.553 0-2.68-1.074-2.68-2.67 0-1.53 1.201-2.637 2.69-2.637.394 0 .703.053.968.128.197.063.34.125.457.177.161.07.274.12.415.12.319 0 .575-.234.575-.553 0-.308-.256-.51-.607-.638a4.966 4.966 0 0 0-1.797-.308c-2.201 0-3.945 1.531-3.945 3.711 0 2.414 1.691 3.733 3.881 3.733 1.032 0 1.893-.319 2.51-.85.659-.564 1.053-1.394 1.053-2.361Zm5.392-2.626c-.329.361-.5.882-.5 1.51v.798h3.489v-.798c0-.628-.159-1.16-.489-1.51-.298-.33-.755-.5-1.255-.5-.501 0-.936.18-1.245.5Zm4.18 5.264c0 .32-.266.574-.595.574a.584.584 0 0 1-.596-.574v-1.904h-3.489v1.904a.59.59 0 0 1-.595.574.577.577 0 0 1-.596-.574v-3.807c0-.851.309-1.734.968-2.34.468-.425 1.128-.723 1.968-.723.839 0 1.489.298 1.967.723.67.606.968 1.489.968 2.34v3.807Zm5.924-3.648c.468.426.968.82 1.479 1.202l.11.083c.876.661 2.186 1.65 2.186 2.384 0 .277.255.553.575.553a.559.559 0 0 0 .564-.553v-6.349a.55.55 0 0 0-.564-.542c-.32 0-.575.244-.575.542v4.446a5.932 5.932 0 0 0-.733-.745 31.69 31.69 0 0 0-1.488-1.223c-1.192-.904-2.288-1.765-2.288-2.478a.557.557 0 0 0-.563-.542c-.319 0-.574.244-.574.542v6.35c0 .297.255.552.574.552a.558.558 0 0 0 .563-.553v-4.413c.203.244.447.489.734.744Z\" fill=\"#133438\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.107 8.578V1.054a.945.945 0 0 0-1.014-.943C13.101 1.24 1.135 13.208.005 28.199a.945.945 0 0 0 .943 1.014h7.524c.245 0 .45-.189.47-.433a21.46 21.46 0 0 1 6.24-13.493 21.461 21.461 0 0 1 13.492-6.24.47.47 0 0 0 .433-.469Z\" fill=\"#4AB8C1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M52.364 29.213h7.524c.55 0 .985-.466.944-1.014C59.702 13.208 47.735 1.241 32.743.111a.945.945 0 0 0-1.014.943v7.524c0 .246.189.45.434.47a21.461 21.461 0 0 1 13.492 6.24 21.461 21.461 0 0 1 6.24 13.492c.02.244.224.433.47.433Z\" fill=\"#F16823\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M29.106 52.452v7.565a.925.925 0 0 1-.991.923C13.105 59.82 1.123 47.837.003 32.828a.925.925 0 0 1 .922-.992h7.566c.234 0 .43.18.449.414a21.461 21.461 0 0 0 6.24 13.512 21.462 21.462 0 0 0 13.512 6.24.45.45 0 0 1 .414.45Zm23.24-20.616h7.565c.537 0 .962.456.922.992-1.12 15.009-13.102 26.991-28.112 28.112a.925.925 0 0 1-.991-.923v-7.565c0-.235.18-.43.414-.45a21.462 21.462 0 0 0 13.511-6.24 21.461 21.461 0 0 0 6.241-13.512.45.45 0 0 1 .45-.414Z\" fill=\"#4AB8C1\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M30.284 39.854a1.15 1.15 0 0 1-1.15-1.125l-.027-6.893-6.877-.011a1.15 1.15 0 0 1-.523-2.162l18.197-9.86a1.151 1.151 0 0 1 1.548 1.581L31.285 39.273a1.15 1.15 0 0 1-1 .582Z\" fill=\"#F16823\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1izuivu\",\"data-framer-name\":\"sdisports\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-19rlprx\",\"data-framer-name\":\"Sdisports\",fill:\"black\",intrinsicHeight:54,intrinsicWidth:274,svg:'<svg width=\"274\" height=\"54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#5B33D2\"><path d=\"M0 29.34h11.89c0 3.554 2.521 5.42 6.943 5.42 3.166 0 5.325-1.419 5.325-3.491 0-4.012-2.097-4.089-6.7-4.742C5.15 25.164.967 21.61.967 12.909.966 5.09 7.417 0 18.058 0c10.64 0 16.39 4.042 17.216 12.909H23.6c-.3-2.603-2.51-4.542-5.382-4.542s-5.284 1.41-5.284 3.477 1.131 4.042 6.42 4.51c10.775.957 17.18 3.461 17.18 12.873 0 7.874-6.4 14.06-17.877 14.06C6.575 43.282.3 38.87 0 29.34ZM41.953.375h16.363c15.347 0 23.141 7.221 23.141 20.664v.417c0 13.5-8.032 21.255-23.14 21.255H41.952V.375Zm15.32 33.156c8.048 0 10.971-4.386 10.971-11.787v-.473c0-7.756-3.207-11.597-11.033-11.597h-2.216v23.852h2.278v.005ZM87.211.612h13.048v42.33H87.211V.613Zm26.184 33.285c.201 1.815 1.823 2.69 3.713 2.69 1.891 0 3.311-.674 3.311-2.084 0-1.008-.542-1.414-2.365-1.882l-4.861-1.342c-4.458-1.142-7.092-3.765-7.092-8.002 0-7.062 6.55-10.893 13.642-10.893 8.915 0 12.83 4.238 13.099 9.951h-9.659c-.134-1.548-1.488-2.556-3.445-2.556-1.757 0-3.105.741-3.105 2.083 0 .875.61 1.276 1.622 1.615l5.672 1.615c4.86 1.414 7.092 4.371 7.092 8.203 0 7.395-6.684 10.692-13.978 10.692-8.507 0-13.306-4.032-13.574-10.085h9.928v-.005ZM141.892 54h-10.605l7.226-40.947h10.605l-.47 2.556c1.689-1.682 4.525-3.23 7.763-3.23 7.495 0 11.276 5.78 11.276 12.975 0 10.22-6.482 18.623-16.074 18.623-3.378 0-6.281-1.415-7.428-3.091l-2.299 13.109.006.005Zm3.848-21.852c.47 1.682 2.159 2.823 4.39 2.823 3.983 0 6.818-3.564 6.818-8.537 0-2.957-1.554-5.112-4.592-5.112-2.365 0-4.116 1.348-5.268 3.024l-1.348 7.802Zm23.977-1.882c0-10.559 7.562-17.887 16.881-17.887 8.44 0 14.184 5.312 14.184 13.716 0 10.558-7.495 17.887-16.881 17.887-8.44 0-14.184-5.313-14.184-13.716Zm20.667-4.305c0-2.823-1.421-4.906-4.05-4.906-3.647 0-6.147 4.099-6.147 9.344 0 2.757 1.421 4.84 3.983 4.84 3.714 0 6.214-4.032 6.214-9.278Zm34.628-2.891c-1.147-.673-2.5-.94-4.189-.94-2.836 0-5.135 1.275-6.013 3.43l-3.104 17.753h-10.604l5.335-30.255h10.605l-.47 2.69c1.622-2.083 4.39-3.364 7.293-3.364 1.488 0 2.764.309 3.167.576l-2.02 10.116v-.005Zm4.974-10.017 1.183-6.83h10.398l-1.183 6.83h6.348l-1.42 8.202h-6.415l-1.891 9.818c-.067.473-.134.808-.134 1.209 0 1.681 1.079 2.422 2.836 2.422 1.213 0 2.5-.267 3.512-.674l-1.555 8.944c-1.348.54-3.714.94-6.012.94-6.214 0-9.659-2.555-9.659-8.068 0-.875.067-1.883.268-2.957l2.227-11.634 1.487-8.202h.01Zm24.561 20.844c.202 1.815 1.824 2.69 3.714 2.69 1.891 0 3.311-.674 3.311-2.084 0-1.008-.542-1.414-2.365-1.882l-4.861-1.342c-4.458-1.142-7.092-3.765-7.092-8.002 0-7.062 6.55-10.893 13.642-10.893 8.915 0 12.83 4.238 13.099 9.951h-9.659c-.135-1.548-1.488-2.556-3.446-2.556-1.756 0-3.104.741-3.104 2.083 0 .875.61 1.276 1.622 1.615l5.672 1.615c4.86 1.414 7.091 4.371 7.091 8.203 0 7.395-6.683 10.692-13.977 10.692-8.507 0-13.306-4.032-13.574-10.085h9.927v-.005Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" d=\"M0 0h274v54H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13sjd7w\",\"data-framer-name\":\"Polite\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1d4otyv\",\"data-framer-name\":\"Polite\",fill:\"black\",intrinsicHeight:46,intrinsicWidth:265,svg:'<svg width=\"265\" height=\"46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M26.001 24.323c0 7.178-5.002 11.947-10.78 11.947-2.268 0-4.03-.648-5.416-1.801v6.893c0 1.995 1.943 2.358 1.943 3.524v.182c0 .505-.414.79-1.062.79H2.302c-.647 0-1.062-.272-1.062-.79v-.182c0-1.153 1.801-1.529 1.801-3.524V20.54c0-1.892-2.125-2.034-2.125-3.24v-.233c0-.466.376-.829.92-1.114l5.183-2.54c1.296-.648 1.762-.052 1.762.83l-.052 1.943c1.244-1.943 3.563-3.058 6.44-3.058C20.533 13.128 26 17.015 26 24.323Zm-6.803 2.773c0-5.83-1.995-11.985-5.649-11.985-1.943 0-3.472 1.529-3.744 3.744v8.837c0 3.654 2.267 6.57 4.716 6.57 2.967 0 4.677-2.54 4.677-7.179v.013Zm9.524-2.54c0-6.711 5.507-11.428 11.985-11.428 7.127 0 12.452 5.092 12.452 11.662 0 6.569-5.001 11.48-11.752 11.48-7.45 0-12.685-5.274-12.685-11.714Zm17.492 2.968c0-5.04-2.5-12.361-6.427-12.361-2.773 0-4.262 2.358-4.262 6.763 0 4.717 2.5 12.31 6.711 12.31 2.501 0 3.978-2.45 3.978-6.712Zm8.008 7.502v-.182c0-1.153 1.8-1.529 1.8-3.472V8.593c0-2.086-1.8-2.54-1.8-3.511V4.9c0-.467.375-.7.92-.92l5.83-2.89c1.205-.596 1.892.052 1.892.83v29.438c0 1.944 1.995 2.32 1.995 3.472v.182c0 .466-.466.79-1.062.79h-8.513c-.648 0-1.062-.324-1.062-.79v.013Zm13.397 0v-.182c0-1.153 1.762-1.529 1.762-3.511V20.877c0-2.035-1.762-2.54-1.762-3.564v-.142c0-.415.376-.648.972-.972l5.779-2.863c1.153-.558 1.892.09 1.892.92v17.077c0 1.995 1.943 2.358 1.943 3.511v.182c0 .466-.414.79-1.062.79H68.63c-.596 0-1.024-.324-1.024-.79h.013Zm.648-28.79c0-2.32 1.853-4.03 4.587-4.03s4.483 1.71 4.483 4.03c0 2.318-1.762 4.068-4.483 4.068-2.721 0-4.587-1.71-4.587-4.069Zm14.201 22.026V16.277h-2.177c-.557 0-.92-.376-.92-.92v-.79c0-.597.324-.972.92-.972h1.154c2.59 0 4.392-1.853 4.91-4.587.143-.7.557-1.114 1.063-1.114h.92c.648 0 1.023.414 1.023 1.114l.052 4.587h5.326c.505 0 .92.414.92.971v.79c0 .558-.415.92-.92.92h-5.326v12.077c0 1.853 1.024 2.967 2.358 2.967 1.853 0 2.773-1.023 3.149-2.086.557-.79 1.671-.596 1.671.272 0 3.33-2.5 6.764-7.126 6.764-4.211 0-6.984-2.734-6.984-8.008h-.013Zm36.695 1.024c-.272 2.682-3.421 6.984-9.394 6.984-6.44 0-11.195-4.626-11.195-11.752 0-6.712 5.144-11.39 11.195-11.39s8.746 3.512 8.746 6.57c0 1.567-.791 2.5-2.034 3.057l-10.275 4.678c1.205 2.54 3.33 4.03 6.102 4.03 2.449 0 4.393-1.244 5.274-2.683.557-.7 1.62-.466 1.568.506h.013Zm-14.162-7.956c0 1.438.142 2.773.466 3.978l5.973-3.006c.83-.415 1.205-1.205 1.205-2.177 0-1.671-1.205-4.95-3.705-4.95-2.501 0-3.939 2.644-3.939 6.155Zm34.854-8.176c.868.26 1.672.635 2.41 1.114.739.48 1.4 1.076 2.009 1.763.609.686 1.114 1.477 1.541 2.345.428.868.752 1.814.985 2.863.233 1.05.35 2.138.35 3.279 0 2.293-.44 4.34-1.335 6.141-.894 1.801-2.124 3.188-3.718 4.172-1.594.985-3.408 1.478-5.455 1.478-2.307 0-4.185-.817-5.611-2.436h-.064V44.95h-8.215V13.219h8.266v2.28h.065c1.581-1.827 3.589-2.746 6.064-2.746a9.5 9.5 0 0 1 2.708.388v.013Zm-2.138 14.68c.752-.829 1.128-1.93 1.128-3.303 0-1.374-.376-2.423-1.128-3.266-.751-.842-1.71-1.256-2.876-1.256s-2.216.414-2.993 1.256c-.778.843-1.166 1.931-1.166 3.266 0 1.334.388 2.461 1.166 3.304.777.842 1.775 1.243 2.993 1.243s2.138-.414 2.876-1.243Zm35.205-14.602v22.584h-7.813v-2.112h-.065c-1.348 1.724-3.291 2.592-5.805 2.592-1.529 0-2.941-.285-4.25-.868-1.296-.584-2.41-1.374-3.317-2.398-.907-1.023-1.632-2.267-2.151-3.731-.518-1.464-.777-3.058-.777-4.781 0-1.724.259-3.279.764-4.756.506-1.477 1.218-2.72 2.112-3.744a9.492 9.492 0 0 1 3.188-2.397 9.254 9.254 0 0 1 3.939-.868c2.345 0 4.288.906 5.856 2.708h.065v-2.229h8.267-.013Zm-9.044 14.59c.751-.843 1.14-1.931 1.14-3.291 0-1.36-.376-2.41-1.14-3.253-.765-.842-1.698-1.27-2.825-1.27-1.127 0-2.138.415-2.876 1.257-.739.843-1.128 1.931-1.128 3.266 0 1.334.376 2.461 1.128 3.304.751.842 1.71 1.243 2.876 1.243s2.073-.414 2.825-1.256Zm35.113-14.59-11.596 31.706H179.4l3.823-10.793-8.643-20.926h8.487l3.823 10.703h.09l3.602-10.703h8.397l.012.013Zm16.404-.466v8.81a31.31 31.31 0 0 0-1.736-.038c-1.529 0-2.695.401-3.486 1.204-.79.804-1.192 1.88-1.192 3.227v9.86h-8.24V13.22h8.24v3.084h.065c.791-1.153 1.736-2.035 2.825-2.644a7.03 7.03 0 0 1 3.485-.906h.039v.012Zm7.049 22.053c-1.879-.985-3.343-2.372-4.393-4.16-1.049-1.788-1.567-3.822-1.567-6.128 0-2.307.518-4.341 1.567-6.13 1.05-1.787 2.514-3.174 4.393-4.171 1.879-.998 4.03-1.49 6.427-1.49 2.397 0 4.535.492 6.413 1.49 1.879.997 3.343 2.384 4.393 4.172 1.049 1.788 1.581 3.822 1.581 6.129 0 2.306-.532 4.34-1.581 6.128-1.05 1.788-2.514 3.175-4.393 4.16-1.878.984-4.016 1.477-6.413 1.477-2.397 0-4.548-.493-6.427-1.477Zm9.355-7.075c.777-.842 1.166-1.918 1.166-3.213 0-1.296-.389-2.397-1.153-3.227-.765-.829-1.749-1.244-2.954-1.244a4.11 4.11 0 0 0-1.646.337 3.93 3.93 0 0 0-1.309.92 4.08 4.08 0 0 0-.842 1.413 5.367 5.367 0 0 0-.298 1.8c0 .506.065.998.208 1.465.142.466.323.88.57 1.244.246.362.544.673.881.945.337.273.712.48 1.127.622.415.143.855.22 1.322.22 1.166 0 2.15-.427 2.928-1.27v-.012Zm12.296-25.901h8.215v33.96h-8.215V1.843Zm12.245 0h8.215v33.96h-8.215V1.843Z\" fill=\"#F4481E\"/></svg>',withExternalLayout:true})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{y:undefined},wx3nVDEIW:{y:(componentViewport?.y||0)+0+1747.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:415,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+1872.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1j2tjpq-container\",id:elementId,nodeId:\"C_zJutueV\",ref:ref1,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{EsqxUGzC5:{variant:\"W_8nyRNay\"},wx3nVDEIW:{variant:\"qybVH4xmx\"}},children:/*#__PURE__*/_jsx(ContactFormFooter,{height:\"100%\",id:\"C_zJutueV\",layoutId:\"C_zJutueV\",style:{width:\"100%\"},variant:\"Hdy3wAYEt\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5PvxT.framer-lux5qc, .framer-5PvxT .framer-lux5qc { display: block; }\",\".framer-5PvxT.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-5PvxT .framer-1ejn0i1-container, .framer-5PvxT .framer-1j2tjpq-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-5PvxT .framer-7ys4x8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 800px; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-1gpzwpz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-w01mte { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-12sbcts { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 60px; border-bottom-right-radius: 60px; border-top-left-radius: 60px; border-top-right-radius: 60px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 64px); justify-content: center; overflow: hidden; padding: 0px 64px 0px 0px; position: relative; width: 64px; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PvxT .framer-h3reaz, .framer-5PvxT .framer-hyomeu, .framer-5PvxT .framer-symxng { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-5PvxT .framer-8atd0p, .framer-5PvxT .framer-cqn2i9, .framer-5PvxT .framer-budnbi, .framer-5PvxT .framer-1ft9x0z, .framer-5PvxT .framer-7mxeee { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-5PvxT .framer-18u41oy, .framer-5PvxT .framer-1741nci, .framer-5PvxT .framer-5jp6jd, .framer-5PvxT .framer-17yh1zn, .framer-5PvxT .framer-1trsqn2 { --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-5PvxT .framer-1tyjfst { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 100%; overflow: hidden; padding: 48px 64px 64px 64px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-sljspy { display: grid; flex: none; gap: 32px; 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; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-m01lsf { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; min-width: 100px; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PvxT .framer-1iextg4, .framer-5PvxT .framer-ia0vf4, .framer-5PvxT .framer-1m3fdmt, .framer-5PvxT .framer-9bn5gm { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 390px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PvxT .framer-nrdkc9, .framer-5PvxT .framer-1lsm01d, .framer-5PvxT .framer-1prv59b, .framer-5PvxT .framer-gy2od5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; padding: 30px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-10sk1nc-container, .framer-5PvxT .framer-g3w8xm-container, .framer-5PvxT .framer-s3voe0-container, .framer-5PvxT .framer-1q510vx-container { flex: none; height: 42px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-17nmhic, .framer-5PvxT .framer-1gyl5s4, .framer-5PvxT .framer-1j0za7y { align-content: center; align-items: center; align-self: start; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 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: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-5PvxT .framer-1nupjgc { 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: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-1t6jy1g-container { flex: none; height: 96px; position: relative; width: 100%; }\",\".framer-5PvxT .framer-t4uebv, .framer-5PvxT .framer-zpcr5b, .framer-5PvxT .framer-13j08s8, .framer-5PvxT .framer-10xz6gv, .framer-5PvxT .framer-jtlrpz, .framer-5PvxT .framer-1cc1mtv, .framer-5PvxT .framer-1izuivu, .framer-5PvxT .framer-13sjd7w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-5PvxT .framer-154o2n2 { aspect-ratio: 3.34375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 107px; }\",\".framer-5PvxT .framer-12b2go5 { 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-5PvxT .framer-dtg73c { aspect-ratio: 1.5333333333333334 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 65px); overflow: visible; position: relative; width: 100px; }\",\".framer-5PvxT .framer-blifny { aspect-ratio: 1.825925925925926 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 59px); position: relative; width: 107px; }\",\".framer-5PvxT .framer-18pmre0 { aspect-ratio: 5.454545454545454 / 1; flex: none; height: 30px; position: relative; width: var(--framer-aspect-ratio-supported, 164px); }\",\".framer-5PvxT .framer-5sjxls { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 52px); position: relative; width: 52px; }\",\".framer-5PvxT .framer-qeipjc { flex: none; height: 20px; position: relative; width: 136px; }\",\".framer-5PvxT .framer-1qigtv1 { aspect-ratio: 1.7894736842105263 / 1; height: var(--framer-aspect-ratio-supported, 38px); overflow: visible; position: relative; width: 68px; }\",\".framer-5PvxT .framer-185ger4 { aspect-ratio: 3.225806451612903 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); position: relative; width: 132px; }\",\".framer-5PvxT .framer-19rlprx { aspect-ratio: 5.074074074074074 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 152px; }\",\".framer-5PvxT .framer-1d4otyv { aspect-ratio: 5.760869565217392 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); position: relative; width: 167px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5PvxT.framer-72rtr7, .framer-5PvxT .framer-7ys4x8, .framer-5PvxT .framer-1gpzwpz, .framer-5PvxT .framer-w01mte, .framer-5PvxT .framer-12sbcts, .framer-5PvxT .framer-1tyjfst, .framer-5PvxT .framer-m01lsf, .framer-5PvxT .framer-nrdkc9, .framer-5PvxT .framer-17nmhic, .framer-5PvxT .framer-1lsm01d, .framer-5PvxT .framer-1gyl5s4, .framer-5PvxT .framer-1prv59b, .framer-5PvxT .framer-1j0za7y, .framer-5PvxT .framer-gy2od5, .framer-5PvxT .framer-1nupjgc, .framer-5PvxT .framer-t4uebv, .framer-5PvxT .framer-12b2go5, .framer-5PvxT .framer-zpcr5b, .framer-5PvxT .framer-13j08s8, .framer-5PvxT .framer-10xz6gv, .framer-5PvxT .framer-jtlrpz, .framer-5PvxT .framer-1cc1mtv, .framer-5PvxT .framer-1izuivu, .framer-5PvxT .framer-13sjd7w { gap: 0px; } .framer-5PvxT.framer-72rtr7 > *, .framer-5PvxT .framer-m01lsf > *, .framer-5PvxT .framer-17nmhic > *, .framer-5PvxT .framer-1gyl5s4 > *, .framer-5PvxT .framer-1j0za7y > *, .framer-5PvxT .framer-1nupjgc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-5PvxT.framer-72rtr7 > :first-child, .framer-5PvxT .framer-7ys4x8 > :first-child, .framer-5PvxT .framer-1gpzwpz > :first-child, .framer-5PvxT .framer-12sbcts > :first-child, .framer-5PvxT .framer-1tyjfst > :first-child, .framer-5PvxT .framer-m01lsf > :first-child, .framer-5PvxT .framer-nrdkc9 > :first-child, .framer-5PvxT .framer-17nmhic > :first-child, .framer-5PvxT .framer-1lsm01d > :first-child, .framer-5PvxT .framer-1gyl5s4 > :first-child, .framer-5PvxT .framer-1prv59b > :first-child, .framer-5PvxT .framer-1j0za7y > :first-child, .framer-5PvxT .framer-gy2od5 > :first-child, .framer-5PvxT .framer-1nupjgc > :first-child, .framer-5PvxT .framer-12b2go5 > :first-child { margin-top: 0px; } .framer-5PvxT.framer-72rtr7 > :last-child, .framer-5PvxT .framer-7ys4x8 > :last-child, .framer-5PvxT .framer-1gpzwpz > :last-child, .framer-5PvxT .framer-12sbcts > :last-child, .framer-5PvxT .framer-1tyjfst > :last-child, .framer-5PvxT .framer-m01lsf > :last-child, .framer-5PvxT .framer-nrdkc9 > :last-child, .framer-5PvxT .framer-17nmhic > :last-child, .framer-5PvxT .framer-1lsm01d > :last-child, .framer-5PvxT .framer-1gyl5s4 > :last-child, .framer-5PvxT .framer-1prv59b > :last-child, .framer-5PvxT .framer-1j0za7y > :last-child, .framer-5PvxT .framer-gy2od5 > :last-child, .framer-5PvxT .framer-1nupjgc > :last-child, .framer-5PvxT .framer-12b2go5 > :last-child { margin-bottom: 0px; } .framer-5PvxT .framer-7ys4x8 > *, .framer-5PvxT .framer-12sbcts > *, .framer-5PvxT .framer-nrdkc9 > *, .framer-5PvxT .framer-1lsm01d > *, .framer-5PvxT .framer-1prv59b > *, .framer-5PvxT .framer-gy2od5 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-5PvxT .framer-1gpzwpz > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-5PvxT .framer-w01mte > *, .framer-5PvxT .framer-t4uebv > *, .framer-5PvxT .framer-zpcr5b > *, .framer-5PvxT .framer-13j08s8 > *, .framer-5PvxT .framer-10xz6gv > *, .framer-5PvxT .framer-jtlrpz > *, .framer-5PvxT .framer-1cc1mtv > *, .framer-5PvxT .framer-1izuivu > *, .framer-5PvxT .framer-13sjd7w > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-5PvxT .framer-w01mte > :first-child, .framer-5PvxT .framer-t4uebv > :first-child, .framer-5PvxT .framer-zpcr5b > :first-child, .framer-5PvxT .framer-13j08s8 > :first-child, .framer-5PvxT .framer-10xz6gv > :first-child, .framer-5PvxT .framer-jtlrpz > :first-child, .framer-5PvxT .framer-1cc1mtv > :first-child, .framer-5PvxT .framer-1izuivu > :first-child, .framer-5PvxT .framer-13sjd7w > :first-child { margin-left: 0px; } .framer-5PvxT .framer-w01mte > :last-child, .framer-5PvxT .framer-t4uebv > :last-child, .framer-5PvxT .framer-zpcr5b > :last-child, .framer-5PvxT .framer-13j08s8 > :last-child, .framer-5PvxT .framer-10xz6gv > :last-child, .framer-5PvxT .framer-jtlrpz > :last-child, .framer-5PvxT .framer-1cc1mtv > :last-child, .framer-5PvxT .framer-1izuivu > :last-child, .framer-5PvxT .framer-13sjd7w > :last-child { margin-right: 0px; } .framer-5PvxT .framer-1tyjfst > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-5PvxT .framer-12b2go5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-5PvxT.framer-72rtr7 { width: 810px; } .framer-5PvxT .framer-1tyjfst { padding: 32px 64px 64px 64px; } .framer-5PvxT .framer-1iextg4, .framer-5PvxT .framer-ia0vf4, .framer-5PvxT .framer-1m3fdmt, .framer-5PvxT .framer-9bn5gm { height: var(--framer-aspect-ratio-supported, 244px); }}\",\"@media (max-width: 809px) { .framer-5PvxT.framer-72rtr7 { width: 390px; } .framer-5PvxT .framer-7ys4x8 { padding: 24px; } .framer-5PvxT .framer-1gpzwpz { align-content: center; align-items: center; } .framer-5PvxT .framer-w01mte { width: min-content; } .framer-5PvxT .framer-12sbcts { height: 64px; width: var(--framer-aspect-ratio-supported, 64px); } .framer-5PvxT .framer-1tyjfst { padding: 16px 24px 24px 24px; } .framer-5PvxT .framer-sljspy { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: wrap; gap: 24px; width: min-content; } .framer-5PvxT .framer-m01lsf, .framer-5PvxT .framer-17nmhic, .framer-5PvxT .framer-1gyl5s4, .framer-5PvxT .framer-1j0za7y { align-self: unset; width: 320px; } .framer-5PvxT .framer-1iextg4, .framer-5PvxT .framer-ia0vf4, .framer-5PvxT .framer-1m3fdmt, .framer-5PvxT .framer-9bn5gm { height: var(--framer-aspect-ratio-supported, 240px); } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-5PvxT .framer-sljspy { gap: 0px; } .framer-5PvxT .framer-sljspy > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-5PvxT .framer-sljspy > :first-child { margin-left: 0px; } .framer-5PvxT .framer-sljspy > :last-child { margin-right: 0px; } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2417\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wx3nVDEIW\":{\"layout\":[\"fixed\",\"auto\"]},\"EsqxUGzC5\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"C_zJutueV\":{\"pattern\":\":C_zJutueV\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-5PvxT\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:2417,width:1200};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{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_nVMrMxCp50SjIw2boKoduKmMEVuGKYMZ1rib2Bg-4.woff2\",weight:\"600\"}]},...NavigationFonts,...ButtonsFonts,...TickerFonts,...ContactFormFooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"C_zJutueV\\\":{\\\"pattern\\\":\\\":C_zJutueV\\\",\\\"name\\\":\\\"footer\\\"}}\",\"framerIntrinsicHeight\":\"2417\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wx3nVDEIW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EsqxUGzC5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\"}},\"__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", "NavigationFonts", "getFonts", "zsZ2G_7iq_default", "ButtonsFonts", "weIwb8rR7_default", "TickerFonts", "Ticker", "ContactFormFooterFonts", "da_tcwAis_default", "breakpoints", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "zsZ2G_7iq_default", "Image2", "getLoadingLazyAtYPosition", "x", "RichText2", "Link", "ResolveLinks", "resolvedLinks", "weIwb8rR7_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "Ticker", "SVG", "da_tcwAis_default", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "NavigationFonts", "ButtonsFonts", "TickerFonts", "ContactFormFooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
