{"version":3,"file":"Mtq60JnKl.CgMomEDD.mjs","names":["size","Image"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/DAWxXDGdC5RJUOPfOsh5/Ticker.js","https:/framerusercontent.com/modules/n9w9VYjWf3wGZ39Eozbs/q3Bt2XGJlpO51Tj1e3DH/Mtq60JnKl.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}from\"framer-motion\";import{resize}from\"@motionone/dom\";const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};const supportsAcceleratedAnimations=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ export default function Ticker(props){/* Props */ let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */ const isCanvas=RenderTarget.current()===RenderTarget.canvas;const numChildren=Children.count(slots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */ const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/ createRef(),/*#__PURE__*/ createRef()];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */ let clonedChildren=[];let dupedChildren=[];/* Duplicate value */ let duplicateBy=0;let opacity=0;if(isCanvas){// duplicateBy = 10\nduplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;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(()=>{measure();return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){measure();}initialResize.current=false;});},[]);}clonedChildren=Children.map(slots,(child,index)=>{var ref,ref1,ref2,ref3;let ref4;if(index===0){ref4=childrenRef[0];}if(index===slots.length-1){ref4=childrenRef[1];}const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{ref:ref4,style:size,children:/*#__PURE__*/ cloneElement(child,{style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(ref3=child.props)===null||ref3===void 0?void 0:ref3.children)})});});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(slots,(child,childIndex)=>{var ref,ref1,ref2,ref3,ref4,ref5;const size={width:widthType?(ref=child.props)===null||ref===void 0?void 0:ref.width:\"100%\",height:heightType?(ref1=child.props)===null||ref1===void 0?void 0:ref1.height:\"100%\"};return /*#__PURE__*/ _jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/ _jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/ cloneElement(child,{key:i+\" \"+childIndex,style:{...(ref2=child.props)===null||ref2===void 0?void 0:ref2.style,width:widthType?(ref3=child.props)===null||ref3===void 0?void 0:ref3.width:\"100%\",height:heightType?(ref4=child.props)===null||ref4===void 0?void 0:ref4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(ref5=child.props)===null||ref5===void 0?void 0:ref5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}),];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */ if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */ if(supportsAcceleratedAnimations){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue),]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */ useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsAcceleratedAnimations){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */ if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */ const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */ if(!hasChildren){return /*#__PURE__*/ _jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/ _jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/ _jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/ _jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/ _jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/ _jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,transform:supportsAcceleratedAnimations?undefined:transform,willChange:isCanvas?\"auto\":\"transform\"},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){animationRef.current.updatePlaybackRate(hoverFactor);}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){animationRef.current.updatePlaybackRate(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\":{\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (5da54f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,SmartComponentScopedContainer,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/DAWxXDGdC5RJUOPfOsh5/Ticker.js\";const TickerFonts=getFonts(Ticker);const cycleOrder=[\"eeCdWCoVF\",\"YOIaFlRoE\",\"IFs8Gc7Sf\",\"J8COdS2D1\"];const serializationHash=\"framer-ptefK\";const variantClassNames={eeCdWCoVF:\"framer-v-17zf4n0\",IFs8Gc7Sf:\"framer-v-3zwc5\",J8COdS2D1:\"framer-v-19d7r5x\",YOIaFlRoE:\"framer-v-19po932\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,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={\"Save the Date\":\"J8COdS2D1\",All:\"eeCdWCoVF\",Carriers:\"IFs8Gc7Sf\",Platforms:\"YOIaFlRoE\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"eeCdWCoVF\"};};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,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eeCdWCoVF\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"YOIaFlRoE\",\"IFs8Gc7Sf\",\"J8COdS2D1\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"J8COdS2D1\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"IFs8Gc7Sf\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"YOIaFlRoE\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id: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(scopingClassNames,\"framer-17zf4n0\",className,classNames),\"data-border\":true,\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"eeCdWCoVF\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(51, 51, 51, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({IFs8Gc7Sf:{\"data-framer-name\":\"Carriers\"},J8COdS2D1:{\"data-framer-name\":\"Save the Date\"},YOIaFlRoE:{\"data-framer-name\":\"Platforms\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-123lzw2-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"xHrrLLA2_-container\",nodeId:\"xHrrLLA2_\",rendersWithMotion:true,scopeId:\"Mtq60JnKl\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"xHrrLLA2_\",layoutId:\"xHrrLLA2_\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:76,intrinsicWidth:226,pixelHeight:76,pixelWidth:226,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kAoEoS4rF1docVOYnCoH7qeJMH8.png\"},className:\"framer-jatcho\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"YUjA_UkUx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:80,intrinsicWidth:106,pixelHeight:80,pixelWidth:106,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HmSNQJr8BMZPOkehfEZFmZZo.png\"},className:\"framer-z8ueqb\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"kwV70aeo7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:59,intrinsicWidth:239,pixelHeight:59,pixelWidth:239,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iiSDxAVZCR8H8zgUTW6RRsGbwE.png\"},className:\"framer-11ut5mb\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"yJFs41yYP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:308,pixelHeight:60,pixelWidth:308,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/j4xPfsVj6vMktWWnq7VBgZ33ClY.png\"},className:\"framer-1s0qk5g\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"lREwkVE_G\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:252,pixelHeight:32,pixelWidth:252,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mfHghkhRZ5v63wVTsxYzgm3KJg.png\"},className:\"framer-1kvlc28\",\"data-framer-name\":\"Rippling\",layoutDependency:layoutDependency,layoutId:\"ZjlAHcf0Q\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:143.5,pixelHeight:44,pixelWidth:287,src:\"https://framerusercontent.com/images/JzqrfzDFyIWGV0GH95R2ZfeNZdw.png\"},className:\"framer-11w2rrr\",\"data-framer-name\":\"PlanSource_Logo_4C_01_1\",layoutDependency:layoutDependency,layoutId:\"dJpfoSUDm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:96,pixelHeight:44,pixelWidth:192,src:\"https://framerusercontent.com/images/kgVLjUhH8TMtvOc3bWz5ymxGErs.png\"},className:\"framer-3vtbtw\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"g8GGW5rj2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:77.5,pixelHeight:60,pixelWidth:155,src:\"https://framerusercontent.com/images/DuIFXeTiEoRoeCp6hns7BNcvTs.png\"},className:\"framer-11h2qo6\",\"data-framer-name\":\"Gusto_logo_2\",layoutDependency:layoutDependency,layoutId:\"jPHEBftmu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:92.5,pixelHeight:60,pixelWidth:185,src:\"https://framerusercontent.com/images/P553ziwtuzRA26F6tWFO0Cu0Q5I.png\"},className:\"framer-2thaqo\",\"data-framer-name\":\"$2560px_Unum_Group_logo\",layoutDependency:layoutDependency,layoutId:\"UTjfZDnFb\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:113.5,pixelHeight:68,pixelWidth:227,src:\"https://framerusercontent.com/images/qH3g2h5EdA3j5cjbx6hfAoGOI.png\"},className:\"framer-1x8wvve\",\"data-framer-name\":\"Principal_Financial_Group_Logo\",layoutDependency:layoutDependency,layoutId:\"Mm4AX9jdd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:31.5,intrinsicWidth:134.5,pixelHeight:63,pixelWidth:269,src:\"https://framerusercontent.com/images/qRNfiRjOdI55gfIAsw8aZUzOhw.jpg\"},className:\"framer-1e057be\",\"data-framer-name\":\"UbenefitColor\",layoutDependency:layoutDependency,layoutId:\"tAqOLpwpr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:87,intrinsicWidth:381,pixelHeight:174,pixelWidth:762,sizes:\"110px\",src:\"https://framerusercontent.com/images/j6SRAnDOaWNxAz0LeOfHKXu4rVo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j6SRAnDOaWNxAz0LeOfHKXu4rVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/j6SRAnDOaWNxAz0LeOfHKXu4rVo.png 762w\"},className:\"framer-10yzw7a\",\"data-framer-name\":\"Clasp\",layoutDependency:layoutDependency,layoutId:\"qKaR5a8E0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:62,intrinsicWidth:204,pixelHeight:124,pixelWidth:408,src:\"https://framerusercontent.com/images/knRjkq6k0kLSBykLMNbx9YfZU.png\"},className:\"framer-1bn96ee\",\"data-framer-name\":\"Workforcejunction\",layoutDependency:layoutDependency,layoutId:\"TCpVXt0LD\"})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1a3025f-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TeDsEiucg-container\",nodeId:\"TeDsEiucg\",rendersWithMotion:true,scopeId:\"Mtq60JnKl\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"TeDsEiucg\",layoutId:\"TeDsEiucg\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:128,pixelHeight:80,pixelWidth:256,src:\"https://framerusercontent.com/images/pnNnTipjAbbFrJ7gL3KnGPphA.png\"},className:\"framer-1p5olm0\",\"data-framer-name\":\"Sun_Life\",layoutDependency:layoutDependency,layoutId:\"sK2vS5WNs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:128,pixelHeight:80,pixelWidth:256,src:\"https://framerusercontent.com/images/ya7UQfwZBtRFNi49Rx9AMU6BY.png\"},className:\"framer-19j18gm\",\"data-framer-name\":\"Principal\",layoutDependency:layoutDependency,layoutId:\"R5pa_n9sH\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43,intrinsicWidth:297,pixelHeight:86,pixelWidth:594,sizes:\"345.5px\",src:\"https://framerusercontent.com/images/ikimT7DpU55KHp0QfZ7LPvQyf0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/ikimT7DpU55KHp0QfZ7LPvQyf0.png?scale-down-to=512 512w,https://framerusercontent.com/images/ikimT7DpU55KHp0QfZ7LPvQyf0.png 594w\"},className:\"framer-16ijsmb\",\"data-framer-name\":\"image_34\",layoutDependency:layoutDependency,layoutId:\"KxgNLn6Zx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:164.5,intrinsicWidth:423.5,pixelHeight:329,pixelWidth:847,sizes:\"128.5px\",src:\"https://framerusercontent.com/images/azgJbFdXMKzrCNW2nnidLDZBLZU.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/azgJbFdXMKzrCNW2nnidLDZBLZU.png?scale-down-to=512 512w,https://framerusercontent.com/images/azgJbFdXMKzrCNW2nnidLDZBLZU.png 847w\"},className:\"framer-agkxex\",\"data-framer-name\":\"image_32\",layoutDependency:layoutDependency,layoutId:\"wKHAgcqpX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:106,intrinsicWidth:334,pixelHeight:212,pixelWidth:668,sizes:\"157.5px\",src:\"https://framerusercontent.com/images/S16VItiaCB1GZsbuOYIODMD34.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/S16VItiaCB1GZsbuOYIODMD34.png?scale-down-to=512 512w,https://framerusercontent.com/images/S16VItiaCB1GZsbuOYIODMD34.png 668w\"},className:\"framer-1czb1mr\",\"data-framer-name\":\"image_31\",layoutDependency:layoutDependency,layoutId:\"fv58lDCJc\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:89,intrinsicWidth:246.5,pixelHeight:178,pixelWidth:493,src:\"https://framerusercontent.com/images/Vy3OIbN5qbGcvl1twXcu4Q1ylzw.png\"},className:\"framer-13gzph0\",\"data-framer-name\":\"image_30\",layoutDependency:layoutDependency,layoutId:\"mQOq46igz\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:116,intrinsicWidth:400,pixelHeight:232,pixelWidth:800,sizes:\"138px\",src:\"https://framerusercontent.com/images/geZGUFtHQZ5pJp2fOVuwS32D0wc.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/geZGUFtHQZ5pJp2fOVuwS32D0wc.png?scale-down-to=512 512w,https://framerusercontent.com/images/geZGUFtHQZ5pJp2fOVuwS32D0wc.png 800w\"},className:\"framer-dk602e\",\"data-framer-name\":\"image_29\",layoutDependency:layoutDependency,layoutId:\"FqrJgnWZX\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:117,intrinsicWidth:148,pixelHeight:234,pixelWidth:296,src:\"https://framerusercontent.com/images/4OpIgLWQSZyPs41V04BABHMfFA.png\"},className:\"framer-lprd7i\",\"data-framer-name\":\"image_28\",layoutDependency:layoutDependency,layoutId:\"V6F0JtXJ3\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:78,intrinsicWidth:138.5,pixelHeight:156,pixelWidth:277,src:\"https://framerusercontent.com/images/eoBYnRGosfDFkU5bjyD29kno60o.png\"},className:\"framer-19dw2dg\",\"data-framer-name\":\"image_27\",layoutDependency:layoutDependency,layoutId:\"ddalXdsit\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:67,intrinsicWidth:150,pixelHeight:134,pixelWidth:300,src:\"https://framerusercontent.com/images/5P7OyWCVZxl9Xd5L2I6g4LeHdA.png\"},className:\"framer-3706l8\",\"data-framer-name\":\"image_26\",layoutDependency:layoutDependency,layoutId:\"XWD8T70Ul\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:128,pixelHeight:80,pixelWidth:256,src:\"https://framerusercontent.com/images/pnNnTipjAbbFrJ7gL3KnGPphA.png\"},className:\"framer-1p5olm0\",\"data-framer-name\":\"Sun_Life\",layoutDependency:layoutDependency,layoutId:\"sK2vS5WNs\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:43.5,intrinsicWidth:287.5,pixelHeight:87,pixelWidth:575,sizes:\"198.5px\",src:\"https://framerusercontent.com/images/9S3JcYSdwcQmuppEffysC38Wys0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/9S3JcYSdwcQmuppEffysC38Wys0.png?scale-down-to=512 512w,https://framerusercontent.com/images/9S3JcYSdwcQmuppEffysC38Wys0.png 575w\"},className:\"framer-ia5xge\",\"data-framer-name\":\"Group\",layoutDependency:layoutDependency,layoutId:\"mIcW6arDT\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:128,pixelHeight:80,pixelWidth:256,src:\"https://framerusercontent.com/images/ystdv8ZfqGSiyNz3OQqhwJ68o.png\"},className:\"framer-3owyo7\",\"data-framer-name\":\"Ameritas\",layoutDependency:layoutDependency,layoutId:\"c42ml0dPV\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:40,intrinsicWidth:128,pixelHeight:80,pixelWidth:256,src:\"https://framerusercontent.com/images/kmbzmkLRCm8vuQgqFN00vsDI4w.png\"},className:\"framer-mxgtgw\",\"data-framer-name\":\"Guardian\",layoutDependency:layoutDependency,layoutId:\"QRY5_SqiN\"})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1c8o5at-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"ZV146xnwB-container\",nodeId:\"ZV146xnwB\",rendersWithMotion:true,scopeId:\"Mtq60JnKl\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:72,height:\"100%\",hoverFactor:1,id:\"ZV146xnwB\",layoutId:\"ZV146xnwB\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:76,intrinsicWidth:226,pixelHeight:76,pixelWidth:226,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kAoEoS4rF1docVOYnCoH7qeJMH8.png\"},className:\"framer-jatcho\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"YUjA_UkUx\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:60,intrinsicWidth:308,pixelHeight:60,pixelWidth:308,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/j4xPfsVj6vMktWWnq7VBgZ33ClY.png\"},className:\"framer-1s0qk5g\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"lREwkVE_G\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:59,intrinsicWidth:239,pixelHeight:59,pixelWidth:239,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iiSDxAVZCR8H8zgUTW6RRsGbwE.png\"},className:\"framer-11ut5mb\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"yJFs41yYP\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:80,intrinsicWidth:106,pixelHeight:80,pixelWidth:106,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HmSNQJr8BMZPOkehfEZFmZZo.png\"},className:\"framer-z8ueqb\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"kwV70aeo7\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:34,intrinsicWidth:113.5,pixelHeight:68,pixelWidth:227,src:\"https://framerusercontent.com/images/qH3g2h5EdA3j5cjbx6hfAoGOI.png\"},className:\"framer-1x8wvve\",\"data-framer-name\":\"Principal_Financial_Group_Logo\",layoutDependency:layoutDependency,layoutId:\"Mm4AX9jdd\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:92.5,pixelHeight:60,pixelWidth:185,src:\"https://framerusercontent.com/images/P553ziwtuzRA26F6tWFO0Cu0Q5I.png\"},className:\"framer-2thaqo\",\"data-framer-name\":\"$2560px_Unum_Group_logo\",layoutDependency:layoutDependency,layoutId:\"UTjfZDnFb\"})],speed:15,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-m8nq7p-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"Izys5VIGd-container\",nodeId:\"Izys5VIGd\",rendersWithMotion:true,scopeId:\"Mtq60JnKl\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:48,height:\"100%\",hoverFactor:1,id:\"Izys5VIGd\",layoutId:\"Izys5VIGd\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:32,intrinsicWidth:252,pixelHeight:32,pixelWidth:252,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/mfHghkhRZ5v63wVTsxYzgm3KJg.png\"},className:\"framer-1kvlc28\",\"data-framer-name\":\"Rippling\",layoutDependency:layoutDependency,layoutId:\"ZjlAHcf0Q\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:30,intrinsicWidth:77.5,pixelHeight:60,pixelWidth:155,src:\"https://framerusercontent.com/images/DuIFXeTiEoRoeCp6hns7BNcvTs.png\"},className:\"framer-11h2qo6\",\"data-framer-name\":\"Gusto_logo_2\",layoutDependency:layoutDependency,layoutId:\"jPHEBftmu\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:87,intrinsicWidth:381,pixelHeight:174,pixelWidth:762,sizes:\"110px\",src:\"https://framerusercontent.com/images/j6SRAnDOaWNxAz0LeOfHKXu4rVo.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/j6SRAnDOaWNxAz0LeOfHKXu4rVo.png?scale-down-to=512 512w,https://framerusercontent.com/images/j6SRAnDOaWNxAz0LeOfHKXu4rVo.png 762w\"},className:\"framer-10yzw7a\",\"data-framer-name\":\"Clasp\",layoutDependency:layoutDependency,layoutId:\"qKaR5a8E0\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:141,intrinsicWidth:250,pixelHeight:282,pixelWidth:500,src:\"https://framerusercontent.com/images/gfFvyA5NlaPoe6LkA5JgmNNEw0.png\"},className:\"framer-1yp57hp\",\"data-framer-name\":\"deel\",layoutDependency:layoutDependency,layoutId:\"y4v8fLjTi\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:143.5,pixelHeight:44,pixelWidth:287,src:\"https://framerusercontent.com/images/JzqrfzDFyIWGV0GH95R2ZfeNZdw.png\"},className:\"framer-11w2rrr\",\"data-framer-name\":\"PlanSource_Logo_4C_01_1\",layoutDependency:layoutDependency,layoutId:\"dJpfoSUDm\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:22,intrinsicWidth:96,pixelHeight:44,pixelWidth:192,src:\"https://framerusercontent.com/images/kgVLjUhH8TMtvOc3bWz5ymxGErs.png\"},className:\"framer-3vtbtw\",\"data-framer-name\":\"Vector\",layoutDependency:layoutDependency,layoutId:\"g8GGW5rj2\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:31.5,intrinsicWidth:134.5,pixelHeight:63,pixelWidth:269,src:\"https://framerusercontent.com/images/qRNfiRjOdI55gfIAsw8aZUzOhw.jpg\"},className:\"framer-1e057be\",\"data-framer-name\":\"UbenefitColor\",layoutDependency:layoutDependency,layoutId:\"tAqOLpwpr\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/a6zYbk0F1kVDbH9hkLTG64W1qDs.jpeg\"},className:\"framer-1s0u5k1\",\"data-framer-name\":\"Trionfo solutions_logo\",layoutDependency:layoutDependency,layoutId:\"KOMLBMx0o\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:100,pixelHeight:200,pixelWidth:200,src:\"https://framerusercontent.com/images/4nLEYpy43sDgewJ0aiKq0V9rSw.jpeg\"},className:\"framer-1hhi1uc\",\"data-framer-name\":\"benefix\",layoutDependency:layoutDependency,layoutId:\"wlrSCWxLY\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-18dndbr\",layoutDependency:layoutDependency,layoutId:\"mmV0M5F3X\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:202.5,intrinsicWidth:385.5,pixelHeight:405,pixelWidth:771,positionX:\"center\",positionY:\"center\",sizes:\"102px\",src:\"https://framerusercontent.com/images/7gGI5eS9cFILFZhjes7j6vuDiXo.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/7gGI5eS9cFILFZhjes7j6vuDiXo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7gGI5eS9cFILFZhjes7j6vuDiXo.jpg 771w\"},className:\"framer-10zn266\",\"data-framer-name\":\"EVERY Logo\",layoutDependency:layoutDependency,layoutId:\"IDKeYHqP3\"})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:100,intrinsicWidth:399,pixelHeight:200,pixelWidth:798,sizes:\"188px\",src:\"https://framerusercontent.com/images/lp3KLME60ipH3yp8fFh3yN05P8A.jpeg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lp3KLME60ipH3yp8fFh3yN05P8A.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/lp3KLME60ipH3yp8fFh3yN05P8A.jpeg 798w\"},className:\"framer-htdm3o\",\"data-framer-name\":\"gowell\",layoutDependency:layoutDependency,layoutId:\"H0yHcD6wy\"})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ptefK.framer-3yjgip, .framer-ptefK .framer-3yjgip { display: block; }\",\".framer-ptefK.framer-17zf4n0 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 150px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-ptefK .framer-123lzw2-container, .framer-ptefK .framer-1a3025f-container, .framer-ptefK .framer-1c8o5at-container, .framer-ptefK .framer-m8nq7p-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-ptefK .framer-jatcho, .framer-ptefK .framer-11ut5mb, .framer-ptefK .framer-1s0qk5g, .framer-ptefK .framer-1kvlc28 { height: 46px; overflow: hidden; position: relative; width: 115px; }\",\".framer-ptefK .framer-z8ueqb { height: 46px; overflow: hidden; position: relative; width: 82px; }\",\".framer-ptefK .framer-11w2rrr { aspect-ratio: 6.5227272727272725 / 1; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 143px; }\",\".framer-ptefK .framer-3vtbtw { aspect-ratio: 4.363636363636363 / 1; height: var(--framer-aspect-ratio-supported, 22px); overflow: visible; position: relative; width: 96px; }\",\".framer-ptefK .framer-11h2qo6 { aspect-ratio: 2.5833333333333335 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 77px; }\",\".framer-ptefK .framer-2thaqo { aspect-ratio: 3.0833333333333335 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 93px; }\",\".framer-ptefK .framer-1x8wvve { aspect-ratio: 3.338235294117647 / 1; height: var(--framer-aspect-ratio-supported, 34px); overflow: visible; position: relative; width: 114px; }\",\".framer-ptefK .framer-1e057be { aspect-ratio: 4.26984126984127 / 1; height: var(--framer-aspect-ratio-supported, 32px); overflow: visible; position: relative; width: 135px; }\",\".framer-ptefK .framer-10yzw7a { aspect-ratio: 4.379310344827586 / 1; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 110px; }\",\".framer-ptefK .framer-1bn96ee { aspect-ratio: 3.2903225806451615 / 1; height: var(--framer-aspect-ratio-supported, 45px); overflow: visible; position: relative; width: 148px; }\",\".framer-ptefK .framer-1p5olm0, .framer-ptefK .framer-19j18gm, .framer-ptefK .framer-3owyo7, .framer-ptefK .framer-mxgtgw { aspect-ratio: 3.2 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 160px; }\",\".framer-ptefK .framer-16ijsmb { aspect-ratio: 6.906976744186046 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 345px; }\",\".framer-ptefK .framer-agkxex { aspect-ratio: 2.574468085106383 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 129px; }\",\".framer-ptefK .framer-1czb1mr { aspect-ratio: 3.150943396226415 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 158px; }\",\".framer-ptefK .framer-13gzph0 { aspect-ratio: 2.769662921348315 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 138px; }\",\".framer-ptefK .framer-dk602e { aspect-ratio: 3.4482758620689653 / 1; height: var(--framer-aspect-ratio-supported, 40px); overflow: visible; position: relative; width: 138px; }\",\".framer-ptefK .framer-lprd7i { aspect-ratio: 1.264957264957265 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 63px; }\",\".framer-ptefK .framer-19dw2dg { aspect-ratio: 1.7756410256410255 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 89px; }\",\".framer-ptefK .framer-3706l8 { aspect-ratio: 2.2388059701492535 / 1; height: var(--framer-aspect-ratio-supported, 50px); overflow: visible; position: relative; width: 112px; }\",\".framer-ptefK .framer-ia5xge { aspect-ratio: 6.609195402298851 / 1; height: var(--framer-aspect-ratio-supported, 30px); overflow: visible; position: relative; width: 198px; }\",\".framer-ptefK .framer-1yp57hp { aspect-ratio: 1.7730496453900708 / 1; height: var(--framer-aspect-ratio-supported, 43px); overflow: visible; position: relative; width: 76px; }\",\".framer-ptefK .framer-1s0u5k1, .framer-ptefK .framer-1hhi1uc { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 100px); overflow: visible; position: relative; width: 100px; }\",\".framer-ptefK .framer-18dndbr { height: 47px; overflow: hidden; position: relative; width: 102px; }\",\".framer-ptefK .framer-10zn266 { aspect-ratio: 1.9037037037037037 / 1; bottom: -8px; flex: none; height: var(--framer-aspect-ratio-supported, 54px); left: 0px; overflow: visible; position: absolute; right: 0px; }\",\".framer-ptefK .framer-htdm3o { aspect-ratio: 3.99 / 1; height: var(--framer-aspect-ratio-supported, 47px); overflow: visible; position: relative; width: 188px; }\",\".framer-ptefK.framer-v-3zwc5.framer-17zf4n0 { height: min-content; }\",'.framer-ptefK[data-border=\"true\"]::after, .framer-ptefK [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 150\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YOIaFlRoE\":{\"layout\":[\"fixed\",\"fixed\"]},\"IFs8Gc7Sf\":{\"layout\":[\"fixed\",\"auto\"]},\"J8COdS2D1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerMtq60JnKl=withCSS(Component,css,\"framer-ptefK\");export default FramerMtq60JnKl;FramerMtq60JnKl.displayName=\"Logos\";FramerMtq60JnKl.defaultProps={height:150,width:1200};addPropertyControls(FramerMtq60JnKl,{variant:{options:[\"eeCdWCoVF\",\"YOIaFlRoE\",\"IFs8Gc7Sf\",\"J8COdS2D1\"],optionTitles:[\"All\",\"Platforms\",\"Carriers\",\"Save the Date\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerMtq60JnKl,[{explicitInter:true,fonts:[]},...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerMtq60JnKl\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YOIaFlRoE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"IFs8Gc7Sf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"J8COdS2D1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"150\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Mtq60JnKl.map"],"mappings":"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"}