{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/iQUuqtdXHYt0v5Oj3DNB/3yr327akQugtwEuFR8GS/WUvbUs5sl.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 MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\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 axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea: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;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);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)})},index+\"-original\");});}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:isLayerTooBig===true?\"auto\":\"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(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// 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||supportsWaapi){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||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":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\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (d6b3045)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/DKX01bHLIotTvcH68Nov/WYJIelZuunKswQ6eBDpN/avyMmoGPn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/v09XVQtlVACou4TQX4Xi/UM62APBKffPkmryJRkZJ/m0qGzQa9_.js\";const TickerFonts=getFonts(Ticker);const MotionSectionWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.section));const cycleOrder=[\"GtTS_4CRc\",\"V41CcSSkD\",\"EOWqKWVML\"];const serializationHash=\"framer-zPjqw\";const variantClassNames={EOWqKWVML:\"framer-v-yguzkn\",GtTS_4CRc:\"framer-v-1tcuzmc\",V41CcSSkD:\"framer-v-1ay55rf\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={delay:0,duration:1.6,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"GtTS_4CRc\",Phone:\"EOWqKWVML\",Tablet:\"V41CcSSkD\"};const getProps=({background,height,id,radius,width,...props})=>{var _ref,_ref1,_humanReadableVariantMap_props_variant,_ref2;return{...props,Mv50WRU8I:(_ref=radius!==null&&radius!==void 0?radius:props.Mv50WRU8I)!==null&&_ref!==void 0?_ref:\"0px\",v5ZPhskUW:(_ref1=background!==null&&background!==void 0?background:props.v5ZPhskUW)!==null&&_ref1!==void 0?_ref1:\"var(--token-f1ca1924-242d-42bd-8816-5ef5f7ea0eb5, rgb(0, 0, 0))\",variant:(_ref2=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref2!==void 0?_ref2:\"GtTS_4CRc\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,v5ZPhskUW,Mv50WRU8I,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"GtTS_4CRc\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"EOWqKWVML\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"EOWqKWVML\")return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1tcuzmc\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"GtTS_4CRc\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:v5ZPhskUW,borderBottomLeftRadius:radiusForCorner(Mv50WRU8I,3),borderBottomRightRadius:radiusForCorner(Mv50WRU8I,2),borderTopLeftRadius:radiusForCorner(Mv50WRU8I,0),borderTopRightRadius:radiusForCorner(Mv50WRU8I,1),...style},...addPropertyOverrides({EOWqKWVML:{\"data-framer-name\":\"Phone\"},V41CcSSkD:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ru1uoj\",\"data-framer-name\":\"Section Titles\",layoutDependency:layoutDependency,layoutId:\"VXcWPu37B\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3tw5b8\",layoutDependency:layoutDependency,layoutId:\"jzpLJ8Knz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-of9x8h\",\"data-styles-preset\":\"m0qGzQa9_\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-c42ba4b5-ef6b-4077-8787-62f74d9ba03d, rgb(255, 255, 255)))\"},children:\"who we've worked with\"})}),className:\"framer-5xj88r\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"z48TL70mW\",style:{\"--extracted-1of0zx5\":\"var(--token-c42ba4b5-ef6b-4077-8787-62f74d9ba03d, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"72px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1ca25e20-e5f3-4027-a31f-fad7e986210b, rgb(255, 255, 255)))\"},children:\"Variety is the spice of life, and a wealth of experience at your disposal. \"})}),className:\"framer-1t8cbzc\",fonts:[\"CUSTOM;Roobert Medium\"],layoutDependency:layoutDependency,layoutId:\"DuQfrAKoh\",style:{\"--extracted-a0htzi\":\"var(--token-1ca25e20-e5f3-4027-a31f-fad7e986210b, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EOWqKWVML:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1ca25e20-e5f3-4027-a31f-fad7e986210b, rgb(255, 255, 255)))\"},children:\"Variety is the spice of life, and a wealth of experience at your disposal. \"})})},V41CcSSkD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgTWVkaXVt\",\"--framer-font-family\":'\"Roobert Medium\", \"Roobert Medium Placeholder\", sans-serif',\"--framer-font-size\":\"58px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"100%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-1ca25e20-e5f3-4027-a31f-fad7e986210b, rgb(255, 255, 255)))\"},children:\"Variety is the spice of life, and a wealth of experience at your disposal. \"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1phl9w2\",layoutDependency:layoutDependency,layoutId:\"PEGTp2Tw4\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-45om2i\",\"data-styles-preset\":\"avyMmoGPn\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c42ba4b5-ef6b-4077-8787-62f74d9ba03d, rgba(255, 255, 255, 0.7)))\"},children:\"From logistics to e-commerce, artificial intelligence to augmented reality, and B2B to B2C, we\u2019ve been there.\"})}),className:\"framer-1uycykx\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yjgJmZ2ju\",style:{\"--extracted-r6o4lv\":\"var(--token-c42ba4b5-ef6b-4077-8787-62f74d9ba03d, rgba(255, 255, 255, 0.7))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({EOWqKWVML:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgUmVndWxhcg==\",\"--framer-font-family\":'\"Roobert Regular\", \"Roobert Regular Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c42ba4b5-ef6b-4077-8787-62f74d9ba03d, rgba(255, 255, 255, 0.7)))\"},children:\"From logistics to e-commerce, artificial intelligence to augmented reality, and B2B to B2C, we\u2019ve been there.\"})}),fonts:[\"CUSTOM;Roobert Regular\"]},V41CcSSkD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1Jvb2JlcnQgUmVndWxhcg==\",\"--framer-font-family\":'\"Roobert Regular\", \"Roobert Regular Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-c42ba4b5-ef6b-4077-8787-62f74d9ba03d, rgba(255, 255, 255, 0.7)))\"},children:\"From logistics to e-commerce, artificial intelligence to augmented reality, and B2B to B2C, we\u2019ve been there.\"})}),fonts:[\"CUSTOM;Roobert Regular\"]}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-7pc40z\",\"data-framer-name\":\"Logo Grid\",layoutDependency:layoutDependency,layoutId:\"efAy1TYCD\",children:/*#__PURE__*/_jsxs(MotionSectionWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1kkgk7t\",\"data-framer-appear-id\":\"1kkgk7t\",\"data-framer-name\":\"Logos Ticker\",initial:animation1,layoutDependency:layoutDependency,layoutId:\"XPz_LbNpL\",optimized:true,children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-25htgg-container\",layoutDependency:layoutDependency,layoutId:\"rBwsYG5pt-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:8,height:\"100%\",hoverFactor:1,id:\"rBwsYG5pt\",layoutId:\"rBwsYG5pt\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rwsx7u\",\"data-framer-name\":\"logo-wilson-parking\",layoutDependency:layoutDependency,layoutId:\"UjK6lkdum\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-j77uvl\",\"data-framer-name\":\"Wilson_Parking\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"jRFtR6Wsz\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M54.638 164.485h41.745a4.652 4.652 0 0 1 4.638 4.639v41.752a4.652 4.652 0 0 1-4.638 4.639H54.638A4.653 4.653 0 0 1 50 210.876v-41.752a4.653 4.653 0 0 1 4.638-4.639Zm25.28 18.557c-.465-1.16-.233-2.552.927-3.248l3.015-2.087c1.16-.464 2.55-.232 3.246.927l10.669 18.325c.463 1.159.232 2.551-.928 3.247l-3.247 1.856c-1.16.463-2.55.231-3.247-.928l-10.436-18.092Zm-25.975-3.248c-1.16.696-1.392 2.088-.928 3.016l10.436 18.092c.696 1.159 2.087 1.391 3.247.928l3.247-1.856c1.16-.696 1.391-2.088.696-3.015l-10.437-18.325c-.464-.927-1.855-1.391-3.015-.695l-3.246 1.855Zm13.45 0c-1.159.696-1.39 2.088-.927 3.016l10.436 18.092c.696 1.159 2.088 1.391 3.247.928l3.247-1.856c1.16-.696 1.391-2.088.928-3.247l-10.437-18.093c-.695-.927-2.087-1.391-3.246-.695l-3.247 1.855Zm169.466 5.063a6.784 6.784 0 0 1-2.227 5.463 9.762 9.762 0 0 1-6.457 1.886h-5.419v8.656h-4.245v-23.385h9.634a9.771 9.771 0 0 1 6.458 1.901 6.706 6.706 0 0 1 2.256 5.479Zm-14.103-3.95v7.899h5.033a5.626 5.626 0 0 0 3.607-.98 4.304 4.304 0 0 0 0-5.939 5.626 5.626 0 0 0-3.607-.98h-5.033Zm-94.534 19.955h4.766l6.383-23.385h-4.246l-4.631 18.099-4.543-18.099h-4.454l-4.542 18.099-4.661-18.039h-4.454l6.428 23.325h4.736l4.646-17.995 4.572 17.995Zm13.599-19.302h4.453v-4.083h-4.453v4.083Zm.148 19.302h4.172v-16.659h-4.172v16.659Zm12.47-23.385v23.385h-4.186v-23.385h4.186Zm4.854 22.301a9.455 9.455 0 0 0 5.463 1.411 8.213 8.213 0 0 0 4.988-1.381 4.82 4.82 0 0 0 .832-7.008 5.936 5.936 0 0 0-3.4-1.618l-3.236-.55a5.32 5.32 0 0 1-1.989-.668 1.36 1.36 0 0 1-.55-1.188 1.635 1.635 0 0 1 .787-1.484 3.882 3.882 0 0 1 2.108-.52 4.01 4.01 0 0 1 2.257.579c.276.169.511.398.685.671.175.272.286.581.324.903h3.83a5.064 5.064 0 0 0-2.108-3.771 8.418 8.418 0 0 0-5.018-1.322 7.537 7.537 0 0 0-4.824 1.485 4.598 4.598 0 0 0-1.9 3.801 4.213 4.213 0 0 0 1.172 3.133 6.579 6.579 0 0 0 3.593 1.603l2.969.52a5.016 5.016 0 0 1 1.974.683 1.35 1.35 0 0 1 .579 1.188 1.733 1.733 0 0 1-.861 1.484 4.151 4.151 0 0 1-2.271.55 4.621 4.621 0 0 1-2.568-.668 2.437 2.437 0 0 1-1.158-1.842h-3.994a5.32 5.32 0 0 0 2.316 4.009Zm22.773-15.961a8.072 8.072 0 0 1 6.071 2.376 9.795 9.795 0 0 1 0 12.635 9.024 9.024 0 0 1-12.173 0 9.803 9.803 0 0 1 0-12.635 8.078 8.078 0 0 1 6.102-2.376Zm0 3.103a3.655 3.655 0 0 0-3.103 1.485 8.153 8.153 0 0 0 0 8.226 4.008 4.008 0 0 0 6.205 0 8.121 8.121 0 0 0 0-8.211 3.651 3.651 0 0 0-3.102-1.5Zm15.246-2.717H193.2v16.659h4.171v-8.968a5.407 5.407 0 0 1 .98-3.474 3.357 3.357 0 0 1 2.746-1.203 3.053 3.053 0 0 1 2.479 1.01 4.52 4.52 0 0 1 .861 2.969v9.666h4.172v-10.705a6.442 6.442 0 0 0-1.618-4.662 5.94 5.94 0 0 0-4.454-1.678 5.947 5.947 0 0 0-3.221.861 5.023 5.023 0 0 0-2.004 2.331v-2.806Zm51.631 16.659h4.023a17.482 17.482 0 0 1-.178-1.841c-.074-.638-.074-1.395-.074-2.301v-6.4a6.128 6.128 0 0 0-1.811-4.795 7.61 7.61 0 0 0-5.285-1.633 7.85 7.85 0 0 0-5.018 1.484 5.742 5.742 0 0 0-2.197 4.143h4.023a2.625 2.625 0 0 1 .906-1.856 3.235 3.235 0 0 1 2.167-.683 3.168 3.168 0 0 1 2.316.787 2.96 2.96 0 0 1 .816 2.212v.787l-4.973.549a8.508 8.508 0 0 0-4.453 1.633 4.766 4.766 0 0 0 0 6.964 6.009 6.009 0 0 0 4.052 1.306 7.232 7.232 0 0 0 3.474-.786 4.352 4.352 0 0 0 2.049-2.183 12.95 12.95 0 0 0 0 1.307c.017.163.044.327.072.491.045.268.091.539.091.815Zm-7.026-3.811a1.935 1.935 0 0 1-.159-.866v-.059a1.879 1.879 0 0 1 .609-1.515 4.947 4.947 0 0 1 2.434-.772l3.697-.43v1.009a3.643 3.643 0 0 1-1.188 2.836 4.446 4.446 0 0 1-2.969 1.054 2.966 2.966 0 0 1-1.9-.549 1.938 1.938 0 0 1-.524-.708Zm23.222-13.145c.233-.015.466-.015.698 0 .186.011.37.041.549.089v3.861l-.742-.104h-.861a4.31 4.31 0 0 0-3.4 1.485 5.686 5.686 0 0 0-1.261 3.919v7.706h-4.187v-16.659h4.112v3.727a5.95 5.95 0 0 1 1.93-2.97 4.92 4.92 0 0 1 3.162-1.054Zm15.024 16.956h4.809l-7.289-9.725 7.022-6.934h-4.825l-7.051 7.127v-13.853h-4.216v23.385h4.171v-5.167l1.93-1.856 5.449 7.023Zm10.881-19.302h-4.454v-4.083h4.454v4.083Zm-.134 19.302h-4.171v-16.659h4.171v16.659Zm8.299-16.659h-4.112v16.659h4.171v-8.968a5.405 5.405 0 0 1 .98-3.474 3.346 3.346 0 0 1 2.746-1.203 3.083 3.083 0 0 1 2.479 1.01c.615.863.914 1.912.847 2.969v9.666h4.186v-10.705a6.434 6.434 0 0 0-1.618-4.662 6.633 6.633 0 0 0-7.675-.817 5.017 5.017 0 0 0-2.004 2.331v-2.806Zm22.342 19.866a4.2 4.2 0 0 0 1.697-.226 4.202 4.202 0 0 0 1.465-.887 4.464 4.464 0 0 0 1.083-3.267v-2.346a5.31 5.31 0 0 1-2.093 2.198 6.134 6.134 0 0 1-3.162.831 6.736 6.736 0 0 1-5.314-2.286 8.789 8.789 0 0 1-2.004-5.939 8.666 8.666 0 0 1 2.019-5.939 6.717 6.717 0 0 1 5.299-2.287 6.15 6.15 0 0 1 3.192.846 5.168 5.168 0 0 1 2.123 2.257v-2.717h4.127v14.966a7.435 7.435 0 0 1-2.212 5.806 8.905 8.905 0 0 1-6.22 2.034 9.892 9.892 0 0 1-5.434-1.336 5.636 5.636 0 0 1-2.538-3.831h4.157a2.711 2.711 0 0 0 1.261 1.663 5.05 5.05 0 0 0 2.554.46Zm.104-6.77a3.963 3.963 0 0 0 3.117-1.351 5.201 5.201 0 0 0 1.188-3.549v-.683a5.125 5.125 0 0 0-1.188-3.519 3.95 3.95 0 0 0-1.407-1.026 3.955 3.955 0 0 0-1.71-.325 3.779 3.779 0 0 0-3.103 1.411 6.96 6.96 0 0 0 0 7.646 3.775 3.775 0 0 0 3.103 1.396Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1a3n0pd\",\"data-framer-name\":\"logo-westfarmers\",layoutDependency:layoutDependency,layoutId:\"rDahKC7Un\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:190,pixelHeight:380,pixelWidth:380,src:\"https://framerusercontent.com/images/wfIbdRr8kyad91VIWijcb9ZV8Is.svg\"},className:\"framer-aftwya\",\"data-framer-name\":\"Wesfarmers\",layoutDependency:layoutDependency,layoutId:\"LFU0qmBee\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hgrgim\",\"data-framer-name\":\"logo-transperth\",layoutDependency:layoutDependency,layoutId:\"m7xWWwue_\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1q0uylx\",\"data-framer-name\":\"Transperth\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"VL0JUtYUz\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 140\"><path d=\"M 18.421 64.172 L 18.691 62.237 C 18.694 62.217 18.712 62.202 18.733 62.202 L 28.831 62.202 C 28.837 62.202 28.843 62.203 28.848 62.206 C 28.859 62.21 28.868 62.22 28.871 62.231 C 28.873 62.237 28.873 62.243 28.872 62.249 L 28.612 64.181 C 28.61 64.191 28.606 64.2 28.598 64.207 C 28.59 64.214 28.58 64.217 28.57 64.217 L 24.757 64.217 C 24.747 64.217 24.737 64.22 24.729 64.227 C 24.722 64.234 24.717 64.243 24.716 64.253 L 23.328 74.282 C 23.326 74.303 23.308 74.318 23.287 74.317 L 20.838 74.319 C 20.826 74.32 20.814 74.314 20.806 74.305 C 20.798 74.296 20.794 74.284 20.796 74.272 L 22.183 64.26 C 22.186 64.241 22.176 64.223 22.159 64.215 C 22.154 64.213 22.148 64.212 22.142 64.212 L 18.463 64.219 C 18.457 64.219 18.451 64.218 18.445 64.215 C 18.44 64.213 18.435 64.21 18.431 64.205 C 18.423 64.196 18.42 64.184 18.421 64.172 Z M 88.461 67.439 C 89.256 66.576 90.427 65.836 91.588 66.168 C 92.616 66.461 93.173 67.474 93.043 68.513 C 92.8 70.441 92.542 72.368 92.271 74.294 C 92.27 74.301 92.266 74.307 92.261 74.312 C 92.255 74.317 92.248 74.319 92.241 74.319 L 91.23 74.317 C 91.219 74.317 91.208 74.312 91.201 74.304 C 91.198 74.3 91.195 74.295 91.193 74.29 C 91.192 74.285 91.192 74.279 91.192 74.274 C 91.43 72.486 91.668 70.694 91.904 68.9 C 91.962 68.456 91.973 67.884 91.703 67.529 C 91.18 66.84 90.024 67.273 89.478 67.742 C 89.035 68.123 88.62 68.536 88.236 68.977 C 88.191 69.028 88.163 69.092 88.154 69.16 L 87.463 74.274 C 87.458 74.305 87.441 74.321 87.409 74.321 L 86.435 74.317 C 86.409 74.317 86.387 74.3 86.381 74.276 C 86.378 74.268 86.378 74.26 86.379 74.252 L 87.965 62.347 C 87.969 62.316 87.996 62.292 88.027 62.292 L 89.008 62.287 C 89.039 62.287 89.053 62.302 89.048 62.332 L 88.385 67.403 C 88.373 67.495 88.398 67.507 88.461 67.439 Z M 83.672 66.262 L 85.487 66.262 C 85.519 66.262 85.533 66.277 85.529 66.308 L 85.426 67.139 C 85.422 67.172 85.395 67.196 85.362 67.196 L 83.551 67.196 C 83.507 67.196 83.482 67.217 83.473 67.26 C 83.102 69.155 82.833 70.709 82.666 71.922 C 82.564 72.672 82.798 73.655 83.759 73.527 C 84.262 73.461 84.757 73.072 85.121 72.702 C 85.126 72.696 85.133 72.692 85.14 72.691 C 85.147 72.689 85.155 72.69 85.162 72.693 C 85.168 72.696 85.174 72.7 85.179 72.706 C 85.183 72.713 85.185 72.72 85.185 72.727 L 85.184 73.832 C 85.185 73.859 85.171 73.885 85.148 73.899 C 84.713 74.182 84.413 74.342 84.246 74.381 C 82.209 74.862 81.283 73.317 81.581 71.536 C 81.821 70.107 82.086 68.686 82.377 67.274 C 82.381 67.254 82.376 67.233 82.363 67.217 C 82.357 67.21 82.349 67.203 82.34 67.199 C 82.331 67.195 82.321 67.193 82.311 67.193 L 81.036 67.197 C 81.021 67.197 81.006 67.19 80.995 67.179 C 80.99 67.173 80.986 67.166 80.984 67.158 C 80.982 67.151 80.981 67.143 80.982 67.135 L 81.079 66.316 C 81.083 66.279 81.103 66.261 81.141 66.261 L 82.466 66.263 C 82.482 66.263 82.498 66.257 82.51 66.247 C 82.523 66.237 82.531 66.222 82.534 66.206 L 82.848 64.553 C 82.854 64.519 82.874 64.502 82.909 64.502 L 83.862 64.497 C 83.92 64.497 83.944 64.526 83.933 64.582 L 83.621 66.2 C 83.613 66.241 83.63 66.262 83.672 66.262 Z M 68.725 70.355 C 68.624 71.501 69.125 72.884 70.284 73.296 C 71.377 73.686 72.647 73.048 73.397 72.264 C 73.402 72.259 73.409 72.255 73.417 72.253 C 73.424 72.252 73.432 72.252 73.44 72.255 C 73.454 72.261 73.464 72.275 73.464 72.291 L 73.467 73.45 C 73.467 73.503 73.443 73.553 73.402 73.586 C 71.912 74.784 69.67 74.869 68.426 73.28 C 66.953 71.399 67.461 67.711 69.642 66.502 C 70.803 65.859 72.254 65.958 73.126 67.007 C 73.843 67.869 74.022 69.138 73.874 70.256 C 73.87 70.286 73.854 70.301 73.824 70.301 L 68.787 70.299 C 68.771 70.299 68.756 70.305 68.745 70.315 C 68.733 70.325 68.726 70.339 68.725 70.355 Z M 70.96 67.185 C 70.003 67.279 69.097 68.254 68.919 69.215 C 68.916 69.229 68.92 69.244 68.929 69.255 C 68.939 69.266 68.952 69.273 68.967 69.273 L 72.796 69.271 C 72.827 69.271 72.842 69.255 72.842 69.223 C 72.834 68.102 72.236 67.059 70.96 67.185 Z M 76.846 67.827 C 77.6 66.815 78.467 65.568 79.954 66.305 C 79.991 66.323 80.006 66.352 80 66.392 L 79.866 67.297 C 79.86 67.343 79.835 67.357 79.794 67.337 C 79.211 67.061 78.689 67.136 78.228 67.559 C 77.66 68.08 77.153 68.706 76.709 69.435 C 76.613 69.592 76.552 69.767 76.529 69.948 C 76.329 71.387 76.136 72.825 75.949 74.263 C 75.946 74.279 75.939 74.294 75.927 74.304 C 75.915 74.315 75.9 74.32 75.884 74.32 L 74.918 74.325 C 74.873 74.325 74.853 74.302 74.859 74.256 L 75.916 66.315 C 75.921 66.28 75.94 66.262 75.977 66.262 L 76.96 66.261 C 76.997 66.261 77.014 66.28 77.008 66.317 L 76.806 67.81 C 76.798 67.868 76.811 67.874 76.846 67.827 Z M 30.177 67.297 C 31.02 66.114 32.297 65.576 33.344 66.962 C 33.366 66.991 33.369 67.022 33.353 67.054 L 32.321 69.161 C 32.298 69.207 32.271 69.21 32.239 69.17 C 32.101 68.989 31.968 68.779 31.815 68.65 C 31.081 68.027 30.334 68.599 29.897 69.255 C 29.79 69.417 29.716 69.64 29.676 69.924 C 29.474 71.369 29.275 72.814 29.08 74.259 C 29.075 74.295 29.054 74.313 29.017 74.314 L 26.772 74.319 C 26.756 74.319 26.74 74.312 26.73 74.3 C 26.72 74.288 26.715 74.272 26.717 74.256 L 27.821 66.339 C 27.827 66.289 27.856 66.264 27.906 66.264 L 30.132 66.265 C 30.139 66.265 30.145 66.266 30.152 66.269 C 30.171 66.278 30.182 66.298 30.178 66.319 L 30.046 67.245 C 30.017 67.443 30.061 67.461 30.178 67.297 Z M 38.042 73.649 C 37.65 73.907 37.393 74.067 37.271 74.13 C 35.997 74.789 34.559 74.537 33.719 73.379 C 32.743 72.034 32.882 69.941 33.671 68.551 C 35.166 65.924 38.826 65.79 41.42 66.398 C 41.445 66.403 41.456 66.419 41.453 66.445 L 40.359 74.262 C 40.355 74.292 40.338 74.308 40.306 74.308 L 38.061 74.311 C 38.017 74.311 37.997 74.289 38.004 74.245 L 38.094 73.683 C 38.095 73.677 38.095 73.67 38.092 73.664 C 38.089 73.658 38.085 73.652 38.079 73.649 C 38.074 73.645 38.067 73.643 38.06 73.643 C 38.054 73.643 38.047 73.645 38.042 73.649 Z M 35.599 70.193 C 35.332 71.237 35.399 72.987 37.032 72.659 C 37.498 72.565 37.917 72.353 38.289 72.023 C 38.318 71.998 38.336 71.963 38.342 71.925 L 38.849 68.203 C 38.853 68.173 38.839 68.155 38.809 68.151 C 37.222 67.904 35.987 68.681 35.599 70.193 Z M 45.871 67.086 C 45.87 67.095 45.871 67.105 45.875 67.113 C 45.881 67.125 45.893 67.134 45.906 67.137 C 45.92 67.14 45.934 67.137 45.945 67.129 C 47.881 65.481 51.132 65.684 50.7 69.054 C 50.476 70.795 50.245 72.533 50.007 74.267 C 50.005 74.282 49.998 74.295 49.987 74.304 C 49.977 74.313 49.963 74.318 49.949 74.318 L 47.685 74.317 C 47.679 74.317 47.673 74.316 47.667 74.313 C 47.662 74.311 47.657 74.307 47.653 74.302 C 47.648 74.297 47.645 74.292 47.643 74.285 C 47.642 74.279 47.641 74.273 47.642 74.267 C 47.873 72.611 48.103 70.951 48.331 69.287 C 48.369 69.007 48.335 68.722 48.23 68.431 C 47.739 67.086 46.091 68.568 45.634 69.118 C 45.611 69.145 45.597 69.177 45.592 69.212 L 44.891 74.274 C 44.887 74.304 44.87 74.319 44.839 74.319 L 42.595 74.322 C 42.586 74.322 42.578 74.32 42.57 74.317 C 42.562 74.313 42.555 74.308 42.55 74.302 C 42.544 74.295 42.54 74.287 42.538 74.279 C 42.535 74.271 42.535 74.263 42.536 74.254 L 43.639 66.317 C 43.644 66.28 43.665 66.262 43.702 66.262 L 45.956 66.262 C 45.97 66.262 45.983 66.268 45.992 66.279 C 46.001 66.289 46.004 66.303 46.002 66.317 Z M 54.901 72.371 C 55.619 71.901 53.988 70.809 53.621 70.542 C 53.047 70.124 52.416 69.38 52.459 68.627 C 52.507 67.814 52.818 67.187 53.394 66.746 C 54.653 65.784 56.538 66.03 57.866 66.83 C 57.879 66.838 57.89 66.849 57.897 66.863 C 57.904 66.876 57.906 66.891 57.905 66.906 L 57.73 68.687 C 57.729 68.694 57.727 68.7 57.723 68.706 C 57.719 68.712 57.714 68.716 57.708 68.719 C 57.697 68.726 57.682 68.726 57.67 68.719 C 57.02 68.392 56.32 68.173 55.599 68.072 C 55.286 68.026 54.792 68.136 54.907 68.555 C 54.968 68.775 55.265 69.054 55.492 69.213 C 56.174 69.693 56.678 70.128 57.004 70.519 C 57.831 71.514 57.673 72.921 56.704 73.753 C 55.425 74.853 53.238 74.507 51.875 73.733 C 51.847 73.717 51.836 73.694 51.843 73.664 L 52.153 72.001 C 52.16 71.963 52.181 71.951 52.216 71.964 C 52.872 72.199 54.271 72.783 54.901 72.371 Z M 60.761 74.382 L 60.237 78.143 C 60.231 78.187 60.206 78.208 60.162 78.208 L 59.132 78.208 C 59.091 78.208 59.074 78.189 59.08 78.148 L 60.681 66.316 C 60.686 66.281 60.705 66.264 60.739 66.264 C 61.729 66.251 63.029 66.197 63.811 66.316 C 65.682 66.602 66.743 68.149 66.604 70.004 C 66.448 72.086 65.001 74.288 62.763 74.43 C 62.199 74.466 61.554 74.434 60.827 74.333 C 60.789 74.328 60.767 74.344 60.761 74.382 Z M 65.11 68.467 C 64.41 67.323 62.896 67.411 61.763 67.433 C 61.704 67.434 61.67 67.465 61.662 67.524 L 60.946 73.038 C 60.943 73.058 60.948 73.08 60.96 73.097 C 60.972 73.114 60.989 73.126 61.01 73.131 C 62.275 73.446 63.727 73.407 64.608 72.294 C 65.309 71.409 65.722 69.467 65.11 68.467 Z M 107.074 67.914 C 107.065 67.915 107.056 67.914 107.048 67.911 C 107.03 67.905 107.016 67.892 107.009 67.876 C 107.006 67.867 107.004 67.858 107.004 67.85 C 107.04 64.635 107.887 61.294 109.035 58.305 C 109.05 58.264 109.089 58.236 109.133 58.234 C 112.706 58.046 116.282 59.385 118.619 62.147 C 118.633 62.164 118.64 62.185 118.639 62.207 C 118.638 62.228 118.629 62.249 118.613 62.263 C 115.483 65.3 111.435 67.428 107.074 67.914 Z M 108.449 58.393 C 107.906 59.793 107.344 61.186 106.855 62.606 C 106.259 64.329 105.864 66.116 105.678 67.93 C 105.674 67.97 105.652 67.991 105.613 67.994 C 105.53 67.999 105.416 68.005 105.272 68.009 C 103.07 68.073 100.874 67.772 98.771 67.118 C 98.723 67.104 98.696 67.054 98.709 67.007 C 99.919 62.4 103.665 59.032 108.387 58.315 C 108.407 58.313 108.428 58.321 108.441 58.337 C 108.453 58.352 108.457 58.374 108.449 58.393 Z M 119.06 77.18 C 115.731 77.337 112.065 76.445 109.448 74.266 C 107.982 73.045 107.256 71.257 107.097 69.338 C 107.094 69.308 107.108 69.293 107.137 69.292 C 111.936 69.074 116.443 67.833 120.658 65.568 C 120.672 65.56 120.688 65.559 120.703 65.564 C 120.711 65.567 120.717 65.571 120.723 65.577 C 120.728 65.582 120.733 65.589 120.736 65.596 C 122.266 69.426 121.679 73.767 119.249 77.079 C 119.204 77.139 119.135 77.176 119.06 77.18 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 105.634 69.376 C 105.703 75.1 109.676 78.625 114.602 80.719 C 114.624 80.728 114.638 80.749 114.638 80.773 C 114.638 80.797 114.623 80.818 114.601 80.826 C 111.067 82.289 107.152 82.104 103.916 80.068 C 99.739 77.441 97.649 72.679 98.542 67.812 C 98.544 67.803 98.548 67.795 98.553 67.788 C 98.559 67.78 98.566 67.774 98.574 67.77 C 98.591 67.762 98.61 67.762 98.627 67.77 C 100.756 68.791 103.207 69.242 105.555 69.297 C 105.598 69.298 105.633 69.333 105.634 69.376 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:11912815722,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-h37kpu\",\"data-framer-name\":\"logo-tourism\",layoutDependency:layoutDependency,layoutId:\"gWdWKy4eE\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:190,pixelHeight:380,pixelWidth:380,src:\"https://framerusercontent.com/images/81n8DpVv4B48CO7IOQApgqg.svg\"},className:\"framer-1brcwd4\",\"data-framer-name\":\"Tourism_WA\",layoutDependency:layoutDependency,layoutId:\"Xalk9P8Xr\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1y57y4q\",\"data-framer-name\":\"logo-agora\",layoutDependency:layoutDependency,layoutId:\"DpqSRcM7W\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x9g1bp\",\"data-framer-name\":\"Agora\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"xFyYWndau\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M186.886 117.651a1.253 1.253 0 0 1 1.775 1.139v17.137c0 .488-.285.934-.732 1.136l-16.236 7.436 16.236 7.436c.447.203.732.647.732 1.136v17.143a1.252 1.252 0 0 1-1.776 1.133l-37.439-17.143a1.249 1.249 0 0 1-.732-1.136v-9.125c0-5.357 3.153-10.261 8.033-12.494l30.139-13.798Zm-.732 3.086-28.362 12.986a11.276 11.276 0 0 0-6.472 8.785l34.834-15.949v-5.822Zm-26.827 29.425-6.356 2.911 33.183 15.195v-5.821l-26.827-12.285Zm26.827 9.535v-.001l.002.001h-.002Zm0-.001-23.823-10.909 6.356-2.91 17.467 7.998v5.821Zm-34.936-8.571 16.947-7.759 17.985-8.235v-5.822l-34.932 15.994v5.822Zm43.468-33.47 37.441 17.14c.442.207.727.649.731 1.136v9.132c0 5.357-3.154 10.261-8.033 12.494l-30.139 13.798a1.253 1.253 0 0 1-1.199-.082 1.245 1.245 0 0 1-.577-1.051v-17.143c0-.488.285-.934.732-1.136l16.236-7.436-16.236-7.436a1.248 1.248 0 0 1-.732-1.136v-17.143a1.252 1.252 0 0 1 1.775-1.136l.001-.001Zm27.557 21.187 6.356-2.911-33.184-15.192v5.817l26.828 12.285v.001Zm-26.828-9.531v5.817l17.468 7.999 6.357-2.911-23.825-10.907v.002Zm34.937 8.569-16.947 7.759-17.987 8.235v5.821l34.934-15.994v-5.821Zm-34.937 30.387 28.363-12.985a11.273 11.273 0 0 0 6.472-8.785l-34.835 15.948v5.822Zm-119.47 21.537 8.898.03 18.662 44.146-10.09-.033-3.98-9.833-18.55-.059-4.044 9.806-9.841-.029 18.945-44.028Zm10.07 25.797-5.783-14.213-5.873 14.178 11.656.035Zm25.833-3.478v.123l-.001-.001c-.043 12.943 9.327 22.543 22.991 22.586 8.021.026 14.236-3.08 18.761-6.882l.062-19.01-19.052-.061-.026 8.316 9.713.033-.019 6.253c-2.452 1.741-5.586 2.606-9.097 2.596-7.77-.026-13.267-5.919-13.241-13.925v-.125c.023-7.438 5.623-13.614 12.641-13.59 5.077.016 8.08 1.65 11.456 4.475l6.104-7.298c-4.561-3.89-9.32-6.031-17.215-6.057-13.288-.038-23.037 10.121-23.077 22.567Zm55.413.302v-.124c.04-12.445 9.914-22.605 23.449-22.562 13.536.043 23.22 10.143 23.182 22.588v.124c-.04 12.445-9.915 22.605-23.45 22.563-13.54-.046-23.221-10.144-23.181-22.589Zm36.54.118v-.123c.023-7.505-5.47-13.775-13.244-13.801-7.771-.026-13.181 6.087-13.204 13.592v.123c-.024 7.505 5.469 13.775 13.244 13.801 7.776.026 13.179-6.087 13.205-13.592h-.001Zm45.068-21.869-20.057-.066v.001l-.138 43.779 9.651.029.046-14.007 7.583.023 9.356 14.036 11.283.036-10.669-15.667c5.585-2.042 9.422-6.472 9.444-13.538v-.124c.014-4.129-1.293-7.573-3.728-10.019-2.875-2.888-7.192-4.466-12.771-4.483Zm6.72 15.091c-.013 3.689-2.714 6.184-7.416 6.168v-.002l-9.776-.028.04-12.569 9.589.029c4.702.013 7.577 2.147 7.563 6.276v.126Zm39.849-15.257 8.9.03L323 234.684l-10.092-.033-3.98-9.833-18.55-.059-4.044 9.806-9.841-.033 18.945-44.024Zm10.071 25.797-5.782-14.213-5.874 14.178 11.656.035Zm-154.784 37.114h-1.96v8.89h6.403v-1.778h-4.443v-7.112Zm7.28 0h1.96v8.89h-1.96v-8.89Zm6.867 0h-2.161l3.6 8.954h1.732l3.604-8.954h-2.114l-2.33 6.261-2.331-6.261Zm9.417 0h6.721v1.738h-4.775v1.804h4.2v1.74h-4.2v1.866h4.837v1.738h-6.783v-8.886Zm10.348 6.207-1.159 1.386-.001.001a5.7 5.7 0 0 0 3.78 1.428c1.922 0 3.271-.993 3.271-2.757v-.026c0-1.553-1.017-2.2-2.825-2.669-1.542-.393-1.922-.586-1.922-1.169v-.026c0-.432.394-.776 1.145-.776s1.528.33 2.317.878l1.017-1.474c-.903-.725-2.008-1.131-3.308-1.131-1.817 0-3.117 1.065-3.117 2.679v.026c0 1.764 1.159 2.259 2.953 2.717 1.491.38 1.796.635 1.796 1.13v.026c0 .52-.485.838-1.286.838-1.02 0-1.86-.42-2.661-1.081Zm10.755-4.403h-2.711v-1.804h7.383v1.804h-2.71v7.086h-1.959v-7.086h-.003Zm6.677 2.639v.026c0 2.529 1.972 4.575 4.721 4.572 2.751 0 4.749-2.069 4.749-4.598v-.026c0-2.525-1.973-4.571-4.723-4.571-2.749 0-4.747 2.07-4.747 4.597Zm7.42 0v.026c0 1.526-1.097 2.771-2.675 2.771-1.578 0-2.697-1.268-2.697-2.793v-.026c0-1.526 1.094-2.771 2.673-2.771 1.58 0 2.699 1.271 2.699 2.793Zm4.663.026v-.026c0-2.527 1.91-4.597 4.647-4.597 1.68 0 2.684.56 3.515 1.373l-1.247 1.434c-.686-.623-1.389-1.003-2.278-1.003-1.503 0-2.582 1.245-2.582 2.771v.026c0 1.525 1.057 2.793 2.582 2.793 1.017 0 1.642-.406 2.343-1.041l1.247 1.257c-.915.979-1.936 1.588-3.652 1.588-2.629 0-4.575-2.02-4.575-4.575Zm13.026-4.469h-1.962v8.89h1.958v-2.719l1.031-1.067 2.763 3.786h2.356l-3.794-5.118 3.626-3.772h-2.366l-3.612 3.886v-3.886Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1iihhg-container\",layoutDependency:layoutDependency,layoutId:\"JnwRiL1BT-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:8,height:\"100%\",hoverFactor:1,id:\"JnwRiL1BT\",layoutId:\"JnwRiL1BT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-683o3e\",\"data-framer-name\":\"logo-murdoch-uni\",layoutDependency:layoutDependency,layoutId:\"jSZOj_WIK\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-163dojh\",\"data-framer-name\":\"Murdoch_University\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"vXKeiofx9\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m175.844 169.226.001 14.422c0 .02-.011.03-.032.03h-6.536c-.041 0-.062-.02-.062-.061v-22.586c0-.021.011-.031.031-.031h9.851c.042 0 .068.021.078.063l3.18 13.102c.036.147.071.147.106 0l3.183-13.102c.011-.042.038-.063.08-.063h9.852c.008 0 .016.003.022.009a.031.031 0 0 1 .009.022v22.586c0 .041-.021.061-.061.061h-6.506c-.041 0-.062-.02-.062-.061l.002-14.394a.027.027 0 0 0-.007-.014.022.022 0 0 0-.014-.008.028.028 0 0 0-.015.004c-.005.002-.008.007-.01.012l-3.898 14.399a.088.088 0 0 1-.031.045.087.087 0 0 1-.052.017h-5.089a.087.087 0 0 1-.052-.017.086.086 0 0 1-.03-.045l-3.896-14.395a.022.022 0 0 0-.008-.014.024.024 0 0 0-.016-.005.029.029 0 0 0-.014.008.022.022 0 0 0-.004.016Zm-122.107-8.197h15.512a.082.082 0 0 1 .07.04l12.53 20.333c.035.058.07.058.106 0l12.514-20.306a.134.134 0 0 1 .117-.065h25.558c.039 0 .059.019.059.059.007 9.824.01 19.644.01 29.461 0 5.577 2.39 10.224 8.368 10.898 1.213.137 2.502.065 3.865-.218 3.068-.636 5.155-2.377 6.259-5.226.711-1.831.865-3.66.865-5.79-.001-9.707-.001-19.415.001-29.122 0-.041.021-.062.062-.062h14.727c.041 0 .061.02.061.061.005 10.098.005 20.194-.001 30.288 0 1.18-.124 2.643-.373 4.388-1.082 7.607-4.969 13.778-12.175 16.789-4.403 1.839-9.152 2.265-14.085 2.089-7.995-.285-15.726-3.333-19.6-10.753-2-3.832-2.793-8.254-2.806-12.666-.022-7.278-.032-14.552-.028-21.822a.034.034 0 0 0-.006-.015.022.022 0 0 0-.013-.008.022.022 0 0 0-.016 0 .027.027 0 0 0-.012.009l-23.323 34.916a.066.066 0 0 1-.023.02.053.053 0 0 1-.03.007.063.063 0 0 1-.03-.007.065.065 0 0 1-.022-.022L67.855 182.84c-.042-.064-.063-.058-.063.018l.001 30.77c0 .04-.02.059-.059.059l-13.997-.002v-52.656Zm188.545 20.932a.04.04 0 0 0-.007-.024.045.045 0 0 0-.021-.015.043.043 0 0 0-.025.001.038.038 0 0 0-.019.016c-.99 1.489-2.384 2.049-4.186 2.155-2.864.17-4.985-1.074-6.364-3.73-2.211-4.259-1.537-12.516 4.465-13.451 2.236-.347 4.518.15 5.898 2.081a.03.03 0 0 0 .012.01.022.022 0 0 0 .016 0 .022.022 0 0 0 .013-.01.02.02 0 0 0 .004-.015l-.001-7.881a.056.056 0 0 1 .057-.056l6.219.001c.013 0 .025.005.033.014.009.008.014.02.014.033v22.527c0 .041-.02.061-.061.061h-5.984c-.041 0-.062-.02-.062-.061l-.001-1.656Zm-5.361-7.849c-.225 1.245-.156 2.867.403 4.034.423.886 1.153 1.317 2.137 1.36 3.031.134 3.073-3.88 2.638-5.864-.304-1.391-1.181-2.281-2.666-2.234-1.618.052-2.244 1.226-2.512 2.704Zm57.299-5.163c.688-.834 1.498-1.413 2.431-1.737 3.194-1.107 7.307-.1 8.16 3.64.103.453.157 1.268.161 2.445.012 3.44.012 6.88.003 10.321 0 .04-.02.06-.061.06l-6.228-.001a.031.031 0 0 1-.022-.009.034.034 0 0 1-.009-.022c.003-2.983.002-5.957-.001-8.921-.001-.808-.065-1.91-.684-2.458-.59-.521-1.7-.525-2.358-.23-1.204.538-1.468 1.773-1.467 2.966.004 2.871.003 5.742-.002 8.613 0 .041-.021.062-.063.062h-6.195c-.041 0-.061-.02-.061-.061v-22.504c0-.019.007-.037.021-.05a.067.067 0 0 1 .05-.021h6.165c.011 0 .022.002.032.006.011.005.02.011.028.019a.088.088 0 0 1 .025.062v7.793c0 .079.025.088.075.027Zm-71.117.793c0 .095.022.1.066.016 1.351-2.572 3.489-3.469 6.414-2.692.038.01.057.034.057.073v5.43c0 .05-.024.067-.07.052-.99-.336-1.919-.466-2.788-.39-2.632.228-3.4 2.25-3.412 4.605-.013 2.26-.021 4.521-.026 6.782 0 .04-.02.06-.059.06h-6.197c-.02 0-.03-.01-.03-.03v-16.357c0-.041.02-.061.061-.061h5.923c.041 0 .061.02.061.061v2.451Zm30.251 12.957c-3.241-2.081-4.249-6.208-3.314-9.823 1.221-4.729 5.512-6.477 10.042-5.991 3.641.391 6.468 2.48 7.326 6.148.485 2.07.359 4.359-.504 6.306-1.101 2.486-3.078 4.006-5.931 4.56-2.524.491-5.43.205-7.619-1.2Zm5.72-11.286c-2.923-.341-3.2 2.886-3.012 4.904.166 1.782.819 3.302 2.816 3.182 1.737-.106 2.312-1.518 2.45-3.034.156-1.738.115-4.776-2.254-5.052Zm18.53.04c-1.465.186-2.045 1.388-2.198 2.711-.149 1.317-.145 3.302.613 4.375.831 1.178 2.584 1.291 3.632.35.474-.426.757-.995.848-1.707.006-.047.033-.071.081-.071h5.892c.042 0 .06.021.054.063-.687 4.459-4.079 6.896-8.46 6.944-4.804.053-8.742-3.178-9.01-8.104-.341-6.261 4.871-9.982 10.789-9.057 3.529.551 6.2 2.751 6.489 6.48.002.035-.014.053-.049.053h-5.851c-.037 0-.058-.018-.065-.055-.254-1.522-1.175-2.182-2.765-1.982Zm-68.768 10.199c0-.004-.001-.009-.004-.012-.002-.004-.006-.006-.01-.008a.02.02 0 0 0-.011 0 .016.016 0 0 0-.009.007c-.949 1.264-2.163 2.038-3.644 2.322-3.04.583-6.351-.475-7.182-3.782-.119-.472-.18-1.286-.184-2.441-.011-3.482-.012-6.965-.002-10.449 0-.04.02-.059.06-.059h6.199a.06.06 0 0 1 .059.059c0 2.991-.002 5.989-.007 8.994-.002 1.376.3 2.817 2.032 2.806 1.691-.01 2.495-1.41 2.492-2.96-.006-2.945-.008-5.891-.006-8.837 0-.041.021-.062.062-.062h6.198c.041 0 .061.02.061.061v16.326c0 .041-.02.061-.061.061h-5.985c-.042 0-.063-.021-.063-.062l.005-1.964Zm-31.09 32.485c-4.198-.334-7.57-2.241-8.306-6.714-.131-.797-.198-1.408-.2-1.834-.02-4.827-.029-9.654-.026-14.482 0-.042.021-.064.064-.064h6.87c.041 0 .062.021.063.063.003 4.39.004 8.778.002 13.163-.001.58.069 1.213.209 1.9.375 1.839 1.972 2.594 3.695 2.363 2.263-.303 2.725-2.156 2.732-4.109.017-4.44.025-8.88.025-13.319a.059.059 0 0 1 .037-.056.06.06 0 0 1 .023-.005h6.846c.023 0 .045.01.061.026a.084.084 0 0 1 .026.062l.001 14.244c0 .325-.031.764-.092 1.317-.737 6.641-6.447 7.889-12.03 7.445Zm39.878-23.094h-6.197a.049.049 0 0 0-.048.048v4.324c0 .026.022.047.048.047h6.197a.048.048 0 0 0 .048-.047v-4.324a.049.049 0 0 0-.048-.048Zm75.608 0h-6.184a.054.054 0 0 0-.054.054v4.311c0 .03.024.054.054.054h6.184c.03 0 .054-.024.054-.054v-4.311a.054.054 0 0 0-.054-.054Zm4.228 6.107v-4.879c0-.041.02-.061.061-.061h6.198c.041 0 .061.02.061.061l.003 4.879c0 .041.02.062.06.062h3.222c.041 0 .061.02.061.061v3.775c0 .041-.02.061-.061.061h-3.217c-.036 0-.055.018-.056.054-.028 3.298-.027 5.366.003 6.205.071 1.943 1.936 1.712 3.269 1.543.041-.006.062.012.062.054v4.658c0 .033-.016.05-.048.052-1.077.053-2.15.116-3.217.189-1.485.101-3.436.001-4.644-.81-1.352-.908-1.744-2.417-1.748-4.058-.007-2.608-.011-5.217-.011-7.826 0-.041-.02-.061-.062-.061h-2.637c-.041 0-.061-.02-.061-.061v-3.775c0-.041.02-.061.061-.061h2.639c.041 0 .062-.021.062-.062Zm-99.397 2.117a.03.03 0 0 0 .007.02.03.03 0 0 0 .017.012.033.033 0 0 0 .022 0 .04.04 0 0 0 .017-.013c.85-1.213 2.004-1.981 3.461-2.304 3.073-.68 6.54.397 7.367 3.787.144.591.214 1.287.211 2.089-.016 3.593-.026 7.185-.03 10.775 0 .039-.019.058-.057.058h-6.196c-.041 0-.061-.02-.061-.061-.005-3.093-.005-6.182-.001-9.267.001-1.043-.293-2.188-1.414-2.451-1.087-.255-2.266.151-2.753 1.2-.245.529-.343 1.088-.343 1.723.001 2.931-.001 5.862-.004 8.793 0 .042-.021.063-.063.063h-6.196c-.042 0-.063-.02-.063-.061l.002-16.357c0-.041.02-.061.061-.061H198c.041 0 .062.02.062.061l.001 1.994Zm44.5 7.675c.107 2.105 1.661 3.29 3.709 3.065a3.022 3.022 0 0 0 2.061-1.091.118.118 0 0 1 .094-.043h5.759c.007 0 .013.002.019.005a.037.037 0 0 1 .015.013.048.048 0 0 1 .007.018c0 .006 0 .013-.003.019-.957 2.638-3.214 4.338-5.958 4.909-5.146 1.071-10.795-1.043-11.635-6.836-.698-4.822 2.101-9.338 7.064-10.086a11.607 11.607 0 0 1 3.206-.027c2.336.291 4.326 1.059 5.785 2.951 1.5 1.941 1.895 4.594 1.903 6.978 0 .041-.021.061-.062.061h-11.904c-.043 0-.063.022-.06.064Zm.097-3.331 5.875-.032a.016.016 0 0 0 .011-.005.016.016 0 0 0 .005-.011v-.009a2.644 2.644 0 0 0-.843-1.908 2.919 2.919 0 0 0-2.014-.781h-.223a2.963 2.963 0 0 0-1.087.212 2.858 2.858 0 0 0-.919.591c-.262.253-.47.552-.611.881-.141.33-.212.682-.21 1.037v.009c0 .004.001.008.004.011a.017.017 0 0 0 .012.005Zm19.294-3.827c0 .008.003.016.008.022a.032.032 0 0 0 .02.012.037.037 0 0 0 .023-.002.037.037 0 0 0 .016-.017c1.287-2.608 3.629-3.529 6.416-2.744.036.009.053.032.053.068v5.457c0 .041-.019.055-.059.041-1.082-.384-2.127-.503-3.134-.359-2.521.362-3.063 2.602-3.063 4.755l-.005 6.611c0 .042-.021.063-.062.063h-6.197c-.041 0-.062-.02-.062-.061v-16.357c0-.041.021-.061.062-.061h5.922c.041 0 .062.02.062.061v2.511Zm17.3 10.011c.549-.306.641-1.106.263-1.56-.377-.454-1.515-.71-2.066-.802-2.403-.405-6.264-.983-7.439-3.363a4.506 4.506 0 0 1-.41-1.46c-.344-2.882 1.69-4.767 4.319-5.397 3.673-.879 11.249-.748 11.423 4.749a.058.058 0 0 1-.005.026.064.064 0 0 1-.014.022.107.107 0 0 1-.022.015.08.08 0 0 1-.026.005h-5.583c-.035 0-.056-.017-.063-.052-.28-1.483-1.863-1.916-3.162-1.513-.902.281-1.238 1.498-.234 1.896.729.29 1.472.427 2.411.565 1.518.222 2.956.612 4.314 1.171 1.289.53 2.144 1.394 2.566 2.591.744 2.111.016 4.557-1.834 5.876-.755.539-1.7.931-2.834 1.177-4.19.91-11.344.363-11.677-5.399-.003-.055.023-.083.078-.083h5.887c.035 0 .055.018.06.053.293 2.013 2.585 2.298 4.048 1.483Zm-61.631-12.583h-6.195a.05.05 0 0 0-.049.049v16.382a.05.05 0 0 0 .049.049h6.195a.05.05 0 0 0 .049-.049v-16.382a.05.05 0 0 0-.049-.049Zm13.103 0h6.353a.04.04 0 0 1 .019.004.044.044 0 0 1 .015.012.05.05 0 0 1 .007.017.04.04 0 0 1-.001.019l-5.435 16.399a.035.035 0 0 1-.014.02.04.04 0 0 1-.024.008h-7.384a.04.04 0 0 1-.024-.008.035.035 0 0 1-.014-.02l-5.372-16.399a.04.04 0 0 1-.001-.019.036.036 0 0 1 .007-.017.044.044 0 0 1 .015-.012.037.037 0 0 1 .018-.004h6.576c.009 0 .018.003.025.008a.044.044 0 0 1 .014.022l2.535 9.894a.034.034 0 0 0 .015.022.036.036 0 0 0 .024.009.038.038 0 0 0 .025-.009.038.038 0 0 0 .015-.022l2.566-9.894a.054.054 0 0 1 .015-.022.044.044 0 0 1 .025-.008Zm62.513 0h-6.197a.048.048 0 0 0-.048.048v16.384c0 .027.022.048.048.048h6.197a.047.047 0 0 0 .047-.048V197.26a.047.047 0 0 0-.047-.048ZM313.893 219h-4.621l.004-4.965c0-.043.021-.065.064-.065.656-.006 1.312-.007 1.968-.003.635.005 1.075-.05 1.319-.166.57-.27.745-.809.526-1.619a28.913 28.913 0 0 0-.824-2.479 913.958 913.958 0 0 1-4.63-12.431c-.003-.007-.004-.014-.003-.021a.05.05 0 0 1 .008-.02.043.043 0 0 1 .016-.014.042.042 0 0 1 .022-.005h6.627c.043 0 .071.021.082.062l2.588 9.295a.039.039 0 0 0 .015.023.038.038 0 0 0 .025.009.04.04 0 0 0 .026-.009.044.044 0 0 0 .015-.023l2.624-9.318c.008-.026.025-.039.053-.039h6.386a.08.08 0 0 1 .08.069.092.092 0 0 1-.004.037 6284.556 6284.556 0 0 0-6.159 17.17c-.37 1.038-.989 2.266-1.839 3.044-1.264 1.156-2.732 1.312-4.368 1.468Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-88fkt0\",\"data-framer-name\":\"logo-emyria\",layoutDependency:layoutDependency,layoutId:\"krzjyXSYZ\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17pipwc\",\"data-framer-name\":\"Emyria\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"kdy3gkw1S\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M261.782 163.667a7.023 7.023 0 1 0 0-14.045 7.023 7.023 0 0 0 0 14.045ZM64.564 196.083c.388 2.074 1.236 3.564 2.543 4.471 5.46 3.783 11.486 2.673 16.362-1.425.26-.216.51-.214.753.008l7.5 6.707c.19.167.2.348.033.542-6.447 7.582-17.01 9.583-26.163 6.488-16.337-5.532-19.772-26.154-9.112-38.329 9.469-10.805 28.366-9.444 35.154 3.888 2.57 5.049 3.485 10.698 2.746 16.945-.027.233-.157.349-.39.349H64.856c-.237 0-.335.119-.291.356Zm-.081-9.517h16.28a.017.017 0 0 0 .017-.017v-.064c0-2.037-.852-3.99-2.368-5.43-1.516-1.44-3.572-2.249-5.716-2.249h-.146c-2.144 0-4.2.809-5.716 2.249s-2.368 3.393-2.368 5.43v.064c0 .005.002.009.005.012a.016.016 0 0 0 .011.005Zm242.586-13.009v-4.074c0-.303.149-.454.446-.454l12.279-.008c.308 0 .462.157.462.47.006 9.153-.027 18.282-.097 27.386-.032 3.864 3.289 4.155 6.261 3.345.287-.075.467.027.543.308l2.56 9.315c.075.275-.003.491-.235.648-6.934 4.641-16.565 3.742-20.21-4.568-.135-.319-.286-.327-.453-.025-1.966 3.5-4.909 5.697-8.829 6.594-33.21 7.614-34.992-47.644-3.297-44.226 4.476.48 7.932 2.265 10.368 5.354.135.173.202.151.202-.065Zm-9.934 27.62a8.736 8.736 0 0 0 3.628-.836 9.499 9.499 0 0 0 3.058-2.306 10.623 10.623 0 0 0 2.024-3.424 11.44 11.44 0 0 0 .681-4.022 11.426 11.426 0 0 0-.765-4.006 10.635 10.635 0 0 0-2.095-3.382 9.515 9.515 0 0 0-3.106-2.241 8.733 8.733 0 0 0-3.644-.76 8.733 8.733 0 0 0-3.628.836 9.499 9.499 0 0 0-3.058 2.306 10.623 10.623 0 0 0-2.024 3.424 11.44 11.44 0 0 0-.681 4.022c.014 1.377.274 2.739.765 4.006a10.635 10.635 0 0 0 2.095 3.382 9.504 9.504 0 0 0 3.106 2.241 8.717 8.717 0 0 0 3.644.76Zm-183.258-28.268c6.787-6.861 18.516-6.755 22.971 2.624.114.233.238.241.373.025 3.467-5.67 8.64-8.019 15.519-7.047 8.975 1.271 10.879 9.817 10.952 17.399.086 8.802.094 17.606.024 26.414-.006.297-.157.445-.454.445h-12.539c-.286 0-.429-.143-.429-.429 0-8.813-.008-17.604-.024-26.374-.008-6.261-8.27-8.075-10.765-2.065-.594 1.436-.878 4.144-.851 8.124.038 6.75.041 13.503.009 20.258 0 .324-.165.486-.495.486h-12.546c-.281 0-.422-.143-.422-.429-.01-8.818-.019-17.61-.024-26.374-.008-6.034-7.8-8.051-10.611-2.478-.621 1.231-.934 3.604-.94 7.12-.016 7.23-.035 14.463-.056 21.699-.006.341-.178.511-.519.511h-12.709a.292.292 0 0 1-.291-.292v-42.962c0-.281.143-.421.429-.421h12.644c.313 0 .47.159.47.477l-.024 3.159c0 .292.102.335.308.13Zm118.6 1.345c4.012-5.298 9.331-6.985 15.957-5.063.275.081.391.259.348.535l-1.709 11.972c-.049.318-.23.442-.543.372-7.371-1.636-14.11.932-14.005 9.558.049 3.813.033 10.676-.048 20.59 0 .254-.127.381-.381.381h-12.871c-.313 0-.47-.157-.47-.47v-42.776c0-.259.133-.389.397-.389l12.588-.008c.27 0 .407.138.413.413l.016 4.779c0 .341.103.376.308.106Z\"/><path d=\"M267.866 169.086h-13.333a.266.266 0 0 0-.267.267v43.141c0 .147.119.267.267.267h13.333c.147 0 .267-.12.267-.267v-43.141a.267.267 0 0 0-.267-.267Zm-77.72 28.779 9.032-28.212a.496.496 0 0 1 .469-.332l14.038-.008c.302 0 .402.143.299.429a4287.148 4287.148 0 0 1-18.767 49.945c-4.423 11.574-16.808 12.303-26.188 6.739-.28-.168-.353-.403-.218-.705l4.552-9.809a.391.391 0 0 1 .42-.218c.056.01.109.032.155.064 2.144 1.517 4.477 2.09 6.998 1.717a2.185 2.185 0 0 0 1.575-1.062 2.19 2.19 0 0 0 .289-.931 2.198 2.198 0 0 0-.146-.963l-17.504-44.89a.232.232 0 0 1-.018-.11.23.23 0 0 1 .228-.206l14.337.008c.319 0 .529.151.632.453l9.38 28.091c.151.443.297.443.437 0Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(49.87 149.5)\" d=\"M0 0h280.26v81H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ejky7q\",\"data-framer-name\":\"logo-tab-touch\",layoutDependency:layoutDependency,layoutId:\"curXm5kmP\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ywdob\",\"data-framer-name\":\"Tab_Touch\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"nM7cvi3gI\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M66.433 174.817c-4.27-.04-8.538-.053-12.804-.037-2.05.004-3.608-.329-3.617-2.665a852.554 852.554 0 0 1 0-8.933c.014-2.332 2.003-2.295 3.974-2.299 13.368-.013 26.716-.014 40.044-.005a.176.176 0 0 1 .135.065.173.173 0 0 1 .034.146l-3.205 13.367a.455.455 0 0 1-.44.347l-7.503-.009c-.163 0-.244.081-.244.244a5708.9 5708.9 0 0 0 .014 30.13c.014 4.448-1.29 8.863-2.44 13.104-.037.151-.134.226-.29.226-3.297-.003-6.59-.008-9.876-.014-2.445-.005-3.524-.714-3.515-3.196.035-13.405.032-26.808-.009-40.208 0-.172-.086-.26-.258-.263Zm35.474 32.899-1.834 7.685c-.559 2.351-2.59 3.054-4.945 3.069-3.773.025-7.534.034-11.284.028a.22.22 0 0 1-.18-.087.225.225 0 0 1-.04-.195l13.774-57.108a.292.292 0 0 1 .282-.221 3634.6 3634.6 0 0 1 16.182-.009c2.458.006 4.171.225 5.137.657 2.595 1.159 3.383 3.092 4.106 5.963.541 2.136 1.08 4.238 1.618 6.306a3.27 3.27 0 0 1 .019 1.6l-7.577 31.613a.54.54 0 0 1-.521.413l-14.366-.005c-.2 0-.324.097-.371.291Zm7.174-29.108a.17.17 0 0 0-.169.132l-3.899 16.125a.19.19 0 0 0 0 .075.172.172 0 0 0 .091.115.17.17 0 0 0 .073.017l8.671-.005a.17.17 0 0 0 .164-.206l-3.796-16.112a.169.169 0 0 0-.159-.131l-.976-.01Zm53.083 8.262c4.313 2.647 6.71 6.369 7.192 11.167 1.004 9.975-4.884 17.922-14.577 19.954-1.458.306-3.702.468-6.733.483-6.027.031-12.053.033-18.077.005-5.612-.028-6.132-2.369-6.156-7.399a2279.53 2279.53 0 0 1-.005-16.539 17.21 17.21 0 0 1 .484-4.006 99000.98 99000.98 0 0 1 7.094-29.413c.037-.159.137-.239.3-.239 5.646-.044 11.288-.047 16.928-.01 9.332.066 17.974 3.313 18.532 14.057.241 4.61-1.429 8.478-5.011 11.603-.143.125-.134.237.029.337Zm-23.994-12.958v7.713a.192.192 0 0 0 .192.192h9.956c1.074 0 2.104-.381 2.863-1.06.76-.68 1.186-1.601 1.186-2.562v-.854c0-.96-.426-1.881-1.186-2.561-.759-.679-1.789-1.061-2.863-1.061h-9.956a.193.193 0 0 0-.192.193Zm.019 20.151-.038 11.194c0 .036.007.07.02.103a.3.3 0 0 0 .058.087.3.3 0 0 0 .087.058c.033.013.067.02.103.02l10.387.037a6.325 6.325 0 0 0 2.259-.406 5.957 5.957 0 0 0 1.917-1.172 5.44 5.44 0 0 0 1.285-1.761 5.075 5.075 0 0 0 .455-2.08v-.853c.005-1.442-.612-2.827-1.714-3.85-1.103-1.024-2.6-1.602-4.164-1.607l-10.388-.037a.267.267 0 0 0-.267.267Zm171.526-10.148c3.172-1.73 6.791-2.368 10.857-1.915 6.151.685 9.327 5.471 9.374 11.34.063 8.067.071 16.159.024 24.276a.872.872 0 0 1-.868.863l-9.923.028a1.084 1.084 0 0 1-1.01-.671 1.086 1.086 0 0 1-.084-.417c.032-6.969.029-13.929-.009-20.879-.019-3.082-.54-4.987-4.068-4.687-1.683.144-3.087.527-4.213 1.15a.444.444 0 0 0-.249.417v23.98c0 .286-.113.561-.315.765a1.09 1.09 0 0 1-.764.319l-9.693.004a1.192 1.192 0 0 1-1.192-1.196l-.004-45.534c0-.854.427-1.281 1.28-1.281l9.534.005a1.155 1.155 0 0 1 1.154 1.154l-.004 12.175c0 .132.058.166.173.104Zm-120.269 7.549c-.053 5.236-.051 10.47.005 15.703.01.77-.281 2.215.573 2.754.811.516 3.045.3 4.147.31.726.006 1.096.372 1.112 1.098.034 2.008.036 4.03.005 6.066-.028 1.595-5.405 1.666-6.541 1.666-8.135-.01-11.288-3.106-11.288-11.411a5824.86 5824.86 0 0 0-.014-16.191c-.003-.144-.075-.233-.216-.267l-4.223-1.009a1.193 1.193 0 0 1-.919-1.14c-.025-1.661-.027-3.36-.005-5.096.016-1.194.601-1.762 1.755-1.703a87.33 87.33 0 0 0 3.331.108c.172 0 .258-.086.258-.258l-.005-4.846a1.21 1.21 0 0 1 .284-.777c.183-.217.436-.363.716-.41l10.031-1.727a.817.817 0 0 1 .957.798l.023 6.958c0 .162.082.244.244.244l4.589-.005c.14-.001.279.026.409.08a1.052 1.052 0 0 1 .579.576c.054.13.082.269.082.409l.004 6.756a1.062 1.062 0 0 1-.314.764 1.081 1.081 0 0 1-.765.32h-4.584c-.153 0-.23.076-.23.23Zm40.896 12.986a14.498 14.498 0 0 1-14.477 14.528l-3.443.006a14.502 14.502 0 0 1-14.528-14.477l-.014-8.126a14.5 14.5 0 0 1 14.477-14.528l3.444-.006a14.505 14.505 0 0 1 14.527 14.477l.014 8.126Zm-16.193 4.622c2.852.098 3.847-2.121 4.189-4.697.473-3.54.396-6.634-.229-9.28-1.07-4.518-7.179-4.19-8.047.01-.425 2.073-.53 4.619-.314 7.638.216 2.993.516 6.188 4.401 6.329Zm67.477 9.839c-6.32-.568-10.955-5.635-11.809-11.627-.676-4.734-.779-11.19.469-15.534 1.654-5.771 5.592-9.049 11.814-9.834 3.317-.418 7.915.052 11.147.976.835.239.765 1.107.779 1.839.038 2.215.027 4.473-.033 6.775a.92.92 0 0 1-1.037.887 56.485 56.485 0 0 0-5.7-.441c-2.125-.057-3.753-.174-4.856 1.468-.601.901-.935 2.046-1.004 3.435-.175 3.562-.1 6.454.225 8.675.338 2.308 1.742 3.456 4.213 3.443a66.166 66.166 0 0 0 7.216-.417.876.876 0 0 1 .904.517.876.876 0 0 1 .077.36l.005 7.568a.97.97 0 0 1-.714.934c-3.772 1.013-7.671 1.338-11.696.976Zm-27.11-2.816c-3.837 2.65-7.861 3.577-12.071 2.783-7.141-1.342-8.929-7.723-8.901-14.043.028-7.197.06-14.324.094-21.38a1.107 1.107 0 0 1 1.093-1.103 334.19 334.19 0 0 1 7.859-.018c1.778.023 2.989-.296 2.989 1.853-.003 7.159-.01 14.316-.019 21.469-.005 4.884 5.489 3.655 8.182 2.257a.4.4 0 0 0 .211-.352l.01-23.848a1.397 1.397 0 0 1 .863-1.289c.17-.07.352-.105.535-.105l9.388.019a1.17 1.17 0 0 1 1.164 1.164l-.005 34.02a.962.962 0 0 1-.957.962l-9.149.014a1.027 1.027 0 0 1-1.027-1.014l-.015-1.262c-.003-.194-.084-.236-.244-.127Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hqduib\",\"data-framer-name\":\"logo-hbf\",layoutDependency:layoutDependency,layoutId:\"pCZe0own2\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17ty99h\",\"data-framer-name\":\"HBF\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"a_2NKNB1r\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 140 140\"><path d=\"M 88.811 66.828 L 83.125 64.536 C 83.077 64.517 83.058 64.482 83.067 64.431 C 83.345 62.713 83.848 61.038 84.563 59.451 C 85.904 56.469 88.068 54.481 91.4 53.907 C 93.411 53.56 95.476 53.549 97.595 53.873 C 97.623 53.878 97.645 53.899 97.651 53.927 C 97.653 53.936 97.653 53.945 97.651 53.954 L 96.751 57.988 C 96.741 58.036 96.71 58.058 96.66 58.053 C 92.909 57.625 90.902 58.99 89.922 62.605 C 89.547 63.986 89.209 65.378 88.908 66.777 C 88.896 66.833 88.864 66.85 88.811 66.828 Z M 35.092 67.262 C 35.089 67.273 35.094 67.285 35.104 67.29 C 35.109 67.293 35.115 67.294 35.121 67.293 C 35.126 67.292 35.131 67.289 35.135 67.285 C 37.799 64.319 44.066 62.551 47.668 64.62 C 50.881 66.466 50.526 70.724 49.792 73.917 C 48.887 77.86 47.961 81.799 47.015 85.732 C 47.001 85.785 46.967 85.812 46.914 85.812 L 40.681 85.823 C 40.662 85.823 40.643 85.815 40.631 85.799 C 40.618 85.784 40.614 85.763 40.618 85.744 C 41.411 82.401 42.211 79.059 43.018 75.719 C 43.367 74.274 43.602 72.989 43.723 71.866 C 43.934 69.902 43.336 68.054 41.038 67.975 C 36.459 67.816 34.213 72.099 33.193 75.864 C 32.584 78.107 32.017 80.36 31.492 82.624 C 31.144 84.116 30.824 85.116 29.448 85.623 C 29.091 85.753 28.535 85.819 27.778 85.82 C 26.644 85.822 25.529 85.82 24.432 85.814 C 24.337 85.813 24.3 85.767 24.322 85.674 C 26.55 76.146 28.779 66.619 31.008 57.092 C 31.132 56.561 31.27 56.17 31.421 55.917 C 32.104 54.78 33.481 54.194 34.777 54.201 C 35.878 54.207 36.975 54.21 38.068 54.209 C 38.089 54.209 38.109 54.218 38.122 54.235 C 38.135 54.251 38.14 54.273 38.135 54.294 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 77.081 68.153 C 78.077 72.241 77.135 76.417 74.746 79.82 C 71.023 85.12 64.099 87.118 57.926 86.109 C 56.473 85.872 54.996 85.33 53.96 84.404 C 51.099 81.846 52.557 77.357 53.298 74.191 C 54.645 68.448 55.988 62.704 57.328 56.959 C 57.722 55.268 59.108 54.31 60.781 54.219 C 61.349 54.188 62.517 54.189 64.287 54.223 C 64.336 54.224 64.355 54.249 64.344 54.297 C 62.617 61.644 60.884 68.99 59.143 76.335 C 58.798 77.797 58.486 79.692 59.129 80.954 C 59.904 82.473 61.977 82.564 63.483 82.275 C 67.928 81.424 71.331 76.239 71.074 71.938 C 70.937 69.625 69.296 67.779 66.899 67.948 C 65.906 68.017 65.032 68.363 64.278 68.985 C 64.269 68.992 64.259 68.996 64.247 68.996 C 64.231 68.997 64.214 68.99 64.203 68.977 C 64.192 68.964 64.188 68.947 64.192 68.93 L 65.185 64.672 C 65.196 64.624 65.224 64.582 65.264 64.553 C 66.47 63.683 68.905 63.391 70.305 63.397 C 72.884 63.406 75.449 63.776 77.925 64.496 C 82.378 65.788 86.672 67.6 91 69.259 C 92.856 69.973 94.778 70.504 96.738 70.845 C 96.749 70.848 96.758 70.853 96.765 70.861 C 96.779 70.879 96.78 70.903 96.767 70.921 C 96.761 70.93 96.752 70.936 96.741 70.939 C 93.801 71.635 90.962 71.383 88.021 70.848 C 87.979 70.84 87.937 70.867 87.928 70.91 C 87.044 74.707 86.166 78.506 85.292 82.306 C 85.029 83.451 84.777 84.204 84.536 84.563 C 83.968 85.413 83.069 85.835 81.841 85.828 C 80.59 85.82 79.348 85.817 78.117 85.817 C 78.104 85.817 78.091 85.814 78.079 85.809 C 78.043 85.792 78.024 85.751 78.033 85.712 L 81.876 69.335 C 81.886 69.294 81.871 69.266 81.83 69.253 C 80.311 68.729 78.752 68.33 77.169 68.059 C 77.091 68.045 77.062 68.076 77.081 68.153 Z M 114.703 61.984 C 114.214 63.44 112.919 63.91 111.494 64.476 C 106.567 66.433 101.429 67.252 96.078 66.932 C 96.069 66.933 96.061 66.929 96.055 66.924 C 96.05 66.918 96.046 66.91 96.046 66.902 C 96.046 66.894 96.049 66.886 96.054 66.88 C 96.06 66.874 96.068 66.871 96.076 66.871 C 98.204 66.605 100.294 66.097 102.305 65.355 C 107.044 63.619 111.519 61.236 115.604 58.273 C 115.621 58.26 115.643 58.259 115.661 58.271 C 115.678 58.282 115.687 58.303 115.683 58.324 C 115.432 59.563 115.105 60.785 114.703 61.984 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 105.975 70.738 C 100.341 70.763 94.884 69.196 89.684 67.159 C 89.676 67.156 89.669 67.15 89.665 67.142 C 89.657 67.124 89.663 67.118 89.683 67.124 C 93.04 68.003 96.331 68.282 99.787 68.323 C 103.993 68.376 108.189 67.905 112.279 66.92 C 112.352 66.903 112.367 66.925 112.323 66.986 C 111.233 68.515 110.307 70.042 108.348 70.498 C 107.675 70.654 106.884 70.734 105.975 70.738 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10519958511,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-16i2sms\",\"data-framer-name\":\"logo-imdex\",layoutDependency:layoutDependency,layoutId:\"z4bgoliL7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16gbygv\",\"data-framer-name\":\"imdex\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"IFcae3Ebr\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m252.592 218.828 56.54-67.665a.175.175 0 0 1 .131-.061l20.517.005a.164.164 0 0 1 .092.026.176.176 0 0 1 .063.072.169.169 0 0 1-.023.182l-56.562 67.722a.175.175 0 0 1-.131.061h-67.657a.184.184 0 0 1-.065-.013.162.162 0 0 1-.055-.037.161.161 0 0 1-.037-.056.157.157 0 0 1-.013-.065v-57.997a.172.172 0 0 1 .17-.171l46.601-.004a.172.172 0 0 1 .171.17l-.018 14.438a.17.17 0 0 1-.17.171l-30.019-.004a.17.17 0 0 0-.17.17l.008 7.554a.17.17 0 0 0 .171.171l22.206.009a.17.17 0 0 1 .171.17l-.022 12.662a.17.17 0 0 1-.17.17l-22.194-.004a.17.17 0 0 0-.17.171l.008 7.615a.17.17 0 0 0 .171.17l30.001-.008a.172.172 0 0 1 .171.17l-.018 14.097a.173.173 0 0 0 .113.161.17.17 0 0 0 .189-.052ZM50 219.161v-58.343l16.46-.004a.22.22 0 0 1 .16.068.232.232 0 0 1 .068.164l.004 57.94a.22.22 0 0 1-.062.152.21.21 0 0 1-.148.062L50 219.161Zm96.935-58.212a.114.114 0 0 1 .114-.113h27.191c7.518 0 14.728 2.902 20.044 8.067 5.316 5.166 8.303 12.173 8.303 19.478v3.256c0 7.306-2.987 14.312-8.303 19.478-5.316 5.166-12.526 8.068-20.044 8.068h-27.191a.118.118 0 0 1-.081-.033.118.118 0 0 1-.033-.081v-58.12Zm16.723 14.858-.053 28.369a.296.296 0 0 0 .085.204.294.294 0 0 0 .093.063.3.3 0 0 0 .111.022l8.784.013a12.731 12.731 0 0 0 9.015-3.717 12.753 12.753 0 0 0 3.746-9.006l.009-3.457a12.75 12.75 0 0 0-7.844-11.788 12.743 12.743 0 0 0-4.874-.978l-8.784-.013a.29.29 0 0 0-.288.288Zm-38.58 3.082-11.676 39.747c-.105.359-.344.538-.718.538h-12.341c-.132 0-.215-.063-.25-.188L88.46 179.239a.08.08 0 0 0-.033-.042.087.087 0 0 0-.052-.011.084.084 0 0 0-.047.025.08.08 0 0 0-.02.05l.008 39.677c0 .16-.079.241-.236.241l-15.646-.014c-.15 0-.224-.074-.224-.223v-57.888c0-.148.075-.223.224-.223l23.296-.013c.169 0 .277.082.324.245l10.761 36.977a.11.11 0 0 0 .102.073.098.098 0 0 0 .06-.02.091.091 0 0 0 .035-.053l10.758-36.99c.044-.149.143-.223.297-.223h23.069c.149 0 .223.076.223.227v57.84c0 .19-.095.285-.284.285l-15.62-.014c-.181 0-.271-.089-.271-.267l.021-39.992a.066.066 0 0 0-.017-.04.081.081 0 0 0-.039-.02.065.065 0 0 0-.043.009.078.078 0 0 0-.028.034Z\" fill=\"#fff\"/><path d=\"M252.802 161.076a.02.02 0 0 1-.004-.013.02.02 0 0 1 .004-.013.533.533 0 0 1 .175-.166.373.373 0 0 1 .197-.048c6.53-.003 12.981-.012 19.353-.027a1.721 1.721 0 0 1 1.317.617l11.41 13.721c.125.151.125.302 0 .45l-9.97 11.957a.408.408 0 0 1-.308.144.406.406 0 0 1-.309-.144 5679.365 5679.365 0 0 1-20.21-24.263 30.4 30.4 0 0 1-1.655-2.215Zm75.595 67.792c-6.033.044-12.069.04-18.105-.013-.715-.006-1.234-.201-1.558-.586a9187.522 9187.522 0 0 1-19.327-23.069.956.956 0 0 1 .004-1.23l9.786-11.663a.295.295 0 0 1 .093-.072.283.283 0 0 1 .23 0 .274.274 0 0 1 .093.072l30.316 36.277c.12.143.088.22-.096.232a20.94 20.94 0 0 1-1.436.052Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})],speed:12,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17k9wdp-container\",layoutDependency:layoutDependency,layoutId:\"zuN6_UNW4-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:54,height:\"100%\",hoverFactor:1,id:\"zuN6_UNW4\",layoutId:\"zuN6_UNW4\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-67d3xz\",\"data-framer-name\":\"logo-wilson-parking\",layoutDependency:layoutDependency,layoutId:\"DUh1l0cq5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1wu6h16\",\"data-framer-name\":\"Wilson_Parking\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"kUFFoCfs_\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M54.638 164.485h41.745a4.652 4.652 0 0 1 4.638 4.639v41.752a4.652 4.652 0 0 1-4.638 4.639H54.638A4.653 4.653 0 0 1 50 210.876v-41.752a4.653 4.653 0 0 1 4.638-4.639Zm25.28 18.557c-.465-1.16-.233-2.552.927-3.248l3.015-2.087c1.16-.464 2.55-.232 3.246.927l10.669 18.325c.463 1.159.232 2.551-.928 3.247l-3.247 1.856c-1.16.463-2.55.231-3.247-.928l-10.436-18.092Zm-25.975-3.248c-1.16.696-1.392 2.088-.928 3.016l10.436 18.092c.696 1.159 2.087 1.391 3.247.928l3.247-1.856c1.16-.696 1.391-2.088.696-3.015l-10.437-18.325c-.464-.927-1.855-1.391-3.015-.695l-3.246 1.855Zm13.45 0c-1.159.696-1.39 2.088-.927 3.016l10.436 18.092c.696 1.159 2.088 1.391 3.247.928l3.247-1.856c1.16-.696 1.391-2.088.928-3.247l-10.437-18.093c-.695-.927-2.087-1.391-3.246-.695l-3.247 1.855Zm169.466 5.063a6.784 6.784 0 0 1-2.227 5.463 9.762 9.762 0 0 1-6.457 1.886h-5.419v8.656h-4.245v-23.385h9.634a9.771 9.771 0 0 1 6.458 1.901 6.706 6.706 0 0 1 2.256 5.479Zm-14.103-3.95v7.899h5.033a5.626 5.626 0 0 0 3.607-.98 4.304 4.304 0 0 0 0-5.939 5.626 5.626 0 0 0-3.607-.98h-5.033Zm-94.534 19.955h4.766l6.383-23.385h-4.246l-4.631 18.099-4.543-18.099h-4.454l-4.542 18.099-4.661-18.039h-4.454l6.428 23.325h4.736l4.646-17.995 4.572 17.995Zm13.599-19.302h4.453v-4.083h-4.453v4.083Zm.148 19.302h4.172v-16.659h-4.172v16.659Zm12.47-23.385v23.385h-4.186v-23.385h4.186Zm4.854 22.301a9.455 9.455 0 0 0 5.463 1.411 8.213 8.213 0 0 0 4.988-1.381 4.82 4.82 0 0 0 .832-7.008 5.936 5.936 0 0 0-3.4-1.618l-3.236-.55a5.32 5.32 0 0 1-1.989-.668 1.36 1.36 0 0 1-.55-1.188 1.635 1.635 0 0 1 .787-1.484 3.882 3.882 0 0 1 2.108-.52 4.01 4.01 0 0 1 2.257.579c.276.169.511.398.685.671.175.272.286.581.324.903h3.83a5.064 5.064 0 0 0-2.108-3.771 8.418 8.418 0 0 0-5.018-1.322 7.537 7.537 0 0 0-4.824 1.485 4.598 4.598 0 0 0-1.9 3.801 4.213 4.213 0 0 0 1.172 3.133 6.579 6.579 0 0 0 3.593 1.603l2.969.52a5.016 5.016 0 0 1 1.974.683 1.35 1.35 0 0 1 .579 1.188 1.733 1.733 0 0 1-.861 1.484 4.151 4.151 0 0 1-2.271.55 4.621 4.621 0 0 1-2.568-.668 2.437 2.437 0 0 1-1.158-1.842h-3.994a5.32 5.32 0 0 0 2.316 4.009Zm22.773-15.961a8.072 8.072 0 0 1 6.071 2.376 9.795 9.795 0 0 1 0 12.635 9.024 9.024 0 0 1-12.173 0 9.803 9.803 0 0 1 0-12.635 8.078 8.078 0 0 1 6.102-2.376Zm0 3.103a3.655 3.655 0 0 0-3.103 1.485 8.153 8.153 0 0 0 0 8.226 4.008 4.008 0 0 0 6.205 0 8.121 8.121 0 0 0 0-8.211 3.651 3.651 0 0 0-3.102-1.5Zm15.246-2.717H193.2v16.659h4.171v-8.968a5.407 5.407 0 0 1 .98-3.474 3.357 3.357 0 0 1 2.746-1.203 3.053 3.053 0 0 1 2.479 1.01 4.52 4.52 0 0 1 .861 2.969v9.666h4.172v-10.705a6.442 6.442 0 0 0-1.618-4.662 5.94 5.94 0 0 0-4.454-1.678 5.947 5.947 0 0 0-3.221.861 5.023 5.023 0 0 0-2.004 2.331v-2.806Zm51.631 16.659h4.023a17.482 17.482 0 0 1-.178-1.841c-.074-.638-.074-1.395-.074-2.301v-6.4a6.128 6.128 0 0 0-1.811-4.795 7.61 7.61 0 0 0-5.285-1.633 7.85 7.85 0 0 0-5.018 1.484 5.742 5.742 0 0 0-2.197 4.143h4.023a2.625 2.625 0 0 1 .906-1.856 3.235 3.235 0 0 1 2.167-.683 3.168 3.168 0 0 1 2.316.787 2.96 2.96 0 0 1 .816 2.212v.787l-4.973.549a8.508 8.508 0 0 0-4.453 1.633 4.766 4.766 0 0 0 0 6.964 6.009 6.009 0 0 0 4.052 1.306 7.232 7.232 0 0 0 3.474-.786 4.352 4.352 0 0 0 2.049-2.183 12.95 12.95 0 0 0 0 1.307c.017.163.044.327.072.491.045.268.091.539.091.815Zm-7.026-3.811a1.935 1.935 0 0 1-.159-.866v-.059a1.879 1.879 0 0 1 .609-1.515 4.947 4.947 0 0 1 2.434-.772l3.697-.43v1.009a3.643 3.643 0 0 1-1.188 2.836 4.446 4.446 0 0 1-2.969 1.054 2.966 2.966 0 0 1-1.9-.549 1.938 1.938 0 0 1-.524-.708Zm23.222-13.145c.233-.015.466-.015.698 0 .186.011.37.041.549.089v3.861l-.742-.104h-.861a4.31 4.31 0 0 0-3.4 1.485 5.686 5.686 0 0 0-1.261 3.919v7.706h-4.187v-16.659h4.112v3.727a5.95 5.95 0 0 1 1.93-2.97 4.92 4.92 0 0 1 3.162-1.054Zm15.024 16.956h4.809l-7.289-9.725 7.022-6.934h-4.825l-7.051 7.127v-13.853h-4.216v23.385h4.171v-5.167l1.93-1.856 5.449 7.023Zm10.881-19.302h-4.454v-4.083h4.454v4.083Zm-.134 19.302h-4.171v-16.659h4.171v16.659Zm8.299-16.659h-4.112v16.659h4.171v-8.968a5.405 5.405 0 0 1 .98-3.474 3.346 3.346 0 0 1 2.746-1.203 3.083 3.083 0 0 1 2.479 1.01c.615.863.914 1.912.847 2.969v9.666h4.186v-10.705a6.434 6.434 0 0 0-1.618-4.662 6.633 6.633 0 0 0-7.675-.817 5.017 5.017 0 0 0-2.004 2.331v-2.806Zm22.342 19.866a4.2 4.2 0 0 0 1.697-.226 4.202 4.202 0 0 0 1.465-.887 4.464 4.464 0 0 0 1.083-3.267v-2.346a5.31 5.31 0 0 1-2.093 2.198 6.134 6.134 0 0 1-3.162.831 6.736 6.736 0 0 1-5.314-2.286 8.789 8.789 0 0 1-2.004-5.939 8.666 8.666 0 0 1 2.019-5.939 6.717 6.717 0 0 1 5.299-2.287 6.15 6.15 0 0 1 3.192.846 5.168 5.168 0 0 1 2.123 2.257v-2.717h4.127v14.966a7.435 7.435 0 0 1-2.212 5.806 8.905 8.905 0 0 1-6.22 2.034 9.892 9.892 0 0 1-5.434-1.336 5.636 5.636 0 0 1-2.538-3.831h4.157a2.711 2.711 0 0 0 1.261 1.663 5.05 5.05 0 0 0 2.554.46Zm.104-6.77a3.963 3.963 0 0 0 3.117-1.351 5.201 5.201 0 0 0 1.188-3.549v-.683a5.125 5.125 0 0 0-1.188-3.519 3.95 3.95 0 0 0-1.407-1.026 3.955 3.955 0 0 0-1.71-.325 3.779 3.779 0 0 0-3.103 1.411 6.96 6.96 0 0 0 0 7.646 3.775 3.775 0 0 0 3.103 1.396Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-glyzza\",\"data-framer-name\":\"logo-westfarmers\",layoutDependency:layoutDependency,layoutId:\"enF_n35oh\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:190,pixelHeight:380,pixelWidth:380,src:\"https://framerusercontent.com/images/wfIbdRr8kyad91VIWijcb9ZV8Is.svg\"},className:\"framer-16115ye\",\"data-framer-name\":\"Wesfarmers\",layoutDependency:layoutDependency,layoutId:\"wIS3j9Wnm\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3h7ujn\",\"data-framer-name\":\"logo-transperth\",layoutDependency:layoutDependency,layoutId:\"nRE_ke3RT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1v8bqdv\",\"data-framer-name\":\"Transperth\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"BQfXlLsEB\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 240 240\"><path d=\"M 31.58 110.008 L 32.043 106.693 C 32.047 106.658 32.078 106.632 32.113 106.633 L 49.425 106.633 C 49.434 106.633 49.444 106.635 49.454 106.638 C 49.473 106.646 49.487 106.663 49.493 106.683 C 49.496 106.692 49.497 106.702 49.496 106.712 L 49.048 110.024 C 49.046 110.042 49.038 110.058 49.025 110.069 C 49.012 110.08 48.995 110.087 48.978 110.087 L 42.44 110.087 C 42.423 110.086 42.406 110.092 42.393 110.104 C 42.38 110.115 42.372 110.131 42.369 110.149 L 39.992 127.341 C 39.987 127.376 39.956 127.402 39.921 127.401 L 35.722 127.405 C 35.701 127.405 35.681 127.396 35.667 127.38 C 35.653 127.364 35.647 127.344 35.651 127.323 L 38.029 110.159 C 38.033 110.128 38.017 110.097 37.988 110.084 C 37.978 110.08 37.968 110.078 37.958 110.078 L 31.651 110.09 C 31.64 110.09 31.63 110.088 31.621 110.084 C 31.611 110.08 31.603 110.074 31.597 110.066 C 31.583 110.05 31.577 110.029 31.58 110.008 Z M 151.647 115.61 C 153.011 114.131 155.018 112.861 157.009 113.43 C 158.769 113.932 159.725 115.67 159.502 117.45 C 159.085 120.757 158.644 124.06 158.179 127.36 C 158.177 127.373 158.171 127.384 158.161 127.392 C 158.152 127.4 158.14 127.405 158.128 127.405 L 156.393 127.401 C 156.375 127.401 156.357 127.393 156.345 127.379 C 156.339 127.372 156.335 127.363 156.332 127.355 C 156.329 127.345 156.328 127.336 156.33 127.326 C 156.738 124.261 157.144 121.191 157.55 118.113 C 157.649 117.352 157.669 116.372 157.206 115.764 C 156.309 114.583 154.326 115.324 153.392 116.129 C 152.632 116.782 151.92 117.49 151.263 118.246 C 151.185 118.334 151.136 118.444 151.12 118.56 L 149.936 127.326 C 149.929 127.381 149.898 127.408 149.844 127.408 L 148.173 127.401 C 148.131 127.401 148.093 127.372 148.081 127.331 C 148.077 127.317 148.076 127.303 148.077 127.289 L 150.798 106.881 C 150.804 106.827 150.85 106.787 150.904 106.787 L 152.585 106.778 C 152.638 106.778 152.661 106.804 152.654 106.856 L 151.518 115.547 C 151.496 115.706 151.539 115.727 151.647 115.61 Z M 143.437 113.592 L 146.549 113.592 C 146.603 113.592 146.627 113.619 146.62 113.672 L 146.445 115.096 C 146.438 115.151 146.391 115.193 146.335 115.193 L 143.23 115.193 C 143.156 115.193 143.111 115.23 143.097 115.303 C 142.461 118.551 142 121.215 141.714 123.294 C 141.539 124.58 141.939 126.266 143.586 126.046 C 144.448 125.933 145.297 125.266 145.922 124.631 C 145.93 124.622 145.942 124.616 145.954 124.613 C 145.967 124.611 145.98 124.612 145.991 124.616 C 146.003 124.621 146.013 124.629 146.02 124.64 C 146.028 124.65 146.032 124.663 146.032 124.676 L 146.03 126.57 C 146.031 126.616 146.008 126.66 145.968 126.685 C 145.223 127.168 144.707 127.444 144.421 127.511 C 140.931 128.336 139.341 125.686 139.854 122.633 C 140.264 120.184 140.719 117.748 141.217 115.326 C 141.224 115.292 141.216 115.257 141.194 115.23 C 141.183 115.216 141.169 115.206 141.153 115.199 C 141.138 115.191 141.121 115.187 141.104 115.188 L 138.92 115.195 C 138.893 115.195 138.867 115.183 138.849 115.163 C 138.84 115.153 138.834 115.141 138.829 115.129 C 138.825 115.116 138.824 115.102 138.825 115.088 L 138.992 113.684 C 138.999 113.622 139.035 113.59 139.098 113.59 L 141.37 113.594 C 141.398 113.594 141.425 113.584 141.446 113.566 C 141.467 113.548 141.482 113.523 141.487 113.496 L 142.024 110.663 C 142.035 110.603 142.071 110.574 142.131 110.574 L 143.764 110.567 C 143.863 110.567 143.903 110.615 143.884 110.713 L 143.351 113.485 C 143.336 113.557 143.365 113.592 143.437 113.592 Z M 117.814 120.608 C 117.64 122.573 118.5 124.943 120.486 125.651 C 122.36 126.32 124.538 125.225 125.823 123.881 C 125.833 123.872 125.844 123.866 125.857 123.863 C 125.87 123.86 125.884 123.861 125.896 123.866 C 125.921 123.876 125.938 123.9 125.939 123.927 L 125.944 125.913 C 125.944 126.004 125.903 126.09 125.832 126.147 C 123.277 128.2 119.435 128.346 117.302 125.622 C 114.777 122.397 115.647 116.076 119.387 114.003 C 121.376 112.9 123.864 113.07 125.359 114.868 C 126.587 116.348 126.894 118.523 126.64 120.44 C 126.635 120.491 126.606 120.516 126.556 120.516 L 117.92 120.512 C 117.894 120.512 117.868 120.522 117.848 120.54 C 117.828 120.557 117.816 120.582 117.814 120.608 Z M 121.646 115.173 C 120.006 115.335 118.453 117.007 118.148 118.654 C 118.142 118.678 118.148 118.704 118.165 118.723 C 118.18 118.742 118.204 118.753 118.229 118.753 L 124.793 118.75 C 124.846 118.75 124.873 118.723 124.873 118.669 C 124.859 116.746 123.834 114.957 121.646 115.173 Z M 131.737 116.274 C 133.029 114.541 134.515 112.402 137.065 113.667 C 137.127 113.697 137.153 113.747 137.143 113.816 L 136.914 115.367 C 136.902 115.446 136.861 115.468 136.79 115.434 C 135.789 114.963 134.895 115.089 134.105 115.815 C 133.131 116.709 132.263 117.781 131.5 119.032 C 131.337 119.3 131.232 119.6 131.192 119.912 C 130.851 122.377 130.519 124.843 130.197 127.309 C 130.194 127.336 130.181 127.36 130.161 127.379 C 130.14 127.396 130.115 127.406 130.088 127.407 L 128.432 127.413 C 128.353 127.413 128.32 127.374 128.331 127.297 L 130.143 113.682 C 130.149 113.622 130.184 113.592 130.245 113.592 L 131.931 113.59 C 131.996 113.59 132.023 113.622 132.015 113.686 L 131.667 116.247 C 131.653 116.346 131.676 116.355 131.737 116.274 Z M 51.733 115.367 C 53.176 113.338 55.366 112.416 57.16 114.792 C 57.198 114.842 57.204 114.894 57.176 114.95 L 55.407 118.562 C 55.368 118.641 55.321 118.646 55.267 118.576 C 55.031 118.268 54.802 117.908 54.54 117.686 C 53.281 116.619 52.001 117.597 51.253 118.724 C 51.068 119.001 50.942 119.384 50.873 119.871 C 50.527 122.347 50.186 124.824 49.852 127.302 C 49.844 127.363 49.808 127.395 49.744 127.396 L 45.894 127.405 C 45.867 127.405 45.841 127.393 45.823 127.372 C 45.805 127.351 45.797 127.324 45.8 127.297 L 47.692 113.725 C 47.704 113.639 47.753 113.595 47.84 113.595 L 51.655 113.597 C 51.666 113.597 51.678 113.6 51.688 113.604 C 51.721 113.619 51.74 113.654 51.735 113.689 L 51.508 115.276 C 51.458 115.617 51.533 115.647 51.733 115.367 Z M 65.214 126.256 C 64.543 126.698 64.103 126.973 63.893 127.08 C 61.709 128.209 59.245 127.779 57.805 125.793 C 56.131 123.488 56.368 119.899 57.723 117.516 C 60.285 113.012 66.558 112.784 71.005 113.824 C 71.049 113.835 71.068 113.862 71.062 113.906 L 69.188 127.305 C 69.181 127.359 69.15 127.385 69.095 127.385 L 65.248 127.39 C 65.171 127.39 65.139 127.352 65.151 127.277 L 65.305 126.314 C 65.307 126.303 65.305 126.291 65.301 126.28 C 65.296 126.27 65.288 126.261 65.279 126.255 C 65.269 126.249 65.258 126.245 65.247 126.246 C 65.235 126.246 65.224 126.249 65.214 126.256 Z M 61.028 120.332 C 60.568 122.121 60.684 125.121 63.484 124.559 C 64.283 124.398 65.001 124.035 65.638 123.468 C 65.688 123.425 65.72 123.365 65.728 123.3 L 66.597 116.92 C 66.604 116.868 66.582 116.838 66.53 116.829 C 63.808 116.408 61.693 117.739 61.028 120.332 Z M 78.637 115.005 C 78.634 115.021 78.637 115.036 78.644 115.05 C 78.654 115.072 78.674 115.087 78.697 115.093 C 78.72 115.098 78.744 115.092 78.763 115.077 C 82.082 112.253 87.655 112.6 86.913 118.377 C 86.531 121.364 86.135 124.343 85.725 127.316 C 85.723 127.34 85.711 127.362 85.693 127.378 C 85.674 127.394 85.651 127.403 85.626 127.403 L 81.747 127.401 C 81.736 127.401 81.725 127.399 81.716 127.395 C 81.706 127.39 81.697 127.383 81.69 127.375 C 81.683 127.367 81.677 127.357 81.675 127.347 C 81.671 127.336 81.671 127.325 81.673 127.314 C 82.069 124.476 82.462 121.631 82.853 118.779 C 82.918 118.299 82.861 117.809 82.679 117.31 C 81.839 115.005 79.012 117.546 78.229 118.487 C 78.191 118.534 78.166 118.59 78.158 118.649 L 76.956 127.326 C 76.949 127.379 76.919 127.405 76.867 127.405 L 73.019 127.41 C 73.005 127.41 72.99 127.406 72.977 127.4 C 72.964 127.394 72.952 127.385 72.942 127.374 C 72.933 127.363 72.926 127.35 72.921 127.336 C 72.918 127.322 72.917 127.307 72.918 127.293 L 74.811 113.686 C 74.819 113.623 74.855 113.592 74.919 113.592 L 78.782 113.592 C 78.806 113.592 78.828 113.602 78.843 113.62 C 78.859 113.639 78.865 113.663 78.86 113.686 Z M 94.116 124.064 C 95.347 123.259 92.55 121.386 91.923 120.929 C 90.939 120.213 89.855 118.938 89.93 117.647 C 90.011 116.252 90.546 115.177 91.533 114.422 C 93.69 112.773 96.923 113.195 99.2 114.565 C 99.222 114.579 99.24 114.598 99.251 114.621 C 99.263 114.645 99.268 114.671 99.265 114.697 L 98.966 117.75 C 98.964 117.761 98.96 117.772 98.954 117.782 C 98.948 117.791 98.939 117.799 98.929 117.804 C 98.908 117.816 98.883 117.816 98.863 117.805 C 97.748 117.243 96.549 116.868 95.313 116.695 C 94.776 116.617 93.928 116.805 94.127 117.523 C 94.232 117.901 94.74 118.377 95.128 118.65 C 96.299 119.473 97.163 120.22 97.721 120.89 C 99.14 122.596 98.868 125.007 97.207 126.435 C 95.013 128.319 91.265 127.725 88.928 126.399 C 88.881 126.372 88.863 126.332 88.873 126.28 L 89.405 123.429 C 89.417 123.365 89.453 123.345 89.513 123.367 C 90.637 123.77 93.036 124.772 94.116 124.064 Z M 104.163 127.513 L 103.264 133.96 C 103.253 134.034 103.21 134.072 103.134 134.072 L 101.368 134.072 C 101.3 134.072 101.27 134.037 101.279 133.969 L 104.024 113.684 C 104.032 113.625 104.066 113.595 104.123 113.595 C 105.82 113.572 108.049 113.48 109.389 113.684 C 112.597 114.175 114.417 116.826 114.179 120.007 C 113.911 123.577 111.431 127.352 107.594 127.594 C 106.627 127.656 105.52 127.6 104.274 127.427 C 104.209 127.419 104.172 127.448 104.163 127.513 Z M 111.617 117.372 C 110.416 115.411 107.823 115.562 105.879 115.599 C 105.777 115.602 105.72 115.653 105.707 115.755 L 104.478 125.207 C 104.473 125.243 104.482 125.279 104.502 125.309 C 104.523 125.338 104.553 125.359 104.588 125.367 C 106.756 125.908 109.246 125.841 110.757 123.933 C 111.957 122.415 112.667 119.087 111.617 117.372 Z M 183.556 116.423 C 183.54 116.425 183.525 116.423 183.51 116.418 C 183.481 116.409 183.456 116.387 183.444 116.358 C 183.438 116.344 183.435 116.329 183.435 116.313 C 183.498 110.803 184.95 105.076 186.918 99.951 C 186.944 99.881 187.009 99.833 187.084 99.831 C 193.211 99.508 199.34 101.802 203.348 106.539 C 203.371 106.567 203.384 106.603 203.382 106.64 C 203.38 106.677 203.364 106.712 203.337 106.737 C 197.972 111.943 191.032 115.59 183.556 116.423 Z M 185.913 100.102 C 184.982 102.503 184.019 104.889 183.18 107.324 C 182.159 110.279 181.482 113.342 181.163 116.452 C 181.155 116.519 181.118 116.555 181.051 116.56 C 180.909 116.571 180.714 116.579 180.465 116.587 C 176.692 116.697 172.926 116.181 169.321 115.06 C 169.24 115.035 169.193 114.95 169.215 114.868 C 171.29 106.971 177.712 101.198 185.806 99.969 C 185.841 99.964 185.876 99.978 185.898 100.005 C 185.92 100.033 185.926 100.07 185.913 100.102 Z M 204.103 132.309 C 198.395 132.579 192.111 131.048 187.625 127.312 C 185.113 125.22 183.868 122.154 183.595 118.865 C 183.59 118.815 183.613 118.788 183.664 118.785 C 191.89 118.413 199.616 116.285 206.842 112.402 C 206.866 112.389 206.894 112.386 206.92 112.396 C 206.932 112.4 206.944 112.408 206.953 112.417 C 206.963 112.426 206.97 112.438 206.975 112.45 C 209.6 119.016 208.592 126.458 204.428 132.135 C 204.351 132.238 204.232 132.302 204.103 132.309 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 181.086 118.931 C 181.205 128.744 188.015 134.786 196.461 138.375 C 196.499 138.39 196.523 138.427 196.522 138.468 C 196.522 138.509 196.497 138.545 196.459 138.56 C 190.4 141.066 183.689 140.749 178.143 137.26 C 170.981 132.756 167.397 124.592 168.93 116.25 C 168.933 116.234 168.939 116.22 168.949 116.207 C 168.958 116.195 168.97 116.184 168.985 116.178 C 169.013 116.163 169.046 116.163 169.075 116.177 C 172.724 117.927 176.926 118.7 180.951 118.794 C 181.026 118.796 181.085 118.856 181.086 118.931 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:10710776744,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1i56w01\",\"data-framer-name\":\"logo-tourism\",layoutDependency:layoutDependency,layoutId:\"DnMLs9sOI\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:190,pixelHeight:380,pixelWidth:380,src:\"https://framerusercontent.com/images/81n8DpVv4B48CO7IOQApgqg.svg\"},className:\"framer-3g7pvz\",\"data-framer-name\":\"Tourism_WA\",layoutDependency:layoutDependency,layoutId:\"DSvXtX0E1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2hwp58\",\"data-framer-name\":\"logo-tab-touch\",layoutDependency:layoutDependency,layoutId:\"NP507TFDT\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-20ompx\",\"data-framer-name\":\"Tab_Touch\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"U9IngJeoh\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M66.433 174.817c-4.27-.04-8.538-.053-12.804-.037-2.05.004-3.608-.329-3.617-2.665a852.554 852.554 0 0 1 0-8.933c.014-2.332 2.003-2.295 3.974-2.299 13.368-.013 26.716-.014 40.044-.005a.176.176 0 0 1 .135.065.173.173 0 0 1 .034.146l-3.205 13.367a.455.455 0 0 1-.44.347l-7.503-.009c-.163 0-.244.081-.244.244a5708.9 5708.9 0 0 0 .014 30.13c.014 4.448-1.29 8.863-2.44 13.104-.037.151-.134.226-.29.226-3.297-.003-6.59-.008-9.876-.014-2.445-.005-3.524-.714-3.515-3.196.035-13.405.032-26.808-.009-40.208 0-.172-.086-.26-.258-.263Zm35.474 32.899-1.834 7.685c-.559 2.351-2.59 3.054-4.945 3.069-3.773.025-7.534.034-11.284.028a.22.22 0 0 1-.18-.087.225.225 0 0 1-.04-.195l13.774-57.108a.292.292 0 0 1 .282-.221 3634.6 3634.6 0 0 1 16.182-.009c2.458.006 4.171.225 5.137.657 2.595 1.159 3.383 3.092 4.106 5.963.541 2.136 1.08 4.238 1.618 6.306a3.27 3.27 0 0 1 .019 1.6l-7.577 31.613a.54.54 0 0 1-.521.413l-14.366-.005c-.2 0-.324.097-.371.291Zm7.174-29.108a.17.17 0 0 0-.169.132l-3.899 16.125a.19.19 0 0 0 0 .075.172.172 0 0 0 .091.115.17.17 0 0 0 .073.017l8.671-.005a.17.17 0 0 0 .164-.206l-3.796-16.112a.169.169 0 0 0-.159-.131l-.976-.01Zm53.083 8.262c4.313 2.647 6.71 6.369 7.192 11.167 1.004 9.975-4.884 17.922-14.577 19.954-1.458.306-3.702.468-6.733.483-6.027.031-12.053.033-18.077.005-5.612-.028-6.132-2.369-6.156-7.399a2279.53 2279.53 0 0 1-.005-16.539 17.21 17.21 0 0 1 .484-4.006 99000.98 99000.98 0 0 1 7.094-29.413c.037-.159.137-.239.3-.239 5.646-.044 11.288-.047 16.928-.01 9.332.066 17.974 3.313 18.532 14.057.241 4.61-1.429 8.478-5.011 11.603-.143.125-.134.237.029.337Zm-23.994-12.958v7.713a.192.192 0 0 0 .192.192h9.956c1.074 0 2.104-.381 2.863-1.06.76-.68 1.186-1.601 1.186-2.562v-.854c0-.96-.426-1.881-1.186-2.561-.759-.679-1.789-1.061-2.863-1.061h-9.956a.193.193 0 0 0-.192.193Zm.019 20.151-.038 11.194c0 .036.007.07.02.103a.3.3 0 0 0 .058.087.3.3 0 0 0 .087.058c.033.013.067.02.103.02l10.387.037a6.325 6.325 0 0 0 2.259-.406 5.957 5.957 0 0 0 1.917-1.172 5.44 5.44 0 0 0 1.285-1.761 5.075 5.075 0 0 0 .455-2.08v-.853c.005-1.442-.612-2.827-1.714-3.85-1.103-1.024-2.6-1.602-4.164-1.607l-10.388-.037a.267.267 0 0 0-.267.267Zm171.526-10.148c3.172-1.73 6.791-2.368 10.857-1.915 6.151.685 9.327 5.471 9.374 11.34.063 8.067.071 16.159.024 24.276a.872.872 0 0 1-.868.863l-9.923.028a1.084 1.084 0 0 1-1.01-.671 1.086 1.086 0 0 1-.084-.417c.032-6.969.029-13.929-.009-20.879-.019-3.082-.54-4.987-4.068-4.687-1.683.144-3.087.527-4.213 1.15a.444.444 0 0 0-.249.417v23.98c0 .286-.113.561-.315.765a1.09 1.09 0 0 1-.764.319l-9.693.004a1.192 1.192 0 0 1-1.192-1.196l-.004-45.534c0-.854.427-1.281 1.28-1.281l9.534.005a1.155 1.155 0 0 1 1.154 1.154l-.004 12.175c0 .132.058.166.173.104Zm-120.269 7.549c-.053 5.236-.051 10.47.005 15.703.01.77-.281 2.215.573 2.754.811.516 3.045.3 4.147.31.726.006 1.096.372 1.112 1.098.034 2.008.036 4.03.005 6.066-.028 1.595-5.405 1.666-6.541 1.666-8.135-.01-11.288-3.106-11.288-11.411a5824.86 5824.86 0 0 0-.014-16.191c-.003-.144-.075-.233-.216-.267l-4.223-1.009a1.193 1.193 0 0 1-.919-1.14c-.025-1.661-.027-3.36-.005-5.096.016-1.194.601-1.762 1.755-1.703a87.33 87.33 0 0 0 3.331.108c.172 0 .258-.086.258-.258l-.005-4.846a1.21 1.21 0 0 1 .284-.777c.183-.217.436-.363.716-.41l10.031-1.727a.817.817 0 0 1 .957.798l.023 6.958c0 .162.082.244.244.244l4.589-.005c.14-.001.279.026.409.08a1.052 1.052 0 0 1 .579.576c.054.13.082.269.082.409l.004 6.756a1.062 1.062 0 0 1-.314.764 1.081 1.081 0 0 1-.765.32h-4.584c-.153 0-.23.076-.23.23Zm40.896 12.986a14.498 14.498 0 0 1-14.477 14.528l-3.443.006a14.502 14.502 0 0 1-14.528-14.477l-.014-8.126a14.5 14.5 0 0 1 14.477-14.528l3.444-.006a14.505 14.505 0 0 1 14.527 14.477l.014 8.126Zm-16.193 4.622c2.852.098 3.847-2.121 4.189-4.697.473-3.54.396-6.634-.229-9.28-1.07-4.518-7.179-4.19-8.047.01-.425 2.073-.53 4.619-.314 7.638.216 2.993.516 6.188 4.401 6.329Zm67.477 9.839c-6.32-.568-10.955-5.635-11.809-11.627-.676-4.734-.779-11.19.469-15.534 1.654-5.771 5.592-9.049 11.814-9.834 3.317-.418 7.915.052 11.147.976.835.239.765 1.107.779 1.839.038 2.215.027 4.473-.033 6.775a.92.92 0 0 1-1.037.887 56.485 56.485 0 0 0-5.7-.441c-2.125-.057-3.753-.174-4.856 1.468-.601.901-.935 2.046-1.004 3.435-.175 3.562-.1 6.454.225 8.675.338 2.308 1.742 3.456 4.213 3.443a66.166 66.166 0 0 0 7.216-.417.876.876 0 0 1 .904.517.876.876 0 0 1 .077.36l.005 7.568a.97.97 0 0 1-.714.934c-3.772 1.013-7.671 1.338-11.696.976Zm-27.11-2.816c-3.837 2.65-7.861 3.577-12.071 2.783-7.141-1.342-8.929-7.723-8.901-14.043.028-7.197.06-14.324.094-21.38a1.107 1.107 0 0 1 1.093-1.103 334.19 334.19 0 0 1 7.859-.018c1.778.023 2.989-.296 2.989 1.853-.003 7.159-.01 14.316-.019 21.469-.005 4.884 5.489 3.655 8.182 2.257a.4.4 0 0 0 .211-.352l.01-23.848a1.397 1.397 0 0 1 .863-1.289c.17-.07.352-.105.535-.105l9.388.019a1.17 1.17 0 0 1 1.164 1.164l-.005 34.02a.962.962 0 0 1-.957.962l-9.149.014a1.027 1.027 0 0 1-1.027-1.014l-.015-1.262c-.003-.194-.084-.236-.244-.127Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ig0o7n\",\"data-framer-name\":\"logo-swift\",layoutDependency:layoutDependency,layoutId:\"JUaOaREe1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9edzar\",\"data-framer-name\":\"swift\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"dAJ7k96mz\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"90\" y=\"154\" width=\"200\" height=\"72\"><path d=\"M289.36 154H90.64v72h198.72v-72Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M112.756 183.746c6.078 0 7.497 2.897 8.029 5.075l.056.219h13.92l-.019-.31c-.476-7.345-6.339-15.2-21.36-15.2-7.114 0-12.585 1.631-16.244 4.848-2.997 2.634-4.659 6.352-4.659 10.452 0 7.336 3.184 12.348 19.484 16.267 7.338 1.759 9.233 2.971 9.233 5.896 0 1.95-.7 4.538-6.787 4.538-5.06 0-8.281-2.06-9.336-5.951l-.056-.218H90.64l.037.328c1.802 14.188 15.311 16.311 23.2 16.311 10.726 0 22.191-4.2 22.191-15.974 0-8.001-3.202-13.359-19.577-17.068-8.15-1.859-9.597-2.989-9.597-5.258 0-1.805 1.017-3.955 5.862-3.955Zm82.734-8.841c-5.34 21.989-7.152 30.236-8.234 35.53-.803-5.121-2.586-12.694-7.525-33.589l-.513-2.16h-13.547l-.056.219c-5.788 22.517-7.403 30.664-8.476 36.268-1.121-6.661-3.763-18.489-7.852-36.268l-.056-.228h-15.506l14.535 49.965.066.21h15.59l.056-.219c3.875-15.392 6.759-27.028 7.824-33.799.793 4.182 2.044 9.714 3.837 17.642a3222.04 3222.04 0 0 1 3.631 16.139l.047.228h15.535l15.254-50.175h-14.564l-.056.218.01.019Zm31.582-.23h-14.657v50.175h14.657v-50.175ZM220.043 154c-2.119 0-3.959.729-5.471 2.151-1.512 1.439-2.287 3.235-2.287 5.34s.765 3.809 2.278 5.258c1.503 1.449 3.351 2.187 5.47 2.187 2.12 0 4.015-.738 5.508-2.187 1.494-1.449 2.25-3.217 2.25-5.249 0-2.032-.756-3.9-2.25-5.34-1.493-1.431-3.342-2.16-5.498-2.16Zm58.741 8.502h-14.406v11.993h-13.257v-2.552c0-1.431.308-2.442.906-3.025.598-.584 1.718-.884 3.23-.884.56 0 1.12.018 1.68.036.533.027 1 .064 1.391.119l2.522.328v-11.282l-1.812-.337a27.234 27.234 0 0 0-2.698-.319 45.734 45.734 0 0 0-3.147-.119c-5.358 0-9.429 1.294-12.088 3.837-2.67 2.561-4.034 6.415-4.034 11.464v2.725h-.906c-2.698 0-4.425 1.813-4.938 3.617l-2.315 8.256h8.159v38.511h14.227v-38.511h13.08v23.794c0 5.221 1.391 9.122 4.146 11.6 2.697 2.434 6.711 3.664 11.93 3.664a28.19 28.19 0 0 0 3.007-.146 43.218 43.218 0 0 0 2.268-.282l1.876-.292v-11.528l-2.408.201c-.374.027-.784.064-1.232.109-.346.036-.748.055-1.177.055-1.493 0-2.605-.265-3.23-.784-.233-.191-.774-.875-.774-3.126V186.35h3.332c2.128 0 4.014-1.266 4.827-3.262l2.417-8.612h-10.576v-11.992.018Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8x6stl\",\"data-framer-name\":\"logo-perth-airport\",layoutDependency:layoutDependency,layoutId:\"qQDeXVnCj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1nyx7z\",\"data-framer-name\":\"Perth_Airport\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"ykxWY1yub\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M69.835 193.797c0 5.452-3.64 8.716-9.843 8.716h-5.975v11.03H50v-28.428h10.038c6.157 0 9.797 3.23 9.797 8.682Zm-4.098 0c0-3.459-2.025-5.498-5.47-5.498h-6.238v10.984h6.203c3.434.012 5.505-2.027 5.505-5.486Zm40.013-4.341 3.835-1.512v6.483h6.031v2.932h-6.008v10.285c0 2.039 1.224 3.184 3.33 3.184.916 0 1.912-.229 2.678-.619v2.921c-1.075.504-2.529.802-3.902.802-3.72 0-5.952-2.188-5.952-5.922v-18.554h-.012Zm67.837-1.661h3.835v3.837h-3.835v-3.837Zm0 6.62h3.835v19.127h-3.835v-19.127Zm43.722 9.564c0-6.265 3.433-9.953 9.179-9.953 5.791 0 9.179 3.688 9.179 9.953 0 6.265-3.388 9.953-9.179 9.953-5.746 0-9.179-3.688-9.179-9.953Zm14.604 0c0-4.307-1.992-6.838-5.425-6.838-3.434 0-5.425 2.531-5.425 6.838 0 4.306 1.991 6.837 5.425 6.837 3.433 0 5.425-2.531 5.425-6.837Zm-70.698-18.864h-6.055l-9.785 28.427h4.097l2.312-7.146h12.807l2.312 7.146h4.098l-9.786-28.427Zm-8.39 18.062 5.368-16.607 5.368 16.607h-10.736Zm62.355.836c-.011-6.242-2.93-9.976-7.92-9.976-3.354 0-5.791 1.34-7.016 4.376v-3.986h-3.834v27.969h3.834v-12.828c1.225 3.035 3.662 4.375 7.016 4.375 4.979-.011 7.897-3.722 7.92-9.93Zm-9.351 6.804c-3.445 0-5.322-2.692-5.322-6.838s1.866-6.838 5.322-6.838c3.445 0 5.448 2.531 5.448 6.838 0 4.306-2.003 6.838-5.448 6.838Zm-83.403-12.473c1.088-3.322 3.64-4.307 6.387-4.307 2.919 0 6.902 1.409 6.902 7.72v11.797h-3.835v-11.683c0-3-1.648-4.409-4.44-4.409-2.896 0-5.014 2.565-5.014 6.334v9.758h-3.834v-26.916l3.834-1.512v13.218Zm-38.33 9.724c-1.214 2.508-3.594 2.875-4.99 2.875-3.182 0-5.174-2.383-5.323-6.414h14.318v-.539c0-6.265-3.33-9.953-8.996-9.953-5.7 0-9.041 3.688-9.041 9.953 0 6.265 3.33 9.953 9.041 9.953 4.19 0 7.2-1.855 8.459-5.085l-3.468-.79Zm-4.99-11.041c2.735 0 4.52 1.775 5.07 4.867h-10.21c.55-3.092 2.37-4.867 5.14-4.867Zm173.603-7.571 3.835-1.512v6.483h6.031v2.932h-6.008v10.285c0 2.039 1.224 3.184 3.33 3.184.916 0 1.912-.229 2.678-.619v2.921c-1.075.504-2.529.802-3.902.802-3.72 0-5.952-2.188-5.952-5.922v-18.554h-.012Zm-149.385 9.151c-.687-.733-1.9-1.145-3.354-1.145-3.136 0-5.013 2.76-5.013 6.517v9.564h-3.834v-19.128h3.834v3.929c1.088-3.322 3.64-4.307 6.387-4.307.641 0 1.327.069 2.026.241v2.084l-.046 2.245Zm90.602 0c-.687-.733-1.9-1.145-3.354-1.145-3.136 0-5.013 2.76-5.013 6.517v9.564h-3.834v-19.128h3.834v3.929c1.088-3.322 3.64-4.307 6.387-4.307.641 0 1.327.069 2.026.241v2.084l-.046 2.245Zm56.369 0c-.687-.733-1.9-1.145-3.354-1.145-3.136 0-5.013 2.76-5.013 6.517v9.564h-3.834v-19.128h3.834v3.929c1.087-3.322 3.64-4.307 6.386-4.307.641 0 1.328.069 2.026.241v2.084l-.045 2.245Zm12.601-23.17 18.083 16.825-9.499 16.012L330 183.042l-5.814-.653-41.948 16.608 4.224-7.445-12.35-10.205 27.446 6.7v-30.443l-12.361 20.811 4.441.504 4.761-8.361-.813 12.736-34.69-7.857Z\" fill=\"#fff\"/><path d=\"m262.896 175.437 18.083 16.825-9.499 16.012L330 183.042l-5.814-.653-41.948 16.608 4.224-7.445-12.35-10.205 27.446 6.7v-30.443l-12.361 20.811 4.441.504 4.761-8.361-.813 12.736-34.69-7.857Z\" fill=\"#fff\"/><path d=\"m262.896 175.437 18.083 16.825-9.499 16.012L330 183.042l-5.814-.653-41.948 16.608 4.224-7.445-12.35-10.205 27.446 6.7v-30.443l-12.361 20.811 4.441.504 4.761-8.361-.813 12.736-34.69-7.857Z\" fill=\"#fff\"/><path d=\"m262.896 175.437 18.083 16.825-9.499 16.012L330 183.042l-5.814-.653-41.948 16.608 4.224-7.445-12.35-10.205 27.446 6.7v-30.443l-12.361 20.811 4.441.504 4.761-8.361-.813 12.736-34.69-7.857Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-inlj22\",\"data-framer-name\":\"logo-murdoch-uni\",layoutDependency:layoutDependency,layoutId:\"Bzk8ADjXe\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l08as5\",\"data-framer-name\":\"Murdoch_University\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"qEOYbGEpW\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m175.844 169.226.001 14.422c0 .02-.011.03-.032.03h-6.536c-.041 0-.062-.02-.062-.061v-22.586c0-.021.011-.031.031-.031h9.851c.042 0 .068.021.078.063l3.18 13.102c.036.147.071.147.106 0l3.183-13.102c.011-.042.038-.063.08-.063h9.852c.008 0 .016.003.022.009a.031.031 0 0 1 .009.022v22.586c0 .041-.021.061-.061.061h-6.506c-.041 0-.062-.02-.062-.061l.002-14.394a.027.027 0 0 0-.007-.014.022.022 0 0 0-.014-.008.028.028 0 0 0-.015.004c-.005.002-.008.007-.01.012l-3.898 14.399a.088.088 0 0 1-.031.045.087.087 0 0 1-.052.017h-5.089a.087.087 0 0 1-.052-.017.086.086 0 0 1-.03-.045l-3.896-14.395a.022.022 0 0 0-.008-.014.024.024 0 0 0-.016-.005.029.029 0 0 0-.014.008.022.022 0 0 0-.004.016Zm-122.107-8.197h15.512a.082.082 0 0 1 .07.04l12.53 20.333c.035.058.07.058.106 0l12.514-20.306a.134.134 0 0 1 .117-.065h25.558c.039 0 .059.019.059.059.007 9.824.01 19.644.01 29.461 0 5.577 2.39 10.224 8.368 10.898 1.213.137 2.502.065 3.865-.218 3.068-.636 5.155-2.377 6.259-5.226.711-1.831.865-3.66.865-5.79-.001-9.707-.001-19.415.001-29.122 0-.041.021-.062.062-.062h14.727c.041 0 .061.02.061.061.005 10.098.005 20.194-.001 30.288 0 1.18-.124 2.643-.373 4.388-1.082 7.607-4.969 13.778-12.175 16.789-4.403 1.839-9.152 2.265-14.085 2.089-7.995-.285-15.726-3.333-19.6-10.753-2-3.832-2.793-8.254-2.806-12.666-.022-7.278-.032-14.552-.028-21.822a.034.034 0 0 0-.006-.015.022.022 0 0 0-.013-.008.022.022 0 0 0-.016 0 .027.027 0 0 0-.012.009l-23.323 34.916a.066.066 0 0 1-.023.02.053.053 0 0 1-.03.007.063.063 0 0 1-.03-.007.065.065 0 0 1-.022-.022L67.855 182.84c-.042-.064-.063-.058-.063.018l.001 30.77c0 .04-.02.059-.059.059l-13.997-.002v-52.656Zm188.545 20.932a.04.04 0 0 0-.007-.024.045.045 0 0 0-.021-.015.043.043 0 0 0-.025.001.038.038 0 0 0-.019.016c-.99 1.489-2.384 2.049-4.186 2.155-2.864.17-4.985-1.074-6.364-3.73-2.211-4.259-1.537-12.516 4.465-13.451 2.236-.347 4.518.15 5.898 2.081a.03.03 0 0 0 .012.01.022.022 0 0 0 .016 0 .022.022 0 0 0 .013-.01.02.02 0 0 0 .004-.015l-.001-7.881a.056.056 0 0 1 .057-.056l6.219.001c.013 0 .025.005.033.014.009.008.014.02.014.033v22.527c0 .041-.02.061-.061.061h-5.984c-.041 0-.062-.02-.062-.061l-.001-1.656Zm-5.361-7.849c-.225 1.245-.156 2.867.403 4.034.423.886 1.153 1.317 2.137 1.36 3.031.134 3.073-3.88 2.638-5.864-.304-1.391-1.181-2.281-2.666-2.234-1.618.052-2.244 1.226-2.512 2.704Zm57.299-5.163c.688-.834 1.498-1.413 2.431-1.737 3.194-1.107 7.307-.1 8.16 3.64.103.453.157 1.268.161 2.445.012 3.44.012 6.88.003 10.321 0 .04-.02.06-.061.06l-6.228-.001a.031.031 0 0 1-.022-.009.034.034 0 0 1-.009-.022c.003-2.983.002-5.957-.001-8.921-.001-.808-.065-1.91-.684-2.458-.59-.521-1.7-.525-2.358-.23-1.204.538-1.468 1.773-1.467 2.966.004 2.871.003 5.742-.002 8.613 0 .041-.021.062-.063.062h-6.195c-.041 0-.061-.02-.061-.061v-22.504c0-.019.007-.037.021-.05a.067.067 0 0 1 .05-.021h6.165c.011 0 .022.002.032.006.011.005.02.011.028.019a.088.088 0 0 1 .025.062v7.793c0 .079.025.088.075.027Zm-71.117.793c0 .095.022.1.066.016 1.351-2.572 3.489-3.469 6.414-2.692.038.01.057.034.057.073v5.43c0 .05-.024.067-.07.052-.99-.336-1.919-.466-2.788-.39-2.632.228-3.4 2.25-3.412 4.605-.013 2.26-.021 4.521-.026 6.782 0 .04-.02.06-.059.06h-6.197c-.02 0-.03-.01-.03-.03v-16.357c0-.041.02-.061.061-.061h5.923c.041 0 .061.02.061.061v2.451Zm30.251 12.957c-3.241-2.081-4.249-6.208-3.314-9.823 1.221-4.729 5.512-6.477 10.042-5.991 3.641.391 6.468 2.48 7.326 6.148.485 2.07.359 4.359-.504 6.306-1.101 2.486-3.078 4.006-5.931 4.56-2.524.491-5.43.205-7.619-1.2Zm5.72-11.286c-2.923-.341-3.2 2.886-3.012 4.904.166 1.782.819 3.302 2.816 3.182 1.737-.106 2.312-1.518 2.45-3.034.156-1.738.115-4.776-2.254-5.052Zm18.53.04c-1.465.186-2.045 1.388-2.198 2.711-.149 1.317-.145 3.302.613 4.375.831 1.178 2.584 1.291 3.632.35.474-.426.757-.995.848-1.707.006-.047.033-.071.081-.071h5.892c.042 0 .06.021.054.063-.687 4.459-4.079 6.896-8.46 6.944-4.804.053-8.742-3.178-9.01-8.104-.341-6.261 4.871-9.982 10.789-9.057 3.529.551 6.2 2.751 6.489 6.48.002.035-.014.053-.049.053h-5.851c-.037 0-.058-.018-.065-.055-.254-1.522-1.175-2.182-2.765-1.982Zm-68.768 10.199c0-.004-.001-.009-.004-.012-.002-.004-.006-.006-.01-.008a.02.02 0 0 0-.011 0 .016.016 0 0 0-.009.007c-.949 1.264-2.163 2.038-3.644 2.322-3.04.583-6.351-.475-7.182-3.782-.119-.472-.18-1.286-.184-2.441-.011-3.482-.012-6.965-.002-10.449 0-.04.02-.059.06-.059h6.199a.06.06 0 0 1 .059.059c0 2.991-.002 5.989-.007 8.994-.002 1.376.3 2.817 2.032 2.806 1.691-.01 2.495-1.41 2.492-2.96-.006-2.945-.008-5.891-.006-8.837 0-.041.021-.062.062-.062h6.198c.041 0 .061.02.061.061v16.326c0 .041-.02.061-.061.061h-5.985c-.042 0-.063-.021-.063-.062l.005-1.964Zm-31.09 32.485c-4.198-.334-7.57-2.241-8.306-6.714-.131-.797-.198-1.408-.2-1.834-.02-4.827-.029-9.654-.026-14.482 0-.042.021-.064.064-.064h6.87c.041 0 .062.021.063.063.003 4.39.004 8.778.002 13.163-.001.58.069 1.213.209 1.9.375 1.839 1.972 2.594 3.695 2.363 2.263-.303 2.725-2.156 2.732-4.109.017-4.44.025-8.88.025-13.319a.059.059 0 0 1 .037-.056.06.06 0 0 1 .023-.005h6.846c.023 0 .045.01.061.026a.084.084 0 0 1 .026.062l.001 14.244c0 .325-.031.764-.092 1.317-.737 6.641-6.447 7.889-12.03 7.445Zm39.878-23.094h-6.197a.049.049 0 0 0-.048.048v4.324c0 .026.022.047.048.047h6.197a.048.048 0 0 0 .048-.047v-4.324a.049.049 0 0 0-.048-.048Zm75.608 0h-6.184a.054.054 0 0 0-.054.054v4.311c0 .03.024.054.054.054h6.184c.03 0 .054-.024.054-.054v-4.311a.054.054 0 0 0-.054-.054Zm4.228 6.107v-4.879c0-.041.02-.061.061-.061h6.198c.041 0 .061.02.061.061l.003 4.879c0 .041.02.062.06.062h3.222c.041 0 .061.02.061.061v3.775c0 .041-.02.061-.061.061h-3.217c-.036 0-.055.018-.056.054-.028 3.298-.027 5.366.003 6.205.071 1.943 1.936 1.712 3.269 1.543.041-.006.062.012.062.054v4.658c0 .033-.016.05-.048.052-1.077.053-2.15.116-3.217.189-1.485.101-3.436.001-4.644-.81-1.352-.908-1.744-2.417-1.748-4.058-.007-2.608-.011-5.217-.011-7.826 0-.041-.02-.061-.062-.061h-2.637c-.041 0-.061-.02-.061-.061v-3.775c0-.041.02-.061.061-.061h2.639c.041 0 .062-.021.062-.062Zm-99.397 2.117a.03.03 0 0 0 .007.02.03.03 0 0 0 .017.012.033.033 0 0 0 .022 0 .04.04 0 0 0 .017-.013c.85-1.213 2.004-1.981 3.461-2.304 3.073-.68 6.54.397 7.367 3.787.144.591.214 1.287.211 2.089-.016 3.593-.026 7.185-.03 10.775 0 .039-.019.058-.057.058h-6.196c-.041 0-.061-.02-.061-.061-.005-3.093-.005-6.182-.001-9.267.001-1.043-.293-2.188-1.414-2.451-1.087-.255-2.266.151-2.753 1.2-.245.529-.343 1.088-.343 1.723.001 2.931-.001 5.862-.004 8.793 0 .042-.021.063-.063.063h-6.196c-.042 0-.063-.02-.063-.061l.002-16.357c0-.041.02-.061.061-.061H198c.041 0 .062.02.062.061l.001 1.994Zm44.5 7.675c.107 2.105 1.661 3.29 3.709 3.065a3.022 3.022 0 0 0 2.061-1.091.118.118 0 0 1 .094-.043h5.759c.007 0 .013.002.019.005a.037.037 0 0 1 .015.013.048.048 0 0 1 .007.018c0 .006 0 .013-.003.019-.957 2.638-3.214 4.338-5.958 4.909-5.146 1.071-10.795-1.043-11.635-6.836-.698-4.822 2.101-9.338 7.064-10.086a11.607 11.607 0 0 1 3.206-.027c2.336.291 4.326 1.059 5.785 2.951 1.5 1.941 1.895 4.594 1.903 6.978 0 .041-.021.061-.062.061h-11.904c-.043 0-.063.022-.06.064Zm.097-3.331 5.875-.032a.016.016 0 0 0 .011-.005.016.016 0 0 0 .005-.011v-.009a2.644 2.644 0 0 0-.843-1.908 2.919 2.919 0 0 0-2.014-.781h-.223a2.963 2.963 0 0 0-1.087.212 2.858 2.858 0 0 0-.919.591c-.262.253-.47.552-.611.881-.141.33-.212.682-.21 1.037v.009c0 .004.001.008.004.011a.017.017 0 0 0 .012.005Zm19.294-3.827c0 .008.003.016.008.022a.032.032 0 0 0 .02.012.037.037 0 0 0 .023-.002.037.037 0 0 0 .016-.017c1.287-2.608 3.629-3.529 6.416-2.744.036.009.053.032.053.068v5.457c0 .041-.019.055-.059.041-1.082-.384-2.127-.503-3.134-.359-2.521.362-3.063 2.602-3.063 4.755l-.005 6.611c0 .042-.021.063-.062.063h-6.197c-.041 0-.062-.02-.062-.061v-16.357c0-.041.021-.061.062-.061h5.922c.041 0 .062.02.062.061v2.511Zm17.3 10.011c.549-.306.641-1.106.263-1.56-.377-.454-1.515-.71-2.066-.802-2.403-.405-6.264-.983-7.439-3.363a4.506 4.506 0 0 1-.41-1.46c-.344-2.882 1.69-4.767 4.319-5.397 3.673-.879 11.249-.748 11.423 4.749a.058.058 0 0 1-.005.026.064.064 0 0 1-.014.022.107.107 0 0 1-.022.015.08.08 0 0 1-.026.005h-5.583c-.035 0-.056-.017-.063-.052-.28-1.483-1.863-1.916-3.162-1.513-.902.281-1.238 1.498-.234 1.896.729.29 1.472.427 2.411.565 1.518.222 2.956.612 4.314 1.171 1.289.53 2.144 1.394 2.566 2.591.744 2.111.016 4.557-1.834 5.876-.755.539-1.7.931-2.834 1.177-4.19.91-11.344.363-11.677-5.399-.003-.055.023-.083.078-.083h5.887c.035 0 .055.018.06.053.293 2.013 2.585 2.298 4.048 1.483Zm-61.631-12.583h-6.195a.05.05 0 0 0-.049.049v16.382a.05.05 0 0 0 .049.049h6.195a.05.05 0 0 0 .049-.049v-16.382a.05.05 0 0 0-.049-.049Zm13.103 0h6.353a.04.04 0 0 1 .019.004.044.044 0 0 1 .015.012.05.05 0 0 1 .007.017.04.04 0 0 1-.001.019l-5.435 16.399a.035.035 0 0 1-.014.02.04.04 0 0 1-.024.008h-7.384a.04.04 0 0 1-.024-.008.035.035 0 0 1-.014-.02l-5.372-16.399a.04.04 0 0 1-.001-.019.036.036 0 0 1 .007-.017.044.044 0 0 1 .015-.012.037.037 0 0 1 .018-.004h6.576c.009 0 .018.003.025.008a.044.044 0 0 1 .014.022l2.535 9.894a.034.034 0 0 0 .015.022.036.036 0 0 0 .024.009.038.038 0 0 0 .025-.009.038.038 0 0 0 .015-.022l2.566-9.894a.054.054 0 0 1 .015-.022.044.044 0 0 1 .025-.008Zm62.513 0h-6.197a.048.048 0 0 0-.048.048v16.384c0 .027.022.048.048.048h6.197a.047.047 0 0 0 .047-.048V197.26a.047.047 0 0 0-.047-.048ZM313.893 219h-4.621l.004-4.965c0-.043.021-.065.064-.065.656-.006 1.312-.007 1.968-.003.635.005 1.075-.05 1.319-.166.57-.27.745-.809.526-1.619a28.913 28.913 0 0 0-.824-2.479 913.958 913.958 0 0 1-4.63-12.431c-.003-.007-.004-.014-.003-.021a.05.05 0 0 1 .008-.02.043.043 0 0 1 .016-.014.042.042 0 0 1 .022-.005h6.627c.043 0 .071.021.082.062l2.588 9.295a.039.039 0 0 0 .015.023.038.038 0 0 0 .025.009.04.04 0 0 0 .026-.009.044.044 0 0 0 .015-.023l2.624-9.318c.008-.026.025-.039.053-.039h6.386a.08.08 0 0 1 .08.069.092.092 0 0 1-.004.037 6284.556 6284.556 0 0 0-6.159 17.17c-.37 1.038-.989 2.266-1.839 3.044-1.264 1.156-2.732 1.312-4.368 1.468Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ppci1i\",\"data-framer-name\":\"logo-brownes\",layoutDependency:layoutDependency,layoutId:\"ok3HjfAYv\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1n9e4bu\",\"data-framer-name\":\"Brownes\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"kw7W_Uoga\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M110.776 183.443c7.749-1.274 16.958-.224 20.845 7.625 1.16 2.342 1.412 4.895.758 7.659-2.867 12.115-13.277 21.138-24.634 25.534-4.31 1.666-8.141 2.686-12.339 1.571-2.686-.71-5.8-3.478-5.79-6.414.005-1.605 1.008-2.578 3.009-2.919 1.159-.198 2.49-.339 3.885-.488 2.71-.287 5.662-.601 8.075-1.402 8.838-2.932 19.494-10.501 20.88-20.411.529-3.763-2.338-6.785-5.911-7.367-1.808-.292-4.114-.368-6.919-.228-4.137.211-7.59.857-10.857 3.216-.224.162-.448.328-.673.495-1.027.764-2.075 1.542-3.202 1.959-2.968 1.099-5.737.637-8.309-1.386-.87-.683-1.435-1.378-1.696-2.084-.599-1.627 3.224-4.563 4.288-5.265l1.083-.713.002-.001c10.145-6.664 41.817-27.466 32.009-40.668-1.639-2.207-3.736-3.381-6.29-3.521-4.792-.263-8.227 1.003-12.201 3.991-13.953 10.504-23.351 26.756-26.869 43.715-2.434 11.727-1.46 23.064 2.92 34.011.281.705.695 1.538 1.139 2.432 2.22 4.474 5.19 10.458-3.87 9.386-2.83-.339-4.985-1.724-6.466-4.155-4.628-7.59-6.823-16.119-7.375-24.927-.109-1.705-.31-3.172-.602-4.4l-.149-.621c-.872-3.662-3.232-13.57-5.478-14.998a.306.306 0 0 1 .034-.538c2.7-1.258 5.076-.16 7.25 1.459.147.109.237.075.271-.103 4.095-20.536 17.105-37.318 35.299-47.009a29.954 29.954 0 0 1 6.328-2.484 19.1 19.1 0 0 1 6.686-.598c4.242.379 7.999 1.697 11.271 3.956 3.244 2.236 5.467 5.013 6.669 8.331 2.975 8.218-3.664 18.133-8.627 24.126a68.242 68.242 0 0 1-14.496 13.109c-.172.118-.155.16.052.125Zm83.77-17.074c-.789.927-1.356 1.634-1.7 2.122-2.34 3.304-5.355 5.762-9.046 7.375-.135.057-.169.152-.103.284 3.319 6.807 1.584 16.42-1.847 22.719-3.427 6.281-10.078 10.926-17.186 7.013-5.61-3.091-5.584-10.139-3.931-15.529.049-.155-.007-.238-.168-.25-4.921-.413-6.854-5.256-6.475-9.579a.171.171 0 0 0-.095-.165.174.174 0 0 0-.189.023c-.812.744-1.462 1.527-1.95 2.351-3.258 5.519-5.314 11.132-6.17 16.838-.579 3.857-1.162 7.712-1.747 11.563-.262 1.72-1.001 2.936-2.218 3.651-1.184.698-3.797-1.644-4.146-2.708-.45-1.372-.614-3.424-.49-6.156.073-1.62.159-3.228.245-4.831v-.001c.38-7.115.754-14.104.009-21.314a25.878 25.878 0 0 0-1.223-5.635.34.34 0 0 1 .108-.396c.826-.712 1.897-1.031 3.211-.956 4.007.227 6.292 2.322 6.854 6.285.258 1.826.313 3.191.164 4.095-.284 1.768-.012 1.858.818.271 2.035-3.889 4.862-7.316 8.481-10.281.385-.313.885-.539 1.503-.68 2.72-.624 3.538 1.132 3.237 3.461-.339 2.635-.659 5.27-.96 7.905-.207 1.819.468 3.013 2.023 3.582.155.054.267.008.336-.138 1.326-2.721 3.309-5.009 5.95-6.863 1.424-1.001 2.879-1.35 4.365-1.046 2.127.431 3.397 2.144 3.32 4.297a.564.564 0 0 1-.263.452c-4.007 2.491-6.782 5.962-8.326 10.414-1.193 3.436-.59 7.922 4.318 6.953 1.98-.393 3.595-1.193 4.843-2.398 4.181-4.034 8.572-17.466 3.716-22.18a.382.382 0 0 0-.375-.091l-.268.082c-1.3.399-3.105.954-4.231.198-2.217-1.49-3.168-6.139 1.262-5.128.352.081.689.161 1.014.238 2.937.697 4.877 1.158 7.846-.664 3.087-1.89 5.175-3.599 7.736-6.466.291-.324.627-.724 1.003-1.171 2.823-3.352 7.846-9.317 11.93-5.442 1.804 1.714.999 2.859-.323 4.607-6.217 8.24-9.557 18.77-10.319 29.176-.117 1.563.086 4.219 1.283 5.506.094.1.222.16.357.168 2.635.138 6.048-6.546 7.666-9.715v-.001l.131-.255c.29-.565.447-1.186.473-1.864.151-3.638.646-8.21 2.747-11.305a.49.49 0 0 1 .318-.207c2.089-.37 5.468-.151 5.317 2.7-.152 2.804-.308 5.605-.469 8.403-.189 3.212-.02 5.798.508 7.758.379 1.421 1.972 4.237 3.711 2.347 3.914-4.25 4.482-12.21 4.702-17.962.056-1.429-.095-1.924-1.116-3.009-1.75-1.86-2.574-3.98-2.471-6.359.099-2.239 3.285-2.759 4.684-1.309 1.205 1.249 1.833 4.876 2.175 6.85l.073.418c.037.215.165.317.383.305 3.306-.15 5.089-1.997 6.828-4.74a10.799 10.799 0 0 0 1.64-4.658 1.053 1.053 0 0 1 .706-.883c2.316-.8 5.692.142 5.687 3.13a58.167 58.167 0 0 1-1.377 12.429.146.146 0 0 0 .011.103.144.144 0 0 0 .182.065.143.143 0 0 0 .074-.073c3.297-6.953 6.694-13.26 12.579-18.228 2.101-1.774 5.602-1.589 6.226 1.653.258 1.346.165 3.063-.28 5.149-.844 3.961-1.309 6.764-1.395 8.408-.086 1.597-.125 4.413 1.92 4.74 1.969.316 3.813-.084 5.532-1.201.092-.057.099-.125.022-.202-3.367-3.294-1.912-7.93.082-11.607 2.761-5.092 6.734-8.514 11.921-10.268.637-.215 1.359-.253 2.165-.112 2.489.431 3.72 2.476 3.259 4.994-1.05 5.752-6.038 10.291-10.184 14.064l-.351.32c-.126.117-.116.219.031.305 2.514 1.468 6.75.659 9.174-.512 3.131-1.512 5.719-4.032 7.762-7.56a.487.487 0 0 0 .052-.37c-2.566-10.703 16.011-16.127 14.887-6.721-.017.147-.099.237-.245.272-3.754.874-7.211 1.907-9.82 4.679-2.112 2.247-.734 3.763.997 5.669l.001.001.293.323.346.383c3.102 3.437 5.223 5.788 5.634 10.639.012.146.092.219.241.219 6.583-.103 14.901 1.925 19.804 6.609a.457.457 0 0 1 .091.538c-.046.089-.152.097-.319.026-6.548-2.803-12.123-4.926-19.477-4.689a.639.639 0 0 0-.602.487c-1.481 5.962-7.242 10.169-13.415 9.824-2.248-.126-3.617-1.155-4.108-3.087-.865-3.401 3.272-6.19 5.843-7.185a26.645 26.645 0 0 1 6.358-1.584c.13-.015.2-.088.211-.22.397-4.557-1.904-7.58-4.318-10.751-.415-.546-.835-1.097-1.244-1.661-.083-.115-.165-.115-.245 0-4.607 6.312-14.462 13.032-22.534 8.667a.31.31 0 0 0-.37.03c-3.436 2.682-8.012 4.826-12.141 2.178-5.289-3.388-3.27-11.009-1.868-16.301v-.002l.002-.006.002-.006c.146-.553.286-1.079.409-1.573a.28.28 0 0 0-.452-.28c-6.04 5.072-9.79 13.949-12.481 21.169-1.451 3.896-2.923 6.802-7.534 4.921a.485.485 0 0 1-.288-.315c-.218-.737-.257-1.452-.116-2.144a126.366 126.366 0 0 0 2.273-18.094.21.21 0 0 0-.307-.195.207.207 0 0 0-.098.104c-1.372 3.39-3.87 5.426-7.495 6.109-.152.029-.23.121-.233.276-.021 6.88-1.042 24.161-11.49 23.407-4.762-.344-6.846-4.227-8.107-8.244a.184.184 0 0 0-.068-.09.184.184 0 0 0-.107-.032.176.176 0 0 0-.106.038.18.18 0 0 0-.064.092c-.886 3.47-3.155 8.723-6.668 10.243-4.353 1.881-8.404-2.82-9.498-6.42-.531-1.747-.806-3.68-.826-5.799-.086-8.791 1.937-17.038 6.07-24.742.17-.318.137-.34-.099-.064Zm73.748 3.483c-.519 2.023-.427 4.077.276 6.16.126.371.34.432.641.186 2.977-2.417 5.125-5.537 6.445-9.36.439-1.27.848-3.345-.245-4.327-.844-.753-2.183-.499-3.04.224-2.079 1.752-3.414 4.534-4.077 7.117Zm20.618 20.333c-1.722.822-3.939 2.867-1.455 4.426.711.451 1.28.628 1.705.534 3.129-.698 4.58-3.634 5.118-6.518a.142.142 0 0 0-.04-.132.148.148 0 0 0-.132-.041c-1.791.354-3.523.93-5.196 1.731Zm-163.529 35.518c1.447 5.674 6.372 9.097 11.758 10.638 12.076 3.462 25.082 1.877 37.283-1.588 10.421-2.959 21.203-7.242 32.345-12.847 5.773-2.903 11.106-6.016 16.944-9.424l.006-.003c1.192-.695 2.404-1.403 3.646-2.124 12.915-7.491 26.963-14.444 41.653-18.418 3.389-.918 7.229-1.577 11.52-1.976.521-.047.861-.331 1.141-.714a.483.483 0 0 0 .036-.499.47.47 0 0 0-.428-.25 89.998 89.998 0 0 0-17.763 2.23c-9.026 2.06-19.016 5.298-29.968 9.712a2145.205 2145.205 0 0 0-39.6 16.429c-14.581 6.221-29.848 10.797-45.587 11.124-6.678.138-13.308-.977-19.796-2.518a7.21 7.21 0 0 0-3-.069.238.238 0 0 0-.193.199.232.232 0 0 0 .003.098Zm161.557-3.814c-.425 1.745-.207 1.829.654.254.732-1.331 3.475-4.671 5.451-4.331.869.15 1.167.783.969 1.64-.035.149-.081.329-.133.531-.452 1.761-1.338 5.212 1.273 5.1.135-.006.214-.076.237-.211a89.63 89.63 0 0 1 2.006-9.286c.161-.586.421-.947.78-1.085 1.089-.418 2.544.336 2.975 1.356.92 2.186.006 4.454-.81 6.477-.348.862-.677 1.679-.839 2.426-.306 1.404-1.09 7.121 2.053 6.195 2.914-.854 4.297-6.922 5.016-10.074l.099-.43c.185-.81.93-1.266 1.756-.96 4.114 1.513 3.109 9.313 2.626 13.062l-.081.641c-.02.155.047.228.202.22a38.874 38.874 0 0 1 7.013.28c.178.02.218.104.121.254-.385.582-.922.866-1.61.852-2.093-.049-4.01.017-5.752.198-.152.014-.241.098-.267.25-.594 3.599-1.851 7.168-4.766 9.432-2.135 1.658-5.097 2.304-7.31.577-.804-.625-1.231-1.458-1.283-2.497-.25-5.05 6.01-7.697 9.854-8.756.176-.049.265-.163.267-.341l.125-7.603a.186.186 0 0 0-.044-.125.186.186 0 0 0-.115-.065.186.186 0 0 0-.211.13c-.939 2.803-3.961 8.921-7.603 8.71-4.301-.254-4.628-4.555-4.37-7.849.012-.132-.047-.205-.176-.219-2.951-.379-4.403-2.063-4.357-5.05l-.001-.012a.082.082 0 0 0-.015-.036.085.085 0 0 0-.039-.031.079.079 0 0 0-.048-.001.065.065 0 0 0-.022.011.069.069 0 0 0-.017.017c-2.279 2.859-3.83 6.049-4.654 9.57-.278 1.175-.414 2.573-.549 3.966l-.001.002c-.07.721-.14 1.441-.229 2.129a.49.49 0 0 1-.198.34c-2.187 1.636-4.426-.676-3.965-3.1.077-.413.142-.842.193-1.287.023-.21-.036-.236-.176-.078-2.041 2.295-4.254 3.957-7.018 1.27a4.273 4.273 0 0 0-.676-.534c-.12-.074-.218-.05-.292.074-2.756 4.576-7.702 4.24-7.939-1.692a.147.147 0 0 0-.031-.09.145.145 0 0 0-.08-.05.145.145 0 0 0-.126.032.145.145 0 0 0-.034.047c-1.701 3.445-5.92 7.311-9.588 3.307-.121-.132-.228-.122-.323.03-2.191 3.569-6.858 3.324-8.003-.896-.133-.496-.198-1.132-.266-1.793v-.001a24.98 24.98 0 0 0-.156-1.301.13.13 0 0 0-.206-.087.132.132 0 0 0-.048.074c-1.24 4.533-5.468 8.102-10.32 5.993-1.986-.864-3.104-2.481-3.354-4.852-.505-4.79.659-8.902 3.492-12.334 2.363-2.868 8.33-5.657 10.905-1.279.01.017.025.031.044.039a.083.083 0 0 0 .058.006.092.092 0 0 0 .051-.03.092.092 0 0 0 .024-.054 62.49 62.49 0 0 1 1.735-9.618c.757-2.888 1.803-5.222 5.024-5.11a.922.922 0 0 1 .705.373.915.915 0 0 1 .143.785 111.963 111.963 0 0 0-4.082 25.013 15.9 15.9 0 0 0 .444 4.473.917.917 0 0 0 1.21.642c1.311-.491 1.887-1.292 1.726-2.402-1.098-7.646 3.797-15.968 11.689-17.045 1.782-.241 3.286.183 4.512 1.27a.78.78 0 0 1-.564 1.361c-7.995-.487-12.089 8.206-11.215 15.029.063.474.302.79.718.947.986.375 2.321-.869 2.838-1.588 1.634-2.28 2.413-4.939 3.191-7.597.333-1.138.667-2.275 1.066-3.381.244-.675.603-1.167 1.077-1.477a4.779 4.779 0 0 1 3.138-.788.84.84 0 0 1 .771.752.87.87 0 0 1-.047.385 46.665 46.665 0 0 0-2.773 12.954.525.525 0 0 0 .172.426c1.283 1.158 2.712-.706 3.302-1.687.284-.477.421-1.124.409-1.942-.03-2.39.607-9.472 2.945-10.793.936-.528 1.923-.573 2.962-.134a1.024 1.024 0 0 1 .547 1.331c-.745 1.795-4.392 11.331-1.348 11.649 1.348.143 3.001-1.45 3.681-2.454.457-.677.758-1.648.904-2.914l.068-.568.002-.018c.4-3.362.704-5.921-.216-8.657a.435.435 0 0 1 .155-.496.451.451 0 0 1 .168-.077c2.393-.53 4.671.654 4.774 3.238.026.654.035 1.003.026 1.046Zm-48.089 1.343c-1.378 2.962-3.074 8.279-1.205 11.155 1.627 2.505 4.473.568 5.545-1.227 1.288-2.156 2.251-4.548 2.888-7.177.333-1.366.366-2.546.099-3.539-.34-1.27-1.558-3.578-3.086-3.535-1.753.044-3.539 2.816-4.241 4.323Zm67.252 17.828c.521-1.384.815-3.248 1.065-4.833l.037-.23c.031-.198-.051-.274-.246-.228-2.238.551-6.027 2.514-6.38 5.136-.152 1.119.192 1.931 1.033 2.437 1.869 1.123 3.836-.547 4.491-2.282Zm-25.597-29.007c.706 1.05.238 2.6-1.045 3.462-1.283.862-2.895.71-3.6-.34-.706-1.05-.238-2.6 1.045-3.462 1.283-.862 2.894-.71 3.6.34Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tk0czj\",\"data-framer-name\":\"logo-csbp\",layoutDependency:layoutDependency,layoutId:\"f4jE6hmvH\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1m15262\",\"data-framer-name\":\"CSBP\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"DVYaE1g_b\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M150.345 110.922a.352.352 0 0 0-.256-.111h-45.47c-.117 0-.177-.06-.177-.177l-.013-24.432c0-.07.054-.123.123-.123h52.379c.293 0 .578.117.789.329 9.284 9.324 18.631 18.69 28.041 28.1.468.468.439.866.439 1.486.007 37.76.007 75.521 0 113.284 0 .13-.063.193-.192.193h-8.447c-.104 0-.154-.054-.154-.158V138.83a.741.741 0 0 0-.212-.518l-26.85-27.39Zm52.938 27.775a12.662 12.662 0 0 0-.203 2.364c.051 29.412.079 58.824.086 88.233a.177.177 0 0 1-.177.177l-8.456-.006c-.114 0-.171-.057-.171-.174.007-37.944.003-75.885-.006-113.825 0-.398.177-.777.54-1.138a5688.005 5688.005 0 0 0 27.769-27.766c.376-.376.872-.562 1.492-.562 17.284.054 34.553.082 51.806.092.085 0 .155.07.155.151l-.007 24.379a.19.19 0 0 1-.189.192l-45.209-.006a.925.925 0 0 0-.66.278l-26.41 26.922c-.187.187-.31.427-.36.686v.003Z\" fill=\"#fff\"/><path d=\"m139.099 138.29-34.49.072a.169.169 0 0 1-.167-.167l-.013-24.259c0-.091.076-.167.168-.167l41.091-.006c.044 0 .088.019.12.05l24.966 25.014a.167.167 0 0 1 .047.12v90.407a.169.169 0 0 1-.167.168h-8.548a.164.164 0 0 1-.167-.165v-69.034a.163.163 0 0 0-.047-.123l-22.679-21.863a.178.178 0 0 0-.114-.047Zm102.093.205a4357.547 4357.547 0 0 0-21.604 20.855c-.538.525-.942.657-.942 1.539-.01 22.824-.016 45.651-.025 68.478 0 .104-.054.158-.158.158h-8.523c-.107 0-.161-.054-.161-.165 0-29.962 0-59.92-.006-89.879 0-.446.319-.929.67-1.277 7.975-7.966 15.976-15.982 24.005-24.053.244-.246.579-.385.926-.385h40.583c.088 0 .158.069.158.155v24.22a.215.215 0 0 1-.219.218l-34.202-.066a.725.725 0 0 0-.502.202Z\" fill=\"#fff\"/><path d=\"M146.215 181.593 127.17 163.72a1.284 1.284 0 0 0-.881-.35l-21.658.006c-.13 0-.196-.067-.196-.196v-21.8a.15.15 0 0 1 .149-.152c10.43.007 20.874.007 31.333.003.705 0 1.071.497 1.555.958 5.905 5.615 11.792 11.202 17.66 16.76a.703.703 0 0 1 .218.509v69.918c0 .104-.054.158-.158.158l-8.592.01a.145.145 0 0 1-.142-.146v-47.243a.756.756 0 0 0-.243-.562Zm87.889.265v47.464a.194.194 0 0 1-.196.2h-8.516a.204.204 0 0 1-.199-.203v-70.06c0-.054.022-.108.064-.146l18.791-17.831a.2.2 0 0 1 .136-.054l31.732.01c.11 0 .199.088.199.199v21.705a.194.194 0 0 1-.196.199h-22.088a.2.2 0 0 0-.136.054l-19.528 18.318a.198.198 0 0 0-.063.145Z\" fill=\"#fff\"/><path d=\"M117.975 190.276h-13.359c-.117 0-.177-.06-.177-.177v-23.835c-.004-.13.063-.196.192-.196h18.236a.441.441 0 0 1 .313.117l16.387 14.757a.443.443 0 0 1 .148.331l-.041 48.037a.21.21 0 0 1-.211.211h-8.523c-.11.004-.167-.05-.167-.161a8386.31 8386.31 0 0 1 0-25.576c0-.853-.079-1.074-.692-1.693a866.05 866.05 0 0 0-11.846-11.711.363.363 0 0 0-.26-.104Zm132.004 12.409a1 1 0 0 0-.164.546l.006 26.063a.225.225 0 0 1-.224.224l-8.545.007c-.104 0-.154-.051-.154-.155l-.07-47.866a.95.95 0 0 1 .316-.711l16.122-14.504a.814.814 0 0 1 .546-.211l18.176-.019c.073 0 .13.06.13.132v23.93a.155.155 0 0 1-.152.152c-4.218.003-8.456.003-12.706 0-.591 0-1.027.142-1.314.426a8424.922 8424.922 0 0 0-11.6 11.546 2.94 2.94 0 0 0-.367.44Zm-131.865 78.166c.004 1.437.762 2.951 2.38 2.976 2.572.044 5.147.051 7.723.016 1.052-.013 1.791-.145 2.221-.395 1.659-.967 1.299-3.514 1.283-5.678 0-.095.073-.171.167-.174h13.108c.129 0 .195.069.195.202l.007 8.339a.387.387 0 0 1-.124.291l-7.438 7.394a.577.577 0 0 1-.411.17c-8.098.007-16.226.01-24.375.007-.423 0-.812-.165-1.163-.49-3.886-3.596-6.329-5.868-7.331-6.819-.319-.307-.477-.739-.474-1.302.07-8.506.079-17.013.032-25.516-.003-.856.174-1.536.806-2.186 2.42-2.5 4.834-4.914 7.239-7.249a1.15 1.15 0 0 1 .803-.326l24.267-.009c.282 0 .55.11.749.309l7.17 7.164c.161.161.25.379.25.607v13.676c-.003.116-.06.173-.174.173h-12.905c-.136-.003-.202-.069-.205-.205a209.44 209.44 0 0 1-.016-7.682c.025-1.238-.341-2.657-1.457-3.261-.382-.208-1.014-.309-1.893-.306-2.234.009-4.468.009-6.695 0-1.185-.003-2.004.117-2.462.363-.85.458-1.28 1.289-1.283 2.487-.009 2.458-.009 8.266.006 17.424Zm44.586-14.868 25.301 6.702c.13.035.196.121.196.253v13.148a.496.496 0 0 1-.148.354 984.485 984.485 0 0 0-7.208 7.142c-.433.436-1.059.414-1.681.414-7.369.003-14.722.003-22.062 0-.323 0-.597-.114-.825-.345l-7.034-7.012a1.025 1.025 0 0 1-.3-.726l-.006-8.162c0-.098.05-.149.151-.149h13.218c.111 0 .164.057.164.168a505.631 505.631 0 0 0 0 3.017c.007 2.083.79 2.92 2.819 2.942 2.199.022 4.399.029 6.598.016.929-.006 1.577-.13 1.943-.373 1.337-.888.983-3.248.958-4.477 0-.133-.067-.215-.193-.247l-25.456-6.595a.233.233 0 0 1-.174-.224l-.009-13.467c0-.335.132-.658.369-.898l6.924-7.021c.23-.234.543-.363.872-.366h22.248c.771 0 1.027.028 1.59.6 2.313 2.341 4.645 4.702 6.999 7.075a.659.659 0 0 1 .193.464l-.007 8.589a.148.148 0 0 1-.148.148l-13.003-.009c-.123 0-.186-.06-.19-.183-.044-1.441.222-3.761-.271-4.819-.389-.844-1.176-1.277-2.355-1.305a178.901 178.901 0 0 0-7.027-.025c-3.046.044-2.857 3.049-2.639 5.147a.26.26 0 0 0 .193.224Zm112.947-7.691c-.004-.303-.203-.629-.591-.976-2.614-2.335-5.22-4.664-7.821-6.993a.864.864 0 0 0-.569-.218l-30.78.006c-.111 0-.168.054-.168.165l-.034 43.562c0 .107.053.161.161.161h13.824c.101 0 .152-.051.152-.155l-.006-13.268c0-.114.056-.171.173-.171 5.555-.003 11.11.022 16.669.082.429.006.774-.12 1.03-.379 2.619-2.651 5.236-5.28 7.849-7.887a.722.722 0 0 0 .208-.506c0-4.449-.031-8.923-.097-13.423Zm-14.204 11.038a1.45 1.45 0 0 1-.098.094l-.104.102c-.032.028-.07.053-.101.082-.038.031-.076.063-.114.088-.035.025-.07.044-.108.067-.041.025-.079.053-.123.075-.035.019-.073.035-.11.054-.045.022-.086.044-.13.063-.038.016-.079.026-.117.038a1.353 1.353 0 0 1-.136.044c-.041.013-.085.016-.129.026-.045.009-.086.019-.13.025-.044.006-.088.006-.133.009-.044 0-.088.01-.132.01l-9.666.035a.26.26 0 0 1-.26-.259l-.031-9.05a.26.26 0 0 1 .259-.259l9.666-.035c1.447-.003 2.623 1.513 2.629 3.39l.013 2.768v.004c0 .063-.003.123-.007.183 0 .054 0 .111-.006.161-.003.057-.013.111-.019.168-.006.056-.009.113-.019.17-.009.057-.022.111-.031.164-.01.054-.019.108-.032.162-.013.057-.032.11-.044.164a2.625 2.625 0 0 1-.041.148c-.016.054-.038.105-.057.158a1.743 1.743 0 0 1-.051.139c-.022.054-.047.102-.069.152-.019.041-.038.085-.06.127-.026.047-.054.091-.079.139-.026.041-.048.085-.07.123-.028.044-.057.082-.085.123-.029.038-.054.079-.082.117a1.36 1.36 0 0 1-.092.107c-.032.038-.06.076-.095.111l-.006.013Zm-29.618 7.836a.407.407 0 0 0-.116-.287l-4.02-4.127a.25.25 0 0 1-.003-.348l3.77-4.092a.803.803 0 0 0 .221-.565v-9.221c0-.316-.126-.619-.351-.844-2.36-2.366-4.746-4.746-7.163-7.141-.297-.294-.721-.439-1.274-.442-10.26 0-20.533.003-30.815.015-.107 0-.161.054-.161.162v43.539c0 .098.051.146.145.146l31.896-.006c.155 0 .3-.061.408-.168l7.353-7.302a.4.4 0 0 0 .117-.285l-.007-9.034Zm-25.986-16.444c0-.11.091-.202.202-.202h9.268c1.112 0 2.013 1.043 2.013 2.329v1.908c0 1.286-.901 2.329-2.013 2.329h-9.268a.203.203 0 0 1-.202-.202v-6.162Zm11.502 20.767c0 .031 0 .06-.004.088 0 .051 0 .101-.006.152 0 .019-.006.038-.009.057-.007.06-.013.12-.026.177a2.155 2.155 0 0 1-.044.18l-.009.044c-.013.048-.032.092-.048.139-.009.025-.016.054-.028.079-.016.038-.035.073-.051.111-.016.031-.028.066-.044.095-.022.041-.047.082-.07.123-.015.025-.025.05-.041.072a.743.743 0 0 1-.053.076c-.026.035-.048.073-.076.108-.006.006-.013.012-.019.022-.041.05-.082.101-.126.145-.019.019-.038.035-.054.054-.035.035-.067.069-.104.098a2.007 2.007 0 0 1-.083.066c-.028.026-.06.051-.088.073-.035.025-.073.047-.108.069l-.075.051c-.054.032-.114.06-.171.089-.01.003-.016.009-.025.012-.051.022-.105.041-.158.06l-.048.019c-.034.013-.072.019-.107.029-.035.009-.07.022-.104.028l-.06.009a3.03 3.03 0 0 1-.162.026h-.041a1.93 1.93 0 0 1-.186.009l-9.116.016a.156.156 0 0 1-.158-.158l-.013-6.282c0-.088.07-.158.158-.158l9.116-.016c1.229 0 2.228 1.056 2.231 2.364l.006 1.864.004.01Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wj3ku4\",\"data-framer-name\":\"logo-curtin\",layoutDependency:layoutDependency,layoutId:\"C6t2SgEZ9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1ui4ihq\",\"data-framer-name\":\"Curtin\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"hOJD7laeS\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M161.138 88.372c0-2.334 1.497-4.286 3.434-5.419 8.43-4.93 16.829-9.823 25.2-14.668a.54.54 0 0 1 .554 0c8.26 4.778 16.538 9.564 24.84 14.358 3.062 1.77 3.481 4.481 3.485 8.1.009 6.849 0 13.697-.017 20.541-.008 2.686-.981 4.74-3.328 6.157-11.213 6.776-18.581 11.206-22.112 13.285-2.378 1.4-5.3.917-7.491-.386-7.11-4.222-14.224-8.44-21.342-12.653-2.906-1.723-3.202-4.094-3.215-7.557-.021-7.251-.021-14.507-.008-21.758Zm11.889-19.026c-4.048 2.533-8.26 4.875-12.41 7.242a3.207 3.207 0 0 1-1.615.43c-9.301.003-18.64.003-28.009 0a.208.208 0 0 1-.207-.209v-7.421c0-.119.093-.212.207-.212l41.983-.009c.224 0 .241.06.051.179Zm46.538 7.234c-4.149-2.317-8.328-4.727-12.38-7.222-.203-.123-.186-.187.051-.187h41.661c.14 0 .212.073.212.213V76.8c0 .14-.072.212-.216.216-9.221.013-18.437.013-27.649 0a3.361 3.361 0 0 1-1.679-.437Zm-66.358 8.079h-22.214a.208.208 0 0 0-.207.208v7.535c0 .115.093.208.207.208h22.214a.207.207 0 0 0 .207-.207v-7.536a.207.207 0 0 0-.207-.208Zm95.791 0h-22.416a.11.11 0 0 0-.11.11V92.5c0 .061.049.11.11.11h22.416a.11.11 0 0 0 .11-.11v-7.73a.11.11 0 0 0-.11-.111Zm-95.791 15.593h-22.214a.208.208 0 0 0-.207.208v7.434c0 .115.093.208.207.208h22.214a.207.207 0 0 0 .207-.208v-7.434a.207.207 0 0 0-.207-.208Zm95.711 0H226.67a.19.19 0 0 0-.19.191v7.468a.19.19 0 0 0 .19.191h22.248a.19.19 0 0 0 .19-.191v-7.468a.19.19 0 0 0-.19-.191Zm-95.491 15.704c.343 3.823 2.47 5.766 5.765 7.459a.149.149 0 0 1 .063.2.155.155 0 0 1-.126.08h-28.131a.21.21 0 0 1-.212-.212v-7.463c0-.153.123-.276.275-.276l22.129-.009c.148 0 .224.072.237.221Zm70.575 4.85c1.294-1.358 1.979-2.983 2.271-4.88.021-.123.093-.186.22-.186h22.349c.148 0 .267.118.267.263v7.48c0 .14-.072.212-.212.212h-28.77c-.283 0-.308-.08-.076-.242 1.307-.899 2.974-1.625 3.951-2.647Zm-51.394 10.616 12.977 7.663c.109.064.101.098-.026.098h-54.561c-.14 0-.212-.073-.212-.213v-7.37c0-.178.089-.267.262-.267h41.239c.114 0 .224.03.321.089ZM194.107 139l12.608-7.578a.619.619 0 0 1 .326-.089h41.856c.139 0 .211.072.211.212v7.205c-.004.288-.148.433-.435.433h-54.52c-.232 0-.249-.06-.046-.183Zm-62.56 7.926a.094.094 0 0 1 .068-.106h54.155c.14 0 .212.072.212.212v7.532a.21.21 0 0 1-.212.212h-51.918a.32.32 0 0 1-.3-.212 47.64 47.64 0 0 1-2.005-7.638Zm114.956 7.031c-.131.454-.347.721-.647.811a23.15 23.15 0 0 1-.897.008H194.12c-.208 0-.313-.106-.313-.314v-7.43c0-.14.072-.212.211-.212h54.041c.136 0 .246.106.246.246 0 .022 0 .038-.005.055-.308 1.426-.905 3.705-1.797 6.836Zm-104.631 16.137c-1.477-2.016-3.456-4.905-4.716-7.4-.093-.187-.039-.28.169-.28h48.39c.174 0 .263.089.263.263l-.009 7.378c0 .136-.068.204-.203.204h-43.56a.4.4 0 0 1-.334-.165Zm100.824-7.434a60.167 60.167 0 0 1-4.766 7.429.43.43 0 0 1-.347.174h-43.459c-.212 0-.317-.106-.317-.318v-7.319c0-.14.072-.212.211-.212h48.534a.165.165 0 0 1 .144.246Zm-84.739 23.061a81.176 81.176 0 0 1-8.98-7.587c-.16-.157-.131-.233.094-.233h36.7c.139 0 .207.072.207.212v7.532c.004.14-.068.212-.207.212h-27.395a.695.695 0 0 1-.419-.136Zm63.532.136h-27.471c-.139 0-.211-.072-.211-.212v-7.532c0-.14.072-.212.211-.212h36.7c.085 0 .152.068.152.153 0 .042-.017.08-.046.11a84.026 84.026 0 0 1-8.937 7.561.644.644 0 0 1-.398.132Zm-35.77 15.148c-5.151-1.859-10.032-4.651-14.782-7.354-.182-.106-.169-.157.038-.157h14.795c.14 0 .212.072.212.212v7.112c0 .11-.089.199-.199.199-.021 0-.047 0-.064-.012Zm23.149-7.316c-4.2 2.355-9.753 5.584-14.791 7.324-.182.064-.27 0-.27-.195v-7.112c0-.14.072-.212.211-.212h14.799c.267 0 .284.064.051.195Zm-92.361 73.109c2.965 3.131 8.459 2.779 12.27 1.43a.63.63 0 0 1 .808.386c.025.068.038.14.038.212v1.909c0 .166-.081.276-.237.331-7.478 2.559-17.274 1.159-18.229-8.532-.199-2.041-.212-4.324-.03-6.853.706-9.763 10.493-12.339 18.318-9.297a.28.28 0 0 1 .182.259v2.219a.623.623 0 0 1-.875.565c-5.715-2.55-13.852-1.49-14.309 6.343-.195 3.399-.563 8.257 2.064 11.028Zm68.261-18.542a.62.62 0 0 1-.622.606h-2.288c-.14.009-.212-.063-.212-.208v-2.168a1.01 1.01 0 0 1 1.003-1.01h1.971c.152-.008.228.068.224.221l-.076 2.559Zm-14.858 4.323h4.284a.9.9 0 0 1 .897.904v1.748c0 .14-.072.212-.211.212h-4.962c-.139 0-.211.072-.211.213-.021 3.369-.017 6.725.008 10.073.017 2.753 2.394 3.708 4.746 3.22a1.023 1.023 0 0 1 1.231.976l.05 1.714c0 .136-.063.208-.198.212-3.295.174-6.806.068-8.295-3.097-.41-.874-.617-2.495-.617-4.867v-15.436c0-.149.076-.221.224-.221h1.996c.47 0 .846.382.846.849v3.288c0 .14.072.212.212.212Zm22.987 3.293c.91-.874 1.819-1.926 2.796-2.516 2.233-1.337 5.507-1.587 7.448.377.901.913 1.371 2.054 1.413 3.416.072 2.313.076 7.15.013 14.507 0 .14-.068.212-.208.217-1.002.051-2.821.339-2.825-1.21-.013-4.086-.013-8.168 0-12.249 0-2.534-2.225-4.099-4.538-2.843-1.455.789-2.86 2.028-4.213 3.717a.59.59 0 0 0-.135.382v11.995c0 .127-.064.195-.186.199-1.295.085-2.877.416-2.877-1.408-.008-5.886-.008-11.775 0-17.66 0-.149.077-.225.225-.221l2.051.017a.797.797 0 0 1 .787.802v2.372c0 .233.08.271.253.106h-.004Zm-47.549 12.844c-1.391 1.336-2.356 2.164-2.889 2.486-3.692 2.253-8.729.611-8.784-4.306a755.944 755.944 0 0 1-.022-13.447.87.87 0 0 1 .863-.861l1.967-.013c.148 0 .22.072.22.216.008 4.282.008 8.563 0 12.836 0 .904.245 2.143.914 2.83 2.41 2.482 6.044-1.124 7.833-3.187a.542.542 0 0 0 .139-.369v-11.312a1.01 1.01 0 0 1 1.003-1.01h1.949c.149 0 .225.072.225.221 0 5.974-.013 11.949-.038 17.919-.005 1.451-1.849 1.243-2.97 1.12-.114-.013-.169-.072-.169-.187v-2.834c0-.221-.08-.255-.241-.102Zm11.238-12.424c0 .089.068.161.161.161a.167.167 0 0 0 .148-.089c1.011-1.943 4.149-4.862 6.547-3.407a.37.37 0 0 1 .191.327l.055 1.913c0 .149-.068.217-.216.208-3.329-.191-5.067 2.207-6.467 4.82-.3.561-.448 1.218-.44 1.969.038 3.157.038 6.305.008 9.45 0 .152-.08.233-.232.237-.977.03-2.813.378-2.817-1.23-.009-5.953-.009-11.906 0-17.855 0-.145.072-.217.216-.217h1.949a.906.906 0 0 1 .897.904v2.809Zm24.853-.84-2.25-.03a.72.72 0 0 1-.71-.721v-1.909c-.005-.141.067-.213.207-.213h5.075a1.06 1.06 0 0 1 1.058 1.061v18.038c0 .148-.072.22-.216.216l-1.984-.03a.984.984 0 0 1-.972-.988v-15.212c0-.14-.068-.208-.208-.212Zm-63.74 46.419c1.138.522 2.471.675 3.997.459 3.532-.51 5.304-2.601 5.309-6.28.012-5.453-.005-10.905-.051-16.357a.898.898 0 0 1 .888-.908h.008l2.289-.009c.135 0 .203.068.207.208.046 5.839.034 11.673-.03 17.507-.05 4.752-2.766 7.888-7.385 8.775-4.276.819-9.533-.666-11.157-5.016-.419-1.12-.635-3.301-.647-6.538-.021-4.646-.021-9.31 0-13.998 0-.518.418-.934.93-.934h2.225c.152 0 .228.077.228.229-.021 5.355-.017 10.706.013 16.056.017 3.136.338 5.499 3.176 6.806Zm42.267-20.49a.794.794 0 0 1-.791.794h-2.06c-.139 0-.211-.072-.211-.212v-2.275a.9.9 0 0 1 .892-.903l1.963-.009c.144 0 .215.072.211.217v2.388h-.004Zm75.976.794h-2.06c-.14 0-.212-.072-.212-.212v-2.228c0-.526.428-.955.952-.955h1.903c.14 0 .212.073.212.213v2.388c0 .437-.36.794-.795.794Zm8.763 6.768c-.088 5.427-.093 8.936-.016 10.523.139 2.936 2.787 2.817 5.003 2.885a.92.92 0 0 1 .897.921v1.693c.004.127-.059.195-.186.199-3.46.153-6.89 0-8.328-3.344-.368-.852-.554-2.533-.567-5.032-.021-5.011-.025-10.022-.004-15.042 0-.14.072-.212.211-.212l2.056.009c.495 0 .896.403.896.899v3.229c0 .14.068.212.208.212l4.436.013a.74.74 0 0 1 .741.743l.012 1.901c0 .14-.072.212-.215.212h-4.953c-.127 0-.191.063-.191.191Zm-106.276.127c2.119-2.037 3.684-3.526 6.758-3.437 3.025.089 4.843 2.177 4.911 5.143.063 2.681.072 7.4.017 14.15 0 .157-.076.242-.233.255-1.027.089-2.821.339-2.812-1.282.012-4.128.004-8.252-.022-12.381-.012-1.557-.68-2.537-2.009-2.932-2.478-.738-5.299 2.266-6.712 3.929a.574.574 0 0 0-.139.378v12.076c0 .123-.06.186-.182.199-1.07.089-2.885.391-2.885-1.218v-17.846c0-.149.076-.221.224-.221l2.043.017c.444 0 .8.361.8.806v2.258c0 .225.08.263.241.106Zm47.578 7.862c-.562 6.866 5.947 6.166 10.287 4.473.156-.064.236-.009.241.157.067 1.654.461 2.439-1.037 3.016-3.485 1.35-8.632 1.354-11.136-1.807-1.358-1.714-1.447-3.441-1.569-5.885-.233-4.689.389-9.335 5.524-10.846 2.47-.725 5.769-.615 7.723 1.146 2.132 1.922 2.106 5.592.351 7.701-2.043 2.453-6.357 1.82-10.151 1.825-.144 0-.22.076-.233.22Zm8.54-5.083c.825-5.109-9.047-4.718-8.544 1.982.013.131.085.199.216.203 2.956.055 4.851.055 5.676 0 1.548-.102 2.432-.831 2.652-2.185Zm29.577 9.496c1.1-1.608.44-3.475-1.391-4.073-3.566-1.159-9.123-1.222-8.409-6.666.77-5.83 8.278-5.346 12.245-4.472.152.034.228.127.228.284v1.693a.85.85 0 0 1-.845.849.794.794 0 0 1-.199-.026c-2.208-.547-4.361-.615-6.463-.204-1.645.319-2.66 2.771-1.244 3.93.309.25.88.475 1.722.674 2 .471 4.614.887 6.116 2.109 1.577 1.286 2.187 2.987 1.819 5.096-1.024 5.889-8.883 5.334-13.053 4.218a.309.309 0 0 1-.224-.293v-1.621a.838.838 0 0 1 1.049-.815c2.043.526 7.359 1.21 8.649-.683Zm-67.432-12.593h-2.06c-.554 0-1.002-.45-1.002-1.006V286.1c-.004-.14.068-.212.207-.212h5.292a.852.852 0 0 1 .841.852v18.25c0 .148-.072.221-.22.216l-1.971-.038a.893.893 0 0 1-.875-.895v-15.309c0-.14-.072-.212-.212-.212Zm15.358 13.824c3.726-4.557 4.242-10.086 3.959-15.751a.889.889 0 0 1 .841-.933h2.039c.148-.009.224.068.224.216-.008 2.474.14 5.215-.207 7.468-.668 4.32-2.453 8.151-5.355 11.495a.36.36 0 0 1-.266.123h-3.05a.426.426 0 0 1-.321-.14c-4.124-4.4-5.761-10.96-5.355-16.896.051-.709-.287-1.426.457-2.122a.522.522 0 0 1 .359-.144h2.09c.135-.009.203.059.207.199.038 5.431-.262 12.246 4.018 16.502.097.093.25.093.343 0 .004-.005.008-.013.017-.017Zm33.304-12.954c1.15-2.012 4.216-4.855 6.547-3.314.118.08.178.191.182.331l.025 1.892c0 .17-.08.246-.249.229-3.101-.314-4.835 2.041-6.264 4.413a3.275 3.275 0 0 0-.461 1.706c-.013 3.365-.017 6.729-.013 10.098 0 .166-.08.246-.245.238l-2.128-.076a.833.833 0 0 1-.799-.836v-18.199c0-.132.067-.199.199-.204 3.734-.135 2.829.76 3.003 3.675.012.25.08.263.203.047Zm28.105-.866-2.115-.009a.846.846 0 0 1-.846-.844V286.1c0-.14.072-.212.212-.212h5.181c.469 0 .846.381.846.848v18.254c0 .148-.072.221-.22.216l-1.975-.046a.894.894 0 0 1-.872-.896v-15.3c0-.14-.072-.208-.211-.208Zm32.216 11.775c-.313.267-.664.611-1.053 1.035-3.536 3.836-10.553 3.696-10.696-2.958a327.316 327.316 0 0 1-.038-11.558c.021-1.51 1.611-1.222 2.846-1.133.135.013.203.085.203.221-.013 3.704-.008 7.4.021 11.096.013 1.79.351 3.687 2.441 3.937 2.372.289 4.965-2.393 6.369-3.954a.58.58 0 0 0 .153-.399v-10.307a.43.43 0 0 1 .304-.411 5.682 5.682 0 0 1 2.542-.178c.157.025.233.114.233.271 0 5.728-.043 11.461-.123 17.193-.063 4.379-2.11 7.027-6.141 7.943-1.98.446-4.407.573-7.288.374-.144-.009-.215-.085-.211-.229l.012-1.812c0-.433.356-.785.791-.781h.03c1.472.064 3.028.034 4.665-.089 2.923-.225 4.619-1.769 5.088-4.638.115-.683.14-1.858.077-3.522-.009-.186-.085-.22-.225-.101Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(111 68.208)\" d=\"M0 0h158v243.583H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ztk87x\",\"data-framer-name\":\"logo-dfes\",layoutDependency:layoutDependency,layoutId:\"Fz7ObTNH9\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-g3l1yl\",\"data-framer-name\":\"DFES\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"K0COMZ8PF\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M327.707 141.692c-30.936-16.672-79.687-27.866-135.36-28.649-55.612-.782-106.229 9.088-140.054 24.857 35.63-13.843 85.405-21.908 139.753-21.185 54.289.722 102.498 10.231 135.661 24.977Zm-169.004 58.02h-7.945l-.06.12v-39.001c0-7.183-.238-7.222-6.754-8.288l-.107-.017v-1.565h34.727l.241 10.713h-2.046c0-5.838-3.13-7.343-7.824-7.343h-5.658c-3.611 0-4.574.241-4.574 3.732v14.445h8.787c4.927 0 5.453-3.03 5.866-5.412l.032-.186h2.047v15.227h-2.047c0-3.912-1.564-6.259-5.898-6.259h-8.787v23.834Zm47.608 0h28.949l.241-10.533h-2.046c-.421 5.658-2.408 7.102-6.56 7.102h-8.065c-3.612 0-4.575-.12-4.575-4.213v-16.19h8.788c4.333 0 5.898 2.347 5.898 6.259h2.046V166.91h-2.046l-.019.108c-.418 2.394-.958 5.49-5.879 5.49h-8.788v-14.445c0-3.491.963-3.732 4.575-3.732h5.657c4.815 0 7.824 1.505 7.824 7.343h2.047l-.241-10.713h-34.728v1.565l.108.017c6.576 1.066 6.814 1.105 6.814 8.288v38.881Zm80.951-48.421.48.091v5.356c-1.986-.902-7.343-3.25-13-3.25-3.912 0-6.982 2.287-6.982 7.042 0 5.141 4.975 7.705 10.356 10.479 6.337 3.266 13.237 6.823 13.237 15.221 0 10.412-8.245 14.324-18.236 14.324-5.145 0-10.291-1.271-12.257-1.757l-.195-.048a38.986 38.986 0 0 0-.248-.061v-5.898c2.227 1.264 8.065 4.334 13.843 4.334 4.574 0 9.088-1.866 9.088-8.487 0-5.516-5.159-8.216-10.653-11.091-6.253-3.272-12.94-6.771-12.94-14.909 0-8.005 6.139-12.579 16.371-12.579 4.675 0 8.989.823 11.136 1.233Zm-92.869-30.002c51.761.722 95.336 14.023 124.105 29.491-30.816-13.722-73.849-25.399-124.406-26.061-50.496-.662-99.729 8.246-132.891 21.126 31.477-14.686 81.432-25.218 133.192-24.496v-.06ZM98.516 236.847v-11.376h1.264c1.144 0 1.926.061 2.287.181.542.12 1.024.421 1.385.843.361.421.662 1.023.842 1.745.181.782.241 1.806.241 3.009 0 1.204-.06 2.227-.241 2.949-.18.723-.421 1.264-.662 1.625-.301.362-.602.602-1.023.783-.421.12-1.083.241-1.986.241h-2.107Zm2.348-14.204h-5.176v17.032h5.296c1.144 0 2.107-.18 2.829-.481s1.324-.783 1.866-1.445a7.987 7.987 0 0 0 1.264-2.588c.301-1.083.481-2.347.481-3.852 0-1.625-.18-3.009-.481-4.092a8.128 8.128 0 0 0-1.325-2.709c-.541-.662-1.143-1.143-1.805-1.444-.662-.301-1.625-.421-2.949-.421Zm15.167 9.81c0-.963-.241-1.685-.602-2.166-.422-.482-.843-.723-1.385-.723-.541 0-1.023.241-1.444.783-.421.481-.602 1.203-.602 2.166h4.033v-.06Zm-.121 3.31 2.648.542c-.361 1.264-.902 2.167-1.685 2.769-.722.602-1.685.903-2.768.903-1.505 0-2.649-.482-3.491-1.505-.963-1.144-1.445-2.769-1.445-4.875 0-2.107.482-3.732 1.445-4.996.842-1.023 1.866-1.565 3.19-1.565 1.444 0 2.588.542 3.43 1.625.963 1.204 1.445 3.01 1.445 5.417v.361h-6.741c0 .963.241 1.746.662 2.287.421.542.963.783 1.505.783.842 0 1.444-.602 1.745-1.746h.06Zm8.486.602c-.421-.662-.662-1.685-.662-3.069l-.06-.06c0-1.204.241-2.167.662-2.769.422-.602 1.023-.903 1.625-.903.602 0 1.144.361 1.565.963.482.662.662 1.565.662 2.949 0 1.385-.18 2.408-.602 3.01-.421.602-.963.903-1.565.903-.601 0-1.143-.362-1.625-1.024Zm-.902-9.088h-2.468l-.06-.06v17.093h2.708v-6.199c.482.662.963 1.143 1.445 1.384.481.301.963.421 1.504.421 1.144 0 2.167-.541 3.01-1.685.842-1.083 1.264-2.708 1.264-4.875 0-2.046-.422-3.611-1.264-4.695-.843-1.143-1.866-1.685-3.01-1.685-.662 0-1.264.181-1.805.542-.542.421-1.023.903-1.324 1.565v-1.806Zm14.054 6.915-.271.067c-.842.241-1.384.481-1.625.722-.241.241-.361.602-.361 1.023 0 .482.12.903.421 1.204.301.301.662.481 1.084.481.361 0 .782-.12 1.143-.421.361-.241.602-.542.783-.903.12-.361.24-1.023.24-1.926v-.662h-.06c-.314.158-.765.269-1.354.415Zm-2.257-3.063-2.407-.542c.301-1.263.782-2.166 1.444-2.708.662-.542 1.685-.843 2.949-.843 1.144 0 1.986.181 2.588.482a2.69 2.69 0 0 1 1.264 1.324c.241.542.361 1.565.361 3.009v3.852c0 1.084 0 1.866.121 2.408.06.541.24 1.083.481 1.685h-2.648l-.361-1.324c-.482.542-.963.963-1.445 1.204a3.335 3.335 0 0 1-1.685.421c-.963 0-1.805-.361-2.407-1.023-.602-.662-.963-1.565-.963-2.648 0-.723.12-1.325.361-1.806.241-.542.602-.903 1.083-1.264.482-.301 1.204-.602 2.227-.843 1.204-.301 2.107-.541 2.588-.782 0-.722 0-1.144-.12-1.324a1.186 1.186 0 0 0-.542-.542c-.241-.12-.602-.18-1.083-.18-.482 0-.843.12-1.144.301-.301.24-.481.601-.662 1.203v-.06Zm9.028 8.607h2.708l-.06-.06v-3.852c0-1.926.06-3.25.181-3.973.12-.722.301-1.203.601-1.504.241-.301.602-.422.963-.422.422 0 .843.181 1.264.542l.843-2.829a2.798 2.798 0 0 0-1.745-.602c-.422 0-.783.121-1.144.422-.301.241-.722.782-1.143 1.625v-1.746h-2.468v12.399Zm12.578-12.399v2.588h-1.806v4.996c0 1.083.001 1.685.061 1.866.12.301.361.481.662.481.241 0 .602-.12 1.083-.301l.241 2.528a4.722 4.722 0 0 1-2.107.482c-.662 0-1.264-.181-1.625-.482-.421-.361-.662-.782-.842-1.444-.121-.422-.181-1.385-.181-2.769v-5.417h-1.204v-2.588h1.204v-2.467l2.708-1.926v4.333h1.806v.12Zm4.394 0h-2.588v12.399h2.708v-6.019c0-1.204.12-2.106.241-2.588.12-.481.361-.903.722-1.143.301-.301.662-.422 1.083-.422.602 0 1.024.301 1.204.783.181.361.241 1.264.241 2.588v6.801h2.708v-5.959c0-1.685.181-2.828.542-3.37.361-.542.843-.843 1.444-.843.482 0 .843.181 1.084.602.18.421.301 1.264.301 2.468v7.102h2.708v-7.945c0-1.264-.12-2.227-.361-2.829-.241-.662-.662-1.083-1.144-1.444a3.672 3.672 0 0 0-1.805-.482c-.542 0-1.084.181-1.625.482-.482.361-.963.843-1.445 1.505-.301-.662-.662-1.204-1.143-1.505a3.08 3.08 0 0 0-1.685-.482c-.663 0-1.204.181-1.746.482-.542.361-1.023.843-1.444 1.505v-1.686Zm20.824 2.95c-.421-.482-.842-.723-1.384-.723-.542 0-1.023.241-1.445.783-.421.481-.602 1.203-.602 2.166h4.033v-.06c0-.963-.241-1.685-.602-2.166Zm.482 5.476 2.648.542c-.361 1.264-.903 2.167-1.685 2.769-.723.602-1.686.903-2.769.903-1.505 0-2.648-.482-3.491-1.505-.963-1.144-1.444-2.769-1.444-4.875 0-2.107.481-3.732 1.444-4.996.843-1.023 1.866-1.565 3.19-1.565 1.445 0 2.588.542 3.431 1.625.963 1.204 1.444 3.01 1.444 5.417v.361h-6.741c0 .963.241 1.746.662 2.287.422.542.963.783 1.505.783.843 0 1.444-.602 1.745-1.746h.061Zm11.675 3.973h2.709l-.121-.121v-7.703c0-1.204-.12-2.107-.3-2.769-.181-.662-.542-1.144-1.084-1.565-.542-.421-1.204-.602-1.986-.602-.662 0-1.324.181-1.866.542-.541.361-1.083.843-1.504 1.565v-1.806h-2.468v12.399h2.708v-5.598c0-1.384.061-2.407.241-2.889.181-.541.421-.902.782-1.203a1.843 1.843 0 0 1 1.204-.422c.361 0 .722.121.963.361.241.241.421.542.542.963.18.422.18 1.264.18 2.528v6.32Zm10.292-12.399v2.588h-1.806v4.996c0 1.083 0 1.685.06 1.866.12.301.301.481.662.481.241 0 .602-.12 1.084-.301l.24 2.528a4.72 4.72 0 0 1-2.106.482c-.662 0-1.204-.181-1.625-.482-.422-.361-.723-.782-.843-1.444-.12-.422-.18-1.385-.18-2.769v-5.417h-1.204v-2.588h1.204v-2.467l2.708-1.926v4.333h1.806v.12Zm10.653 9.028c-.481-.602-.722-1.565-.722-2.828v-.061c0-1.264.241-2.166.722-2.828.482-.602 1.084-.963 1.746-.963.662 0 1.264.301 1.745.963.482.662.723 1.564.723 2.828 0 1.264-.241 2.227-.723 2.889-.481.662-1.083.963-1.745.963-.662 0-1.264-.301-1.746-.963Zm-2.768-6.379c-.482 1.023-.722 2.106-.722 3.31 0 2.106.481 3.792 1.504 4.935.963 1.144 2.227 1.746 3.732 1.746.903 0 1.806-.241 2.588-.783.782-.481 1.444-1.264 1.926-2.287.481-1.023.722-2.167.722-3.431 0-1.745-.481-3.25-1.384-4.514-.963-1.263-2.227-1.926-3.852-1.926-.963 0-1.806.241-2.588.723-.843.481-1.445 1.203-1.926 2.227Zm10.953-2.649h1.505v-.903c0-1.143.12-1.926.301-2.467.24-.482.541-.903 1.023-1.204.481-.301 1.083-.421 1.745-.421.783 0 1.505.12 2.227.421l-.361 2.287a4.596 4.596 0 0 0-1.264-.18c-.421 0-.662.12-.843.361-.18.24-.24.662-.24 1.264v.902h1.986v2.588h-1.986v9.811h-2.709v-9.811h-1.504v-2.588l.12-.06Zm13.663-4.694v17.093h2.768v-7.283h5.898v-2.889h-5.898v-4.032h6.801v-2.889h-9.569Zm12.099 17.093h2.708v-12.399h-2.708v12.399Zm0-14.024h2.708v-3.009h-2.708v3.009Zm5.596 14.024h2.708l-.06-.06v-3.852c0-1.926.06-3.25.18-3.973.121-.722.301-1.203.602-1.504.241-.301.542-.422.963-.422.422 0 .843.181 1.264.542l.843-2.829a2.798 2.798 0 0 0-1.746-.602c-.421 0-.782.121-1.143.422-.361.241-.722.782-1.144 1.625v-1.746h-2.467v12.399Zm13.362-9.449c-.361-.482-.843-.723-1.384-.723-.602 0-1.024.241-1.445.783-.421.481-.602 1.203-.602 2.166h4.033v-.06c0-.963-.241-1.685-.602-2.166Zm.481 5.476 2.649.542c-.362 1.264-.903 2.167-1.686 2.769-.722.602-1.685.903-2.768.903-1.505 0-2.648-.482-3.491-1.505-.963-1.144-1.445-2.769-1.445-4.875 0-2.107.482-3.732 1.445-4.996.843-1.023 1.866-1.565 3.19-1.565 1.444 0 2.588.542 3.43 1.625.963 1.204 1.385 3.01 1.385 5.417v.361h-6.741c0 .963.241 1.746.662 2.287.421.542.963.783 1.565.783.842 0 1.444-.602 1.745-1.746h.06Zm16.046-7.436.687-.629c.541-.481.842-1.023.842-1.504 0-.482-.18-.843-.421-1.084-.301-.301-.602-.421-1.023-.421-.422 0-.722.12-.963.361a1.225 1.225 0 0 0-.361.903c0 .421.18.903.602 1.505l.637.869Zm-2.503 4.969c.361-.542.782-1.023 1.384-1.385l-.06.061 2.768 4.092c-.842.903-1.685 1.324-2.467 1.324-.602 0-1.084-.24-1.505-.662-.421-.421-.602-1.023-.602-1.745 0-.602.181-1.144.482-1.685Zm8.125 6.861 1.625-2.528a4.475 4.475 0 0 0-.383-.318c-.176-.138-.392-.307-.64-.524a10.234 10.234 0 0 1-1.144-1.144c.422-.662.843-1.806 1.204-3.491l-2.407-.662c-.181.783-.362 1.445-.602 1.926l-1.926-3.13c.963-.722 1.625-1.444 1.986-2.046.361-.602.542-1.324.542-2.046 0-1.144-.362-2.047-1.084-2.769-.722-.722-1.625-1.083-2.768-1.083-1.144 0-2.107.361-2.829 1.023-.722.662-1.084 1.565-1.084 2.648 0 1.083.482 2.347 1.445 3.732-2.167 1.324-3.19 3.069-3.19 5.236 0 1.264.361 2.407 1.204 3.431.782 1.083 2.046 1.564 3.731 1.564.843 0 1.565-.12 2.227-.421a6.045 6.045 0 0 0 1.806-1.384 9.865 9.865 0 0 0 2.287 1.986ZM95.688 261.944v-17.032H106.1v2.889h-7.584v3.791h7.042v2.829h-7.042v4.634h7.825v2.889H95.688Zm15.527-12.338h-2.648v12.338h2.708v-6.018c0-1.204.06-2.107.241-2.588.12-.482.421-.903.722-1.144.361-.301.662-.421 1.084-.421.601 0 1.023.301 1.203.782.181.361.241 1.264.241 2.588v6.801h2.709v-5.958c0-1.685.18-2.829.541-3.371.361-.541.843-.842 1.445-.842.481 0 .842.18 1.083.602.241.421.361 1.264.361 2.467v7.102h2.709v-7.884c0-1.264-.121-2.227-.362-2.829-.24-.662-.662-1.083-1.143-1.444a3.68 3.68 0 0 0-1.806-.482c-.541 0-1.083.121-1.625.482-.541.301-.963.782-1.444 1.444-.361-.602-.722-1.143-1.204-1.444a3.078 3.078 0 0 0-1.685-.482c-.602 0-1.144.121-1.685.482a4.947 4.947 0 0 0-1.445 1.504v-1.685Zm21.427 5.116c0-.963-.241-1.685-.602-2.167-.361-.481-.842-.722-1.384-.722-.602 0-1.023.241-1.445.722-.421.542-.601 1.264-.601 2.167h4.032Zm-.12 3.31 2.648.542c-.361 1.204-.903 2.167-1.685 2.768-.723.602-1.686.903-2.769.903-1.505 0-2.648-.481-3.491-1.504-.963-1.144-1.444-2.829-1.444-4.876 0-2.046.481-3.731 1.444-4.935.843-1.023 1.866-1.565 3.19-1.565 1.445 0 2.588.542 3.431 1.625.963 1.204 1.444 3.01 1.444 5.417v.361h-6.741c0 .963.241 1.746.662 2.287.422.542.963.783 1.565.783.843 0 1.445-.602 1.746-1.746v-.06Zm5.055 3.912h2.648v-3.852c0-1.926.061-3.25.181-3.972s.301-1.264.602-1.505c.241-.3.602-.421.963-.421.421 0 .842.181 1.264.542l.842-2.829a2.794 2.794 0 0 0-1.745-.602c-.421 0-.783.181-1.144.422-.361.24-.722.782-1.143 1.625v-1.746h-2.468v12.338Zm10.111-6.409c.003 1.308.184 2.261.602 2.858.422.602.963.903 1.565.903.662 0 1.204-.301 1.625-.903.482-.602.662-1.504.662-2.768 0-1.264-.24-2.227-.662-2.889-.421-.602-.963-.903-1.625-.903s-1.143.301-1.565.903c-.418.597-.599 1.55-.602 2.799Zm-2.407 7.312 3.069.482c0 .481.181.782.422.963.241.18.602.301 1.143.301.602 0 1.084-.061 1.445-.301.241-.121.481-.362.602-.723.12-.301.18-.902.18-1.685v-1.805c-.421.662-.842 1.143-1.384 1.504-.482.361-1.083.482-1.685.482-1.144 0-2.107-.482-2.829-1.505-.903-1.144-1.324-2.769-1.324-4.755 0-2.106.421-3.731 1.264-4.815.842-1.083 1.805-1.625 3.009-1.625a3.14 3.14 0 0 1 1.746.542c.481.361.963.843 1.384 1.505v-1.746h2.528v11.075c0 1.805-.181 3.069-.482 3.852a3.71 3.71 0 0 1-1.505 1.805c-.662.421-1.625.602-2.828.602-1.084 0-1.986-.181-2.648-.421-.663-.301-1.204-.723-1.565-1.324-.361-.602-.542-1.264-.542-2.047v-.361Zm17.875-10.292c.361.482.602 1.204.602 2.167h-4.032c0-.903.18-1.625.601-2.167.422-.481.843-.722 1.445-.722.542 0 1.023.241 1.384.722Zm3.13 6.019-2.648-.542v.06c-.301 1.144-.903 1.746-1.746 1.746-.662 0-1.143-.241-1.565-.783-.421-.541-.662-1.324-.662-2.287h6.741v-.361c0-2.407-.481-4.213-1.444-5.417-.843-1.083-1.986-1.625-3.431-1.625-1.324 0-2.347.542-3.19 1.565-.963 1.204-1.444 2.889-1.444 4.935 0 2.047.481 3.732 1.444 4.876.843 1.023 1.986 1.504 3.491 1.504 1.083 0 2.046-.301 2.769-.903.782-.601 1.324-1.564 1.685-2.768Zm11.796 3.371h-2.708v-6.32c0-1.264 0-2.106-.121-2.528-.12-.421-.3-.722-.601-.963-.301-.24-.602-.361-.903-.361-.422 0-.843.121-1.204.421-.361.301-.602.723-.782 1.204-.121.482-.241 1.505-.241 2.889v5.597h-2.708v-12.338h2.467v1.806c.421-.722.963-1.204 1.505-1.565.542-.361 1.143-.542 1.866-.542.782 0 1.444.181 1.986.602.541.421.903.903 1.143 1.565.181.662.301 1.565.301 2.769v7.764Zm11.784-8.724.015-.004v.06l-.015-.056Zm0 0-2.634.598c-.18-1.264-.842-1.926-1.865-1.926-.662 0-1.204.301-1.625.843-.422.541-.602 1.504-.602 2.829 0 1.444.18 2.527.602 3.129.421.602.963.903 1.625.903.541 0 .902-.18 1.264-.481.301-.362.541-.963.722-1.866l2.648.541c-.542 2.95-2.106 4.454-4.695 4.454-1.625 0-2.888-.602-3.671-1.865-.782-1.264-1.204-2.769-1.204-4.514 0-2.107.482-3.732 1.385-4.876.903-1.083 2.106-1.685 3.551-1.685 1.203 0 2.166.301 2.889.963.712.653 1.249 1.599 1.61 2.953Zm.978-3.615h.078l3.834 12.339c-.241.902-.542 1.504-.843 1.865-.361.301-.782.482-1.264.482-.361 0-.722 0-1.143-.121l.24 2.589c.482.12.963.18 1.505.18.662 0 1.204-.06 1.685-.301.482-.18.843-.481 1.144-.903.301-.421.602-1.023.903-1.926l.722-2.287 3.551-11.917h-2.769l-2.347 8.788-2.408-8.788h-2.81l-.018-.06-.06.06Zm20.16 6.5-2.769.301h.06c.361 3.912 2.287 5.838 5.718 5.838 1.926 0 3.37-.481 4.273-1.504.963-1.023 1.385-2.227 1.385-3.732 0-1.023-.121-1.866-.482-2.588s-.843-1.264-1.444-1.745c-.602-.422-1.625-.843-3.07-1.264-1.384-.421-2.227-.783-2.588-1.083-.361-.301-.542-.663-.542-1.144 0-.482.181-.903.602-1.204.422-.301.963-.481 1.746-.481.782 0 1.324.18 1.745.541.361.362.662 1.024.783 1.926l2.828-.18c-.06-1.685-.541-2.949-1.444-3.852-.903-.903-2.227-1.324-3.852-1.324-1.084 0-2.047.241-2.769.602s-1.324.963-1.745 1.685c-.482.782-.662 1.625-.662 2.528 0 .782.18 1.504.481 2.227.301.722.783 1.264 1.324 1.685.602.421 1.445.842 2.649 1.204 1.324.421 2.166.722 2.527.902.362.181.662.422.783.662.12.241.241.602.241.963 0 .602-.241 1.204-.723 1.625-.481.422-1.143.662-1.986.662-1.745 0-2.768-1.083-3.069-3.25Zm17.214-1.384c0-.963-.24-1.685-.602-2.167-.361-.481-.842-.722-1.384-.722-.542 0-1.023.241-1.444.722-.422.542-.602 1.264-.602 2.167h4.032Zm-.12 3.31 2.648.542c-.361 1.204-.903 2.167-1.685 2.768-.722.602-1.685.903-2.769.903-1.504 0-2.648-.481-3.491-1.504-.962-1.144-1.444-2.829-1.444-4.876 0-2.046.482-3.731 1.444-4.935.843-1.023 1.866-1.565 3.19-1.565 1.445 0 2.588.542 3.431 1.625.963 1.204 1.444 3.01 1.444 5.417v.361h-6.74c0 .963.24 1.746.662 2.287.421.542.963.783 1.564.783.843 0 1.445-.602 1.746-1.746v-.06Zm5.117 3.912h2.708v-3.852c0-1.926.061-3.25.181-3.972s.301-1.264.602-1.505c.241-.3.542-.421.963-.421.421 0 .842.181 1.264.542l.842-2.829a2.794 2.794 0 0 0-1.745-.602c-.482 0-.843.181-1.204.422-.361.24-.722.782-1.143 1.625v-1.746h-2.468v12.338Zm10.771.001-4.153-12.339h2.829l1.926 6.32.541 2.106.602-2.106 1.926-6.32h2.769l-4.093 12.339h-2.347Zm11.016-.001h-2.708v-12.338h2.708v12.338Zm0-14.023h-2.708v-3.009h2.708v3.009Zm11.797 5.296-2.648.602c-.181-1.264-.783-1.926-1.806-1.926-.662 0-1.204.301-1.625.843-.421.541-.602 1.504-.602 2.829 0 1.444.181 2.527.602 3.129.421.602.963.903 1.625.903.482 0 .903-.18 1.264-.481.301-.362.542-.963.722-1.866l2.649.541c-.542 2.95-2.107 4.454-4.695 4.454-1.625 0-2.889-.602-3.671-1.865-.783-1.264-1.204-2.769-1.204-4.514 0-2.107.481-3.732 1.384-4.876.903-1.083 2.107-1.685 3.551-1.685 1.204 0 2.167.301 2.889.963.722.662 1.264 1.625 1.625 3.009l-.06-.06Zm7.703-.662c.361.482.602 1.204.602 2.167h-4.033c0-.903.181-1.625.602-2.167.422-.481.903-.722 1.445-.722.541 0 1.023.241 1.384.722Zm3.13 6.019-2.649-.542v.06c-.3 1.144-.902 1.746-1.745 1.746-.662 0-1.143-.241-1.565-.783-.421-.541-.662-1.324-.662-2.287h6.741v-.361c0-2.407-.481-4.213-1.444-5.417-.843-1.083-1.987-1.625-3.431-1.625-1.324 0-2.347.542-3.19 1.565-.963 1.204-1.444 2.889-1.444 4.935 0 2.047.481 3.732 1.444 4.876.843 1.023 1.986 1.504 3.491 1.504 1.083 0 1.986-.301 2.768-.903.783-.601 1.325-1.564 1.686-2.768Zm1.625-.12 2.708-.482c.241 1.324.963 1.926 2.167 1.926.662 0 1.144-.12 1.445-.361.301-.241.481-.542.481-.963 0-.241-.06-.482-.241-.602-.12-.181-.421-.301-.902-.421-2.167-.602-3.612-1.144-4.213-1.686-.723-.662-1.144-1.564-1.144-2.708 0-1.143.361-2.046 1.083-2.768.723-.663 1.806-1.024 3.19-1.024 1.385 0 2.348.241 3.01.783.662.541 1.203 1.324 1.444 2.467l-2.528.602c-.241-.963-.842-1.504-1.926-1.504-.662 0-1.143.06-1.384.301-.301.18-.421.421-.421.722s.12.481.361.662c.241.18 1.083.481 2.407.842 1.505.422 2.528.963 3.07 1.505.541.602.782 1.384.782 2.408 0 1.203-.421 2.166-1.204 2.949-.842.782-1.926 1.143-3.37 1.143-1.324 0-2.407-.301-3.19-.963-.842-.662-1.384-1.625-1.625-2.828Zm-171.352-60.127c3.31 0 5.838-1.444 7.583-4.393h.061c2.287-3.912 3.43-9.75 3.43-17.815 0-6.38-.782-11.616-2.347-15.468-1.264-3.07-2.889-5.176-4.875-6.32-1.445-.782-3.671-1.143-6.801-1.143h-.662v39.241c0 2.829.12 3.611.241 3.912.12.542.481 1.023.902 1.324.602.422 1.445.662 2.468.662Zm10.111-44.598c3.311 1.926 5.838 4.875 7.524 8.727h.06c1.685 3.973 2.588 8.487 2.588 13.422 0 3.431-.422 6.62-1.264 9.509-.843 2.889-1.926 5.297-3.25 7.163-1.324 1.865-2.829 3.43-4.574 4.514-1.806 1.143-3.913 2.046-6.44 2.648-1.144.301-2.889.421-5.297.421l-3.43.06-7.825-.06v-38.941c0-7.183-.238-7.222-6.814-8.288l-.107-.017v-1.565l14.685.06h3.431c4.454 0 8.065.782 10.713 2.347Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1g0xt1a\",\"data-framer-name\":\"logo-dpird\",layoutDependency:layoutDependency,layoutId:\"Yep0nwOzy\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:190,pixelHeight:380,pixelWidth:380,src:\"https://framerusercontent.com/images/ku5ybTXF4wmCC1fphNWOFC6Sg4.svg\"},className:\"framer-1xtnepf\",\"data-framer-name\":\"DPIRD\",layoutDependency:layoutDependency,layoutId:\"bXUvlHZ8s\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1q7395l\",\"data-framer-name\":\"logo-galvin\",layoutDependency:layoutDependency,layoutId:\"FnsVunouD\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-46j4e4\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:280,intrinsicWidth:280,layoutDependency:layoutDependency,layoutId:\"mwW_FXWxu\",svg:'<svg width=\"280\" height=\"280\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.35 96.984C35.35 90.366 40.716 85 47.334 85h185.331c6.619 0 11.985 5.366 11.985 11.984 0 6.619-5.366 11.985-11.985 11.985H59.319v62.062h161.362v-16.264H74.727c-6.618 0-11.984-5.366-11.984-11.985s5.366-11.984 11.985-11.984h157.937c6.619 0 11.985 5.365 11.985 11.984v40.234c0 6.618-5.366 11.984-11.985 11.984H47.335c-6.62 0-11.985-5.366-11.985-11.984V96.984Zm196.887 10.273c5.437 0 9.845-4.408 9.845-9.845s-4.408-9.844-9.845-9.844-9.844 4.407-9.844 9.844c0 5.437 4.407 9.845 9.844 9.845Zm-157.51 45.37c5.437 0 9.845-4.408 9.845-9.845s-4.408-9.844-9.844-9.844c-5.437 0-9.845 4.407-9.845 9.844 0 5.437 4.408 9.845 9.845 9.845Zm157.51-47.938a7.276 7.276 0 0 0 7.276-7.276 7.276 7.276 0 1 0-14.552 0 7.277 7.277 0 0 0 7.276 7.276ZM82.004 142.782a7.276 7.276 0 0 1-7.276 7.276 7.276 7.276 0 1 1 0-14.552 7.276 7.276 0 0 1 7.276 7.276Zm-11.129-18.405v4.281H95.7v-10.273H83.716v3.424h7.704v2.568H75.156v-8.56H95.7v-4.28H70.876v12.84Zm53.93-1.712v5.993h4.281v-17.121H104.26v17.121h4.281v-5.993h16.264Zm0-3.424v-3.424h-16.264v3.424h16.264Zm34.242 5.136h-17.121v-12.84h-4.28v17.121h21.401v-4.281Zm35.097 4.281h4.28v-17.121h-4.28v17.121Zm12.84-17.121h4.281v.005l.001-.002 16.263 11.8v-11.803h4.28v17.121h-4.28v-.002l-.002.003-16.262-11.8v11.799h-4.281v-17.121Zm-47.557 0 11.991 17.121h3.395l11.991-17.121h-5.225l-8.464 12.084-8.463-12.084h-5.225Z\" fill=\"#fff\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(35 85)\" d=\"M0 0h210v110H0z\"/></clipPath></defs></svg>',withExternalLayout:true})})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({V41CcSSkD:{gap:34}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15brd6q-container\",layoutDependency:layoutDependency,layoutId:\"KQWI2coq8-container\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:30,overflow:false},gap:54,height:\"100%\",hoverFactor:1,id:\"KQWI2coq8\",layoutId:\"KQWI2coq8\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oa5adv\",\"data-framer-name\":\"logo-lotterywest\",layoutDependency:layoutDependency,layoutId:\"NXXbt0ZOG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-v7ef3h\",\"data-framer-name\":\"Lotterywest\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"eomxOIa_R\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"50\" y=\"150\" width=\"280\" height=\"95\"><path d=\"M170.631 196.907c-3.988 0-11.252.997-14.527 8.118-3.133 6.837-1.709 15.667-.285 18.658.997 2.136 2.564 3.418 3.988 3.418.569 0 1.139-.285 1.424-.57.57-.57.854-1.424.854-2.706-.142-3.418.428-8.118 1.282-11.678 1.282-5.27 2.849-8.118 7.833-10.824 1.567-.855 2.564-1.994 2.279-3.134-.142-.712-1.282-1.282-2.848-1.282Zm4.415 3.988c0 5.84 1.851 14.954 6.978 22.788.855 1.424.997 1.994.428 3.133-2.991 6.266-6.267 10.966-10.112 14.384-.997.855-1.424 1.709-1.14 2.422.285.569.855.997 1.852.997.427 0 .854 0 1.282-.143 8.26-2.136 15.239-10.966 20.936-26.917 2.848-7.834 5.269-13.388 7.263-17.233.57-.997.712-2.137.285-2.706-.142-.285-.57-.713-1.282-.713-.712 0-1.566.428-2.706 1.14-3.988 2.848-7.975 8.26-11.251 15.524-.143.142-.143.285-.285.285s-.285-.143-.427-.285c-2.991-4.415-6.124-10.397-7.549-14.67-.427-1.139-1.281-1.994-2.278-1.994-.712 0-1.994.997-1.994 3.988m-97.701 17.233c-3.56-.142-5.27-3.418-4.415-7.548.854-4.13 4.415-7.548 7.548-7.264 3.988.285 4.985 4.131 4.273 7.549-.712 4.13-3.846 7.263-7.406 7.263Zm1.994-21.221c-7.549.285-14.242 6.837-15.382 15.097-.57 4.415.428 8.403 2.849 11.109 2.278 2.564 5.554 3.988 9.257 3.988 8.118 0 14.954-6.409 15.951-14.954.57-4.416-.57-8.546-3.133-11.394-2.279-2.564-5.412-3.846-9.257-3.846.142-.142 0 0-.285 0Zm125.473 3.134c-1.282 10.254 2.848 19.654 5.412 23.784 1.282 2.136 3.276 3.276 5.127 3.276 1.994 0 3.561-1.424 4.273-3.703.997-3.703 2.421-8.261 3.56-11.109.143-.427.285-.427.427-.427.143 0 .143.142.285.285 1.424 4.415 3.134 8.972 4.558 11.678 1.139 2.136 2.991 3.418 4.985 3.418 2.136 0 3.845-1.424 4.272-3.703 1.994-9.542 5.412-18.23 8.118-22.502.997-1.567 1.282-2.706.855-3.418-.143-.285-.428-.57-1.282-.57-.712 0-1.852.285-2.991.854-2.421 1.282-7.406 6.694-10.397 14.385-.142.427-.285.57-.285.57s-.142-.143-.284-.57c-1.14-2.848-2.137-6.409-2.991-9.97-.427-1.709-1.852-2.848-3.561-2.848-1.566 0-2.991.855-3.988 2.279-2.136 2.991-3.987 7.406-5.127 10.539-.142.285-.142.427-.285.427-.142 0-.284-.142-.427-.285-2.136-3.418-4.415-10.254-5.269-13.672-.285-1.282-1.282-2.136-2.422-2.136-.997 0-2.278.854-2.563 3.418m58.393-3.561c-4.273.143-8.831 2.421-12.534 6.267-3.702 3.988-5.696 8.83-5.554 13.53.285 8.26 5.839 11.109 10.966 11.109h.57c8.688-.428 14.527-7.406 16.379-12.106.284-.712.284-1.424 0-1.852-.143-.285-.428-.427-.855-.427s-.854.285-1.424.712c-3.133 2.849-6.552 4.558-10.112 5.127-.57.143-.997.143-1.567.143-3.703 0-5.981-2.279-6.124-6.267-.142-4.842 3.988-9.542 7.406-9.827h.285c1.282 0 2.136.855 2.279 1.994.142 1.424-.57 2.564-1.282 3.276-1.139 1.282-2.849 1.994-4.415 1.994h-.57c-.57 0-1.139.284-1.282.854-.142.427 0 .997.712 1.424.713.428 1.994 1.14 4.131 1.14h.854c2.991-.285 5.555-1.567 7.406-3.561 1.709-1.851 2.421-4.272 2.279-6.694-.285-3.133-2.564-6.693-7.121-6.693l-.427-.143Zm26.775-.142c-7.976.712-14.1 5.697-13.815 11.109.142 2.136.997 4.984 6.694 6.836 3.845 1.282 5.981 2.279 6.124 3.703.142 1.424-2.137 3.133-5.555 3.703-.854.142-1.709.142-2.706.142-1.709 0-3.418-.142-4.7-.427h-.569c-.997 0-1.567.427-1.852 1.139-.285.855.285 1.994 1.282 2.706 1.994 1.424 5.412 2.279 9.115 2.279 1.139 0 2.279-.142 3.418-.285 7.976-1.282 12.391-5.412 12.106-11.394-.142-3.133-2.706-5.554-7.548-7.405l-1.282-.428c-2.421-.854-3.846-1.424-3.846-2.848 0-1.852 3.276-3.703 7.834-4.273 2.563-.285 2.706-1.424 2.706-1.851-.143-1.282-2.279-2.564-5.84-2.564-.569-.142-.997-.142-1.566-.142Zm-149.543-.143c-4.272.285-8.83 2.849-12.105 6.837-3.561 4.13-5.27 9.115-4.843 13.814.57 6.694 4.558 10.54 10.824 10.54h1.282c9.4-.855 14.67-9.115 15.809-12.961.142-.712.142-1.424-.143-1.851a.782.782 0 0 0-.712-.427c-.427 0-.854.284-1.424.712-2.991 2.99-6.409 4.842-9.827 5.554-.712.142-1.424.142-1.994.142-3.56 0-5.697-2.136-5.981-5.981-.428-4.843 3.418-9.685 6.836-10.112h.427c1.139 0 1.994.712 2.136 1.851.143 1.567-.569 2.706-1.139 3.418-1.139 1.282-2.848 2.137-4.415 2.137h-.285c-.712 0-1.139.427-1.282.854-.142.428 0 .997.712 1.425.997.569 2.279.854 3.703.854.428 0 .855 0 1.425-.142 2.848-.428 5.412-1.709 7.121-3.988 1.566-1.994 2.278-4.415 1.851-6.979-.427-3.133-2.706-6.266-6.979-6.266-.569.569-.712.569-.997.569m-26.49-41.444c-.427.427-.57.997-.57 1.709.285 5.839.285 12.818 0 20.936 0 .712-.427 1.139-1.139 1.139-1.139.143-2.279.285-3.418.57h-.142c-.713 0-.855-.855-.855-1.282-.57-10.966-2.991-18.657-4.985-22.075-.569-.997-1.424-1.567-2.278-1.567-.57 0-.997.143-1.282.57-.428.427-.57.997-.57 1.709.285 6.551.285 14.954-.142 24.354 0 .997-.285 1.282-.855 1.566-7.121 2.991-10.54 6.552-11.394 7.549-.712.854-.996 1.709-.57 2.421.286.57.713.854 1.282.854.143 0 .428.001.57-.142 2.849-.854 6.124-1.851 9.542-2.564h.285c.143 0 .285 0 .427.143.143.142.143.285.143.57-.712 12.39-1.994 25.066-3.418 36.032-.143 1.14.142 1.709.427 2.136.285.428.855.57 1.424.57.855 0 1.567-.427 2.137-1.282 2.99-4.557 8.118-15.666 9.257-39.45 0-.57.285-.855.997-.997l2.991-.428h.427c.285 0 .285 0 .427.143.143.142.143.57.143 1.139-.712 13.388-1.994 26.918-3.561 38.169-.142 1.14.143 1.852.427 2.136.285.428.855.57 1.282.57.855 0 1.567-.427 1.994-1.282 3.133-4.7 8.403-16.236 9.4-40.59 0-1.424.427-1.566.997-1.566 5.982-.57 11.536-.855 16.521-.855h1.424c.997 0 1.567-.427 1.851-1.139a2.114 2.114 0 0 0-1.281-2.279c-3.276-1.851-9.115-3.988-18.515-4.13-.997 0-1.139-.285-1.139-1.424-.855-12.961-4.131-19.085-4.985-20.794-.57-.997-1.424-1.566-2.137-1.566-.427-.143-.854 0-1.139.427m192.981 0c-.427.427-.57.997-.57 1.709.285 6.266.285 14.1 0 23.072 0 .57-.285.855-.712.997-5.982 1.994-9.827 6.124-10.824 8.26-.427.997-.285 1.567 0 1.852.285.427.712.57 1.139.57.143 0 .285 0 .428-.143 2.421-.854 5.697-1.851 8.972-2.421h.712v.285c-.712 12.96-1.994 26.348-3.56 37.884-.143 1.139.142 1.851.427 2.136.285.427.855.57 1.282.57.854 0 1.566-.427 1.994-1.282 3.133-4.7 8.403-16.093 9.4-40.305 0-.285 0-.427.712-.57 2.99-.142 5.554-.285 7.833-.285 1.566 0 2.991 0 4.272.143h.143c.57 0 .997-.285 1.282-.712.142-.143.142-.428.142-.712 0-.57-.142-.997-.57-1.567-.997-1.139-4.7-4.985-13.245-5.27-.285 0-.569 0-.712-.997-.57-11.251-2.991-19.084-5.127-22.645-.57-.996-1.424-1.566-2.136-1.566-.57.427-.997.57-1.282.997m-246.674-3.133c-3.275 5.269-9.115 18.229-10.112 45.717 0 1.566-.142 3.133-.142 4.557v.143c0 15.096 2.706 25.493 5.27 30.05.57 1.14 1.424 1.71 2.278 1.71.428 0 .997-.143 1.282-.57.427-.427.712-1.14.57-1.852-.428-9.542-.143-22.075.712-36.317.854-14.242 2.279-29.196 3.845-41.872.143-1.282-.142-1.994-.57-2.421-.284-.427-.854-.57-1.281-.57a3.789 3.789 0 0 0-1.852 1.425\" fill=\"#fff\"/></mask><g mask=\"url(#a)\"><path d=\"M50.143 150.336H330v94.425H50.143v-94.425Z\" fill=\"#fff\"/></g><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"168\" y=\"135\" width=\"121\" height=\"50\"><path d=\"M205.524 144.069c-16.806 3.988-32.9 14.385-36.602 27.488-2.706 9.542 2.563 10.396 5.839 8.402 2.421-1.424 5.554-4.984 7.548-7.263 4.842-5.412 11.251-9.827 19.227-12.96-6.836 4.272-12.533 9.827-15.239 16.093-2.991 7.121 2.421 9.827 7.121 7.833 2.279-.997 6.124-4.13 8.403-5.981 9.257-7.549 17.518-12.391 29.623-12.248 13.673.142 26.918 9.827 33.897 17.232 2.706 2.849 4.842 2.137 3.275-1.424-2.136-5.127-9.257-16.805-20.793-23.926 13.387 4.272 22.645 12.817 28.769 20.793 2.421 3.133 3.988 2.136 2.421-1.424-2.563-5.839-12.248-27.772-44.008-31.76 3.845 0 33.896-1.709 50.844 35.035 1.425 3.561 3.134 3.419 2.564-.284-.997-8.261-9.4-33.612-39.878-42.727-3.703-1.139-7.833-1.566-12.248-1.566-11.109 0-23.215 3.275-30.763 8.687\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M166.358 135.382H288.84v50.559H166.358v-50.559Z\" fill=\"#fff\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1runwle\",\"data-framer-name\":\"logo-kleenheat\",layoutDependency:layoutDependency,layoutId:\"w2RMMOvBO\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-16pfxnc\",\"data-framer-name\":\"Kleenheat\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"HSU2JAd9v\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M223.635 180.305a419.54 419.54 0 0 1 2.039-1.071c3.958-2.076 9.991-3.28 13.843-.246 2.003 1.579 2.871 3.945 2.291 6.484l-6.135 26.799c-.008.039-.033.059-.073.059-4.245.02-7.171.021-8.777.003-2.238-.026-3.244-1.777-2.784-3.81 1.277-5.653 2.625-11.288 3.885-16.944.147-.662.342-1.399.291-2.035-.118-1.474-1.085-2.516-2.519-2.837-2.377-.529-3.943 1.442-4.416 3.529a58220.76 58220.76 0 0 1-4.996 22.047c-.009.037-.032.056-.069.056h-12.33c-.043 0-.06-.021-.05-.062l10.205-44.592c.008-.036.031-.054.068-.054h12.154a.05.05 0 0 1 .024.006.045.045 0 0 1 .019.015.053.053 0 0 1 .011.021.049.049 0 0 1 0 .024l-2.74 12.562c-.013.058.007.073.059.046ZM63.266 212.369H50l10.102-44.539c.008-.034.03-.051.065-.051h13.166l.012.003a.035.035 0 0 1 .01.008.026.026 0 0 1 .005.011v.013l-10.094 44.555Zm19.513-25.393 5.117 25.285a.042.042 0 0 1 0 .018.037.037 0 0 1-.008.015.03.03 0 0 1-.013.011.033.033 0 0 1-.017.004H74.247a.038.038 0 0 1-.025-.009.04.04 0 0 1-.013-.023l-5.06-25.614a.038.038 0 0 1 .006-.028l11.835-18.838a.042.042 0 0 1 .033-.018h13.652c.007 0 .014.002.02.006.006.003.01.008.014.014a.04.04 0 0 1 0 .04l-11.926 19.108a.04.04 0 0 0-.004.029Zm19.468 16.07h3.189c.056 0 .078.027.066.081l-2.021 9.124c-.009.039-.033.059-.074.059a1045.46 1045.46 0 0 0-8.491-.034c-.303 0-.747-.049-1.332-.147-2.2-.366-3.67-1.656-4.072-3.932a12.26 12.26 0 0 1 .134-4.908c2.689-11.807 5.384-23.609 8.087-35.406a.057.057 0 0 1 .055-.044h12.275c.039 0 .054.019.045.058l-7.916 35.079c-.011.047.007.07.055.07Zm207.943-16.174h-3.599c-.037 0-.051-.018-.042-.055l2.131-9.367c.008-.033.029-.05.064-.05h3.631c.047 0 .075-.022.084-.067l2.131-9.279a.048.048 0 0 1 .046-.037h12.272c.044 0 .061.022.051.065l-2.068 9.26c-.01.039.006.058.046.058h4.983c.066 0 .091.032.076.097l-2.159 9.317c-.009.038-.033.058-.073.058h-4.94c-.042 0-.067.02-.077.061l-3.569 15.98c-.011.049.008.073.058.073h4.845c.066 0 .092.033.077.098l-2.151 9.213c-.006.028-.023.042-.052.042h-9.736c-2.886.001-5.315-.969-5.865-4.084a12.096 12.096 0 0 1 .129-4.82 4966.432 4966.432 0 0 1 3.769-16.484c.012-.053-.008-.079-.062-.079Zm-121.446-6.638c-.016.078.011.098.081.061 2.146-1.152 4.114-2.185 6.63-2.754 3.587-.813 8.23-.47 10.547 2.814 1.079 1.529 1.388 3.304.926 5.325-2.029 8.867-4.059 17.738-6.092 26.612a.056.056 0 0 1-.021.033.059.059 0 0 1-.036.013c-2.623.002-5.248.002-7.876-.002-.897 0-1.541-.061-1.932-.181-1.163-.355-1.78-1.168-1.85-2.436-.021-.373.048-.924.207-1.654 1.212-5.576 2.561-11.122 3.807-16.693.2-.896.28-1.539.24-1.929-.124-1.221-.883-2.17-2.043-2.599-1.494-.552-2.988-.052-3.907 1.225-.469.652-.783 1.325-.94 2.017-1.684 7.401-3.361 14.802-5.031 22.205-.007.032-.028.048-.061.048h-12.351a.045.045 0 0 1-.019-.005.042.042 0 0 1-.023-.03.034.034 0 0 1 0-.02l8.018-34.827a.031.031 0 0 1 .012-.019.035.035 0 0 1 .022-.008h12.185c.043 0 .061.021.053.064l-.546 2.74Zm-68.13 18.036-1.012 4.685c-.008.04.008.061.049.061h16.922c.043 0 .06.021.05.063l-2.184 9.199c-.009.039-.034.058-.074.058-7.379.005-14.755.005-22.128 0-.577 0-1.259-.128-2.048-.386-1.932-.63-2.847-1.968-3.203-3.959-.267-1.492-.238-2.933.087-4.322 1.394-5.966 2.79-11.931 4.188-17.897.533-2.274 1.73-4.716 3.555-6.219 1.386-1.14 3.104-1.76 4.873-2.01.521-.074 1.313-.114 2.376-.121 3.008-.019 7.019-.023 12.034-.014 2.027.004 4.688.466 5.892 2.229 1.31 1.917 1.176 4.848.662 6.99-.926 3.85-1.859 7.697-2.799 11.542-.009.034-.031.051-.066.051h-17.112c-.034 0-.055.017-.062.05Zm2.799-11.368a.04.04 0 0 0-.024.008.032.032 0 0 0-.013.021l-1.174 4.928a.048.048 0 0 0 0 .017.035.035 0 0 0 .008.016.032.032 0 0 0 .013.01.035.035 0 0 0 .017.004h5.639a.042.042 0 0 0 .024-.009.036.036 0 0 0 .013-.021l1.156-4.928a.049.049 0 0 0 0-.017.041.041 0 0 0-.007-.015.049.049 0 0 0-.014-.011.041.041 0 0 0-.016-.003h-5.622Zm28.023 16.114h16.938a.04.04 0 0 1 .018.004.044.044 0 0 1 .015.012.038.038 0 0 1 .007.036l-2.186 9.209c-.01.04-.035.061-.077.061-7.361.002-14.719.002-22.073 0-.428 0-.904-.06-1.426-.179-2.004-.456-3.404-1.703-3.818-3.784-.407-2.054-.176-3.84.326-5.985 1.124-4.81 2.25-9.62 3.379-14.429l.292-1.352c.495-2.307 1.44-4.633 3.025-6.357 1.403-1.53 3.517-2.428 5.614-2.713.509-.069 1.301-.107 2.378-.115 3.316-.024 7.396-.028 12.241-.013 1.696.004 3.722.388 4.986 1.479 1.67 1.443 1.855 3.9 1.674 5.969-.046.529-.194 1.308-.442 2.338-.884 3.662-1.772 7.319-2.663 10.971a.075.075 0 0 1-.025.038.071.071 0 0 1-.043.014h-17.101c-.04 0-.065.02-.074.06l-1.01 4.679c-.009.038.006.057.045.057Zm3.766-16.114a.038.038 0 0 0-.023.008.038.038 0 0 0-.014.021l-1.174 4.928a.033.033 0 0 0 0 .017c.001.006.004.011.007.016a.045.045 0 0 0 .014.01.033.033 0 0 0 .017.004h5.64a.036.036 0 0 0 .024-.009.042.042 0 0 0 .013-.021l1.155-4.928a.048.048 0 0 0 0-.017c-.002-.005-.004-.011-.008-.015a.047.047 0 0 0-.013-.011.045.045 0 0 0-.016-.003h-5.622Zm98.633 11.403-1.011 4.674c-.009.044.009.066.054.066h16.921c.039 0 .054.02.045.058l-2.184 9.177c-.009.039-.034.059-.074.059h-22.088a7.027 7.027 0 0 1-.957-.1c-5.076-.799-4.893-5.809-3.992-9.642 1.226-5.22 2.45-10.443 3.67-15.667.256-1.099.459-1.866.607-2.301.651-1.913 1.73-3.822 3.33-5.091 1.936-1.534 4.394-2.031 6.814-2.036a3640.98 3640.98 0 0 1 12.629-.01 9.853 9.853 0 0 1 3.321.588c1.744.623 2.783 1.854 3.115 3.695a11.581 11.581 0 0 1-.144 4.843c-.937 3.866-1.875 7.729-2.813 11.59-.007.028-.024.042-.052.042h-17.123c-.038 0-.06.018-.068.055Zm7.26-6.332a.044.044 0 0 0 .025-.008.041.041 0 0 0 .013-.023l1.16-4.932a.054.054 0 0 0 0-.018.035.035 0 0 0-.008-.016.035.035 0 0 0-.013-.011.038.038 0 0 0-.017-.004h-5.618a.04.04 0 0 0-.024.008.04.04 0 0 0-.014.022l-1.168 4.89a.048.048 0 0 0 0 .017.05.05 0 0 0 .007.015.038.038 0 0 0 .014.011c.005.002.01.004.016.004l5.627.045Zm32.899-5.2-15.232.044c-.049 0-.068-.024-.059-.071l1.959-9.171c.012-.057.047-.086.106-.086 6.552-.001 13.114.001 19.685.004 5.7.003 5.31 5.194 4.453 9.085a33175.74 33175.74 0 0 1-5.212 23.578c-.082.369-.196.655-.342.86-.684.959-1.948 1.23-3.066 1.236-6.594.037-13.187.067-19.781.089-.46.002-.995-.086-1.603-.263-2.807-.815-3.528-2.801-3.363-5.547.059-.974.195-1.938.408-2.891.809-3.629 1.438-6.777 3.602-9.683 1.437-1.931 3.296-3.063 5.577-3.395.449-.066 1.242-.102 2.378-.106 3.186-.014 6.374-.016 9.561-.006.045 0 .072-.022.083-.066l.905-3.536c.012-.05-.007-.075-.059-.075Zm-4.054 16.332a.04.04 0 0 0 .024-.008.045.045 0 0 0 .013-.022l1.271-5.285a.048.048 0 0 0 0-.017.05.05 0 0 0-.007-.015.041.041 0 0 0-.03-.014h-5.987a.038.038 0 0 0-.023.008.041.041 0 0 0-.014.021l-1.271 5.286a.048.048 0 0 0 0 .017.031.031 0 0 0 .008.015.035.035 0 0 0 .013.011.05.05 0 0 0 .017.003h5.986Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18bxik2\",\"data-framer-name\":\"logo-imdex\",layoutDependency:layoutDependency,layoutId:\"EWdck6r4v\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ddsu2m\",\"data-framer-name\":\"imdex\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"YeJk4P3LT\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m252.592 218.828 56.54-67.665a.175.175 0 0 1 .131-.061l20.517.005a.164.164 0 0 1 .092.026.176.176 0 0 1 .063.072.169.169 0 0 1-.023.182l-56.562 67.722a.175.175 0 0 1-.131.061h-67.657a.184.184 0 0 1-.065-.013.162.162 0 0 1-.055-.037.161.161 0 0 1-.037-.056.157.157 0 0 1-.013-.065v-57.997a.172.172 0 0 1 .17-.171l46.601-.004a.172.172 0 0 1 .171.17l-.018 14.438a.17.17 0 0 1-.17.171l-30.019-.004a.17.17 0 0 0-.17.17l.008 7.554a.17.17 0 0 0 .171.171l22.206.009a.17.17 0 0 1 .171.17l-.022 12.662a.17.17 0 0 1-.17.17l-22.194-.004a.17.17 0 0 0-.17.171l.008 7.615a.17.17 0 0 0 .171.17l30.001-.008a.172.172 0 0 1 .171.17l-.018 14.097a.173.173 0 0 0 .113.161.17.17 0 0 0 .189-.052ZM50 219.161v-58.343l16.46-.004a.22.22 0 0 1 .16.068.232.232 0 0 1 .068.164l.004 57.94a.22.22 0 0 1-.062.152.21.21 0 0 1-.148.062L50 219.161Zm96.935-58.212a.114.114 0 0 1 .114-.113h27.191c7.518 0 14.728 2.902 20.044 8.067 5.316 5.166 8.303 12.173 8.303 19.478v3.256c0 7.306-2.987 14.312-8.303 19.478-5.316 5.166-12.526 8.068-20.044 8.068h-27.191a.118.118 0 0 1-.081-.033.118.118 0 0 1-.033-.081v-58.12Zm16.723 14.858-.053 28.369a.296.296 0 0 0 .085.204.294.294 0 0 0 .093.063.3.3 0 0 0 .111.022l8.784.013a12.731 12.731 0 0 0 9.015-3.717 12.753 12.753 0 0 0 3.746-9.006l.009-3.457a12.75 12.75 0 0 0-7.844-11.788 12.743 12.743 0 0 0-4.874-.978l-8.784-.013a.29.29 0 0 0-.288.288Zm-38.58 3.082-11.676 39.747c-.105.359-.344.538-.718.538h-12.341c-.132 0-.215-.063-.25-.188L88.46 179.239a.08.08 0 0 0-.033-.042.087.087 0 0 0-.052-.011.084.084 0 0 0-.047.025.08.08 0 0 0-.02.05l.008 39.677c0 .16-.079.241-.236.241l-15.646-.014c-.15 0-.224-.074-.224-.223v-57.888c0-.148.075-.223.224-.223l23.296-.013c.169 0 .277.082.324.245l10.761 36.977a.11.11 0 0 0 .102.073.098.098 0 0 0 .06-.02.091.091 0 0 0 .035-.053l10.758-36.99c.044-.149.143-.223.297-.223h23.069c.149 0 .223.076.223.227v57.84c0 .19-.095.285-.284.285l-15.62-.014c-.181 0-.271-.089-.271-.267l.021-39.992a.066.066 0 0 0-.017-.04.081.081 0 0 0-.039-.02.065.065 0 0 0-.043.009.078.078 0 0 0-.028.034Z\" fill=\"#fff\"/><path d=\"M252.802 161.076a.02.02 0 0 1-.004-.013.02.02 0 0 1 .004-.013.533.533 0 0 1 .175-.166.373.373 0 0 1 .197-.048c6.53-.003 12.981-.012 19.353-.027a1.721 1.721 0 0 1 1.317.617l11.41 13.721c.125.151.125.302 0 .45l-9.97 11.957a.408.408 0 0 1-.308.144.406.406 0 0 1-.309-.144 5679.365 5679.365 0 0 1-20.21-24.263 30.4 30.4 0 0 1-1.655-2.215Zm75.595 67.792c-6.033.044-12.069.04-18.105-.013-.715-.006-1.234-.201-1.558-.586a9187.522 9187.522 0 0 1-19.327-23.069.956.956 0 0 1 .004-1.23l9.786-11.663a.295.295 0 0 1 .093-.072.283.283 0 0 1 .23 0 .274.274 0 0 1 .093.072l30.316 36.277c.12.143.088.22-.096.232a20.94 20.94 0 0 1-1.436.052Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-bs84sp\",\"data-framer-name\":\"logo-iinet\",layoutDependency:layoutDependency,layoutId:\"ihPyXIBVA\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9hwjaj\",\"data-framer-name\":\"iinet\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"REHVKI_Uv\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M193.06 209.086h-4.572c-2.244 0-4.104-1.86-4.104-4.104v-28.728c0-5.688-1.68-8.496-6.624-8.496-5.592 0-8.304 8.028-8.304 8.028v29.196a4.08 4.08 0 0 1-4.104 4.104h-4.572c-2.244 0-4.104-1.86-4.104-4.104v-43.38c0-2.148 1.776-3.828 3.828-3.828h3.636c2.052 0 3.732 1.68 3.732 3.828v4.284h2.616l2.7-5.22s4.476-2.988 10.824-2.988c7.464 0 13.152 5.784 13.152 17.16v30.132c0 2.244-1.86 4.104-4.104 4.104m39.828-35.148c0-3.924-2.988-6.624-6.9-6.624-3.912 0-6.912 2.7-6.912 6.624v5.688h13.812v-5.688Zm8.208 13.524h-22.02v2.892c0 6.72 2.808 8.772 8.496 8.772h12.036a2.95 2.95 0 0 1 2.988 2.988v3.636c0 1.584-1.308 2.892-2.988 2.892h-14.556c-13.056 0-18.756-9.42-18.756-18.288v-14.556c0-9.696 8.58-17.544 17.448-17.544h4.104c8.772 0 17.82 7.836 17.82 17.544v7.188c0 2.52-2.052 4.476-4.572 4.476Zm36.012-19.692h-5.604v37.224c0 2.244-1.86 4.104-4.104 4.104h-4.656c-2.244 0-4.104-1.86-4.104-4.104v-37.224h-5.508c-1.584 0-2.892-1.308-2.892-2.988v-3.636a2.91 2.91 0 0 1 2.892-2.892h5.508v-12.684c0-2.232 1.86-4.104 4.104-4.104h4.656c2.244 0 4.104 1.872 4.104 4.104v12.684h5.604a2.91 2.91 0 0 1 2.892 2.892v3.636c0 1.68-1.308 2.988-2.892 2.988ZM119.44 203.65a5.452 5.452 0 0 1-5.448 5.448h-8.364a5.444 5.444 0 0 1-5.448-5.448v-39.612a5.444 5.444 0 0 1 5.448-5.448h8.364c3 0 5.448 2.448 5.448 5.448v39.612Zm0-55.644a5.452 5.452 0 0 1-5.448 5.448h-8.364c-3 .012-5.436-2.436-5.436-5.448v-1.092c0-3 2.436-5.448 5.448-5.448h8.364c3 0 5.448 2.436 5.448 5.448v1.092h-.012Zm28.08 55.644a5.444 5.444 0 0 1-5.448 5.448h-8.364a5.444 5.444 0 0 1-5.448-5.448v-39.612a5.444 5.444 0 0 1 5.448-5.448h8.364a5.452 5.452 0 0 1 5.448 5.448v39.612Zm0-55.644a5.444 5.444 0 0 1-5.448 5.448h-8.364a5.444 5.444 0 0 1-5.448-5.448v-1.092c0-3 2.448-5.448 5.448-5.448h8.364a5.444 5.444 0 0 1 5.448 5.448v1.092Zm65.568 90.54c-1.908 0-3.12-.9-3.12-.9l-.876-1.572h-.78v1.296c0 .648-.504 1.152-1.128 1.152h-1.092a1.152 1.152 0 0 1-1.152-1.152v-18.168a1.25 1.25 0 0 1 1.236-1.236h1.38a1.22 1.22 0 0 1 1.236 1.236v2.892l-.48 3.408h.78l.876-1.572s1.212-.9 3.12-.9c2.244 0 4.332 1.74 4.332 5.172v5.172c0 3.432-2.076 5.172-4.332 5.172Zm.48-9.924c0-1.716-.792-2.556-2.28-2.556-1.68 0-2.508 2.424-2.508 2.424v4.608s.816 2.412 2.508 2.412c1.488 0 2.28-.84 2.28-2.556v-4.332Zm16.536 3.372h-6.648v.876c0 2.028.84 2.64 2.568 2.64h3.624c.504 0 .9.396.9.9v1.104c0 .48-.396.876-.9.876h-4.392c-3.936 0-5.652-2.832-5.652-5.508v-4.38c0-2.928 2.592-5.292 5.268-5.292h1.236c2.64 0 5.364 2.364 5.364 5.292v2.16c0 .756-.612 1.344-1.368 1.344m-2.484-4.08c0-1.176-.9-1.992-2.076-1.992-1.176 0-2.088.816-2.088 1.992v1.716h4.164v-1.716Zm13.332-1.86h-1.692v11.22a1.25 1.25 0 0 1-1.236 1.236h-1.404a1.25 1.25 0 0 1-1.236-1.236v-11.22h-1.656a.886.886 0 0 1-.876-.9v-1.092a.88.88 0 0 1 .876-.876h1.656v-3.816c0-.684.564-1.236 1.236-1.236h1.404a1.25 1.25 0 0 1 1.236 1.236v3.816h1.692a.87.87 0 0 1 .864.876v1.092c0 .504-.384.9-.864.9Zm10.092 0h-1.692v11.22a1.25 1.25 0 0 1-1.236 1.236h-1.404a1.25 1.25 0 0 1-1.236-1.236v-11.22h-1.656a.886.886 0 0 1-.876-.9v-1.092a.88.88 0 0 1 .876-.876h1.656v-3.816c0-.684.564-1.236 1.236-1.236h1.404a1.25 1.25 0 0 1 1.236 1.236v3.816h1.692a.88.88 0 0 1 .876.876v1.092c0 .504-.396.9-.876.9Zm13.02 5.928h-6.636v.876c0 2.028.84 2.64 2.556 2.64h3.624c.516 0 .912.396.912.9v1.104c0 .48-.396.876-.912.876h-4.38c-3.936 0-5.652-2.832-5.652-5.508v-4.38c0-2.928 2.58-5.292 5.256-5.292h1.236c2.64 0 5.376 2.364 5.376 5.292v2.16c0 .756-.624 1.344-1.38 1.344m-2.472-4.08c0-1.176-.9-1.992-2.088-1.992-1.188 0-2.076.816-2.076 1.992v1.716h4.164v-1.716Zm13.716-.96h-1.068c-1.716 0-2.472.9-2.472 2.616v7.704c0 .672-.564 1.236-1.248 1.236h-1.368a1.234 1.234 0 0 1-1.236-1.236v-13.08c0-.648.504-1.152 1.152-1.152h1.092c.624 0 1.128.504 1.128 1.152v1.572h.792l.72-1.848s.792-.84 1.956-.84h.552c.564 0 .876.42.876.84v2.16c0 .432-.312.876-.876.876Zm-166.764 11.412h-3.036c-3.096 0-5.508-2.868-5.508-5.544v-4.104c0-2.676 2.424-5.544 5.508-5.544h3.036c.48 0 .876.396.876.864v1.236a.88.88 0 0 1-.876.876h-1.992c-1.74 0-2.7 1.152-2.7 2.844v3.54c0 1.692.96 2.844 2.7 2.844h1.992a.87.87 0 0 1 .876.864v1.236a.88.88 0 0 1-.876.876m10.152.012h-2.34c-2.676 0-5.088-2.412-5.088-5.4v-4.392c0-3 2.424-5.4 5.088-5.4h2.34c2.676 0 5.124 2.388 5.124 5.4v4.392c0 2.988-2.448 5.4-5.124 5.4Zm1.26-9.648c0-1.824-.708-2.808-2.412-2.808s-2.424.984-2.424 2.808v4.188c0 1.824.696 2.724 2.424 2.724s2.412-.9 2.412-2.724v-4.188Zm17.688 9.792h-1.38a1.25 1.25 0 0 1-1.236-1.236v-8.664c0-1.716-.504-2.556-1.992-2.556-1.692 0-2.508 2.424-2.508 2.424v8.796c0 .672-.528 1.236-1.236 1.236h-1.38a1.25 1.25 0 0 1-1.236-1.236v-13.08c0-.648.54-1.152 1.152-1.152h1.092c.624 0 1.128.504 1.128 1.152v1.296h.78l.816-1.572s1.356-.9 3.264-.9c2.256 0 3.96 1.74 3.96 5.172v9.084a1.25 1.25 0 0 1-1.236 1.236m15.6 0h-1.38a1.25 1.25 0 0 1-1.236-1.236v-8.664c0-1.716-.504-2.556-1.992-2.556-1.692 0-2.496 2.424-2.496 2.424v8.796c0 .672-.54 1.236-1.236 1.236h-1.38a1.25 1.25 0 0 1-1.236-1.236v-13.08c0-.648.54-1.152 1.152-1.152h1.092c.624 0 1.128.504 1.128 1.152v1.296h.792l.816-1.572s1.344-.9 3.264-.9c2.244 0 3.96 1.74 3.96 5.172v9.084a1.25 1.25 0 0 1-1.236 1.236m14.46-6.528h-6.636v.876c0 2.028.852 2.64 2.556 2.64h3.624c.504 0 .9.396.9.9v1.104c0 .48-.396.876-.9.876h-4.38c-3.936 0-5.652-2.832-5.652-5.508v-4.38c0-2.928 2.592-5.292 5.256-5.292h1.248c2.64 0 5.364 2.364 5.364 5.292v2.16c0 .756-.612 1.344-1.38 1.344m-2.472-4.08c0-1.176-.9-1.992-2.076-1.992-1.176 0-2.076.816-2.076 1.992v1.716h4.164v-1.716h-.012Zm14.316 10.452h-3.036c-3.096 0-5.52-2.868-5.52-5.544v-4.104c0-2.676 2.424-5.544 5.52-5.544h3.036c.48 0 .876.396.876.864v1.236a.88.88 0 0 1-.876.876h-1.992c-1.74 0-2.7 1.152-2.7 2.844v3.54c0 1.692.96 2.844 2.7 2.844h1.992a.87.87 0 0 1 .876.864v1.236a.88.88 0 0 1-.876.876m10.2-12.3h-1.68v11.22a1.25 1.25 0 0 1-1.236 1.236h-1.404a1.25 1.25 0 0 1-1.236-1.236v-11.22h-1.656a.886.886 0 0 1-.876-.9v-1.092a.88.88 0 0 1 .876-.876h1.656v-3.816c0-.684.564-1.236 1.236-1.236h1.404a1.25 1.25 0 0 1 1.236 1.236v3.816h1.68a.88.88 0 0 1 .876.876v1.092c0 .504-.384.9-.876.9Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(100 141.454)\" d=\"M0 0h180v97.092H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-fhik2o\",\"data-framer-name\":\"logo-hbf\",layoutDependency:layoutDependency,layoutId:\"A6WlBccpd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gqeob5\",\"data-framer-name\":\"HBF\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"zNYJpbM9C\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 240 240\"><path d=\"M 152.247 114.563 L 142.501 110.632 C 142.419 110.6 142.385 110.541 142.4 110.454 C 142.877 107.508 143.739 104.637 144.964 101.915 C 147.265 96.805 150.974 93.397 156.685 92.412 C 160.132 91.818 163.673 91.798 167.306 92.354 C 167.354 92.362 167.392 92.398 167.402 92.445 C 167.405 92.461 167.404 92.477 167.401 92.492 L 165.86 99.409 C 165.841 99.491 165.789 99.527 165.704 99.519 C 159.272 98.786 155.831 101.127 154.151 107.322 C 153.509 109.691 152.929 112.076 152.413 114.475 C 152.393 114.57 152.338 114.599 152.247 114.563 Z M 60.159 115.306 C 60.153 115.325 60.161 115.345 60.179 115.355 C 60.188 115.36 60.198 115.361 60.207 115.36 C 60.217 115.358 60.225 115.353 60.232 115.346 C 64.797 110.26 75.541 107.229 81.717 110.778 C 87.224 113.943 86.617 121.24 85.359 126.716 C 83.806 133.475 82.218 140.226 80.596 146.97 C 80.573 147.061 80.516 147.105 80.423 147.105 L 69.74 147.126 C 69.706 147.126 69.674 147.111 69.653 147.084 C 69.632 147.058 69.624 147.023 69.632 146.99 C 70.99 141.258 72.362 135.53 73.746 129.805 C 74.343 127.326 74.746 125.125 74.953 123.2 C 75.315 119.831 74.291 116.665 70.35 116.529 C 62.502 116.255 58.652 123.599 56.901 130.053 C 55.858 133.897 54.886 137.76 53.985 141.64 C 53.391 144.2 52.84 145.912 50.482 146.781 C 49.871 147.004 48.916 147.117 47.619 147.121 C 45.675 147.124 43.763 147.121 41.883 147.111 C 41.721 147.109 41.658 147.028 41.695 146.869 C 45.514 130.536 49.335 114.204 53.157 97.872 C 53.37 96.963 53.605 96.291 53.865 95.857 C 55.035 93.909 57.396 92.904 59.619 92.917 C 61.506 92.927 63.386 92.931 65.259 92.929 C 65.295 92.929 65.329 92.946 65.351 92.973 C 65.374 93.002 65.383 93.039 65.375 93.075 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 132.138 116.833 C 133.846 123.843 132.231 131 128.135 136.834 C 121.754 145.92 109.885 149.346 99.302 147.615 C 96.81 147.208 94.279 146.279 92.504 144.692 C 87.599 140.307 90.097 132.612 91.368 127.185 C 93.677 117.339 95.98 107.492 98.277 97.643 C 98.953 94.745 101.329 93.102 104.197 92.947 C 105.169 92.893 107.173 92.896 110.206 92.955 C 110.29 92.956 110.323 92.998 110.304 93.08 C 107.344 105.676 104.372 118.269 101.389 130.859 C 100.796 133.365 100.261 136.616 101.363 138.777 C 102.692 141.382 106.245 141.538 108.827 141.043 C 116.447 139.584 122.281 130.696 121.842 123.323 C 121.605 119.357 118.793 116.193 114.684 116.481 C 112.981 116.6 111.484 117.193 110.191 118.259 C 110.176 118.272 110.158 118.278 110.139 118.279 C 110.11 118.281 110.082 118.269 110.063 118.247 C 110.044 118.224 110.037 118.195 110.043 118.167 L 111.746 110.866 C 111.765 110.784 111.813 110.712 111.882 110.663 C 113.948 109.171 118.122 108.671 120.523 108.681 C 124.944 108.696 129.34 109.33 133.585 110.564 C 141.22 112.78 148.581 115.886 155.999 118.729 C 159.182 119.953 162.477 120.864 165.837 121.449 C 165.855 121.453 165.871 121.463 165.883 121.477 C 165.907 121.506 165.909 121.548 165.886 121.579 C 165.875 121.594 165.86 121.605 165.842 121.61 C 160.801 122.802 155.934 122.371 150.894 121.454 C 150.82 121.44 150.749 121.487 150.733 121.559 C 149.219 128.07 147.713 134.582 146.215 141.096 C 145.765 143.06 145.333 144.35 144.919 144.966 C 143.944 146.423 142.405 147.145 140.298 147.133 C 138.153 147.12 136.025 147.114 133.914 147.116 C 133.892 147.116 133.87 147.11 133.851 147.1 C 133.788 147.071 133.755 147.002 133.771 146.935 L 140.358 118.86 C 140.375 118.789 140.349 118.743 140.281 118.719 C 137.677 117.821 135.004 117.137 132.289 116.672 C 132.157 116.649 132.107 116.703 132.138 116.833 Z M 196.635 106.257 C 195.796 108.754 193.576 109.56 191.132 110.529 C 182.687 113.884 173.877 115.288 164.704 114.741 C 164.69 114.742 164.677 114.736 164.667 114.726 C 164.656 114.717 164.651 114.704 164.65 114.69 C 164.65 114.676 164.655 114.662 164.665 114.652 C 164.675 114.642 164.688 114.636 164.702 114.635 C 168.349 114.181 171.932 113.309 175.381 112.036 C 183.504 109.061 191.176 104.975 198.179 99.896 C 198.207 99.875 198.246 99.873 198.275 99.892 C 198.305 99.912 198.321 99.948 198.315 99.984 C 197.884 102.108 197.323 104.203 196.635 106.257 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 181.671 121.266 C 172.012 121.309 162.657 118.621 153.744 115.131 C 153.73 115.124 153.719 115.114 153.712 115.1 C 153.699 115.07 153.708 115.06 153.741 115.07 C 159.498 116.577 165.138 117.054 171.063 117.124 C 178.274 117.216 185.467 116.409 192.478 114.721 C 192.604 114.691 192.628 114.728 192.553 114.834 C 190.685 117.453 189.097 120.073 185.74 120.854 C 184.586 121.122 183.23 121.259 181.671 121.266 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9129250842,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cfdrwx\",\"data-framer-name\":\"logo-grand-cinemas\",layoutDependency:layoutDependency,layoutId:\"qHQbVOBrb\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17jz54y\",\"data-framer-name\":\"Grand_Cinemas\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"uAmPPOCgY\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M97.742 208.695H70.639a.113.113 0 0 1-.112-.113v-6.692c0-.042.032-.075.074-.075h34.022c.043 0 .066.023.066.066.025 5.539.026 9.069.001 10.587-.075 4.784-3.659 8.906-8.339 9.743-.616.109-1.61.165-2.979.166-11.118.003-22.234.003-33.35-.001-4.765-.002-8.894-3.536-9.821-8.159-.133-.662-.199-1.655-.2-2.98-.002-4.425 0-8.849.004-13.271.005-4.711 3.709-8.771 8.233-9.645.66-.127 1.654-.191 2.979-.191 14.469 0 28.937 0 43.404.003.053 0 .078.025.078.077v10.128c0 .049-.025.075-.075.075h-6.727c-.046 0-.07-.023-.073-.069-.1-1.358-.416-2.562-1.756-3.09-.405-.16-1.168-.239-2.288-.24a19436.89 19436.89 0 0 0-33.61 0c-1.593.001-2.611.622-3.052 1.86-.157.443-.237 1.252-.237 2.429v11.731c0 1.296.081 2.171.241 2.623.437 1.226 1.44 1.839 3.012 1.841 11.14.003 22.279.003 33.419 0 1.148 0 1.941-.08 2.378-.237 1.21-.435 1.836-1.428 1.88-2.979.022-.803.024-1.975.001-3.52 0-.045-.024-.067-.069-.067h-.001Zm18.061.079v13.53c0 .049-.025.074-.075.074h-6.729c-.05 0-.075-.025-.075-.074V188.17c0-.021.018-.038.039-.038 13.341-.002 26.689-.002 40.041 0 1.376 0 2.369.06 2.979.175 4.389.832 7.672 4.532 8.15 8.921.322 2.951-.48 5.61-2.403 7.977-.033.042-.033.083.001.123 1.18 1.386 1.936 2.949 2.269 4.685.12.627.181 1.62.183 2.981.004 3.103.003 6.205-.003 9.308 0 .051-.026.076-.077.076h-6.722c-.051 0-.076-.025-.076-.076 0-3.517-.005-7.03-.009-10.537-.002-1.174-.453-2.04-1.355-2.598-.742-.459-1.593-.468-2.489-.47-11.191-.01-22.383-.009-33.574.002-.049 0-.075.025-.075.075Zm-.001-13.677v6.631c0 .051.042.093.092.093h34.146c1.804 0 3.266-1.282 3.266-2.862v-1.092c0-1.581-1.462-2.863-3.266-2.863h-34.146a.093.093 0 0 0-.092.093Zm55.485 13.672v13.553a.057.057 0 0 1-.056.056h-6.746c-.051 0-.076-.025-.076-.076-.005-8.026-.005-16.051.001-24.075.005-4.791 3.618-9.072 8.308-9.927.627-.115 1.62-.172 2.979-.17 10.781 0 21.561.001 32.341.003 1.361 0 2.354.065 2.977.192 3.977.817 7.116 4.125 7.895 8.045.132.661.197 1.652.197 2.976 0 7.652 0 15.304-.003 22.955 0 .052-.025.077-.076.077h-6.652c-.049 0-.075-.025-.075-.074v-13.497c0-.075-.037-.113-.112-.113h-40.827c-.05 0-.075.026-.075.075Zm3.215-13.738c-1.347 0-2.548.937-2.989 2.152-.151.421-.228 1.176-.229 2.263 0 .761.001 1.526.004 2.296 0 .049.024.073.074.073h40.827a.113.113 0 0 0 .112-.112v-.002c-.001-.939 0-1.891.003-2.859.002-.639-.059-1.143-.185-1.509-.364-1.057-1.068-1.765-2.113-2.122-.395-.136-.966-.204-1.714-.204-11.263.005-22.527.012-33.79.024Zm55.634.059v27.214a.073.073 0 0 1-.075.074h-6.655c-.05 0-.075-.025-.075-.074V188.17c0-.021.017-.038.037-.038 13.369-.002 26.74-.002 40.116 0 1.366 0 2.359.062 2.981.186 3.967.784 7.12 3.988 7.921 7.901.138.674.207 1.666.207 2.976l-.003 23.104c0 .052-.026.078-.078.078h-6.758c-.029 0-.044-.015-.044-.044v-23.657c0-1.609-.725-2.921-2.28-3.464-.388-.134-.944-.202-1.669-.202-11.185-.007-22.369-.007-33.551.003-.049 0-.074.026-.074.075v.002Zm99.846 17.231c-.009 4.932-3.718 9.072-8.478 9.839-.597.096-1.591.144-2.984.144-13.21.003-26.421.003-39.631-.002-.049 0-.075-.025-.075-.076v-33.98c0-.049.024-.075.074-.075 13.444-.007 26.886-.007 40.325 0 1.267 0 2.218.072 2.856.211 3.902.857 6.989 4.059 7.744 7.947.126.646.188 1.64.187 2.979-.003 4.339-.009 8.676-.018 13.013Zm-7.069-15.045c-.503-1.38-1.813-2.258-3.308-2.258-11.308-.006-22.622-.009-33.944-.009-.028 0-.042.013-.042.042v20.301a.07.07 0 0 0 .072.072h33.576c.656 0 1.171-.064 1.546-.194 1.057-.367 1.759-1.068 2.107-2.107.141-.418.21-1.058.207-1.924-.011-4.024-.012-8.05-.005-12.074.002-.841-.067-1.457-.209-1.849Zm-197.214 29.439h-4.911a.05.05 0 0 0-.05.05v2.333a.05.05 0 0 0 .05.049h4.911a.05.05 0 0 0 .049-.049v-2.333a.05.05 0 0 0-.049-.05Zm7.116 9.464V250.4a.094.094 0 0 1-.093.09l-4.803.007c-.053 0-.078-.025-.078-.076v-19.029c.001-.05.025-.075.075-.075 4.724-.007 9.442-.009 14.155-.001 2.294.003 4.414.46 6.279 1.761 2.306 1.609 3.902 3.951 4.182 6.799.028.284.037 1.282.03 2.991a947.493 947.493 0 0 0-.003 7.54c0 .059-.027.087-.084.087h-4.849c-.046 0-.068-.022-.07-.069a461.22 461.22 0 0 1 .015-9.411c.008-.54-.046-.993-.16-1.359-.79-2.547-2.922-3.548-5.456-3.554-3.022-.007-6.043-.006-9.065.005-.05 0-.075.024-.075.073Zm73.555-1.605a.1.1 0 0 0 .141.005l.003-.003c1.41-1.482 3.085-2.433 5.028-2.854.655-.142 1.64-.215 2.958-.216 1.922-.003 3.845-.006 5.767-.011 1.371-.001 2.362.067 2.974.208 2.569.592 4.902 2.725 5.421 5.415.084.432.126 1.177.127 2.234.002 3.726.002 7.453-.001 11.178 0 .051-.025.076-.076.076h-4.817c-.05 0-.075-.025-.075-.075-.005-3.581-.005-7.16 0-10.739.001-1.579-.049-2.731-1.496-3.347-.303-.13-.722-.194-1.256-.194-2.186 0-4.373-.002-6.561-.005-.966 0-1.684.069-2.152.21-2.363.709-3.448 2.983-3.451 5.381-.005 2.871-.006 5.744-.006 8.617 0 .052-.026.077-.078.077h-4.814c-.05.002-.075-.023-.075-.074-.007-2.573-.009-5.142-.003-7.708.005-1.578-.019-2.493-.07-2.747-.374-1.883-2.107-3.4-4.013-3.678-.523-.076-1-.151-1.54-.151-2.19.003-4.377.003-6.565 0a.077.077 0 0 0-.077.078v14.207c-.001.05-.027.073-.076.073h-4.859c-.049 0-.075-.025-.075-.074v-19.029c0-.05.024-.074.074-.074 3.994-.007 7.981-.007 11.964 0 .239 0 .55.135.851.146 2.708.094 4.984 1.12 6.828 3.074Zm-111.142 1.885c-.776.348-1.35 1.148-1.357 2.034-.01 1.522-.016 3.041-.018 4.558 0 1.258.465 2.077 1.397 2.461.385.16 1.111.238 2.18.237 4.387-.005 8.775-.006 13.163-.005.741 0 1.281-.072 1.621-.214.833-.351 1.289-1.048 1.367-2.093.004-.057.036-.086.091-.086h4.823c.049 0 .075.026.075.077v7.032c0 .04-.033.073-.074.073-7.253-.003-14.503-.003-21.749.001-.997 0-1.772-.065-2.327-.198-2.621-.629-4.923-2.775-5.444-5.514-.082-.428-.124-1.112-.128-2.049-.01-2.145-.01-3.609.003-4.393.05-3.239 2.48-5.919 5.568-6.682.532-.131 1.259-.197 2.182-.197 7.298-.005 14.596-.005 21.892 0 .051 0 .077.025.077.076v6.953a.074.074 0 0 1-.075.075h-4.859c-.046 0-.07-.024-.07-.072-.002-1.034-.379-1.717-1.128-2.053-.345-.156-1.029-.234-2.052-.232-4.56.001-9.121.003-13.68.001-.672 0-1.166.071-1.478.21Zm30.471-4.959h-4.911a.05.05 0 0 0-.05.049v18.933a.05.05 0 0 0 .05.049h4.911a.05.05 0 0 0 .049-.049v-18.933a.05.05 0 0 0-.049-.049Zm34.072 11.979c.005.942.697 1.805 1.559 2.116.273.1.737.149 1.389.149 7.241.002 14.474.002 21.696 0 .035 0 .065.03.065.066 0 .008 0 .015-.004.023-.897 2.392-2.939 4.096-5.46 4.577-.426.081-1.095.121-2.006.121-4.773 0-9.547 0-14.322.002-1.031 0-1.823-.066-2.378-.202-2.581-.627-4.838-2.734-5.397-5.405-.098-.465-.147-1.268-.151-2.41-.008-2.179-.006-3.584.004-4.21.052-3.19 2.551-5.878 5.584-6.611.555-.133 1.346-.2 2.372-.198 5.04.007 10.078.006 15.115 0 .871-.002 1.557.061 2.06.191 2.627.677 4.506 2.868 4.588 5.598.084 2.768-1.887 5.294-4.629 5.938-.483.114-1.316.171-2.499.169-5.834-.007-11.668-.007-17.503.003-.056 0-.083.029-.083.084v-.001Zm1.379-7.019c-.741.334-1.384 1.155-1.377 2.024 0 .055.027.082.082.082 6.068.001 12.135.003 18.202.001.429 0 .722-.037.877-.11.726-.343.723-1.574.139-1.994-.199-.143-.545-.215-1.037-.215h-15.275c-.757 0-1.294.07-1.611.212Zm94.409-.206c-5.532-.011-11.064-.012-16.597-.005-.791 0-1.356.077-1.696.225-1.068.469-1.368 1.386-1.37 2.552-.003 1.267-.004 2.535-.004 3.802 0 .652.068 1.141.206 1.469.552 1.308 1.62 1.452 3.015 1.45 5.031-.003 10.042-.003 15.034-.001a.124.124 0 0 1 .117.167c-.866 2.371-2.435 3.833-4.706 4.388-.615.15-1.606.226-2.973.229-2.591.006-5.181.004-7.773-.003-1.102-.003-1.92-.073-2.454-.209-2.59-.666-4.681-2.725-5.273-5.296-.132-.573-.2-1.563-.205-2.973-.009-3.084-.387-6.117 2.163-8.444 1.111-1.014 2.853-1.561 4.362-1.93.45-.111.954-.166 1.509-.168a5192.65 5192.65 0 0 1 21.618 0c.049 0 .073.024.073.073v18.88c-.001.049-.025.073-.075.073h-4.821c-.05 0-.075-.025-.075-.075V236.33c0-.049-.025-.075-.075-.075v-.001Zm30.618-4.562c2.134.536 4.306 2.241 4.959 4.511.017.055-.004.084-.063.084-7.452 0-14.903.003-22.353.007-.764 0-1.159.383-1.185 1.147-.036 1.111.667 1.203 1.608 1.201h15.371c1.102 0 1.908.073 2.415.218 2.807.806 4.557 3.741 4.188 6.561-.32 2.442-2.121 4.615-4.58 5.136-.384.082-1.049.122-1.995.122-4.552.003-9.104.003-13.657.002-1.257 0-2.171-.075-2.741-.223-2.2-.567-4.214-2.301-4.955-4.494-.021-.061 0-.091.065-.091 7.296-.039 14.588-.06 21.876-.064.953 0 1.374-.47 1.265-1.409-.097-.844-.691-.935-1.456-.935-5.505.003-11.012.002-16.518-.003-.823 0-1.615-.2-2.377-.597-4.815-2.514-4.181-9.75 1.128-11.182.474-.127 1.113-.191 1.913-.19 4.996.008 9.991.009 14.985.005.888 0 1.591.064 2.107.194Zm-33.398-60.945-29.179-.411c-.07 0-.091-.033-.063-.097l2.028-4.699 7.41-17.116c.008-.014.006-.03-.003-.044a.044.044 0 0 0-.06-.012l-28.875 16.901-.362.184c-.054.028-.091.014-.114-.043l-.281-.726-13.352-35.33a.057.057 0 0 0-.033-.033.053.053 0 0 0-.068.033l-12.978 34.961-.358.908c-.022.052-.06.069-.112.048l-.075-.03-28.832-16.677a.031.031 0 0 0-.031-.001.033.033 0 0 0-.018.045l7.418 16.862 2.173 4.966c.021.046.006.07-.047.072l-29.761.574c-.1.002-.11.033-.028.091 4.814 3.466 9.642 6.914 14.481 10.345.866.615 1.412.966 1.635 1.057 2.064.841 4.015-1.443 2.871-3.383-.167-.282-.468-.581-.9-.897-1.238-.9-2.492-1.798-3.758-2.693a.034.034 0 0 1-.017-.03c0-.02.015-.036.036-.036l36.38-.708c.058 0 .097-.028.118-.083l.896-2.422c.021-.058.058-.071.112-.04l11.134 6.423a.254.254 0 0 0 .253-.001l10.328-6.032.335-.182c.049-.028.085-.015.106.039l.815 2.165c.017.047.05.069.099.071l36.321.507c.119.001.129.037.033.106-1.314.952-2.636 1.91-3.966 2.87-.471.339-.797.656-.978.948-1.086 1.757.441 3.982 2.498 3.523.336-.075.755-.29 1.253-.647a2147.77 2147.77 0 0 0 15.544-11.238c.078-.056.069-.086-.028-.088Zm-84.542-5.538s-.009.003-.012.006c.005-.001.008-.004.012-.006Zm-.025.012a.035.035 0 0 0-.01.024c0-.009.003-.018.008-.024h.002Zm-.015.1-.004.008.004-.008Zm-.043.039-.014.005c.005 0 .009-.003.014-.005Zm-.015.005Zm6.435 4.805-12.367.238a.086.086 0 0 1-.085-.056l-2.301-5.298-2.236-5.086a.045.045 0 0 1 .001-.039.046.046 0 0 1 .062-.017l8.726 5.049 8.305 4.804a.213.213 0 0 1 .109.185c0 .12-.094.218-.214.22Zm7.187-5.939s-.015-.007-.021-.015a.1.1 0 0 0 .021.015Zm.047.002-.012.001.012-.001Zm-.023.004-.015-.003.015.003Zm-4.769-.133c-.009 0-.016 0-.025.005a.066.066 0 0 1 .025-.005Zm-.033.008-.01.007a.03.03 0 0 1 .01-.007Zm-.021.016-.004.008.001-.005.002-.001.001-.002Zm-.013.031v.009-.009Zm.075-.055c.01 0 .02.005.029.012a.081.081 0 0 0-.029-.012Zm13.331 9.163a.138.138 0 0 1-.151 0l-9.501-5.5c-.047-.027-.062-.066-.042-.116l1.326-3.598 7.867-21.164c.043-.115.085-.115.128 0l8.263 21.834 1.172 3.144c.02.049.005.088-.041.115l-8.217 4.816-.804.469Zm28.063-3.09a.14.14 0 0 1-.132.086l-12.936-.181a.044.044 0 0 1-.036-.021.049.049 0 0 1 .014-.065l7.779-4.546 9.724-5.684c.062-.036.078-.021.05.043l-2.323 5.385-2.14 4.983Zm2.333-4.932h-.008.008Zm-.027.008s-.012.006-.016.012c.001-.003.001-.005.004-.008s.008-.003.012-.004Zm-.019.018c-.005.01-.008.021-.005.031a.042.042 0 0 1 .005-.031Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vekqgg\",\"data-framer-name\":\"logo-emyria\",layoutDependency:layoutDependency,layoutId:\"dPHmmci4O\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9ddjkd\",\"data-framer-name\":\"Emyria\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"thK8BNPc2\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M261.782 163.667a7.023 7.023 0 1 0 0-14.045 7.023 7.023 0 0 0 0 14.045ZM64.564 196.083c.388 2.074 1.236 3.564 2.543 4.471 5.46 3.783 11.486 2.673 16.362-1.425.26-.216.51-.214.753.008l7.5 6.707c.19.167.2.348.033.542-6.447 7.582-17.01 9.583-26.163 6.488-16.337-5.532-19.772-26.154-9.112-38.329 9.469-10.805 28.366-9.444 35.154 3.888 2.57 5.049 3.485 10.698 2.746 16.945-.027.233-.157.349-.39.349H64.856c-.237 0-.335.119-.291.356Zm-.081-9.517h16.28a.017.017 0 0 0 .017-.017v-.064c0-2.037-.852-3.99-2.368-5.43-1.516-1.44-3.572-2.249-5.716-2.249h-.146c-2.144 0-4.2.809-5.716 2.249s-2.368 3.393-2.368 5.43v.064c0 .005.002.009.005.012a.016.016 0 0 0 .011.005Zm242.586-13.009v-4.074c0-.303.149-.454.446-.454l12.279-.008c.308 0 .462.157.462.47.006 9.153-.027 18.282-.097 27.386-.032 3.864 3.289 4.155 6.261 3.345.287-.075.467.027.543.308l2.56 9.315c.075.275-.003.491-.235.648-6.934 4.641-16.565 3.742-20.21-4.568-.135-.319-.286-.327-.453-.025-1.966 3.5-4.909 5.697-8.829 6.594-33.21 7.614-34.992-47.644-3.297-44.226 4.476.48 7.932 2.265 10.368 5.354.135.173.202.151.202-.065Zm-9.934 27.62a8.736 8.736 0 0 0 3.628-.836 9.499 9.499 0 0 0 3.058-2.306 10.623 10.623 0 0 0 2.024-3.424 11.44 11.44 0 0 0 .681-4.022 11.426 11.426 0 0 0-.765-4.006 10.635 10.635 0 0 0-2.095-3.382 9.515 9.515 0 0 0-3.106-2.241 8.733 8.733 0 0 0-3.644-.76 8.733 8.733 0 0 0-3.628.836 9.499 9.499 0 0 0-3.058 2.306 10.623 10.623 0 0 0-2.024 3.424 11.44 11.44 0 0 0-.681 4.022c.014 1.377.274 2.739.765 4.006a10.635 10.635 0 0 0 2.095 3.382 9.504 9.504 0 0 0 3.106 2.241 8.717 8.717 0 0 0 3.644.76Zm-183.258-28.268c6.787-6.861 18.516-6.755 22.971 2.624.114.233.238.241.373.025 3.467-5.67 8.64-8.019 15.519-7.047 8.975 1.271 10.879 9.817 10.952 17.399.086 8.802.094 17.606.024 26.414-.006.297-.157.445-.454.445h-12.539c-.286 0-.429-.143-.429-.429 0-8.813-.008-17.604-.024-26.374-.008-6.261-8.27-8.075-10.765-2.065-.594 1.436-.878 4.144-.851 8.124.038 6.75.041 13.503.009 20.258 0 .324-.165.486-.495.486h-12.546c-.281 0-.422-.143-.422-.429-.01-8.818-.019-17.61-.024-26.374-.008-6.034-7.8-8.051-10.611-2.478-.621 1.231-.934 3.604-.94 7.12-.016 7.23-.035 14.463-.056 21.699-.006.341-.178.511-.519.511h-12.709a.292.292 0 0 1-.291-.292v-42.962c0-.281.143-.421.429-.421h12.644c.313 0 .47.159.47.477l-.024 3.159c0 .292.102.335.308.13Zm118.6 1.345c4.012-5.298 9.331-6.985 15.957-5.063.275.081.391.259.348.535l-1.709 11.972c-.049.318-.23.442-.543.372-7.371-1.636-14.11.932-14.005 9.558.049 3.813.033 10.676-.048 20.59 0 .254-.127.381-.381.381h-12.871c-.313 0-.47-.157-.47-.47v-42.776c0-.259.133-.389.397-.389l12.588-.008c.27 0 .407.138.413.413l.016 4.779c0 .341.103.376.308.106Z\"/><path d=\"M267.866 169.086h-13.333a.266.266 0 0 0-.267.267v43.141c0 .147.119.267.267.267h13.333c.147 0 .267-.12.267-.267v-43.141a.267.267 0 0 0-.267-.267Zm-77.72 28.779 9.032-28.212a.496.496 0 0 1 .469-.332l14.038-.008c.302 0 .402.143.299.429a4287.148 4287.148 0 0 1-18.767 49.945c-4.423 11.574-16.808 12.303-26.188 6.739-.28-.168-.353-.403-.218-.705l4.552-9.809a.391.391 0 0 1 .42-.218c.056.01.109.032.155.064 2.144 1.517 4.477 2.09 6.998 1.717a2.185 2.185 0 0 0 1.575-1.062 2.19 2.19 0 0 0 .289-.931 2.198 2.198 0 0 0-.146-.963l-17.504-44.89a.232.232 0 0 1-.018-.11.23.23 0 0 1 .228-.206l14.337.008c.319 0 .529.151.632.453l9.38 28.091c.151.443.297.443.437 0Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(49.87 149.5)\" d=\"M0 0h280.26v81H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zpnllo\",\"data-framer-name\":\"logo-dot\",layoutDependency:layoutDependency,layoutId:\"sTfUSTtMP\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:190,intrinsicWidth:190,pixelHeight:380,pixelWidth:380,src:\"https://framerusercontent.com/images/4H24HoMSQau4x6uPNFTu6QhTOJ0.svg\"},className:\"framer-ifb9cd\",\"data-framer-name\":\"DoT\",layoutDependency:layoutDependency,layoutId:\"aNM0xXLep\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1px5srh\",\"data-framer-name\":\"logo-agora\",layoutDependency:layoutDependency,layoutId:\"P9UxjV3Xp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-bfnqyz\",\"data-framer-name\":\"Agora\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"yLHalUxTk\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M186.886 117.651a1.253 1.253 0 0 1 1.775 1.139v17.137c0 .488-.285.934-.732 1.136l-16.236 7.436 16.236 7.436c.447.203.732.647.732 1.136v17.143a1.252 1.252 0 0 1-1.776 1.133l-37.439-17.143a1.249 1.249 0 0 1-.732-1.136v-9.125c0-5.357 3.153-10.261 8.033-12.494l30.139-13.798Zm-.732 3.086-28.362 12.986a11.276 11.276 0 0 0-6.472 8.785l34.834-15.949v-5.822Zm-26.827 29.425-6.356 2.911 33.183 15.195v-5.821l-26.827-12.285Zm26.827 9.535v-.001l.002.001h-.002Zm0-.001-23.823-10.909 6.356-2.91 17.467 7.998v5.821Zm-34.936-8.571 16.947-7.759 17.985-8.235v-5.822l-34.932 15.994v5.822Zm43.468-33.47 37.441 17.14c.442.207.727.649.731 1.136v9.132c0 5.357-3.154 10.261-8.033 12.494l-30.139 13.798a1.253 1.253 0 0 1-1.199-.082 1.245 1.245 0 0 1-.577-1.051v-17.143c0-.488.285-.934.732-1.136l16.236-7.436-16.236-7.436a1.248 1.248 0 0 1-.732-1.136v-17.143a1.252 1.252 0 0 1 1.775-1.136l.001-.001Zm27.557 21.187 6.356-2.911-33.184-15.192v5.817l26.828 12.285v.001Zm-26.828-9.531v5.817l17.468 7.999 6.357-2.911-23.825-10.907v.002Zm34.937 8.569-16.947 7.759-17.987 8.235v5.821l34.934-15.994v-5.821Zm-34.937 30.387 28.363-12.985a11.273 11.273 0 0 0 6.472-8.785l-34.835 15.948v5.822Zm-119.47 21.537 8.898.03 18.662 44.146-10.09-.033-3.98-9.833-18.55-.059-4.044 9.806-9.841-.029 18.945-44.028Zm10.07 25.797-5.783-14.213-5.873 14.178 11.656.035Zm25.833-3.478v.123l-.001-.001c-.043 12.943 9.327 22.543 22.991 22.586 8.021.026 14.236-3.08 18.761-6.882l.062-19.01-19.052-.061-.026 8.316 9.713.033-.019 6.253c-2.452 1.741-5.586 2.606-9.097 2.596-7.77-.026-13.267-5.919-13.241-13.925v-.125c.023-7.438 5.623-13.614 12.641-13.59 5.077.016 8.08 1.65 11.456 4.475l6.104-7.298c-4.561-3.89-9.32-6.031-17.215-6.057-13.288-.038-23.037 10.121-23.077 22.567Zm55.413.302v-.124c.04-12.445 9.914-22.605 23.449-22.562 13.536.043 23.22 10.143 23.182 22.588v.124c-.04 12.445-9.915 22.605-23.45 22.563-13.54-.046-23.221-10.144-23.181-22.589Zm36.54.118v-.123c.023-7.505-5.47-13.775-13.244-13.801-7.771-.026-13.181 6.087-13.204 13.592v.123c-.024 7.505 5.469 13.775 13.244 13.801 7.776.026 13.179-6.087 13.205-13.592h-.001Zm45.068-21.869-20.057-.066v.001l-.138 43.779 9.651.029.046-14.007 7.583.023 9.356 14.036 11.283.036-10.669-15.667c5.585-2.042 9.422-6.472 9.444-13.538v-.124c.014-4.129-1.293-7.573-3.728-10.019-2.875-2.888-7.192-4.466-12.771-4.483Zm6.72 15.091c-.013 3.689-2.714 6.184-7.416 6.168v-.002l-9.776-.028.04-12.569 9.589.029c4.702.013 7.577 2.147 7.563 6.276v.126Zm39.849-15.257 8.9.03L323 234.684l-10.092-.033-3.98-9.833-18.55-.059-4.044 9.806-9.841-.033 18.945-44.024Zm10.071 25.797-5.782-14.213-5.874 14.178 11.656.035Zm-154.784 37.114h-1.96v8.89h6.403v-1.778h-4.443v-7.112Zm7.28 0h1.96v8.89h-1.96v-8.89Zm6.867 0h-2.161l3.6 8.954h1.732l3.604-8.954h-2.114l-2.33 6.261-2.331-6.261Zm9.417 0h6.721v1.738h-4.775v1.804h4.2v1.74h-4.2v1.866h4.837v1.738h-6.783v-8.886Zm10.348 6.207-1.159 1.386-.001.001a5.7 5.7 0 0 0 3.78 1.428c1.922 0 3.271-.993 3.271-2.757v-.026c0-1.553-1.017-2.2-2.825-2.669-1.542-.393-1.922-.586-1.922-1.169v-.026c0-.432.394-.776 1.145-.776s1.528.33 2.317.878l1.017-1.474c-.903-.725-2.008-1.131-3.308-1.131-1.817 0-3.117 1.065-3.117 2.679v.026c0 1.764 1.159 2.259 2.953 2.717 1.491.38 1.796.635 1.796 1.13v.026c0 .52-.485.838-1.286.838-1.02 0-1.86-.42-2.661-1.081Zm10.755-4.403h-2.711v-1.804h7.383v1.804h-2.71v7.086h-1.959v-7.086h-.003Zm6.677 2.639v.026c0 2.529 1.972 4.575 4.721 4.572 2.751 0 4.749-2.069 4.749-4.598v-.026c0-2.525-1.973-4.571-4.723-4.571-2.749 0-4.747 2.07-4.747 4.597Zm7.42 0v.026c0 1.526-1.097 2.771-2.675 2.771-1.578 0-2.697-1.268-2.697-2.793v-.026c0-1.526 1.094-2.771 2.673-2.771 1.58 0 2.699 1.271 2.699 2.793Zm4.663.026v-.026c0-2.527 1.91-4.597 4.647-4.597 1.68 0 2.684.56 3.515 1.373l-1.247 1.434c-.686-.623-1.389-1.003-2.278-1.003-1.503 0-2.582 1.245-2.582 2.771v.026c0 1.525 1.057 2.793 2.582 2.793 1.017 0 1.642-.406 2.343-1.041l1.247 1.257c-.915.979-1.936 1.588-3.652 1.588-2.629 0-4.575-2.02-4.575-4.575Zm13.026-4.469h-1.962v8.89h1.958v-2.719l1.031-1.067 2.763 3.786h2.356l-3.794-5.118 3.626-3.772h-2.366l-3.612 3.886v-3.886Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s01ibi\",\"data-framer-name\":\"logo-artyra\",layoutDependency:layoutDependency,layoutId:\"evz1wzPbd\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1lxygkx\",\"data-framer-name\":\"Artyra\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"MhiNcd1oZ\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><mask id=\"a\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"59\" y=\"166\" width=\"262\" height=\"48\"><path d=\"M321 166.5H59v47h262v-47Z\" fill=\"#fff\"/></mask><g mask=\"url(#a)\" fill=\"#fff\"><path d=\"M113.245 213.5v-47h17.666a12.906 12.906 0 0 1 9.459 3.917 12.89 12.89 0 0 1 3.922 9.484 12.936 12.936 0 0 1-.981 5.158 12.935 12.935 0 0 1-2.947 4.344 12.888 12.888 0 0 1-9.453 3.927h-.943l18.094 20.166h-9.505l-17.794-19.856v19.86h-7.518Zm7.518-26.744h9.842a5.625 5.625 0 0 0 4.463-1.974 7.187 7.187 0 0 0 1.712-4.882 7.128 7.128 0 0 0-1.712-4.865 5.637 5.637 0 0 0-2.011-1.484 5.634 5.634 0 0 0-2.453-.472h-9.841v13.677Zm31.924-13.677V166.5h35.183v6.579h-13.85V213.5h-7.486v-40.421h-13.847Zm46.404 40.421v-47h17.666a12.914 12.914 0 0 1 9.459 3.917 12.906 12.906 0 0 1 3.929 9.484 12.954 12.954 0 0 1-3.929 9.502 12.897 12.897 0 0 1-9.459 3.931h-.943l18.094 20.166h-9.514l-17.788-19.86v19.86h-7.515Zm7.518-26.744h9.835a5.621 5.621 0 0 0 4.463-1.974 7.191 7.191 0 0 0 1.711-4.882 7.122 7.122 0 0 0-1.711-4.865 5.642 5.642 0 0 0-4.463-1.956h-9.836l.001 13.677Zm28.792-20.256h9.022l13.387 17.594 13.474-17.594h8.983l-18.704 24.509v22.484h-7.518v-22.545L235.401 166.5Zm40.731 47 18.581-47h7.703l18.583 47h-8.131l-4.674-12.141h-19.287l-4.713 12.141h-8.062Zm15.288-18.671h14.273l-7.153-18.421-7.12 18.421Zm15.799-27.52v-.789h4.222v.789h-1.662v4.86h-.898v-4.86h-1.662Zm4.894 4.849v-5.638h.899l1.768 2.754 1.781-2.754h.885v5.638h-.898v-3.96l-1.394 2.181h-.749l-1.398-2.181v3.96h-.894Z\"/></g><path d=\"m81.403 176.414 7.152 18.415H74.281l7.122-18.415Zm-3.82-9.914L59 213.5h8.068l4.713-12.141H91.06l4.677 12.141h8.131l-18.583-47h-7.703Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-mh94kx\",\"data-framer-name\":\"logo-decypher\",layoutDependency:layoutDependency,layoutId:\"hKCpbKojw\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-15tvguq\",\"data-framer-name\":\"Decypher\",fill:\"black\",intrinsicHeight:380,intrinsicWidth:380,layoutDependency:layoutDependency,layoutId:\"qTSyv54RZ\",svg:'<svg width=\"380\" height=\"380\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"m132.648 173.02 8.908.006a.192.192 0 0 1 .191.191l.011 7.317c0 .132-.067.197-.2.197h-13.552a.22.22 0 0 0-.114.032.216.216 0 0 0-.082.085l-10.791 19.353a.138.138 0 0 0 .002.14.141.141 0 0 0 .123.07l24.409.003c.129 0 .195.066.197.197l.008 7.054a.198.198 0 0 1-.2.199l-28.473-.002a.534.534 0 0 0-.498.289c-4.709 8.459-9.415 16.907-14.115 25.346a5.8 5.8 0 0 0-.104.231c-.108.249-.312.327-.612.235a.399.399 0 0 1-.276-.36.384.384 0 0 1 .026-.156c.167-.428.366-.85.599-1.267 16.01-28.694 32.016-57.391 48.018-86.091a.167.167 0 0 1 .099-.081.175.175 0 0 1 .129.01l.487.231a.21.21 0 0 1 .11.126.203.203 0 0 1 .009.085.219.219 0 0 1-.026.082l-14.528 26.061c-.156.278-.074.417.245.417Zm-28.735 7.461.011 5.7a.205.205 0 0 0 .205.205l5.288.003a.2.2 0 0 1 .101.026.208.208 0 0 1 .105.175.204.204 0 0 1-.026.102l-3.997 7.304a.204.204 0 0 1-.181.106l-8.802-.01a.211.211 0 0 1-.144-.06.206.206 0 0 1-.06-.145l.002-34.424c0-.054.022-.106.06-.145a.207.207 0 0 1 .145-.06l28.075-.002a.202.202 0 0 1 .177.101.202.202 0 0 1 .001.204l-3.99 7.1a.218.218 0 0 1-.075.076.206.206 0 0 1-.103.027l-16.579.003a.205.205 0 0 0-.205.205v5.636c0 .054.022.106.06.145.039.038.091.06.145.06l13.047.013c.036 0 .071.01.102.027a.207.207 0 0 1 .103.177.202.202 0 0 1-.027.102l-3.969 7.027a.207.207 0 0 1-.178.104l-9.086.013a.209.209 0 0 0-.145.06.209.209 0 0 0-.06.145Zm-50.055-21.005a.237.237 0 0 1 .237-.236h27.25c1.999 0 3.916.799 5.33 2.221a7.606 7.606 0 0 1 2.208 5.362v19.917c0 2.011-.794 3.94-2.208 5.362a7.516 7.516 0 0 1-5.33 2.221h-27.25a.238.238 0 0 1-.168-.069.24.24 0 0 1-.07-.168v-34.61Zm27.253 7.485a.197.197 0 0 0-.197-.197H61.56a.197.197 0 0 0-.197.197v19.231a.197.197 0 0 0 .197.197h19.353a.197.197 0 0 0 .197-.197v-19.231Zm75.965 6.062h-7.171a.17.17 0 0 0-.171.17v34.498c0 .094.077.171.171.171h7.171a.17.17 0 0 0 .17-.171v-34.498a.17.17 0 0 0-.17-.17Zm16.204 23.582-.008 11.129c0 .087-.044.13-.131.13l-7.181-.003c-.176-.001-.264-.09-.264-.266v-34.439a.13.13 0 0 1 .038-.092.124.124 0 0 1 .09-.039c8.368-.001 16.737 0 25.106.006 2.164 0 3.468.042 3.913.127 3.423.644 5.921 3.567 5.897 7.108-.018 2.542-.016 5.082.005 7.62.011 1.454-.096 2.569-.319 3.346-.724 2.502-2.32 4.12-4.788 4.854-.816.243-2.035.361-3.657.354-6.153-.021-12.33-.023-18.531-.005a.172.172 0 0 0-.121.05.167.167 0 0 0-.049.12Zm19.746-15.709a.165.165 0 0 0-.165-.165h-19.422a.165.165 0 0 0-.165.165v7.862a.165.165 0 0 0 .165.165h19.422a.165.165 0 0 0 .165-.165v-7.862Zm43.231 5.769-.006-13.445a.193.193 0 0 1 .194-.194l7.123-.003a.194.194 0 0 1 .195.194v34.448a.196.196 0 0 1-.195.194l-7.12.005a.191.191 0 0 1-.137-.057.19.19 0 0 1-.057-.137l-.003-13.177a.188.188 0 0 0-.015-.074.193.193 0 0 0-.179-.12h-20.295a.192.192 0 0 0-.137.057.193.193 0 0 0-.057.137v13.174a.194.194 0 0 1-.194.195l-7.12-.003a.193.193 0 0 1-.194-.194V173.22c0-.026.005-.051.014-.075a.217.217 0 0 1 .042-.063.204.204 0 0 1 .063-.042.212.212 0 0 1 .075-.014l7.12-.003a.19.19 0 0 1 .137.057.191.191 0 0 1 .057.137v13.446a.196.196 0 0 0 .194.194l20.3.002c.052 0 .101-.02.138-.056a.198.198 0 0 0 .057-.138Zm22.802 7.831v5.71c0 .026.006.052.015.076a.198.198 0 0 0 .182.121l24.271.006a.197.197 0 0 1 .197.196l-.003 7.06a.196.196 0 0 1-.196.196l-31.785.003a.197.197 0 0 1-.197-.197l-.003-34.445a.197.197 0 0 1 .197-.196h31.79a.197.197 0 0 1 .197.196l-.003 7.312a.198.198 0 0 1-.121.182.197.197 0 0 1-.075.015h-24.271a.197.197 0 0 0-.197.197l.008 5.732a.196.196 0 0 0 .197.197l19.541.002a.197.197 0 0 1 .197.197v7.046a.196.196 0 0 1-.197.197h-19.547a.193.193 0 0 0-.139.058.208.208 0 0 0-.043.063.219.219 0 0 0-.015.076Zm59.879 1.931c-.259 0-.306.099-.141.298 2.252 2.679 4.474 5.303 6.665 7.873.777.909.758 2.032.575 3.138a.153.153 0 0 1-.152.128h-7.429a.332.332 0 0 1-.268-.125l-9.432-11.211a.305.305 0 0 0-.102-.079.31.31 0 0 0-.127-.028l-9.642.011a.336.336 0 0 0-.33.33v10.919a.183.183 0 0 1-.181.183l-7.2-.008c-.085 0-.127-.042-.127-.125l-.003-34.575a.14.14 0 0 1 .087-.129.144.144 0 0 1 .054-.01c9.056.009 18.118.027 27.186.054.809.002 1.601-.011 2.373.239 2.544.821 4.182 2.38 4.912 4.676.288.904.435 2.663.442 5.275.009 3.087-.005 5.113-.043 6.077-.146 3.889-3.186 7.105-7.117 7.089Zm-.625-15.504a.188.188 0 0 0-.189-.189h-19.38a.188.188 0 0 0-.189.189v7.809c0 .05.02.098.056.133a.185.185 0 0 0 .133.056h19.38c.05 0 .098-.02.133-.056a.185.185 0 0 0 .056-.133v-7.809Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})],speed:12,style:{height:\"100%\",width:\"100%\"},width:\"100%\",...addPropertyOverrides({V41CcSSkD:{gap:34}},baseVariant,gestureVariant)})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zPjqw.framer-e2xcql, .framer-zPjqw .framer-e2xcql { display: block; }\",\".framer-zPjqw.framer-1tcuzmc { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 48px 0px 48px; position: relative; width: 1440px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zPjqw .framer-ru1uoj { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; max-width: 1440px; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-zPjqw .framer-3tw5b8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 2 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 16px 8px 0px; position: relative; width: 1px; }\",\".framer-zPjqw .framer-5xj88r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zPjqw .framer-1t8cbzc, .framer-zPjqw .framer-1uycykx { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zPjqw .framer-1phl9w2 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-zPjqw .framer-7pc40z { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-zPjqw .framer-1kkgk7t { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-zPjqw .framer-25htgg-container { flex: none; height: 100px; position: relative; width: 100%; }\",\".framer-zPjqw .framer-rwsx7u, .framer-zPjqw .framer-1a3n0pd, .framer-zPjqw .framer-hgrgim, .framer-zPjqw .framer-h37kpu, .framer-zPjqw .framer-1y57y4q, .framer-zPjqw .framer-683o3e, .framer-zPjqw .framer-88fkt0, .framer-zPjqw .framer-ejky7q, .framer-zPjqw .framer-1hqduib, .framer-zPjqw .framer-16i2sms, .framer-zPjqw .framer-67d3xz, .framer-zPjqw .framer-glyzza, .framer-zPjqw .framer-3h7ujn, .framer-zPjqw .framer-1i56w01, .framer-zPjqw .framer-2hwp58, .framer-zPjqw .framer-1ig0o7n, .framer-zPjqw .framer-8x6stl, .framer-zPjqw .framer-inlj22, .framer-zPjqw .framer-1ppci1i, .framer-zPjqw .framer-1tk0czj, .framer-zPjqw .framer-1wj3ku4, .framer-zPjqw .framer-ztk87x, .framer-zPjqw .framer-1g0xt1a, .framer-zPjqw .framer-1q7395l, .framer-zPjqw .framer-1oa5adv, .framer-zPjqw .framer-1runwle, .framer-zPjqw .framer-18bxik2, .framer-zPjqw .framer-bs84sp, .framer-zPjqw .framer-fhik2o, .framer-zPjqw .framer-cfdrwx, .framer-zPjqw .framer-1vekqgg, .framer-zPjqw .framer-zpnllo, .framer-zPjqw .framer-1px5srh, .framer-zPjqw .framer-s01ibi, .framer-zPjqw .framer-mh94kx { 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-zPjqw .framer-j77uvl, .framer-zPjqw .framer-x9g1bp, .framer-zPjqw .framer-17pipwc, .framer-zPjqw .framer-1ywdob, .framer-zPjqw .framer-16gbygv { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 140px); position: relative; width: 140px; }\",\".framer-zPjqw .framer-aftwya, .framer-zPjqw .framer-1brcwd4 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 140px); overflow: visible; position: relative; width: 140px; }\",\".framer-zPjqw .framer-1q0uylx, .framer-zPjqw .framer-17ty99h { flex: none; height: 140px; position: relative; width: 140px; }\",\".framer-zPjqw .framer-1iihhg-container { flex: none; height: 100px; position: relative; width: 342px; }\",\".framer-zPjqw .framer-163dojh { aspect-ratio: 1 / 1; flex: none; height: 140px; position: relative; width: var(--framer-aspect-ratio-supported, 140px); }\",\".framer-zPjqw .framer-17k9wdp-container, .framer-zPjqw .framer-15brd6q-container { flex: none; height: 200px; position: relative; width: 100%; }\",\".framer-zPjqw .framer-1wu6h16, .framer-zPjqw .framer-20ompx, .framer-zPjqw .framer-9edzar, .framer-zPjqw .framer-1nyx7z, .framer-zPjqw .framer-1n9e4bu, .framer-zPjqw .framer-1m15262, .framer-zPjqw .framer-1ui4ihq, .framer-zPjqw .framer-g3l1yl, .framer-zPjqw .framer-46j4e4, .framer-zPjqw .framer-v7ef3h, .framer-zPjqw .framer-16pfxnc, .framer-zPjqw .framer-ddsu2m, .framer-zPjqw .framer-9hwjaj, .framer-zPjqw .framer-17jz54y, .framer-zPjqw .framer-9ddjkd, .framer-zPjqw .framer-bfnqyz, .framer-zPjqw .framer-1lxygkx, .framer-zPjqw .framer-15tvguq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); position: relative; width: 240px; }\",\".framer-zPjqw .framer-16115ye, .framer-zPjqw .framer-3g7pvz, .framer-zPjqw .framer-1xtnepf, .framer-zPjqw .framer-ifb9cd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 240px); overflow: visible; position: relative; width: 240px; }\",\".framer-zPjqw .framer-1v8bqdv, .framer-zPjqw .framer-1gqeob5 { flex: none; height: 240px; position: relative; width: 240px; }\",\".framer-zPjqw .framer-l08as5 { aspect-ratio: 1 / 1; flex: none; height: 240px; position: relative; width: var(--framer-aspect-ratio-supported, 240px); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zPjqw.framer-1tcuzmc, .framer-zPjqw .framer-ru1uoj, .framer-zPjqw .framer-3tw5b8, .framer-zPjqw .framer-1phl9w2, .framer-zPjqw .framer-7pc40z, .framer-zPjqw .framer-1kkgk7t, .framer-zPjqw .framer-rwsx7u, .framer-zPjqw .framer-1a3n0pd, .framer-zPjqw .framer-hgrgim, .framer-zPjqw .framer-h37kpu, .framer-zPjqw .framer-1y57y4q, .framer-zPjqw .framer-683o3e, .framer-zPjqw .framer-88fkt0, .framer-zPjqw .framer-ejky7q, .framer-zPjqw .framer-1hqduib, .framer-zPjqw .framer-16i2sms, .framer-zPjqw .framer-67d3xz, .framer-zPjqw .framer-glyzza, .framer-zPjqw .framer-3h7ujn, .framer-zPjqw .framer-1i56w01, .framer-zPjqw .framer-2hwp58, .framer-zPjqw .framer-1ig0o7n, .framer-zPjqw .framer-8x6stl, .framer-zPjqw .framer-inlj22, .framer-zPjqw .framer-1ppci1i, .framer-zPjqw .framer-1tk0czj, .framer-zPjqw .framer-1wj3ku4, .framer-zPjqw .framer-ztk87x, .framer-zPjqw .framer-1g0xt1a, .framer-zPjqw .framer-1q7395l, .framer-zPjqw .framer-1oa5adv, .framer-zPjqw .framer-1runwle, .framer-zPjqw .framer-18bxik2, .framer-zPjqw .framer-bs84sp, .framer-zPjqw .framer-fhik2o, .framer-zPjqw .framer-cfdrwx, .framer-zPjqw .framer-1vekqgg, .framer-zPjqw .framer-zpnllo, .framer-zPjqw .framer-1px5srh, .framer-zPjqw .framer-s01ibi, .framer-zPjqw .framer-mh94kx { gap: 0px; } .framer-zPjqw.framer-1tcuzmc > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zPjqw.framer-1tcuzmc > :first-child, .framer-zPjqw .framer-3tw5b8 > :first-child, .framer-zPjqw .framer-1phl9w2 > :first-child, .framer-zPjqw .framer-1kkgk7t > :first-child { margin-top: 0px; } .framer-zPjqw.framer-1tcuzmc > :last-child, .framer-zPjqw .framer-3tw5b8 > :last-child, .framer-zPjqw .framer-1phl9w2 > :last-child, .framer-zPjqw .framer-1kkgk7t > :last-child { margin-bottom: 0px; } .framer-zPjqw .framer-ru1uoj > *, .framer-zPjqw .framer-7pc40z > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-zPjqw .framer-ru1uoj > :first-child, .framer-zPjqw .framer-7pc40z > :first-child, .framer-zPjqw .framer-rwsx7u > :first-child, .framer-zPjqw .framer-1a3n0pd > :first-child, .framer-zPjqw .framer-hgrgim > :first-child, .framer-zPjqw .framer-h37kpu > :first-child, .framer-zPjqw .framer-1y57y4q > :first-child, .framer-zPjqw .framer-683o3e > :first-child, .framer-zPjqw .framer-88fkt0 > :first-child, .framer-zPjqw .framer-ejky7q > :first-child, .framer-zPjqw .framer-1hqduib > :first-child, .framer-zPjqw .framer-16i2sms > :first-child, .framer-zPjqw .framer-67d3xz > :first-child, .framer-zPjqw .framer-glyzza > :first-child, .framer-zPjqw .framer-3h7ujn > :first-child, .framer-zPjqw .framer-1i56w01 > :first-child, .framer-zPjqw .framer-2hwp58 > :first-child, .framer-zPjqw .framer-1ig0o7n > :first-child, .framer-zPjqw .framer-8x6stl > :first-child, .framer-zPjqw .framer-inlj22 > :first-child, .framer-zPjqw .framer-1ppci1i > :first-child, .framer-zPjqw .framer-1tk0czj > :first-child, .framer-zPjqw .framer-1wj3ku4 > :first-child, .framer-zPjqw .framer-ztk87x > :first-child, .framer-zPjqw .framer-1g0xt1a > :first-child, .framer-zPjqw .framer-1q7395l > :first-child, .framer-zPjqw .framer-1oa5adv > :first-child, .framer-zPjqw .framer-1runwle > :first-child, .framer-zPjqw .framer-18bxik2 > :first-child, .framer-zPjqw .framer-bs84sp > :first-child, .framer-zPjqw .framer-fhik2o > :first-child, .framer-zPjqw .framer-cfdrwx > :first-child, .framer-zPjqw .framer-1vekqgg > :first-child, .framer-zPjqw .framer-zpnllo > :first-child, .framer-zPjqw .framer-1px5srh > :first-child, .framer-zPjqw .framer-s01ibi > :first-child, .framer-zPjqw .framer-mh94kx > :first-child { margin-left: 0px; } .framer-zPjqw .framer-ru1uoj > :last-child, .framer-zPjqw .framer-7pc40z > :last-child, .framer-zPjqw .framer-rwsx7u > :last-child, .framer-zPjqw .framer-1a3n0pd > :last-child, .framer-zPjqw .framer-hgrgim > :last-child, .framer-zPjqw .framer-h37kpu > :last-child, .framer-zPjqw .framer-1y57y4q > :last-child, .framer-zPjqw .framer-683o3e > :last-child, .framer-zPjqw .framer-88fkt0 > :last-child, .framer-zPjqw .framer-ejky7q > :last-child, .framer-zPjqw .framer-1hqduib > :last-child, .framer-zPjqw .framer-16i2sms > :last-child, .framer-zPjqw .framer-67d3xz > :last-child, .framer-zPjqw .framer-glyzza > :last-child, .framer-zPjqw .framer-3h7ujn > :last-child, .framer-zPjqw .framer-1i56w01 > :last-child, .framer-zPjqw .framer-2hwp58 > :last-child, .framer-zPjqw .framer-1ig0o7n > :last-child, .framer-zPjqw .framer-8x6stl > :last-child, .framer-zPjqw .framer-inlj22 > :last-child, .framer-zPjqw .framer-1ppci1i > :last-child, .framer-zPjqw .framer-1tk0czj > :last-child, .framer-zPjqw .framer-1wj3ku4 > :last-child, .framer-zPjqw .framer-ztk87x > :last-child, .framer-zPjqw .framer-1g0xt1a > :last-child, .framer-zPjqw .framer-1q7395l > :last-child, .framer-zPjqw .framer-1oa5adv > :last-child, .framer-zPjqw .framer-1runwle > :last-child, .framer-zPjqw .framer-18bxik2 > :last-child, .framer-zPjqw .framer-bs84sp > :last-child, .framer-zPjqw .framer-fhik2o > :last-child, .framer-zPjqw .framer-cfdrwx > :last-child, .framer-zPjqw .framer-1vekqgg > :last-child, .framer-zPjqw .framer-zpnllo > :last-child, .framer-zPjqw .framer-1px5srh > :last-child, .framer-zPjqw .framer-s01ibi > :last-child, .framer-zPjqw .framer-mh94kx > :last-child { margin-right: 0px; } .framer-zPjqw .framer-3tw5b8 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-zPjqw .framer-1phl9w2 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zPjqw .framer-1kkgk7t > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zPjqw .framer-rwsx7u > *, .framer-zPjqw .framer-1a3n0pd > *, .framer-zPjqw .framer-hgrgim > *, .framer-zPjqw .framer-h37kpu > *, .framer-zPjqw .framer-1y57y4q > *, .framer-zPjqw .framer-683o3e > *, .framer-zPjqw .framer-88fkt0 > *, .framer-zPjqw .framer-ejky7q > *, .framer-zPjqw .framer-1hqduib > *, .framer-zPjqw .framer-16i2sms > *, .framer-zPjqw .framer-67d3xz > *, .framer-zPjqw .framer-glyzza > *, .framer-zPjqw .framer-3h7ujn > *, .framer-zPjqw .framer-1i56w01 > *, .framer-zPjqw .framer-2hwp58 > *, .framer-zPjqw .framer-1ig0o7n > *, .framer-zPjqw .framer-8x6stl > *, .framer-zPjqw .framer-inlj22 > *, .framer-zPjqw .framer-1ppci1i > *, .framer-zPjqw .framer-1tk0czj > *, .framer-zPjqw .framer-1wj3ku4 > *, .framer-zPjqw .framer-ztk87x > *, .framer-zPjqw .framer-1g0xt1a > *, .framer-zPjqw .framer-1q7395l > *, .framer-zPjqw .framer-1oa5adv > *, .framer-zPjqw .framer-1runwle > *, .framer-zPjqw .framer-18bxik2 > *, .framer-zPjqw .framer-bs84sp > *, .framer-zPjqw .framer-fhik2o > *, .framer-zPjqw .framer-cfdrwx > *, .framer-zPjqw .framer-1vekqgg > *, .framer-zPjqw .framer-zpnllo > *, .framer-zPjqw .framer-1px5srh > *, .framer-zPjqw .framer-s01ibi > *, .framer-zPjqw .framer-mh94kx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-zPjqw.framer-v-1ay55rf.framer-1tcuzmc { gap: 14px; padding: 0px 32px 0px 32px; width: 810px; }\",\".framer-zPjqw.framer-v-1ay55rf .framer-ru1uoj, .framer-zPjqw.framer-v-yguzkn .framer-7pc40z { flex-direction: column; }\",\".framer-zPjqw.framer-v-1ay55rf .framer-3tw5b8, .framer-zPjqw.framer-v-1ay55rf .framer-1phl9w2, .framer-zPjqw.framer-v-yguzkn .framer-1phl9w2, .framer-zPjqw.framer-v-yguzkn .framer-1kkgk7t { flex: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zPjqw.framer-v-1ay55rf.framer-1tcuzmc, .framer-zPjqw.framer-v-1ay55rf .framer-ru1uoj { gap: 0px; } .framer-zPjqw.framer-v-1ay55rf.framer-1tcuzmc > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-zPjqw.framer-v-1ay55rf.framer-1tcuzmc > :first-child, .framer-zPjqw.framer-v-1ay55rf .framer-ru1uoj > :first-child { margin-top: 0px; } .framer-zPjqw.framer-v-1ay55rf.framer-1tcuzmc > :last-child, .framer-zPjqw.framer-v-1ay55rf .framer-ru1uoj > :last-child { margin-bottom: 0px; } .framer-zPjqw.framer-v-1ay55rf .framer-ru1uoj > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-zPjqw.framer-v-yguzkn.framer-1tcuzmc { gap: 0px; padding: 0px 24px 0px 24px; width: 390px; }\",\".framer-zPjqw.framer-v-yguzkn .framer-ru1uoj { align-content: flex-start; align-items: flex-start; flex-direction: column; }\",\".framer-zPjqw.framer-v-yguzkn .framer-3tw5b8 { flex: none; gap: 32px; width: 100%; }\",\".framer-zPjqw.framer-v-yguzkn .framer-5xj88r { height: 1px; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-zPjqw.framer-v-yguzkn.framer-1tcuzmc, .framer-zPjqw.framer-v-yguzkn .framer-ru1uoj, .framer-zPjqw.framer-v-yguzkn .framer-3tw5b8, .framer-zPjqw.framer-v-yguzkn .framer-7pc40z { gap: 0px; } .framer-zPjqw.framer-v-yguzkn.framer-1tcuzmc > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zPjqw.framer-v-yguzkn.framer-1tcuzmc > :first-child, .framer-zPjqw.framer-v-yguzkn .framer-ru1uoj > :first-child, .framer-zPjqw.framer-v-yguzkn .framer-3tw5b8 > :first-child, .framer-zPjqw.framer-v-yguzkn .framer-7pc40z > :first-child { margin-top: 0px; } .framer-zPjqw.framer-v-yguzkn.framer-1tcuzmc > :last-child, .framer-zPjqw.framer-v-yguzkn .framer-ru1uoj > :last-child, .framer-zPjqw.framer-v-yguzkn .framer-3tw5b8 > :last-child, .framer-zPjqw.framer-v-yguzkn .framer-7pc40z > :last-child { margin-bottom: 0px; } .framer-zPjqw.framer-v-yguzkn .framer-ru1uoj > *, .framer-zPjqw.framer-v-yguzkn .framer-7pc40z > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-zPjqw.framer-v-yguzkn .framer-3tw5b8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 728\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"V41CcSSkD\":{\"layout\":[\"fixed\",\"auto\"]},\"EOWqKWVML\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"v5ZPhskUW\":\"background\",\"Mv50WRU8I\":\"radius\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerWUvbUs5sl=withCSS(Component,css,\"framer-zPjqw\");export default FramerWUvbUs5sl;FramerWUvbUs5sl.displayName=\"Logo Grid\";FramerWUvbUs5sl.defaultProps={height:728,width:1440};addPropertyControls(FramerWUvbUs5sl,{variant:{options:[\"GtTS_4CRc\",\"V41CcSSkD\",\"EOWqKWVML\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},v5ZPhskUW:{defaultValue:'var(--token-f1ca1924-242d-42bd-8816-5ef5f7ea0eb5, rgb(0, 0, 0)) /* {\"name\":\"Black\"} */',title:\"Background\",type:ControlType.Color},Mv50WRU8I:{defaultValue:\"0px\",title:\"Radius\",type:ControlType.BorderRadius}});addFonts(FramerWUvbUs5sl,[{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:\"Roobert Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/hE6j9bWMwD4ZMyU1wjYAm9TTVz8.woff2\"},{family:\"Roobert Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/fawRpBqH30Lqeyf5XAY6tB8ehw.woff2\"}]},...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerWUvbUs5sl\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"728\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"V41CcSSkD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EOWqKWVML\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"v5ZPhskUW\\\":\\\"background\\\",\\\"Mv50WRU8I\\\":\\\"radius\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WUvbUs5sl.map"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "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", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "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", "TickerFonts", "getFonts", "Ticker", "MotionSectionWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "animation", "animation1", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "background", "height", "id", "radius", "width", "props", "_ref", "_ref1", "_humanReadableVariantMap_props_variant", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "v5ZPhskUW", "Mv50WRU8I", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "SVG", "Image2", "css", "FramerWUvbUs5sl", "withCSS", "WUvbUs5sl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
