{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/qCw3AgIswU6lCB3KYyLi/NNPnpCvJqeFm1ysJhQ3e/cLj7QAAK5.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas?\"auto\":\"transform\",transform:supportsAcceleratedAnimations?transformer(0):transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (5088480)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SmartComponentScopedContainer,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"IHHBGB1Pu\",\"YOTv0vn6G\",\"lmRnWyWv3\"];const serializationHash=\"framer-QurEL\";const variantClassNames={IHHBGB1Pu:\"framer-v-8346gp\",lmRnWyWv3:\"framer-v-hnwtld\",YOTv0vn6G:\"framer-v-16d1fk2\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"IHHBGB1Pu\",Phone:\"lmRnWyWv3\",Tablet:\"YOTv0vn6G\"};const getProps=({height,id,title,width,...props})=>{return{...props,Kt56LYBa_:title??props.Kt56LYBa_??\"You\u2019re in good hands. We only run campaigns with industry leaders:\",variant:humanReadableVariantMap[props.variant]??props.variant??\"IHHBGB1Pu\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,Kt56LYBa_,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"IHHBGB1Pu\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-8346gp\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"IHHBGB1Pu\",ref:refBinding,style:{backgroundColor:\"var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(10, 10, 10))\",boxShadow:\"0px 0px 32px 48px var(--token-205ada91-f441-4a90-9fdc-9854b313f6b4, rgb(10, 10, 10))\",...style},...addPropertyOverrides({lmRnWyWv3:{\"data-framer-name\":\"Phone\"},YOTv0vn6G:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-13fft3k\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"Zp_d2rpRg\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7U2F0b3NoaS1tZWRpdW0=\",\"--framer-font-family\":'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153)))\"},children:\"You're in good hands:\"})}),className:\"framer-1cukwhl\",fonts:[\"FS;Satoshi-medium\"],layoutDependency:layoutDependency,layoutId:\"yFMEBvgCn\",style:{\"--extracted-r6o4lv\":\"var(--token-9e43930e-97a2-4cb9-bfb7-3ad05c517cd4, rgb(153, 153, 153))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:Kt56LYBa_,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lrgd3f-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"leBYaBuFs-container\",nodeId:\"leBYaBuFs\",rendersWithMotion:true,scopeId:\"cLj7QAAK5\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:50,overflow:false},gap:64,height:\"100%\",hoverFactor:1,id:\"leBYaBuFs\",layoutId:\"leBYaBuFs\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:379.999991763722,intrinsicWidth:1454.5454230190317,pixelHeight:418,pixelWidth:1600,sizes:\"171px\",src:\"https://framerusercontent.com/images/UJBYiKdLMIGeULuBIkoa4MeDQQ.png\",srcSet:\"https://framerusercontent.com/images/UJBYiKdLMIGeULuBIkoa4MeDQQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/UJBYiKdLMIGeULuBIkoa4MeDQQ.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/UJBYiKdLMIGeULuBIkoa4MeDQQ.png 1600w\"},className:\"framer-xvval4\",\"data-framer-name\":\"Logo 7\",layoutDependency:layoutDependency,layoutId:\"I_4PKW3O7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1642.7272371221188,intrinsicWidth:1656.3636004629222,pixelHeight:1807,pixelWidth:1822,sizes:\"48.3798px\",src:\"https://framerusercontent.com/images/3pN2hIJ4BgztUZb0pzzNHgmqU.png\",srcSet:\"https://framerusercontent.com/images/3pN2hIJ4BgztUZb0pzzNHgmqU.png?scale-down-to=512 512w,https://framerusercontent.com/images/3pN2hIJ4BgztUZb0pzzNHgmqU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/3pN2hIJ4BgztUZb0pzzNHgmqU.png 1822w\"},className:\"framer-1smw818\",\"data-framer-name\":\"Logo 6\",layoutDependency:layoutDependency,layoutId:\"x8RnTzAp2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:356.36362863966275,intrinsicWidth:1454.5454230190317,pixelHeight:392,pixelWidth:1600,sizes:\"171.4286px\",src:\"https://framerusercontent.com/images/VMMP3QjZ3yzD1RnYF8yqEGSOY.png\",srcSet:\"https://framerusercontent.com/images/VMMP3QjZ3yzD1RnYF8yqEGSOY.png?scale-down-to=512 512w,https://framerusercontent.com/images/VMMP3QjZ3yzD1RnYF8yqEGSOY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VMMP3QjZ3yzD1RnYF8yqEGSOY.png 1600w\"},className:\"framer-1mqkul4\",\"data-framer-name\":\"Logo 5\",layoutDependency:layoutDependency,layoutId:\"RdwBB6G3d\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:368.1818102016924,intrinsicWidth:1713.6363264942966,pixelHeight:405,pixelWidth:1885,sizes:\"195.4815px\",src:\"https://framerusercontent.com/images/BLX0jGaUVz0ZtHYn9yapTTmh9NY.png\",srcSet:\"https://framerusercontent.com/images/BLX0jGaUVz0ZtHYn9yapTTmh9NY.png?scale-down-to=512 512w,https://framerusercontent.com/images/BLX0jGaUVz0ZtHYn9yapTTmh9NY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/BLX0jGaUVz0ZtHYn9yapTTmh9NY.png 1885w\"},className:\"framer-1c9pzul\",\"data-framer-name\":\"Logo 4\",layoutDependency:layoutDependency,layoutId:\"rlwNEb8Yf\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:635.4545316814394,intrinsicWidth:1553.636329962203,pixelHeight:699,pixelWidth:1709,sizes:\"102.6867px\",src:\"https://framerusercontent.com/images/bDaFWHgosupleauFKvPkYs5K0g.png\",srcSet:\"https://framerusercontent.com/images/bDaFWHgosupleauFKvPkYs5K0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/bDaFWHgosupleauFKvPkYs5K0g.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/bDaFWHgosupleauFKvPkYs5K0g.png 1709w\"},className:\"framer-1rjihim\",\"data-framer-name\":\"Logo 3\",layoutDependency:layoutDependency,layoutId:\"XZMzNH2Yn\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:360.9090830865972,intrinsicWidth:1451.8181503508708,pixelHeight:397,pixelWidth:1597,sizes:\"168.9521px\",src:\"https://framerusercontent.com/images/0WkaCsk4rAodor34FhDRlLo3jk.png\",srcSet:\"https://framerusercontent.com/images/0WkaCsk4rAodor34FhDRlLo3jk.png?scale-down-to=512 512w,https://framerusercontent.com/images/0WkaCsk4rAodor34FhDRlLo3jk.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/0WkaCsk4rAodor34FhDRlLo3jk.png 1597w\"},className:\"framer-15139oi\",\"data-framer-name\":\"Logo 2\",layoutDependency:layoutDependency,layoutId:\"YqVamlcC7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:172.72726898351,intrinsicWidth:363.6363557547579,pixelHeight:190,pixelWidth:400,src:\"https://framerusercontent.com/images/S44SXhhJKFCnNiFzwQQfEDMwd8.png\"},className:\"framer-vaqt4u\",\"data-framer-name\":\"Logo 1\",layoutDependency:layoutDependency,layoutId:\"xDRIc_r4D\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:305.45453883399665,intrinsicWidth:1016.3636143345483,pixelHeight:336,pixelWidth:1118,sizes:\"139.75px\",src:\"https://framerusercontent.com/images/7GpKRahbFu8ltOFECzbFIRkRw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/7GpKRahbFu8ltOFECzbFIRkRw.png?scale-down-to=512 512w,https://framerusercontent.com/images/7GpKRahbFu8ltOFECzbFIRkRw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7GpKRahbFu8ltOFECzbFIRkRw.png 1118w\"},className:\"framer-bthe4r\",\"data-framer-name\":\"Logo 8\",layoutDependency:layoutDependency,layoutId:\"MDY4_tAfr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:265.45453970097327,intrinsicWidth:909.0908893868947,pixelHeight:292,pixelWidth:1e3,sizes:\"143.8356px\",src:\"https://framerusercontent.com/images/MUmOdek0u3t8yoII3bm0Gyozp4g.png\",srcSet:\"https://framerusercontent.com/images/MUmOdek0u3t8yoII3bm0Gyozp4g.png?scale-down-to=512 512w,https://framerusercontent.com/images/MUmOdek0u3t8yoII3bm0Gyozp4g.png 1000w\"},className:\"framer-6x7lc\",\"data-framer-name\":\"Logo 9\",layoutDependency:layoutDependency,layoutId:\"FYjeWK7ZO\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:243.63635835568778,intrinsicWidth:518.18180695053,pixelHeight:268,pixelWidth:570,sizes:\"89.3284px\",src:\"https://framerusercontent.com/images/fJp0HT9ehn93WMRWlUr0mIc.png\",srcSet:\"https://framerusercontent.com/images/fJp0HT9ehn93WMRWlUr0mIc.png?scale-down-to=512 512w,https://framerusercontent.com/images/fJp0HT9ehn93WMRWlUr0mIc.png 570w\"},className:\"framer-gbrcfk\",\"data-framer-name\":\"Logo 10\",layoutDependency:layoutDependency,layoutId:\"mukMPz5tP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:4543,intrinsicWidth:4097,pixelHeight:4543,pixelWidth:4097,sizes:\"107.3174px\",src:\"https://framerusercontent.com/images/StCToTJF64vAYAU3llDZomDC5A.svg\",srcSet:\"https://framerusercontent.com/images/StCToTJF64vAYAU3llDZomDC5A.svg?scale-down-to=1024 923w,https://framerusercontent.com/images/StCToTJF64vAYAU3llDZomDC5A.svg?scale-down-to=2048 1846w,https://framerusercontent.com/images/StCToTJF64vAYAU3llDZomDC5A.svg?scale-down-to=4096 3693w,https://framerusercontent.com/images/StCToTJF64vAYAU3llDZomDC5A.svg 4097w\"},className:\"framer-1w0a3j5\",\"data-framer-name\":\"Kills 1065\",layoutDependency:layoutDependency,layoutId:\"Z1qn5fyXx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:2105,intrinsicWidth:4097,pixelHeight:2105,pixelWidth:4097,sizes:\"171.276px\",src:\"https://framerusercontent.com/images/mPS6gUJmGl7vmIc1wOOkUbBThQ.svg\",srcSet:\"https://framerusercontent.com/images/mPS6gUJmGl7vmIc1wOOkUbBThQ.svg?scale-down-to=512 512w,https://framerusercontent.com/images/mPS6gUJmGl7vmIc1wOOkUbBThQ.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mPS6gUJmGl7vmIc1wOOkUbBThQ.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/mPS6gUJmGl7vmIc1wOOkUbBThQ.svg?scale-down-to=4096 4096w,https://framerusercontent.com/images/mPS6gUJmGl7vmIc1wOOkUbBThQ.svg 4097w\"},className:\"framer-1fausnx\",\"data-framer-name\":\"2GB Sydney\",layoutDependency:layoutDependency,layoutId:\"rHmZwpoWY\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rhjbrj\",\"data-framer-name\":\"Facebook\",layoutDependency:layoutDependency,layoutId:\"qwmw2XxMG\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ootw2e\",\"data-framer-name\":\"Facebook Wordmark\",fill:\"black\",intrinsicHeight:596,intrinsicWidth:843,layoutDependency:layoutDependency,layoutId:\"XDVcsxyUz\",svg:'<svg width=\"843\" height=\"596\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M126.55 362.021h-25.47v-64.18H83.73v-20.9h17.35v-14.87c0-17.62 7.68-30.26 33.08-30.26 5.37 0 13.81 1.09 13.81 1.09v19.4h-8.86c-9.03 0-12.55 2.78-12.55 10.45v14.18h21.08l-1.88 20.9h-19.2l-.01 64.19Zm58.46-86.75c-.37 0-.75.01-1.13.02-23.62 0-34.43 17.96-34.43 43.45 0 32.11 14.02 44.97 34.61 44.97 11.78 0 19.52-5.01 24.23-14.37v12.69h24.23v-85.08h-24.23v13.08c-3.84-8.41-11.8-14.66-23.28-14.76Zm6.16 20.11c9.92 0 15.88 6.99 15.88 18.89l.02 12.15c0 8.02-4.92 17.4-15.9 17.4-16.88 0-16.43-18.42-16.43-24.56 0-20.64 8.99-23.88 16.43-23.88Zm51.13 24.11c0-10.34-.49-44.17 43.12-44.17 17.5 0 24.81 5.63 24.81 5.63l-5.87 18.42s-7.3-4.06-16.81-4.06c-12.18 0-19.96 7.14-19.96 19.7l.01 9.01c0 12.07 7.5 20.12 19.97 20.12 8.67 0 16.65-4.1 16.65-4.1l5.86 18.03s-6.68 5.66-24.54 5.66c-41.52-.01-43.24-30.36-43.24-44.24Zm210-44.2c23.62 0 34.6 17.96 34.6 43.45 0 32.11-14.02 44.97-34.61 44.97-11.78 0-20.49-5.01-25.2-14.37v12.69l-23.92-.01v-127.62l25.4-2.24v56.72c3.67-9.92 15.71-13.59 23.73-13.59Zm-7.12 20.09c-9.92 0-16.61 6.99-16.61 18.89l-.02 12.15c-.01 8.02 4.63 17.4 16.64 17.4 16.88 0 16.43-18.42 16.43-24.56-.01-20.64-9-23.88-16.44-23.88Zm-90.87-20.02c-26.79 0-40.94 14.76-40.94 41v4.87c0 34.05 19.86 42.82 43.54 42.82 23.02 0 33.44-6.51 33.44-6.51l-4.75-17.33s-12.26 5.27-25.64 5.27c-13.87 0-19.84-3.57-21.37-17.05h53.79v-13.9c.01-28.44-15.87-39.17-38.07-39.17Zm.65 17.36c9.27 0 15.28 5.75 14.95 19.08h-31.27c.55-14.04 7.03-19.08 16.32-19.08Zm182.6-17.47c-27.51 0-42 15.67-42 43.75 0 38.53 24.97 44.73 42.04 44.73 25 0 41.63-13.6 41.63-44.38 0-32.04-18.7-44.1-41.67-44.1Zm-.35 20.2c12.1 0 16.89 9.15 16.89 19.57v8.96c0 12.62-6.71 19.92-16.94 19.92-9.57 0-16.29-6.83-16.29-19.92v-8.96c0-13.97 8-19.57 16.34-19.57Zm92.631-20.2c-27.51 0-42.001 15.67-42.001 43.75 0 38.53 24.971 44.73 42.051 44.73 25 0 41.63-13.6 41.63-44.38-.01-32.04-18.71-44.1-41.68-44.1Zm-.351 20.2c12.1 0 16.89 9.15 16.89 19.57v8.96c0 12.62-6.71 19.92-16.94 19.92-9.57 0-16.289-6.83-16.289-19.92v-8.96c0-13.97 7.999-19.57 16.339-19.57Zm51.62 66.57v-127.62l25.481-2.24v85.54l25.279-40.76h26.901l-26.37 42.21 27.38 42.86H732.8l-26.209-41.62v41.62H681.11v.01Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1oq7owu\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"vJ9XuyGBp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-aqcs5p\",\"data-framer-name\":\"Instagram logo\",fill:\"black\",intrinsicHeight:299,intrinsicWidth:1217,layoutDependency:layoutDependency,layoutId:\"SEVgCHLDm\",svg:'<svg width=\"1217\" height=\"299\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M149.499 29.293c39.151 0 43.788.15 59.251.855 14.296.652 22.059 3.04 27.226 5.048a45.429 45.429 0 0 1 16.859 10.968 45.42 45.42 0 0 1 10.968 16.86c2.008 5.166 4.397 12.93 5.049 27.226.705 15.462.855 20.099.855 59.251s-.15 43.788-.855 59.25c-.652 14.296-3.041 22.059-5.049 27.227a48.555 48.555 0 0 1-27.827 27.827c-5.167 2.008-12.93 4.397-27.226 5.049-15.459.705-20.096.855-59.251.855s-43.79-.15-59.25-.855c-14.297-.653-22.06-3.041-27.227-5.049a45.418 45.418 0 0 1-16.86-10.968 45.436 45.436 0 0 1-10.968-16.859c-2.008-5.167-4.396-12.931-5.048-27.227-.706-15.461-.855-20.098-.855-59.25s.15-43.788.855-59.251c.652-14.296 3.04-22.06 5.048-27.226a45.43 45.43 0 0 1 10.97-16.86 45.43 45.43 0 0 1 16.859-10.968c5.167-2.008 12.93-4.397 27.226-5.049 15.462-.705 20.099-.855 59.251-.855m0-26.419c-39.821 0-44.816.169-60.453.882-15.607.713-26.265 3.191-35.592 6.816a71.874 71.874 0 0 0-25.97 16.912 71.874 71.874 0 0 0-16.917 25.97c-3.622 9.327-6.1 19.986-6.81 35.593-.716 15.637-.885 20.631-.885 60.453 0 39.821.169 44.816.885 60.453.713 15.607 3.191 26.265 6.816 35.592a71.87 71.87 0 0 0 16.912 25.97 71.862 71.862 0 0 0 25.97 16.912c9.327 3.625 19.985 6.103 35.592 6.816 15.639.713 20.632.882 60.453.882s44.817-.169 60.453-.882c15.608-.713 26.266-3.191 35.592-6.816a74.975 74.975 0 0 0 42.883-42.882c3.624-9.327 6.103-19.985 6.815-35.592.714-15.639.883-20.632.883-60.453s-.169-44.816-.883-60.453c-.712-15.608-3.191-26.266-6.815-35.592a71.888 71.888 0 0 0-16.912-25.97 71.887 71.887 0 0 0-25.972-16.916c-9.328-3.622-19.986-6.1-35.593-6.81-15.637-.716-20.632-.885-60.453-.885h.001Z\" fill=\"#fff\"/><path d=\"M149.5 74.205A75.296 75.296 0 0 0 96.258 202.74a75.299 75.299 0 0 0 115.847-11.41A75.296 75.296 0 0 0 149.5 74.205Zm0 124.169a48.88 48.88 0 0 1-45.155-30.172 48.878 48.878 0 0 1 35.62-66.639 48.876 48.876 0 0 1 44.095 82.496 48.876 48.876 0 0 1-34.56 14.315Zm78.271-109.549c9.717 0 17.594-7.878 17.594-17.595 0-9.718-7.877-17.595-17.594-17.595-9.718 0-17.595 7.877-17.595 17.595 0 9.717 7.877 17.594 17.595 17.594Z\" fill=\"#fff\"/><mask id=\"b\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"362\" y=\"42\" width=\"855\" height=\"244\"><path d=\"M1216.5 42.5h-854v243h854v-243Z\" fill=\"#fff\"/></mask><g mask=\"url(#b)\"><path d=\"M406.347 43.216c-17.484 7.343-36.704 28.09-42.775 54.13-7.688 32.996 24.305 46.947 26.929 42.372 3.089-5.375-5.733-7.193-7.548-24.312-2.347-22.11 7.897-46.817 20.79-57.658 2.397-2.014 2.283.79 2.283 5.975 0 9.272-.511 92.509-.511 109.881 0 23.506-.967 30.929-2.705 38.264-1.761 7.433-4.591 12.455-2.446 14.39 2.396 2.164 12.628-2.984 18.552-11.279 7.103-9.95 9.589-21.898 10.036-34.874.539-15.641.516-40.463.539-54.62.021-12.985.218-51.005-.227-73.862-.109-5.606-15.605-11.488-22.917-8.414M1027.2 153.222c-.56 12.22-3.26 21.773-6.6 28.51-6.48 13.043-19.92 17.094-25.628-1.656-3.11-10.221-3.256-27.292-1.02-41.554 2.276-14.53 8.628-25.503 19.158-24.514 10.38.979 15.24 14.399 14.09 39.214ZM852.219 229.04c-.141 20.305-3.325 38.107-10.155 43.278-9.687 7.332-22.706 1.833-20.01-12.984 2.385-13.111 13.666-26.501 30.193-42.861 0 0 .034 3.731-.028 12.567Zm-2.645-75.936c-.593 11.13-3.468 22.312-6.606 28.63-6.476 13.043-20.014 17.12-25.625-1.657-3.836-12.829-2.917-29.435-1.019-39.898 2.463-13.574 8.433-26.168 19.155-26.168 10.424 0 15.564 11.475 14.095 39.093Zm-101.368-.171c-.636 11.788-2.927 21.644-6.605 28.801-6.655 12.953-19.819 17.061-25.625-1.657-4.186-13.497-2.761-31.902-1.02-41.844 2.584-14.753 9.054-25.213 19.155-24.222 10.375 1.017 15.419 14.396 14.095 38.922Zm464.544 13.769c-2.53 0-3.69 2.625-4.65 7.04-3.32 15.354-6.81 18.82-11.31 18.82-5.03 0-9.55-7.603-10.71-22.821-.92-11.967-.77-33.998.4-55.913.24-4.502-1-8.957-13.04-13.344-5.18-1.887-12.71-4.666-16.45 4.414-10.59 25.649-14.74 46.012-15.71 54.285-.05.428-.58.515-.67-.485-.62-6.626-2.01-18.666-2.18-43.962-.04-4.936-1.08-9.136-6.51-12.575-3.52-2.233-14.22-6.18-18.07-1.483-3.34 3.84-7.2 14.175-11.22 26.426-3.26 9.958-5.53 16.695-5.53 16.695s.04-26.869.08-37.06c.02-3.845-2.61-5.126-3.4-5.358-3.57-1.039-10.6-2.774-13.58-2.774-3.68 0-4.59 2.065-4.59 5.073 0 .394-.58 35.373-.58 59.832 0 1.063 0 2.222.01 3.453-2.03 11.242-8.63 26.504-15.81 26.504-7.19 0-10.59-6.381-10.59-35.541 0-17.011.51-24.408.76-36.711.15-7.087.43-12.528.41-13.763-.05-3.788-6.58-5.695-9.61-6.401-3.05-.711-5.71-.987-7.78-.869-2.93.166-5 2.095-5 4.748 0 1.422.02 4.127.02 4.127-3.78-5.951-9.85-10.092-13.89-11.293-10.88-3.242-22.228-.37-30.79 11.653-6.805 9.552-10.907 20.371-12.522 35.914-1.18 11.364-.795 22.889 1.303 32.634-2.535 10.997-7.241 15.502-12.394 15.502-7.481 0-12.905-12.253-12.275-33.443.415-13.937 3.195-23.718 6.233-37.868 1.295-6.032.243-9.19-2.397-12.217-2.421-2.776-7.58-4.194-14.996-2.45-5.283 1.244-12.836 2.581-19.746 3.608 0 0 .417-1.669.759-4.612 1.798-15.434-14.917-14.181-20.25-9.252-3.183 2.944-5.35 6.414-6.173 12.655-1.304 9.905 6.747 14.576 6.747 14.576-2.642 12.132-9.116 27.981-15.801 39.439-3.58 6.139-6.319 10.688-9.854 15.523-.013-1.8-.023-3.601-.029-5.393-.081-25.507.257-45.58.406-52.816.146-7.086.429-12.384.413-13.619-.04-2.77-1.652-3.816-5.005-5.14-2.965-1.172-6.47-1.982-10.106-2.265-4.59-.359-7.355 2.084-7.283 4.972.014.546.014 3.893.014 3.893-3.774-5.951-9.845-10.092-13.884-11.293-10.878-3.24-22.23-.368-30.792 11.653-6.804 9.552-11.259 22.956-12.522 35.796-1.176 11.967-.959 22.138.644 30.705-1.729 8.578-6.703 17.548-12.326 17.548-7.189 0-11.28-6.38-11.28-35.54 0-17.011.509-24.408.759-36.71.146-7.086.426-12.529.41-13.763-.053-3.787-6.579-5.695-9.616-6.402-3.178-.737-5.921-1.009-8.027-.853-2.78.208-4.734 2.705-4.734 4.567v4.292c-3.774-5.951-9.844-10.092-13.883-11.293-10.879-3.24-22.167-.321-30.792 11.653-5.625 7.807-10.179 16.465-12.522 35.627-.678 5.537-.977 10.722-.938 15.569-2.243 13.763-12.15 29.627-20.253 29.627-4.742 0-9.258-9.229-9.258-28.897 0-26.2 1.616-63.502 1.889-67.097 0 0 10.239-.175 12.222-.198 5.107-.056 9.732.065 16.534-.284 3.412-.175 6.699-12.461 3.178-13.982-1.596-.688-12.876-1.29-17.347-1.386-3.76-.086-14.227-.863-14.227-.863s.939-24.76 1.157-27.375c.186-2.18-2.625-3.303-4.237-3.984-3.92-1.663-7.427-2.46-11.583-3.32-5.743-1.188-8.348-.025-8.857 4.838-.767 7.381-1.164 29-1.164 29-4.214 0-18.609-.826-22.825-.826-3.916 0-8.144 16.9-2.729 17.109 6.23.242 17.087.451 24.285.669 0 0-.321 37.917-.321 49.624 0 1.245.011 2.445.013 3.608-3.961 20.718-17.913 31.909-17.913 31.909 2.996-13.706-3.125-23.998-14.15-32.712-4.062-3.21-12.081-9.288-21.053-15.949 0 0 5.197-5.139 9.805-15.477 3.265-7.323 3.406-15.704-4.608-17.552-13.243-3.055-24.161 6.702-27.418 17.12-2.523 8.071-1.178 14.06 3.766 20.28.36.455.752.919 1.156 1.387-2.99 5.781-7.096 13.565-10.574 19.601-9.654 16.758-16.946 30.015-22.457 30.015-4.406 0-4.347-13.459-4.347-26.06 0-10.862.799-27.193 1.438-44.102.211-5.592-2.575-8.776-7.247-11.662-2.838-1.752-8.896-5.2-12.404-5.2-5.251 0-20.401.717-34.716 42.266-1.804 5.236-5.348 14.779-5.348 14.779l.305-49.964c0-1.172-.622-2.304-2.046-3.079-2.412-1.314-8.854-4.002-14.583-4.002-2.73 0-4.092 1.274-4.092 3.814l-.5 78.169c0 5.939.155 12.868.74 15.899.583 3.034 1.528 5.501 2.697 6.97 1.169 1.466 2.52 2.584 4.748 3.045 2.074.429 13.429 1.893 14.019-2.461.707-5.218.734-10.862 6.696-31.912 9.283-32.771 21.385-48.761 27.074-54.44.995-.992 2.131-1.052 2.076.573-.242 7.185-1.097 25.138-1.672 40.39-1.541 40.817 5.859 48.384 16.435 48.384 8.09 0 19.495-8.068 31.721-28.485a7154.394 7154.394 0 0 0 20.339-34.195c3.706 3.442 7.864 7.146 12.019 11.103 9.656 9.196 12.827 17.935 10.723 26.224-1.609 6.338-7.668 12.87-18.451 6.522-3.143-1.852-4.485-3.283-7.645-5.371-1.698-1.121-4.291-1.457-5.845-.282-4.037 3.055-6.346 6.94-7.665 11.75-1.282 4.68 3.389 7.154 8.232 9.318 4.169 1.863 13.131 3.55 18.846 3.742 22.269.747 40.108-10.789 52.527-40.546 2.223 25.699 11.684 40.242 28.121 40.242 10.989 0 22.007-14.252 26.825-28.274 1.383 5.716 3.431 10.686 6.075 14.889 12.666 20.136 37.236 15.801 49.579-1.298 3.816-5.283 4.397-7.181 4.397-7.181 1.8 16.146 14.757 21.787 22.177 21.787 8.309 0 16.888-3.943 22.901-17.526a41.688 41.688 0 0 0 2.314 4.218c12.665 20.136 37.236 15.801 49.578-1.298a78.649 78.649 0 0 0 1.529-2.183l.362 10.606s-7.041 6.481-11.363 10.457c-19.022 17.512-33.487 30.797-34.551 46.268-1.366 19.728 14.58 27.06 26.643 28.021 12.811 1.02 23.782-6.08 30.525-16.018 5.931-8.747 9.813-27.574 9.528-46.168-.113-7.445-.3-16.911-.447-27.059 6.686-7.791 14.219-17.639 21.155-29.164 7.558-12.561 15.659-29.429 19.807-42.556 0 0 7.038.061 14.549-.433 2.403-.157 3.093.335 2.649 2.102-.536 2.135-9.49 36.787-1.319 59.871 5.594 15.802 18.202 20.886 25.677 20.886 8.751 0 17.122-6.631 21.608-16.477.54 1.097 1.105 2.16 1.722 3.14 12.666 20.136 37.153 15.776 49.583-1.297 2.8-3.852 4.39-7.181 4.39-7.181 2.67 16.709 15.62 21.871 23.04 21.871 7.73 0 15.06-3.178 21.01-17.304.25 6.22.64 11.305 1.26 12.909.37.98 2.57 2.211 4.17 2.806 7.06 2.63 14.27 1.386 16.94.845 1.85-.375 3.29-1.863 3.49-5.703.51-10.085.2-27.028 3.24-39.62 5.12-21.133 9.89-29.331 12.15-33.39 1.27-2.273 2.7-2.648 2.75-.242.11 4.869.35 19.169 2.33 38.38 1.45 14.129 3.4 22.479 4.89 25.122 4.26 7.559 9.53 7.918 13.82 7.918 2.72 0 8.43-.757 7.92-5.567-.25-2.344.18-16.834 5.23-37.654 3.29-13.596 8.78-25.881 10.76-30.372.73-1.656 1.07-.35 1.06-.096-.42 9.363-1.36 39.989 2.45 56.739 5.15 22.691 20.06 25.231 25.25 25.231 11.09 0 20.16-8.465 23.22-30.737.73-5.36-.36-9.5-3.62-9.5\" fill=\"#fff\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h1216v298H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11e525v\",\"data-framer-name\":\"Fox Sports\",layoutDependency:layoutDependency,layoutId:\"hhkKsNoCu\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1jdy7u3\",\"data-framer-name\":\"Fox Sports_wordmark_logo\",fill:\"black\",intrinsicHeight:43,intrinsicWidth:70,layoutDependency:layoutDependency,layoutId:\"TCC86STLh\",svg:'<svg width=\"70\" height=\"43\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill-rule=\"evenodd\" clip-rule=\"evenodd\" fill=\"#fff\"><path d=\"M1.16 28.847V.5h17.207l.53 7.753H9.261v3.695h7.851v7.737H9.205v9.162H1.16Zm66.275-.084-8.61-14.707L66.647.5H58.03l-3.573 6.102L50.944.5H42.03L50 14.15l-8.442 14.63 8.66-.004 4.133-7.164 4.177 7.151h8.907Z\"/><path d=\"M34.74 20.37V9.044c0-1.29-1.132-2.448-2.41-2.448-1.272 0-2.304 1.16-2.304 2.448l-.005 11.29c0 1.293 1.037 2.34 2.31 2.34 1.277 0 2.41-1.011 2.41-2.306l-.001.002Zm-16.062-5.662c0-7.606 6.094-13.78 13.612-13.78 7.525 0 13.621 6.174 13.621 13.78 0 7.617-6.096 13.786-13.621 13.786-7.518 0-13.612-6.17-13.612-13.786ZM.5 41.15v-1.465l.755-.725H7.36l.23-.228V37.18l-.166-.168H1.757L.5 35.767v-3.57l1.45-1.437h8.215v1.58l-.59.6H3.614l-.23.228v1.516l.166.163h5.655l1.256 1.25v3.618L9.014 41.15H.5Zm18.579-5.36.423-.418v-1.99l-.423-.42h-3.933v2.828h3.933Zm-6.82-5.03h8.526l1.615 1.6v3.85l-1.615 1.604h-5.639v3.336h-2.887V30.76Zm18.469 7.957.596-.58v-4.536l-.596-.587h-3.356l-.588.587v4.535l.588.58h3.356Zm-6.815.835v-7.191l1.6-1.602h7.077l1.615 1.602v7.19L32.59 41.15h-7.076l-1.601-1.598Zm18.944-4.335.41-.407v-1.515l-.41-.407h-3.885v2.329h3.885ZM36.09 30.76h8.614l1.45 1.436v3.317l-1.384 1.373 1.821 4.265h-3.208l-1.356-3.77h-3.054v3.77H36.09V30.76Zm14.37 2.408h-3.334V30.76h9.553v2.408h-3.333v7.983h-2.885l-.001-7.983Zm7.776 8.269V39.97l.757-.725h6.104l.23-.227v-1.554l-.166-.167h-5.665l-1.26-1.246v-3.57l1.45-1.437h8.217v1.58l-.59.6h-5.958l-.231.228v1.516l.165.164h5.657l1.255 1.25V40l-1.45 1.437h-8.515Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h69v42H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cxq780\",\"data-framer-name\":\"Foxtel\",layoutDependency:layoutDependency,layoutId:\"yCJoT79K5\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-upy1n3\",\"data-framer-name\":\"FoxTel logo.svg\",fill:\"black\",intrinsicHeight:95,intrinsicWidth:241,layoutDependency:layoutDependency,layoutId:\"kB6Q8OJkz\",svg:'<svg width=\"241\" height=\"95\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M221.188 39.624c3.391 2.75 6.406 5.713 8.125 9.813.273 3.009.187 6.04.187 9.062h-22c3.351 3.351 4.387 3.82 9 4 3.318-1.324 3.318-1.324 6-3l5 6c-3.967 4.408-6.913 5.795-12.812 6.375-4.697-.142-8.38-1.657-12.188-4.375-3.816-4.305-5.087-8.353-5-14 .944-5.567 2.637-8.43 7-12 5.418-3.491 10.6-4.423 16.688-1.875Zm-12.625 8.25c-1.245 1.58-1.245 1.58-1.063 3.625h13c-1.578-3.684-1.578-3.684-3-5-4.747-.48-4.747-.48-8.937 1.375Zm-69.876-8.248c4.233 2.822 7.171 5.952 8.812 10.875.564 5.692.307 10.149-3 15-3.887 3.918-7.105 5.839-12.687 6.312-4.762-.079-8.467-1.524-12.313-4.313-4.169-5.238-5.547-9.323-5-16 1.899-5.816 4.506-9.077 10-12 4.981-1.66 9.303-1.599 14.188.126ZM123.499 50.5c-1.442 3.425-1.118 4.7.25 8.187 1.608 3.017 1.608 3.017 4.75 4.813 4.162-.076 6.299-.405 9.5-3.125 2.007-3.847 1.772-5.76.5-9.875-2.424-2.626-3.993-3.8-7.5-4.5-3.432.686-5.072 2.004-7.5 4.5Z\"/><path d=\"M145.5 39.5c3.75-.415 7.267-.621 11 0 1.919 1.648 2.909 3.15 4.098 5.37.805 1.816.805 1.816 2.902 2.63l.812-1.75c1.258-2.383 2.345-4.276 4.188-6.25 2.48-.392 2.48-.392 5.188-.25l2.73.108 2.082.141c-1.564 3.522-3.695 6.271-6.125 9.25l-2.195 2.703-1.68 2.047c1.671 3.791 4.11 6.93 6.625 10.188 4.375 5.683 4.375 5.683 4.375 6.812-3.777.484-7.243.701-11 0-2.679-2.31-4.354-4.888-6-8-2.648 2.578-4.944 4.916-7 8-2.602.293-2.602.293-5.625.188l-3.039-.082-2.336-.106c1.85-2.886 3.669-5.611 5.895-8.226l1.98-2.336 1.93-2.192c1.484-2.201 1.484-2.201.648-4.695-1.628-2.858-3.469-5.277-5.578-7.8-3.875-4.662-3.875-4.662-3.875-5.75Zm-35.312-15.126 3.011.055 2.301.07v7l-7 2-1 6h7v7h-7v24h-9v-24h-5v-7h5l-.188-3.125c.202-4.168.986-6.369 3.188-9.875 3.421-2.28 4.682-2.22 8.688-2.125ZM41.813 50.25c2.601 2.178 3.5 3.185 4.688 6.25.328 4.705-.395 8.146-3.125 12-3.465 2.41-5.67 2.925-9.875 3-3.997-1.022-6.55-2.673-9-6-1.23-4.688-1.598-7.548.687-11.875 4.433-5.99 9.875-6.94 16.625-3.375Zm23.437-.688c3.112 2.679 4.076 5.02 5.25 8.937 0 4.365-.525 6.359-3.124 9.875-3.517 2.6-5.51 3.125-9.875 3.125-4.322-1.224-6.373-2.09-8.938-5.812-1.148-3.446-1.587-5.592-1.062-9.188 1.634-3.035 3.056-5.283 5.812-7.375 4.23-1.208 7.835-1.147 11.938.438Z\"/><path d=\"M38.5 24.5c4.003 2.115 6.362 3.775 8 8 .328 4.705-.395 8.146-3.125 12-3.5 2.436-5.616 3-9.875 3-4.127-1.508-6.926-3.07-9-7-1.044-4.025-1.242-6.3.125-10.25 3.671-5.384 7.47-6.536 13.875-5.75Zm0 48c4.006 2.117 6.355 3.777 8 8 .425 4.957-.344 8.197-3.5 12.063-3.318 2.302-6.412 2.597-10.383 2.363-4.006-.805-6.057-3.077-8.492-6.175-.984-3.542-.71-6.79.375-10.25 4.395-5.297 7.145-6.572 14-6ZM65.812 2.187c2.881 2.48 3.915 3.623 4.687 7.313-.14 3.928-.655 6.404-2.625 9.812-3.091 2.847-5.212 3.623-9.375 4.188-4.106-1.3-7.258-2.65-10-6-1.472-4.628-1.454-8.075.688-12.438C54-.272 59.235-1.163 65.812 2.187ZM14.5 48.5c3.035 1.635 5.283 3.056 7.374 5.813 1.332 4.66 1.124 8.087-.875 12.5-2.784 2.993-4.463 3.908-8.406 4.636-4.437.108-7.72-1.797-11.031-4.574C-.131 63.092-.266 59.561.499 55.5c3.195-5.9 7.466-7.64 14-7Zm167-20h8v11h8v7h-8v24h-8v-42Zm51-4h8v46h-8v-46Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h240v94H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v1e4j0\",\"data-framer-name\":\"Google\",layoutDependency:layoutDependency,layoutId:\"Lh5i275f7\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-arfb16\",\"data-framer-name\":\"Google 2015_logo\",fill:\"black\",intrinsicHeight:93,intrinsicWidth:273,layoutDependency:layoutDependency,layoutId:\"D2xWVL7MM\",svg:'<svg width=\"273\" height=\"93\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#fff\"><path d=\"M116.25 47.68c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.86 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18Zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44S81.49 39.7 81.49 47.68c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44Zm57.74 0c0 12.77-9.99 22.18-22.25 22.18s-22.25-9.41-22.25-22.18c0-12.85 9.99-22.18 22.25-22.18s22.25 9.32 22.25 22.18Zm-9.74 0c0-7.98-5.79-13.44-12.51-13.44s-12.51 5.46-12.51 13.44c0 7.9 5.79 13.44 12.51 13.44s12.51-5.55 12.51-13.44Zm55.74-20.84v39.82c0 16.38-9.66 23.07-21.08 23.07-10.75 0-17.22-7.19-19.66-13.07l8.48-3.53c1.51 3.61 5.21 7.87 11.17 7.87 7.31 0 11.84-4.51 11.84-13v-3.19h-.34c-2.18 2.69-6.38 5.04-11.68 5.04-11.09 0-21.25-9.66-21.25-22.09 0-12.52 10.16-22.26 21.25-22.26 5.29 0 9.49 2.35 11.68 4.96h.34v-3.61h9.25v-.01Zm-8.56 20.92c0-7.81-5.21-13.52-11.84-13.52-6.72 0-12.35 5.71-12.35 13.52 0 7.73 5.63 13.36 12.35 13.36 6.63 0 11.84-5.63 11.84-13.36ZM225.5 3.5v65H216v-65h9.5Zm37.02 51.48 7.56 5.04c-2.44 3.61-8.32 9.83-18.48 9.83-12.6 0-22.01-9.74-22.01-22.18 0-13.19 9.49-22.18 20.92-22.18 11.51 0 17.14 9.16 18.98 14.11l1.01 2.52-29.65 12.28c2.27 4.45 5.8 6.72 10.75 6.72 4.96 0 8.4-2.44 10.92-6.14ZM239.25 47l19.82-8.23c-1.09-2.77-4.37-4.7-8.23-4.7-4.95 0-11.84 4.37-11.59 12.93ZM35.79 41.91V32.5H67.5c.31 1.64.47 3.58.47 5.68 0 7.06-1.93 15.79-8.15 22.01-6.05 6.3-13.78 9.66-24.02 9.66C16.82 69.85.86 54.39.86 35.41.86 16.43 16.82.97 35.8.97c10.5 0 17.98 4.12 23.6 9.49l-6.64 6.64c-4.03-3.78-9.49-6.72-16.97-6.72-13.86 0-24.7 11.17-24.7 25.03 0 13.86 10.84 25.03 24.7 25.03 8.99 0 14.11-3.61 17.39-6.89 2.66-2.66 4.41-6.46 5.1-11.65l-22.49.01Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h272v92H0z\"/></clipPath></defs></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mj4gi1\",\"data-framer-name\":\"7plus logo\",layoutDependency:layoutDependency,layoutId:\"gmptg04lS\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-767b3k\",\"data-framer-name\":\"7plus logo\",fill:\"black\",intrinsicHeight:193,intrinsicWidth:521,layoutDependency:layoutDependency,layoutId:\"njqntr60o\",svg:'<svg width=\"521\" height=\"193\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M180.476 69.787 141.118 4.16 32.996 189.292h79.166l68.314-119.505ZM135.846 4.16H3.721L42.27 69.787h55.336l38.24-65.627Zm193.89 128.159h-4.735c-7.122 0-10.298-3.296-10.298-10.687V9.812c0-3.117-2.401-5.652-5.352-5.652h-7.412c-3.012 0-5.558 2.589-5.558 5.652v113.496c0 16.48 8.922 25.555 25.119 25.555h7.824c2.894 0 5.969-2.055 5.969-5.863v-5.027c0-3.171-2.441-5.654-5.557-5.654Zm91.72-87.561h-7.411c-3.013 0-5.559 2.589-5.559 5.653v51.741c0 19.318-9.872 29.959-27.799 29.959-17.926 0-27.799-10.641-27.799-29.959v-51.74c0-3.065-2.546-5.654-5.556-5.654h-7.414c-2.852 0-5.352 2.641-5.352 5.653v54.255c0 26.849 15.469 44.197 46.121 44.197s46.121-17.348 46.121-44.197V50.411c0-3.012-2.5-5.653-5.352-5.653Zm65.155 42.562-17.904-3.56c-12.696-2.584-14.409-7.507-14.409-11.983 0-8.019 8.13-13.619 19.77-13.619 9.287 0 17.805 2.958 25.277 8.758 2.837 2.308 6.039 2.27 8.623-.072l3.545-3.601a5.428 5.428 0 0 0 1.782-4.063 5.974 5.974 0 0 0-1.989-4.43c-8.302-7.965-21.839-12.72-36.209-12.72-22.905 0-39.531 12.773-39.531 30.371 0 18.909 15.252 25.683 28.038 28.033l16.668 3.14c12.539 2.43 17.889 6.765 17.889 14.494 0 7.288-7.498 14.666-21.828 14.666-6.185 0-12.013-1.436-17.78-4.368a46.606 46.606 0 0 1-10.31-7.473c-1.634-1.456-3.194-2.164-4.767-2.164-1.348 0-2.602.524-3.678 1.509l-3.872 3.319c-1.412 1.149-2.225 2.766-2.294 4.554-.073 2.186.984 4.446 2.987 6.348 5.58 5.378 18.08 14.4 39.096 14.4 12.804 0 23.535-3.528 31.032-10.206 6.448-5.744 10.147-13.629 10.147-21.632 0-16.197-9.623-25.634-30.283-29.701Zm-258.569 28.282 26.044-15.889c3.8-2.318 3.8-6.113 0-8.431l-26.044-15.89c-3.802-2.317-6.911-.525-6.911 3.983v32.246c0 4.508 3.109 6.299 6.911 3.981Z\" fill=\"#fff\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M182.477 95.505v88.134c0 3.064 2.544 5.653 5.556 5.653h7.212c3.014 0 5.559-2.589 5.559-5.653V95.505c0-19.222 15.317-34.805 34.212-34.805 18.896 0 34.212 15.583 34.212 34.805s-15.316 34.714-34.212 34.714c-10.97 0-20.733-5.255-26.995-13.424v24.478a51.623 51.623 0 0 0 26.995 7.59c29.017 0 52.54-23.838 52.54-53.358 0-29.52-23.523-53.45-52.54-53.45-29.018 0-52.539 23.93-52.539 53.45Z\" fill=\"#fff\"/></svg>',withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QurEL.framer-rrj8gq, .framer-QurEL .framer-rrj8gq { display: block; }\",\".framer-QurEL.framer-8346gp { 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: 32px 64px 64px 64px; position: relative; width: 1200px; }\",\".framer-QurEL .framer-13fft3k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-QurEL .framer-1cukwhl { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-QurEL .framer-1lrgd3f-container { flex: none; height: 55px; position: relative; width: 100%; }\",\".framer-QurEL .framer-xvval4 { height: 42px; overflow: visible; position: relative; width: 171px; }\",\".framer-QurEL .framer-1smw818 { aspect-ratio: 1.0079123554473524 / 1; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-QurEL .framer-1mqkul4 { aspect-ratio: 4.081632653061225 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 171px; }\",\".framer-QurEL .framer-1c9pzul { aspect-ratio: 4.654320987654321 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 195px; }\",\".framer-QurEL .framer-1rjihim { aspect-ratio: 2.444921316165951 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 103px; }\",\".framer-QurEL .framer-15139oi { aspect-ratio: 4.0226700251889165 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 169px; }\",\".framer-QurEL .framer-vaqt4u { aspect-ratio: 2.105263157894737 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 88px; }\",\".framer-QurEL .framer-bthe4r { aspect-ratio: 3.327380952380952 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 140px; }\",\".framer-QurEL .framer-6x7lc { aspect-ratio: 3.424657534246575 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 144px; }\",\".framer-QurEL .framer-gbrcfk { aspect-ratio: 2.126865671641791 / 1; height: var(--framer-aspect-ratio-supported, 42px); overflow: visible; position: relative; width: 89px; }\",\".framer-QurEL .framer-1w0a3j5 { aspect-ratio: 0.9018269865727493 / 1; height: var(--framer-aspect-ratio-supported, 119px); overflow: visible; position: relative; width: 107px; }\",\".framer-QurEL .framer-1fausnx { aspect-ratio: 1.9463182897862232 / 1; height: var(--framer-aspect-ratio-supported, 88px); overflow: visible; position: relative; width: 171px; }\",\".framer-QurEL .framer-rhjbrj { height: 115px; overflow: hidden; position: relative; width: 163px; }\",\".framer-QurEL .framer-ootw2e { aspect-ratio: 1.4144295302013423 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 115px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QurEL .framer-1oq7owu { height: 41px; overflow: hidden; position: relative; width: 167px; }\",\".framer-QurEL .framer-aqcs5p { aspect-ratio: 4.070234113712375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 41px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QurEL .framer-11e525v { height: 44px; overflow: hidden; position: relative; width: 72px; }\",\".framer-QurEL .framer-1jdy7u3 { aspect-ratio: 1.627906976744186 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QurEL .framer-cxq780 { height: 45px; overflow: hidden; position: relative; width: 114px; }\",\".framer-QurEL .framer-upy1n3 { aspect-ratio: 2.536842105263158 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QurEL .framer-v1e4j0 { height: 43px; overflow: hidden; position: relative; width: 126px; }\",\".framer-QurEL .framer-arfb16 { aspect-ratio: 2.935483870967742 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 43px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QurEL .framer-1mj4gi1 { height: 45px; overflow: hidden; position: relative; width: 121px; }\",\".framer-QurEL .framer-767b3k { aspect-ratio: 2.699481865284974 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 45px); left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-QurEL.framer-v-16d1fk2.framer-8346gp { padding: 32px 32px 64px 32px; width: 810px; }\",\".framer-QurEL.framer-v-hnwtld.framer-8346gp { padding: 24px; width: 390px; }\",\".framer-QurEL.framer-v-hnwtld .framer-13fft3k { gap: 24px; }\",\".framer-QurEL.framer-v-hnwtld .framer-1cukwhl { white-space: pre-wrap; width: 277px; word-break: break-word; word-wrap: break-word; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 223\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"YOTv0vn6G\":{\"layout\":[\"fixed\",\"auto\"]},\"lmRnWyWv3\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"Kt56LYBa_\":\"title\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramercLj7QAAK5=withCSS(Component,css,\"framer-QurEL\");export default FramercLj7QAAK5;FramercLj7QAAK5.displayName=\"Universal Section/Logos\";FramercLj7QAAK5.defaultProps={height:223,width:1200};addPropertyControls(FramercLj7QAAK5,{variant:{options:[\"IHHBGB1Pu\",\"YOTv0vn6G\",\"lmRnWyWv3\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},Kt56LYBa_:{defaultValue:\"You\u2019re in good hands. We only run campaigns with industry leaders:\",displayTextArea:false,title:\"Title\",type:ControlType.String}});addFonts(FramercLj7QAAK5,[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"}]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramercLj7QAAK5\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YOTv0vn6G\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"lmRnWyWv3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"Kt56LYBa_\\\":\\\"title\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"223\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./cLj7QAAK5.map"],
  "mappings": "8ZAAgY,IAAMA,GAAqB,IAAUC,GAAsB,CAAC,KAAKC,GAAQ,eAAeA,CAAM,MAAM,MAAMA,GAAQ,cAAcA,CAAM,MAAM,IAAIA,GAAQ,eAAeA,CAAM,MAAM,OAAOA,GAAQ,cAAcA,CAAM,KAAK,EAAQC,GAA8B,OAAO,UAAY,KAAa,OAAO,UAAU,UAAU,oBAAqB,WAS/rB,SAARC,EAAwBC,EAAM,CAAY,GAAG,CAAC,MAAAC,EAAM,IAAAC,EAAI,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,GAAW,aAAAC,GAAa,cAAAC,GAAc,YAAAC,EAAY,MAAAC,EAAM,YAAAC,EAAY,UAAAC,EAAU,UAAAC,EAAU,cAAAC,EAAc,YAAAC,EAAY,MAAAC,CAAK,EAAEf,EAAW,CAAC,YAAAgB,EAAY,SAAAC,EAAS,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAS,EAAEN,EAAiB,CAAC,UAAAO,EAAU,WAAAC,CAAU,EAAET,EAAoBU,EAAanB,EAAe,GAAGC,EAAU,MAAMC,EAAY,MAAMC,EAAa,MAAMC,CAAW,KAAK,GAAGL,CAAO,KAAuBqB,EAASC,GAAa,QAAQ,IAAIA,GAAa,OAC5fC,EAAczB,EAAM,OAAO,OAAO,EAAQ0B,GAAYC,EAAS,MAAMF,CAAa,EAAQG,EAAYF,GAAY,EAAKhB,IAAY,KAAMA,EAAU,QAAQ,IAAMmB,EAAanB,IAAY,QAAQA,IAAY,QAAcd,GAAOkC,GAAe,CAAC,EAAQC,EAAYpC,GAAsBe,CAAS,EAAQsB,GAAUC,GAAarC,GAAOmC,CAAW,EAA4BG,EAAUC,EAAO,IAAI,EAAQC,EAAYC,EAAQ,IAAW,CAAcC,GAAU,EAAeA,GAAU,CAAC,EAAI,CAAC,CAAC,EAAO,CAACC,EAAKC,EAAO,EAAEC,GAAS,CAAC,OAAO,KAAK,SAAS,IAAI,CAAC,EAAkBC,GAAe,CAAC,EAAMC,GAAc,CAAC,EAA2BC,EAAY,EAAMC,GAAQ,EAAKtB,IAAUqB,EAAYlB,GAAY,KAAK,MAAM,GAAGA,EAAW,EAAE,EAAEmB,GAAQ,GAAM,CAACtB,GAAUK,GAAaW,EAAK,SAAQK,EAAY,KAAK,MAAML,EAAK,OAAOA,EAAK,SAAS,CAAC,EAAE,EAAEK,EAAY,KAAK,IAAIA,EAAYlD,EAAoB,EAAEmD,GAAQ,GAAiC,IAAMC,GAAQC,GAAY,IAAI,CAAC,GAAGnB,GAAaM,EAAU,QAAQ,CAAC,IAAMc,EAAanB,EAAaK,EAAU,QAAQ,YAAYA,EAAU,QAAQ,aAAmBe,EAAMb,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,UAAU,EAAkMc,GAAtLd,EAAY,CAAC,EAAE,QAAQP,EAAaO,EAAY,CAAC,EAAE,QAAQ,WAAWA,EAAY,CAAC,EAAE,QAAQ,YAAYA,EAAY,CAAC,EAAE,QAAQ,UAAUA,EAAY,CAAC,EAAE,QAAQ,aAAa,GAA2Ba,EAAMhD,EAAIuC,GAAQ,CAAC,OAAOQ,EAAa,SAASE,CAAc,CAAC,CAAE,CAAC,EAAE,CAAC,CAAC,EAAQC,GAAe5B,EAAS,CAAC,kBAAkB,MAAM,EAAE,CAAC,EAAwC,GAAGK,EAAY,CAChkD,GAAG,CAACL,EAAS,CAGE,IAAI6B,EAAcjB,EAAO,EAAI,EAAEkB,EAAU,KAAKC,GAAM,KAAKR,EAAO,EAASS,GAAOrB,EAAU,QAAQ,CAAC,CAAC,YAAAsB,CAAW,IAAI,CAAI,CAACJ,EAAc,UAAUI,EAAY,OAAOA,EAAY,SAASF,GAAM,KAAKR,EAAO,EAAGM,EAAc,QAAQ,EAAM,CAAC,GAAI,CAAC,CAAC,CAAE,CAACV,GAAef,EAAS,IAAIF,EAAc,CAACgC,EAAMC,IAAQ,CAAC,IAAIC,EAAaC,EAAcC,EAAcC,EAAc,IAAIC,EAAOL,IAAQ,IAAGK,EAAI3B,EAAY,CAAC,GAAMsB,IAAQjC,EAAc,OAAO,IAAGsC,EAAI3B,EAAY,CAAC,GAAG,IAAMG,EAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,MAAM,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,IAAID,EAAI,MAAMxB,EAAK,SAAsB2B,GAAaT,EAAM,CAAC,MAAM,CAAC,IAAII,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,GAAGtB,EAAK,WAAW,EAAE,GAAGY,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,aAAaC,EAAM,MAAS,GAAGI,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,QAAQ,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,CAAE,CAAC,GAAG,CAACvC,EAAU,QAAQ4C,EAAE,EAAEA,EAAEvB,EAAYuB,IAAKxB,GAAc,CAAC,GAAGA,GAAc,GAAGhB,EAAS,IAAIF,EAAc,CAACgC,EAAMW,IAAa,CAAC,IAAIT,EAAaC,EAAcC,EAAcC,EAAcO,EAAcC,GAAc,IAAM/B,GAAK,CAAC,MAAMnB,GAAWuC,EAAaF,EAAM,SAAS,MAAME,IAAe,OAAO,OAAOA,EAAa,MAAM,OAAO,OAAOtC,GAAYuC,EAAcH,EAAM,SAAS,MAAMG,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,WAAW,EAAE,OAAoBI,EAAKC,EAAY,CAAC,QAAQ,KAAK,SAAsBD,EAAK,KAAK,CAAC,MAAMzB,GAAK,cAAc,GAAK,SAAsB2B,GAAaT,EAAM,CAAC,IAAIU,EAAE,IAAIC,EAAW,MAAM,CAAC,IAAIP,EAAcJ,EAAM,SAAS,MAAMI,IAAgB,OAAO,OAAOA,EAAc,MAAM,MAAMzC,GAAW0C,EAAcL,EAAM,SAAS,MAAMK,IAAgB,OAAO,OAAOA,EAAc,MAAM,OAAO,OAAOzC,GAAYgD,EAAcZ,EAAM,SAAS,MAAMY,IAAgB,OAAO,OAAOA,EAAc,OAAO,OAAO,WAAW,EAAE,GAAGlB,EAAc,EAAE,SAASM,EAAM,MAAM,SAASA,EAAM,MAAM,SAAS,SAASU,EAAE,MAAS,GAAGG,GAAcb,EAAM,SAAS,MAAMa,KAAgB,OAAO,OAAOA,GAAc,QAAQ,CAAC,EAAEH,EAAE,KAAKC,CAAU,CAAC,EAAED,EAAE,KAAKC,CAAU,CAAE,CAAC,CAAC,EAAI,IAAMG,EAAehC,EAAK,SAASA,EAAK,SAAS,KAAK,MAAMA,EAAK,OAAOA,EAAK,QAAQ,EAAQiC,GAAYrC,EAAO,IAAI,EAAQsC,GAAStC,EAAO,IAAI,EAAQuC,EAAKvC,EAAO,CAAC,EAAQwC,GAAQxC,EAAO,EAAK,EAAQyC,GAAgBC,GAAiB,EAAQC,GAAQ3C,EAAO,IAAI,EAAQ4C,EAAa5C,EAAO,IAAI,EAE7lF,GAAG,CAACZ,EAAS,CAAC,IAAMyD,EAASC,GAAU/C,CAAS,EAEzCrC,IAA+BwD,EAAU,IAAI,CAAC,GAAG,EAAAuB,IAAiB,CAACL,GAAgB,CAAC/D,GAAe,OAAAuE,EAAa,QAAQD,GAAQ,QAAQ,QAAQ,CAAC,UAAU,CAAC/C,EAAY,CAAC,EAAEA,EAAYwC,CAAc,CAAC,CAAC,EAAE,CAAC,SAAS,KAAK,IAAIA,CAAc,EAAE/D,EAAM,IAAI,WAAW,IAAS,OAAO,QAAQ,CAAC,EAAQ,IAAIuE,EAAa,QAAQ,OAAO,CAAE,EAAE,CAACtE,EAAY8D,EAAe/D,CAAK,CAAC,EACtX6C,EAAU,IAAI,CAAK0B,EAAa,UAAkBC,GAAUD,EAAa,QAAQ,YAAY,SAAUA,EAAa,QAAQ,KAAK,EAAW,CAACC,GAAUD,EAAa,QAAQ,YAAY,WAAWA,EAAa,QAAQ,MAAM,EAAG,EAAE,CAACC,CAAQ,CAAC,GAG9NE,GAAkBC,GAAG,CAAC,GAAG,CAACZ,GAAgBK,IAAiB/E,GAA+B,OAKnF2E,GAAY,UAAU,OAAMA,GAAY,QAAQW,GAAGA,EAAEA,EAAEX,GAAY,QAAqE,IAAIY,GAAjDX,GAAS,UAAU,KAAK,EAAEU,EAAEV,GAAS,UAA6BjE,EAAM,KAAQmE,GAAQ,UAASS,GAAO3E,GAAaiE,EAAK,SAASU,EAAMV,EAAK,QAAQW,GAAK,EAAEd,EAAeG,EAAK,OAAO,EAAED,GAAS,QAAQU,EAAMH,GAAgBpF,GAAO,IAAI8E,EAAK,OAAO,CAAE,CAAC,CAAG,CAAY,IAAMY,GAAczD,EAAa,WAAW,YAAkB0D,GAAetE,EAAU,EAAQuE,GAAa,IAAIvE,EAAU,EAAQwE,GAAeC,GAAMxE,EAAU,EAAEqE,EAAc,EAAQI,GAAa,IAAIzE,EAAgB0E,GAAS,mBAAmBN,EAAa,mBAAmBnE,EAAS,KAAKsE,EAAc,uBAAuBF,EAAc,uBAAuBC,EAAY,oBAAoBrE,EAAS,KAAKwE,EAAY,KAAsB,OAAI/D,EAAkWoC,EAAK,UAAU,CAAC,MAAM,CAAC,GAAG6B,GAAe,QAAQhD,GAAQ,gBAAgB9B,EAAY6E,GAAS,OAAU,aAAa7E,EAAY6E,GAAS,OAAU,UAAU7E,EAAY6E,GAAS,OAAU,SAAS5E,EAAS,UAAU,SAAS,QAAQM,CAAY,EAAE,IAAIY,EAAU,SAAsB4D,EAAMC,EAAO,GAAG,CAAC,IAAIjB,GAAQ,MAAM,CAAC,GAAGe,GAAe,IAAI5F,EAAI,IAAIS,IAAY,UAAUsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,KAAK7D,IAAY,SAASsF,GAAczB,CAAc,EAAE,CAACA,EAAe,OAAU,WAAW5D,EAAU,SAAS,WAAW,cAAckB,EAAa,MAAM,SAAS,GAAGf,EAAM,WAAWS,EAAS,OAAO,YAAY,UAAU1B,GAA8BkC,EAAY,CAAC,EAAEC,EAAS,EAAE,aAAa,IAAI,CAAC2C,GAAQ,QAAQ,GAAQI,EAAa,UACz5DA,EAAa,QAAQ,aAAatE,EAAa,EAAE,aAAa,IAAI,CAACkE,GAAQ,QAAQ,GAASI,EAAa,UACzGA,EAAa,QAAQ,aAAa,EAAG,EAAE,SAAS,CAACrC,GAAeC,EAAa,CAAC,CAAC,CAAC,CAAC,EAF6wBmD,EAAM,UAAU,CAAC,MAAMG,GAAkB,SAAS,CAAcjC,EAAK,MAAM,CAAC,MAAMkC,GAAY,SAAS,QAAG,CAAC,EAAelC,EAAK,IAAI,CAAC,MAAMmC,GAAY,SAAS,oBAAoB,CAAC,EAAenC,EAAK,IAAI,CAAC,MAAMoC,GAAe,SAAS,2DAA2D,CAAC,CAAC,CAAC,CAAC,CAErjC,CAAyBtG,EAAO,aAAa,CAAC,IAAI,GAAG,QAAQ,GAAG,cAAc,CAAC,UAAU,GAAK,WAAW,EAAI,EAAE,YAAY,CAAC,YAAY,GAAK,SAAS,GAAM,UAAU,GAAG,UAAU,EAAE,UAAU,CAAC,EAAE,UAAU,EAAI,EAAyBuG,EAAoBvG,EAAO,CAAC,MAAM,CAAC,KAAKwG,EAAY,MAAM,MAAM,WAAW,QAAQ,CAAC,KAAKA,EAAY,iBAAiB,CAAC,EAAE,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,IAAI,aAAa,IAAI,KAAK,IAAI,eAAe,GAAK,KAAK,CAAC,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,YAAY,QAAQ,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,YAAY,CAAC,iBAAiB,kBAAkB,eAAe,gBAAgB,EAAE,aAAa,CAAC,OAAO,QAAQ,MAAM,QAAQ,EAAE,aAAa,OAAO,wBAAwB,EAAI,EAAE,UAAU,CAAC,KAAKA,EAAY,KAAK,MAAM,QAAQ,QAAQ,CAAC,aAAa,SAAS,UAAU,EAAE,YAAY,CAAC,UAAU,CAAC,MAAM,CAAC,YAAY,eAAe,cAAc,EAAE,KAAK,CAAC,YAAY,eAAe,cAAc,EAAE,IAAI,CAAC,aAAa,eAAe,aAAa,EAAE,OAAO,CAAC,aAAa,eAAe,aAAa,CAAC,CAAC,EAAE,aAAa,SAAS,wBAAwB,EAAI,EAAE,IAAI,CAAC,KAAKA,EAAY,OAAO,MAAM,KAAK,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAa,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,cAAc,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,SAAS,CAAC,UAAU,CAAC,KAAKA,EAAY,QAAQ,MAAM,QAAQ,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,QAAQ,MAAM,SAAS,aAAa,OAAO,cAAc,UAAU,aAAa,EAAI,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,MAAM,WAAW,SAAS,CAAC,YAAY,CAAC,KAAKA,EAAY,QAAQ,MAAM,OAAO,aAAa,EAAI,EAAE,SAAS,CAAC,KAAKA,EAAY,QAAQ,MAAM,WAAW,aAAa,OAAO,cAAc,OAAO,aAAa,GAAM,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAK,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,GAAG,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,aAAa,EAAE,IAAI,EAAE,IAAI,IAAI,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,EAAE,UAAU,CAAC,KAAKuG,EAAY,OAAO,MAAM,UAAU,aAAa,EAAE,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,OAAOvG,EAAM,CAAC,OAAOA,EAAM,cAAc,EAAM,CAAC,CAAC,CAAC,EAAE,YAAY,CAAC,KAAKuG,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,EAAE,KAAK,IAAI,aAAa,EAAE,KAAK,GAAG,eAAe,GAAK,YAAY,8CAA8C,CAAC,CAAC,EAA0B,IAAMT,GAAe,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,SAAS,OAAO,UAAU,OAAO,WAAW,SAAS,OAAO,EAAE,QAAQ,EAAE,cAAc,OAAO,WAAW,MAAM,EAAoBI,GAAkB,CAAC,QAAQ,OAAO,MAAM,OAAO,OAAO,OAAO,aAAa,SAAS,WAAW,SAAS,cAAc,SAAS,MAAM,OAAO,WAAW,0BAA0B,SAAS,GAAG,SAAS,SAAS,QAAQ,qBAAqB,EAAQC,GAAY,CAAC,SAAS,GAAG,aAAa,EAAE,EAAQC,GAAY,CAAC,OAAO,EAAE,aAAa,GAAG,WAAW,IAAI,UAAU,QAAQ,EAAQC,GAAe,CAAC,OAAO,EAAE,QAAQ,GAAG,SAAS,IAAI,WAAW,IAAI,UAAU,QAAQ,EAAgDV,GAAM,CAACa,EAAIC,EAAIC,IAAM,KAAK,IAAI,KAAK,IAAIF,EAAIC,CAAG,EAAEC,CAAG,EAAQT,GAAcU,GAAO,OAAOA,GAAQ,UAAU,CAAC,MAAMA,CAAK,EC5Bl6F,IAAMC,GAAYC,GAASC,CAAM,EAAQC,GAAW,CAAC,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAE,SAASC,GAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAAAD,GAAU,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,OAAO,GAAG,MAAM,EAAE,SAAS,GAAG,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAOE,EAAO,WAAiBI,EAAmBC,EAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAO,OAAaC,EAAQ,EAAQC,GAAwB,CAAC,QAAQ,YAAY,MAAM,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,MAAAC,EAAM,GAAGC,CAAK,KAAW,CAAC,GAAGA,EAAM,UAAUF,GAAOE,EAAM,WAAW,0EAAqE,QAAQN,GAAwBM,EAAM,OAAO,GAAGA,EAAM,SAAS,WAAW,GAAUC,GAAuB,CAACD,EAAMvB,IAAeuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAEuB,EAAM,iBAAwBvB,EAAS,KAAK,GAAG,EAAUyB,GAA6BC,GAAW,SAASH,EAAMI,EAAI,CAAC,IAAMC,EAAYC,EAAO,IAAI,EAAQC,EAAWH,GAAKC,EAAkBG,EAAsBC,GAAM,EAAO,CAAC,aAAAC,GAAa,UAAAC,EAAS,EAAEC,GAAc,EAAQC,GAAkBC,GAAqB,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAtC,EAAQ,UAAAuC,EAAU,GAAGC,CAAS,EAAExB,GAASK,CAAK,EAAO,CAAC,YAAAoB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAAlD,CAAQ,EAAEmD,GAAgB,CAAC,WAAAxD,GAAW,eAAe,YAAY,IAAImC,EAAW,QAAA5B,EAAQ,kBAAAL,EAAiB,CAAC,EAAQuD,EAAiB5B,GAAuBD,EAAMvB,CAAQ,EAAuCqD,EAAkBC,GAAG1D,GAAkB,GAAhD,CAAC,CAAuE,EAAE,OAAoBiB,EAAK0C,EAAY,CAAC,GAAGf,GAAUT,EAAgB,SAAsBlB,EAAKC,GAAS,CAAC,QAAQd,EAAS,QAAQ,GAAM,SAAsBa,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKE,EAAO,IAAI,CAAC,GAAG2B,EAAU,GAAGI,EAAgB,UAAUQ,GAAGD,EAAkB,gBAAgBd,EAAUK,CAAU,EAAE,mBAAmB,UAAU,iBAAiBQ,EAAiB,SAAS,YAAY,IAAItB,EAAW,MAAM,CAAC,gBAAgB,qEAAqE,UAAU,uFAAuF,GAAGQ,CAAK,EAAE,GAAGxC,GAAqB,CAAC,UAAU,CAAC,mBAAmB,OAAO,EAAE,UAAU,CAAC,mBAAmB,QAAQ,CAAC,EAAE6C,EAAYI,CAAc,EAAE,SAAsBS,EAAMzC,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,SAAS,CAAcvC,EAAK4C,GAAS,CAAC,sBAAsB,GAAK,SAAsB5C,EAAWG,GAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,MAAM,0BAA0B,UAAU,uBAAuB,QAAQ,0BAA0B,SAAS,sBAAsB,gGAAgG,EAAE,SAAS,uBAAuB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,mBAAmB,EAAE,iBAAiBqC,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,wEAAwE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKX,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe5B,EAAK6C,GAA0B,CAAC,SAAsB7C,EAAK8C,GAA8B,CAAC,UAAU,2BAA2B,iBAAiB,GAAK,iBAAiBP,EAAiB,SAAS,sBAAsB,OAAO,YAAY,kBAAkB,GAAK,QAAQ,YAAY,SAAsBvC,EAAKnB,EAAO,CAAC,UAAU,SAAS,UAAU,QAAQ,YAAY,CAAC,UAAU,EAAE,YAAY,GAAK,UAAU,EAAE,UAAU,GAAG,SAAS,EAAK,EAAE,IAAI,GAAG,OAAO,OAAO,YAAY,EAAE,GAAG,YAAY,SAAS,YAAY,QAAQ,EAAE,cAAc,EAAE,YAAY,EAAE,eAAe,GAAM,aAAa,EAAE,WAAW,EAAE,cAAc,CAAC,WAAW,GAAK,UAAU,EAAI,EAAE,MAAM,CAAcmB,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,iBAAiB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,QAAQ,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,qEAAqE,OAAO,gQAAgQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,uEAAuE,OAAO,sQAAsQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,kBAAkB,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,kBAAkB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,mQAAmQ,EAAE,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,gBAAgB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,IAAI,qEAAqE,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,mBAAmB,YAAY,IAAI,WAAW,KAAK,MAAM,WAAW,IAAI,wFAAwF,OAAO,gQAAgQ,EAAE,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,kBAAkB,YAAY,IAAI,WAAW,IAAI,MAAM,aAAa,IAAI,uEAAuE,OAAO,wKAAwK,EAAE,UAAU,eAAe,mBAAmB,SAAS,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,mBAAmB,eAAe,gBAAgB,YAAY,IAAI,WAAW,IAAI,MAAM,YAAY,IAAI,mEAAmE,OAAO,+JAA+J,EAAE,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,aAAa,IAAI,sEAAsE,OAAO,iWAAiW,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAK+C,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,OAAO,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAM,YAAY,IAAI,sEAAsE,OAAO,6bAA6b,EAAE,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBR,EAAiB,SAAS,WAAW,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,oBAAoB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,mrEAAmrE,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,YAAY,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,iBAAiB,KAAK,QAAQ,gBAAgB,IAAI,eAAe,KAAK,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,m0SAAm0S,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKgD,EAAI,CAAC,UAAU,iBAAiB,mBAAmB,2BAA2B,KAAK,QAAQ,gBAAgB,GAAG,eAAe,GAAG,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,gqDAAgqD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,kBAAkB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,spGAAspG,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,mBAAmB,KAAK,QAAQ,gBAAgB,GAAG,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,wzDAAwzD,mBAAmB,EAAI,CAAC,CAAC,CAAC,EAAevC,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,aAAa,iBAAiBqC,EAAiB,SAAS,YAAY,SAAsBvC,EAAKgD,EAAI,CAAC,UAAU,gBAAgB,mBAAmB,aAAa,KAAK,QAAQ,gBAAgB,IAAI,eAAe,IAAI,iBAAiBT,EAAiB,SAAS,YAAY,IAAI,isEAAisE,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAE,MAAM,GAAG,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQU,GAAI,CAAC,kFAAkF,gFAAgF,oRAAoR,mSAAmS,iHAAiH,yGAAyG,sGAAsG,kLAAkL,kLAAkL,kLAAkL,kLAAkL,mLAAmL,gLAAgL,iLAAiL,gLAAgL,gLAAgL,oLAAoL,mLAAmL,sGAAsG,+LAA+L,sGAAsG,6LAA6L,qGAAqG,8LAA8L,qGAAqG,6LAA6L,qGAAqG,6LAA6L,sGAAsG,6LAA6L,+FAA+F,+EAA+E,+DAA+D,uIAAuI,EAW7nvCC,EAAgBC,GAAQvC,GAAUqC,GAAI,cAAc,EAASG,GAAQF,EAAgBA,EAAgB,YAAY,0BAA0BA,EAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,EAAoBH,EAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,UAAU,SAAS,OAAO,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,0EAAqE,gBAAgB,GAAM,MAAM,QAAQ,KAAKA,EAAY,MAAM,CAAC,CAAC,EAAEC,GAASL,EAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGvE,EAAW,EAAE,CAAC,6BAA6B,EAAI,CAAC",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "TickerFonts", "getFonts", "Ticker", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Kt56LYBa_", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "Image2", "SVG", "css", "FramercLj7QAAK5", "withCSS", "cLj7QAAK5_default", "addPropertyControls", "ControlType", "addFonts"]
}
