{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js", "ssg:https://framerusercontent.com/modules/4jISrFIIALxAJ9BqCc9p/fG6PXkff14ikvWiauoYc/Kyo4w7WhU.js", "ssg:https://framerusercontent.com/modules/553txyZ2AiiU3qVPUhDP/rpeZRkteBKVtJlzywbDc/Lr5OYEubM.js", "ssg:https://framerusercontent.com/modules/tDvosEMaLAldaXRnjcBv/vcUHQAIPhdJprvSlTffo/X0kvphtgF.js", "ssg:https://framerusercontent.com/modules/6KCO18SgK5GixbFSMnQX/QnHOcyZwSgYEepOJovs9/H6nBQz1GT.js", "ssg:https://framerusercontent.com/modules/y9wFJK4VukQ0yVbl0RGF/dttOR5Gbe29cYYqkcSk8/yrlz_PiMn.js", "ssg:https://framerusercontent.com/modules/94HqK8E0HgNmUHga8ch8/9ejea5LQpSjKiyptNSf2/svTr9mRwG.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 (ed8225c)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/soIAPuIiPtf4z0IwVYlq/SlideShow.js\";import QuoteCard from\"https://framerusercontent.com/modules/8kPeEHF5n1tfj7vpHmJY/cZRgDYV0uDZLtwL9XQ5m/pRHNxfQNC.js\";const QuoteCardFonts=getFonts(QuoteCard);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"QIrHpWwWN\",\"rFK6yPrgM\",\"pIsHwGVOl\"];const serializationHash=\"framer-Ffpaa\";const variantClassNames={pIsHwGVOl:\"framer-v-o3tfni\",QIrHpWwWN:\"framer-v-rau8jj\",rFK6yPrgM:\"framer-v-100rfik\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Default:\"QIrHpWwWN\",Mobile:\"pIsHwGVOl\",Tablet:\"rFK6yPrgM\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"QIrHpWwWN\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"QIrHpWwWN\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-rau8jj\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"QIrHpWwWN\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({pIsHwGVOl:{\"data-framer-name\":\"Mobile\"},rFK6yPrgM:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-xl1qrj\",\"data-framer-name\":\"Wrap\",layoutDependency:layoutDependency,layoutId:\"l79rXMjzu\",style:{backgroundColor:\"rgb(252, 252, 252)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 60px 60px 0px rgba(75, 85, 114, 0.03999999910593033), 0px 0px 2px 0px rgba(0, 0, 0, 0.07999999821186066)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-hmlt8u-container\",layoutDependency:layoutDependency,layoutId:\"DKal9Uzgq-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgb(238, 240, 245)\",arrowGap:0,arrowPadding:24,arrowPaddingBottom:-64,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,leftArrow:\"https://framerusercontent.com/images/Vs9Y3b857iiEBnlQil7D5oVS9a0.svg\",rightArrow:\"https://framerusercontent.com/images/aU93LteWlh54zJnxfhzFBfC5o.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:0,height:\"100%\",id:\"DKal9Uzgq\",intervalControl:1.5,itemAmount:3,layoutId:\"DKal9Uzgq\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgb(234, 236, 242)\",dotsBlur:0,dotsFill:\"rgb(120, 124, 145)\",dotsGap:4,dotsInset:-40,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:309,width:\"455px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wlygaw-container\",layoutDependency:layoutDependency,layoutId:\"Sn4t6ji3V-container\",children:/*#__PURE__*/_jsx(QuoteCard,{height:\"100%\",id:\"Sn4t6ji3V\",layoutId:\"Sn4t6ji3V\",mslPTRqfj:\"Leigh Buchanan\",qz3WbLCQ4:\"Editor, Inc. Magazine\",style:{height:\"100%\",width:\"100%\"},UR45aeigA:\"Parade's Al-powered platform eases the frenzied job of matching available trucks with freight that's ready for hauling.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:309,width:\"455px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6epg2z-container\",layoutDependency:layoutDependency,layoutId:\"AAp6RCSx3-container\",children:/*#__PURE__*/_jsx(QuoteCard,{height:\"100%\",id:\"AAp6RCSx3\",layoutId:\"AAp6RCSx3\",mslPTRqfj:\"Alex Mauer\",qz3WbLCQ4:\"VP Operations, Merge Freight\",style:{height:\"100%\",width:\"100%\"},UR45aeigA:\"Parade has given us the runway to book an infinite amount of orders.\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:309,width:\"455px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15yxlcl-container\",layoutDependency:layoutDependency,layoutId:\"eUAX1HKtG-container\",children:/*#__PURE__*/_jsx(QuoteCard,{height:\"100%\",id:\"eUAX1HKtG\",layoutId:\"eUAX1HKtG\",mslPTRqfj:\"Lindsay Watt\",qz3WbLCQ4:\"Head of Product, Parade\",style:{height:\"100%\",width:\"100%\"},UR45aeigA:\"Digital bookings require a new type of technology\u2014one that helps manage and execute on capacity relationships to grow your business.\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({pIsHwGVOl:{arrowOptions:{arrowFill:\"rgb(238, 240, 245)\",arrowGap:0,arrowPadding:8,arrowPaddingBottom:-64,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"auto\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowSize:30,leftArrow:\"https://framerusercontent.com/images/Vs9Y3b857iiEBnlQil7D5oVS9a0.svg\",rightArrow:\"https://framerusercontent.com/images/aU93LteWlh54zJnxfhzFBfC5o.svg\",showMouseControls:true},itemAmount:1},rFK6yPrgM:{itemAmount:2}},baseVariant,gestureVariant)})})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ffpaa.framer-12jhq1o, .framer-Ffpaa .framer-12jhq1o { display: block; }\",\".framer-Ffpaa.framer-rau8jj { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1104px; }\",\".framer-Ffpaa .framer-xl1qrj { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 350px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Ffpaa .framer-hmlt8u-container { flex: none; height: 350px; position: relative; width: 102%; }\",\".framer-Ffpaa .framer-1wlygaw-container, .framer-Ffpaa .framer-6epg2z-container, .framer-Ffpaa .framer-15yxlcl-container { height: 309px; position: relative; width: 455px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ffpaa.framer-rau8jj, .framer-Ffpaa .framer-xl1qrj { gap: 0px; } .framer-Ffpaa.framer-rau8jj > *, .framer-Ffpaa .framer-xl1qrj > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-Ffpaa.framer-rau8jj > :first-child, .framer-Ffpaa .framer-xl1qrj > :first-child { margin-left: 0px; } .framer-Ffpaa.framer-rau8jj > :last-child, .framer-Ffpaa .framer-xl1qrj > :last-child { margin-right: 0px; } }\",\".framer-Ffpaa.framer-v-100rfik.framer-rau8jj { width: 810px; }\",\".framer-Ffpaa.framer-v-o3tfni.framer-rau8jj { width: 410px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 1104\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"rFK6yPrgM\":{\"layout\":[\"fixed\",\"auto\"]},\"pIsHwGVOl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerKyo4w7WhU=withCSS(Component,css,\"framer-Ffpaa\");export default FramerKyo4w7WhU;FramerKyo4w7WhU.displayName=\"Quote Ticker\";FramerKyo4w7WhU.defaultProps={height:350,width:1104};addPropertyControls(FramerKyo4w7WhU,{variant:{options:[\"QIrHpWwWN\",\"rFK6yPrgM\",\"pIsHwGVOl\"],optionTitles:[\"Default\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKyo4w7WhU,[{explicitInter:true,fonts:[]},...QuoteCardFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKyo4w7WhU\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rFK6yPrgM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pIsHwGVOl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1104\",\"framerIntrinsicHeight\":\"350\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Kyo4w7WhU.map", "// Generated by Framer (400c93f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/1cUjilcR6kTxl3XnjREq/86YzsB3K73AOBPBLMPMq/hJ12E5MFl.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/pPXAdGdPm41MRtus414c/zpk3FztdW2GJRY52Frpr/XU1ywM8yL.js\";import Button from\"https://framerusercontent.com/modules/x2Xu7tHXVQMRCnhW5aul/vHNEJgEaQRHoOIRyQB6D/e4cLY_3Uc.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"Oc5w8Cwft\",\"f_CEGH6VI\",\"IsMyI9yG5\"];const serializationHash=\"framer-ZBeVK\";const variantClassNames={f_CEGH6VI:\"framer-v-16mgpqb\",IsMyI9yG5:\"framer-v-f5khp1\",Oc5w8Cwft:\"framer-v-178h4vq\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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={\"Border None\":\"f_CEGH6VI\",Bordered:\"IsMyI9yG5\",Default:\"Oc5w8Cwft\"};const getProps=({cardImage,description,height,id,link,title,title2,visible,width,...props})=>{return{...props,aiRt2N4lW:cardImage??props.aiRt2N4lW??{src:\"https://framerusercontent.com/images/Ef2MUmvdDRULHhMlN3KJHcNvMBQ.png\"},BbkejfJVC:link??props.BbkejfJVC,H5Kww_wZP:visible??props.H5Kww_wZP??true,OH12IkuxY:title??props.OH12IkuxY??\"We Integrate with Your Tech Stack\",RjKwgYMss:description??props.RjKwgYMss??\"Integrate seamlessly with your TMS, compliance, load partners & more\",uXr8Zfg2t:title2??props.uXr8Zfg2t??\"We Integrate with Your Tech Stack\",variant:humanReadableVariantMap[props.variant]??props.variant??\"Oc5w8Cwft\"};};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,aiRt2N4lW,OH12IkuxY,RjKwgYMss,BbkejfJVC,uXr8Zfg2t,H5Kww_wZP,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Oc5w8Cwft\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-178h4vq\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"Oc5w8Cwft\",ref:refBinding,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(215, 219, 229, 0.5)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"var(--token-bee8e985-7b62-4d0f-a485-b7817fd6d038, rgb(255, 255, 255))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,...style},variants:{f_CEGH6VI:{\"--border-right-width\":\"0px\"},IsMyI9yG5:{\"--border-bottom-width\":\"1px\",\"--border-left-width\":\"1px\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},...addPropertyOverrides({f_CEGH6VI:{\"data-framer-name\":\"Border None\"},IsMyI9yG5:{\"data-framer-name\":\"Bordered\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:48,intrinsicWidth:48,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||454)-0-578.4+0+0)),pixelHeight:48,pixelWidth:48,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(aiRt2N4lW)},className:\"framer-4zva8s\",\"data-framer-name\":\"Icon Svg\",layoutDependency:layoutDependency,layoutId:\"wjNUI2IrP\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qltwph\",\"data-framer-name\":\"Card Body\",layoutDependency:layoutDependency,layoutId:\"VpJEuUwhR\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m7vfc4\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"tYq9fYsi6\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10e6ein\",\"data-framer-name\":\"Title & Description\",layoutDependency:layoutDependency,layoutId:\"mOoZENfAg\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-166y4tt\",layoutDependency:layoutDependency,layoutId:\"nKWQBJn1g\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-1m8iuuj\",\"data-styles-preset\":\"XU1ywM8yL\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, rgb(0, 0, 0)))\"},children:[\"We Integrate with \",/*#__PURE__*/_jsx(motion.br,{}),\"Your Tech Stack\"]})}),className:\"framer-1tna4wy\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jhGUKd65q\",style:{\"--extracted-r6o4lv\":\"var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, rgb(0, 0, 0))\"},text:OH12IkuxY,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, rgb(0, 0, 0)))\"},children:\"We Integrate with Your Tech Stack\"})}),className:\"framer-42b7dh\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"G6buFh8OX\",style:{\"--extracted-1w1cjl5\":\"var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, rgb(0, 0, 0))\"},text:uXr8Zfg2t,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12a4d21\",\"data-styles-preset\":\"hJ12E5MFl\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-a1a173db-b955-49ea-a0ee-46ac09b979e8, rgba(0, 0, 0, 0.6)))\"},children:\"Integrate seamlessly with your TMS, compliance, load partners & more\"})}),className:\"framer-ai6lx4\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BAQDttGKq\",style:{\"--extracted-r6o4lv\":\"var(--token-a1a173db-b955-49ea-a0ee-46ac09b979e8, rgba(0, 0, 0, 0.6))\"},text:RjKwgYMss,verticalAlignment:\"top\",withExternalLayout:true})]}),H5Kww_wZP&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:(componentViewport?.y||0)+0+((componentViewport?.height||454)-0-578.4+164+10)+0+0+0+308.4,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-gu8mns-container\",layoutDependency:layoutDependency,layoutId:\"M8XIJeRmZ-container\",nodeId:\"M8XIJeRmZ\",rendersWithMotion:true,scopeId:\"Lr5OYEubM\",children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"M8XIJeRmZ\",iibXa8Tj4:BbkejfJVC,layoutId:\"M8XIJeRmZ\",MivtkGQOL:true,PtH_6DQYI:\"Learn More\",QrtTSgtXW:false,variant:\"G1vGfGS4j\",width:\"100%\"})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZBeVK.framer-e79hz7, .framer-ZBeVK .framer-e79hz7 { display: block; }\",\".framer-ZBeVK.framer-178h4vq { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; min-height: 410px; overflow: visible; padding: 0px; position: relative; width: 368px; }\",\".framer-ZBeVK .framer-4zva8s { aspect-ratio: 1.7607655502392345 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 209px); position: relative; width: 100%; }\",\".framer-ZBeVK .framer-1qltwph { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 32px 40px 32px; position: relative; width: 100%; }\",\".framer-ZBeVK .framer-m7vfc4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZBeVK .framer-10e6ein { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZBeVK .framer-166y4tt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-ZBeVK .framer-1tna4wy, .framer-ZBeVK .framer-42b7dh, .framer-ZBeVK .framer-ai6lx4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-ZBeVK .framer-gu8mns-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-ZBeVK.framer-178h4vq, .framer-ZBeVK .framer-1qltwph, .framer-ZBeVK .framer-m7vfc4, .framer-ZBeVK .framer-10e6ein, .framer-ZBeVK .framer-166y4tt { gap: 0px; } .framer-ZBeVK.framer-178h4vq > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-ZBeVK.framer-178h4vq > :first-child, .framer-ZBeVK .framer-1qltwph > :first-child, .framer-ZBeVK .framer-m7vfc4 > :first-child, .framer-ZBeVK .framer-10e6ein > :first-child, .framer-ZBeVK .framer-166y4tt > :first-child { margin-top: 0px; } .framer-ZBeVK.framer-178h4vq > :last-child, .framer-ZBeVK .framer-1qltwph > :last-child, .framer-ZBeVK .framer-m7vfc4 > :last-child, .framer-ZBeVK .framer-10e6ein > :last-child, .framer-ZBeVK .framer-166y4tt > :last-child { margin-bottom: 0px; } .framer-ZBeVK .framer-1qltwph > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-ZBeVK .framer-m7vfc4 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-ZBeVK .framer-10e6ein > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-ZBeVK .framer-166y4tt > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-ZBeVK[data-border=\"true\"]::after, .framer-ZBeVK [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 454\n * @framerIntrinsicWidth 367.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"410px\",null]},\"f_CEGH6VI\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"410px\",null]},\"IsMyI9yG5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"410px\",null]}}}\n * @framerVariables {\"aiRt2N4lW\":\"cardImage\",\"OH12IkuxY\":\"title\",\"RjKwgYMss\":\"description\",\"BbkejfJVC\":\"link\",\"uXr8Zfg2t\":\"title2\",\"H5Kww_wZP\":\"visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerLr5OYEubM=withCSS(Component,css,\"framer-ZBeVK\");export default FramerLr5OYEubM;FramerLr5OYEubM.displayName=\"Cta Card\";FramerLr5OYEubM.defaultProps={height:454,width:367.5};addPropertyControls(FramerLr5OYEubM,{variant:{options:[\"Oc5w8Cwft\",\"f_CEGH6VI\",\"IsMyI9yG5\"],optionTitles:[\"Default\",\"Border None\",\"Bordered\"],title:\"Variant\",type:ControlType.Enum},aiRt2N4lW:{__defaultAssetReference:\"data:framer/asset-reference,Ef2MUmvdDRULHhMlN3KJHcNvMBQ.png?originalFilename=herocardimg1.png&preferredSize=full\",title:\"Card Image\",type:ControlType.ResponsiveImage},OH12IkuxY:{defaultValue:\"We Integrate with Your Tech Stack\",displayTextArea:false,title:\"Title\",type:ControlType.String},RjKwgYMss:{defaultValue:\"Integrate seamlessly with your TMS, compliance, load partners & more\",displayTextArea:true,title:\"Description\",type:ControlType.String},BbkejfJVC:{title:\"Link\",type:ControlType.Link},uXr8Zfg2t:{defaultValue:\"We Integrate with Your Tech Stack\",displayTextArea:true,title:\"Title 2\",type:ControlType.String},H5Kww_wZP:{defaultValue:true,title:\"Visible\",type:ControlType.Boolean}});addFonts(FramerLr5OYEubM,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLr5OYEubM\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"454\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"410px\\\",null]},\\\"f_CEGH6VI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"410px\\\",null]},\\\"IsMyI9yG5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"410px\\\",null]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"aiRt2N4lW\\\":\\\"cardImage\\\",\\\"OH12IkuxY\\\":\\\"title\\\",\\\"RjKwgYMss\\\":\\\"description\\\",\\\"BbkejfJVC\\\":\\\"link\\\",\\\"uXr8Zfg2t\\\":\\\"title2\\\",\\\"H5Kww_wZP\\\":\\\"visible\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"367.5\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Lr5OYEubM.map", "// Generated by Framer (5ac62b5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getFonts,PathVariablesContext,resolveLink,useLocaleCode,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Resources,{enumToDisplayNameFunctions}from\"https://framerusercontent.com/modules/hYa7xem4pJcASgkmwEQG/P5xZiGdd4gEmRpkEaGg3/eLioD_txX.js\";import BlogCard2 from\"https://framerusercontent.com/modules/w8kJR2BKBgv6eSJ91cEZ/7JqgRxHqaHfRnAohGoNM/pT3qjiXBK.js\";const BlogCard2Fonts=getFonts(BlogCard2);const cycleOrder=[\"T9EylcqqW\"];const serializationHash=\"framer-01KJu\";const variantClassNames={T9EylcqqW:\"framer-v-zz6oj\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const dateStyle=options.dateStyle;const timeZone=\"UTC\";try{return date.toLocaleDateString(locale,{dateStyle,timeZone});}catch{return date.toLocaleDateString(fallbackLocale,{dateStyle,timeZone});}};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};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 getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale}=useLocaleInfo();const{style,className,layoutId,variant,aRsDZYt0IMKYn7FLEG,z73Iw8W3BMKYn7FLEG,Q6qNtccZdMKYn7FLEG,MJoGirltkMKYn7FLEG,ijli88ei6MKYn7FLEG,LXPPb0mj_MKYn7FLEG,idMKYn7FLEG,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"T9EylcqqW\",transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const activeLocaleCode=useLocaleCode();const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(motion.div,{initial:variant,animate:variants,onHoverStart:()=>setGestureState({isHovered:true}),onHoverEnd:()=>setGestureState({isHovered:false}),onTapStart:()=>setGestureState({isPressed:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),className:cx(\"framer-01KJu\",...sharedStyleClassNames,classNames),style:{display:\"contents\"},children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(\"framer-zz6oj\",className),\"data-framer-name\":\"All\",layoutDependency:layoutDependency,layoutId:\"T9EylcqqW\",ref:ref??ref1,style:{...style},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c8oruq\",layoutDependency:layoutDependency,layoutId:\"MKYn7FLEG\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Resources,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{name:\"aRsDZYt0I\",type:\"Identifier\"},{name:\"z73Iw8W3B\",type:\"Identifier\"},{name:\"Q6qNtccZd\",type:\"Identifier\"},{name:\"MJoGirltk\",type:\"Identifier\"},{name:\"ijli88ei6\",type:\"Identifier\"},{name:\"LXPPb0mj_\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{name:\"MJoGirltk\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:\"\"},type:\"BinaryOperation\"}}},children:collection=>collection.map(({aRsDZYt0I:aRsDZYt0IMKYn7FLEG,z73Iw8W3B:z73Iw8W3BMKYn7FLEG,Q6qNtccZd:Q6qNtccZdMKYn7FLEG,MJoGirltk:MJoGirltkMKYn7FLEG,ijli88ei6:ijli88ei6MKYn7FLEG,LXPPb0mj_:LXPPb0mj_MKYn7FLEG,id:idMKYn7FLEG},i)=>/*#__PURE__*/_jsx(LayoutGroup,{id:`MKYn7FLEG-${idMKYn7FLEG}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{LXPPb0mj_:LXPPb0mj_MKYn7FLEG},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-15vnp0c-container\",layoutDependency:layoutDependency,layoutId:\"wmOdiqlEt-container\",children:/*#__PURE__*/_jsx(BlogCard2,{bNL7anRWP:z73Iw8W3BMKYn7FLEG,height:\"100%\",id:\"wmOdiqlEt\",ipocCe3AZ:true,layoutId:\"wmOdiqlEt\",Mwrm3OJun:toResponsiveImage(aRsDZYt0IMKYn7FLEG),style:{height:\"100%\",width:\"100%\"},Uia9eTmdb:resolveLink({pathVariables:{LXPPb0mj_:LXPPb0mj_MKYn7FLEG},webPageId:\"vFuYFEFSn\"},router),VxNxCbTnq:enumToDisplayNameFunctions[\"ijli88ei6\"]?.(ijli88ei6MKYn7FLEG,activeLocale),width:\"100%\",Xib6QUkXN:Q6qNtccZdMKYn7FLEG,zeWSPGXyY:toDateString(MJoGirltkMKYn7FLEG,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode)})})})},idMKYn7FLEG))})})})})})});});const css=['.framer-01KJu [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; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-01KJu .framer-438pas { display: block; }\",\".framer-01KJu .framer-zz6oj { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1104px; }\",\".framer-01KJu .framer-1c8oruq { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); height: min-content; justify-content: center; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-01KJu .framer-15vnp0c-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-01KJu .framer-zz6oj { gap: 0px; } .framer-01KJu .framer-zz6oj > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-01KJu .framer-zz6oj > :first-child { margin-top: 0px; } .framer-01KJu .framer-zz6oj > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 415\n * @framerIntrinsicWidth 1104\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n */const FramerX0kvphtgF=withCSS(Component,css,\"framer-01KJu\");export default FramerX0kvphtgF;FramerX0kvphtgF.displayName=\"Blog Component Homepage\";FramerX0kvphtgF.defaultProps={height:415,width:1104};addFonts(FramerX0kvphtgF,[...BlogCard2Fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerX0kvphtgF\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"415\",\"framerIntrinsicWidth\":\"1104\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as r}from\"framer\";r.loadWebFontsFromSelectors([\"GF;Inter-regular\",\"GF;Inter-700\"]);export const fonts=[{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/H6nBQz1GT:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf\",weight:\"400\"},{family:\"Inter\",moduleAsset:{localModuleIdentifier:\"local-module:css/H6nBQz1GT:default\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\"},style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf\",weight:\"700\"}];export const css=['.framer-r5NcW .framer-styles-preset-m8xugo:not(.rich-text-wrapper), .framer-r5NcW .framer-styles-preset-m8xugo.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.2px; --framer-line-height: 32px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-r5NcW .framer-styles-preset-m8xugo:not(.rich-text-wrapper), .framer-r5NcW .framer-styles-preset-m8xugo.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.2px; --framer-line-height: 22px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-r5NcW .framer-styles-preset-m8xugo:not(.rich-text-wrapper), .framer-r5NcW .framer-styles-preset-m8xugo.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: -0.2px; --framer-line-height: 24px; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-r5NcW\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore as e}from\"framer\";e.loadWebFontsFromSelectors([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[];export const css=['.framer-1f3uG .framer-styles-preset-1fekpbj:not(.rich-text-wrapper), .framer-1f3uG .framer-styles-preset-1fekpbj.rich-text-wrapper h1 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 72px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -3.8px; --framer-line-height: 68px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, #000000); --framer-text-decoration: none; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-1f3uG .framer-styles-preset-1fekpbj:not(.rich-text-wrapper), .framer-1f3uG .framer-styles-preset-1fekpbj.rich-text-wrapper h1 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 58px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -3.8px; --framer-line-height: 68px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-1f3uG .framer-styles-preset-1fekpbj:not(.rich-text-wrapper), .framer-1f3uG .framer-styles-preset-1fekpbj.rich-text-wrapper h1 { --framer-font-family: \"Inter-Medium\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter-Bold\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter-BoldItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter-MediumItalic\", \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 46px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -3.8px; --framer-line-height: 56px; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-bc6d593c-fe0e-4769-bae0-e8fe0e2968cf, #000000); --framer-text-decoration: none; --framer-text-transform: none; } }'];export const className=\"framer-1f3uG\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c105afa)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/XVUmpmPn1EPL0dzocT35/Ticker.js\";import SectionTitle from\"#framer/local/canvasComponent/CzWhLJhhB/CzWhLJhhB.js\";import Button from\"#framer/local/canvasComponent/e4cLY_3Uc/e4cLY_3Uc.js\";import Header from\"#framer/local/canvasComponent/gXVPwU53P/gXVPwU53P.js\";import BGLines from\"#framer/local/canvasComponent/kaiTVKiR3/kaiTVKiR3.js\";import StatsIntegration from\"#framer/local/canvasComponent/ku8l9d_5I/ku8l9d_5I.js\";import QuoteTicker from\"#framer/local/canvasComponent/Kyo4w7WhU/Kyo4w7WhU.js\";import CtaCard from\"#framer/local/canvasComponent/Lr5OYEubM/Lr5OYEubM.js\";import Brand from\"#framer/local/canvasComponent/N5ihzPwBB/N5ihzPwBB.js\";import Alert from\"#framer/local/canvasComponent/ONt3ECiQY/ONt3ECiQY.js\";import Footer from\"#framer/local/canvasComponent/uWBBIPwQe/uWBBIPwQe.js\";import HeaderBGColorEffect from\"#framer/local/canvasComponent/vVtWap7YY/vVtWap7YY.js\";import BlogComponentHomepage from\"#framer/local/canvasComponent/X0kvphtgF/X0kvphtgF.js\";import StatsWidget from\"#framer/local/canvasComponent/ypZQ6tf1U/ypZQ6tf1U.js\";import*as sharedStyle2 from\"#framer/local/css/H6nBQz1GT/H6nBQz1GT.js\";import*as sharedStyle4 from\"#framer/local/css/hJ12E5MFl/hJ12E5MFl.js\";import*as sharedStyle3 from\"#framer/local/css/Md4OVPW6A/Md4OVPW6A.js\";import*as sharedStyle1 from\"#framer/local/css/QvT9JXi82/QvT9JXi82.js\";import*as sharedStyle from\"#framer/local/css/yrlz_PiMn/yrlz_PiMn.js\";import metadataProvider from\"#framer/local/webPageMetadata/svTr9mRwG/svTr9mRwG.js\";const AlertFonts=getFonts(Alert);const HeaderBGColorEffectFonts=getFonts(HeaderBGColorEffect);const BGLinesFonts=getFonts(BGLines);const HeaderFonts=getFonts(Header);const CtaCardFonts=getFonts(CtaCard);const SectionTitleFonts=getFonts(SectionTitle);const StatsWidgetFonts=getFonts(StatsWidget);const BrandFonts=getFonts(Brand);const TickerFonts=getFonts(Ticker);const ButtonFonts=getFonts(Button);const StatsIntegrationFonts=getFonts(StatsIntegration);const QuoteTickerFonts=getFonts(QuoteTicker);const BlogComponentHomepageFonts=getFonts(BlogComponentHomepage);const FooterFonts=getFonts(Footer);const breakpoints={n7pp02suE:\"(max-width: 809px)\",OQFceudrM:\"(min-width: 810px) and (max-width: 1199px)\",TmACjK2rp:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-PBusZ\";const variantClassNames={n7pp02suE:\"framer-v-1y3upb2\",OQFceudrM:\"framer-v-14e7nlc\",TmACjK2rp:\"framer-v-pyu780\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"TmACjK2rp\",Phone:\"n7pp02suE\",Tablet:\"OQFceudrM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TmACjK2rp\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"r5ehnNOi1\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"n7pp02suE\")return false;return true;};const elementId1=useRouteElementId(\"skQbomshB\");const router=useRouter();const ref2=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"TmACjK2rp\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-fffeae6c-6f1d-4170-8157-d3b8b89c0cff, rgb(251, 252, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-pyu780\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:52,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-rk1rc1-container\",id:elementId,nodeId:\"r5ehnNOi1\",ref:ref1,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"vaY7QWREM\"},OQFceudrM:{variant:\"vaY7QWREM\"}},children:/*#__PURE__*/_jsx(Alert,{height:\"100%\",id:\"r5ehnNOi1\",layoutId:\"r5ehnNOi1\",style:{width:\"100%\"},variant:\"DEINYsVfe\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jtx3tq-container\",nodeId:\"YCfyWi1MZ\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(HeaderBGColorEffect,{height:\"100%\",id:\"YCfyWi1MZ\",layoutId:\"YCfyWi1MZ\",style:{height:\"100%\",width:\"100%\"},variant:\"iqehQ93Rc\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1v1prz6-container hidden-1y3upb2\",nodeId:\"HnaLNH4Ls\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(BGLines,{height:\"100%\",id:\"HnaLNH4Ls\",layoutId:\"HnaLNH4Ls\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"JzhchWlKg\"},implicitPathVariables:undefined},{href:{webPageId:\"JzhchWlKg\"},implicitPathVariables:undefined},{href:{webPageId:\"JzhchWlKg\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:78,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xpljd1-container\",id:elementId1,nodeId:\"skQbomshB\",ref:ref2,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{DUNh2_g4m:resolvedLinks[2],variant:\"zbwRA79vu\"},OQFceudrM:{DUNh2_g4m:resolvedLinks[1],variant:\"zbwRA79vu\"}},children:/*#__PURE__*/_jsx(Header,{DUNh2_g4m:resolvedLinks[0],height:\"100%\",id:\"skQbomshB\",layoutId:\"skQbomshB\",style:{width:\"100%\"},variant:\"wTd4lUhbq\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1poioau\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13ol0pu\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pwhjmh\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1fekpbj\",\"data-styles-preset\":\"yrlz_PiMn\",style:{\"--framer-text-alignment\":\"center\"},children:\"Parade Platform\"})}),className:\"framer-1ebv9xn\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-l80d9z\",\"data-styles-preset\":\"QvT9JXi82\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Book more freight than ever before.\"})}),className:\"framer-qg20wu\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8xugo\",\"data-styles-preset\":\"H6nBQz1GT\",children:\"Capacity management helps freight brokerages and 3PLs source and reuse carriers, automate bookings, and win more business.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-m8xugo\",\"data-styles-preset\":\"H6nBQz1GT\",children:\"Everything you need to cover more loads in less time, source reliable carriers, build stronger relationships, and price freight confidently.\"})}),className:\"framer-1bwr5fk\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:825,intrinsicWidth:3312,pixelHeight:825,pixelWidth:3312,src:\"https://framerusercontent.com/images/lE4kKO5Cg0gRsJi9PURNEh4pBk.jpg\"},className:\"framer-16sjar0\",\"data-framer-name\":\"Hero Image\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-omo5kf\",\"data-framer-name\":\"Cta Card List\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m5IMSYnrJ\"},implicitPathVariables:undefined},{href:{webPageId:\"m5IMSYnrJ\"},implicitPathVariables:undefined},{href:{webPageId:\"m5IMSYnrJ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:454,children:/*#__PURE__*/_jsx(Container,{className:\"framer-147tnf7-container\",nodeId:\"cMtXgwRqL\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{BbkejfJVC:resolvedLinks1[2],variant:\"IsMyI9yG5\"},OQFceudrM:{BbkejfJVC:resolvedLinks1[1],variant:\"IsMyI9yG5\"}},children:/*#__PURE__*/_jsx(CtaCard,{aiRt2N4lW:addImageAlt({src:\"https://framerusercontent.com/images/jFCEoOTL1RAlpVUTrMEyautOPCE.svg\"},\"\"),BbkejfJVC:resolvedLinks1[0],H5Kww_wZP:true,height:\"100%\",id:\"cMtXgwRqL\",layoutId:\"cMtXgwRqL\",OH12IkuxY:\"CoDriver\",RjKwgYMss:\"CoDriver handles inbound calls and emails from carriers \u2014 qualifying fit, capturing quotes, and syncing structured data into Parade.\\n\",style:{width:\"100%\"},uXr8Zfg2t:\"AI engagement that turns conversations into capacity\",variant:\"Oc5w8Cwft\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:454,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jk7m8k-container\",nodeId:\"AHTgyJURk\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{BbkejfJVC:resolvedLinks2[2],variant:\"IsMyI9yG5\"},OQFceudrM:{BbkejfJVC:resolvedLinks2[1],variant:\"IsMyI9yG5\"}},children:/*#__PURE__*/_jsx(CtaCard,{aiRt2N4lW:addImageAlt({src:\"https://framerusercontent.com/images/mUUJU40grSu4aPkwzI70gIET1w.png\",srcSet:\"https://framerusercontent.com/images/mUUJU40grSu4aPkwzI70gIET1w.png?scale-down-to=512 512w,https://framerusercontent.com/images/mUUJU40grSu4aPkwzI70gIET1w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/mUUJU40grSu4aPkwzI70gIET1w.png 1104w\"},\"\"),BbkejfJVC:resolvedLinks2[0],H5Kww_wZP:true,height:\"100%\",id:\"AHTgyJURk\",layoutId:\"AHTgyJURk\",OH12IkuxY:\"Capacity\",RjKwgYMss:\"Find, reuse, and book the right carriers by tapping into live capacity signals across your network. It\u2019s business intelligence for freight \u2014 built into how your team already works.\\n\",style:{width:\"100%\"},uXr8Zfg2t:\"Smarter workflows powered by real-time carrier data\",variant:\"Oc5w8Cwft\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VUDrX1IHX\"},implicitPathVariables:undefined},{href:{webPageId:\"VUDrX1IHX\"},implicitPathVariables:undefined},{href:{webPageId:\"VUDrX1IHX\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:454,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qq65xu-container\",nodeId:\"nkK1VEb5F\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{BbkejfJVC:resolvedLinks3[2],variant:\"IsMyI9yG5\"},OQFceudrM:{BbkejfJVC:resolvedLinks3[1],variant:\"IsMyI9yG5\"}},children:/*#__PURE__*/_jsx(CtaCard,{aiRt2N4lW:addImageAlt({src:\"https://framerusercontent.com/images/6Mf8urYQxRcOaBlhUPenUIuAbew.png\",srcSet:\"https://framerusercontent.com/images/6Mf8urYQxRcOaBlhUPenUIuAbew.png?scale-down-to=512 512w,https://framerusercontent.com/images/6Mf8urYQxRcOaBlhUPenUIuAbew.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/6Mf8urYQxRcOaBlhUPenUIuAbew.png 1104w\"},\"\"),BbkejfJVC:resolvedLinks3[0],H5Kww_wZP:true,height:\"100%\",id:\"nkK1VEb5F\",layoutId:\"nkK1VEb5F\",OH12IkuxY:\"Advantage\",RjKwgYMss:\"Generate pricing that reflects your own network \u2014 not just rate benchmarks. Turn your historical capacity data into quotes that win freight and protect your margins.\\n\",style:{width:\"100%\"},uXr8Zfg2t:\"Quote based on what you know, \\nnot just the market\",variant:\"Oc5w8Cwft\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v4ivn\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dj3jpj\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1018px) - 48px, 970px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1018px) - 48px, 970px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qe969c-container\",nodeId:\"qRMe8BbWD\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",HkGjFz0Pg:true,i8bZsP3I7:\"With Parade, brokers move faster, work smarter, and scale stronger \u2014 without growing headcount.\\n\",id:\"qRMe8BbWD\",layoutId:\"qRMe8BbWD\",LRT_1771E:\"Parade by the Numbers\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Vnhq4sK67\",width:\"100%\",XiYecUriZ:\"Our platform delivers results brokers can see.\\n\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ih2et6\",\"data-framer-name\":\"Grid\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vhyccb-container\",nodeId:\"fHRKfpCvo\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"pp35ZXrnO\"}},children:/*#__PURE__*/_jsx(StatsWidget,{height:\"100%\",id:\"fHRKfpCvo\",layoutId:\"fHRKfpCvo\",SHaylzry0:\"2X\",variant:\"I2646:42900;2285:19405\",width:\"100%\",zRVe8YBLf:\"Carrier Rep \\nBandwidth\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,children:/*#__PURE__*/_jsx(Container,{className:\"framer-addsjx-container\",nodeId:\"FsAFL4r3x\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"pp35ZXrnO\"}},children:/*#__PURE__*/_jsx(StatsWidget,{height:\"100%\",id:\"FsAFL4r3x\",layoutId:\"FsAFL4r3x\",SHaylzry0:\"60%\",variant:\"I2646:42900;2285:19405\",width:\"100%\",zRVe8YBLf:\"Decrease in One-and-Done Carriers\\n\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mcvhp6-container\",nodeId:\"x9NTTrrKX\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"pp35ZXrnO\"}},children:/*#__PURE__*/_jsx(StatsWidget,{height:\"100%\",id:\"x9NTTrrKX\",layoutId:\"x9NTTrrKX\",SHaylzry0:\"2.5M+\",variant:\"I2646:42900;2285:19405\",width:\"100%\",zRVe8YBLf:\"Conversations \\nAnnually\\n\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:106,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qvx1iu-container\",nodeId:\"N56rb8bOO\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"pp35ZXrnO\"}},children:/*#__PURE__*/_jsx(StatsWidget,{height:\"100%\",id:\"N56rb8bOO\",layoutId:\"N56rb8bOO\",SHaylzry0:\"$40B\",variant:\"I2646:42900;2285:19405\",width:\"100%\",zRVe8YBLf:\"Transacted\\n\\n\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q40289\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rptqcl-container\",\"data-framer-name\":\"Logos Slider\",isModuleExternal:true,name:\"Logos Slider\",nodeId:\"zKLEOO42p\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:10,overflow:false},gap:0,height:\"100%\",hoverFactor:1,id:\"zKLEOO42p\",layoutId:\"zKLEOO42p\",name:\"Logos Slider\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zy8a7e-container\",inComponentSlot:true,nodeId:\"TWPs9HSFx\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/hPPylJZ99kW6sYGcAcbF1qtFC0Y.svg\"},\"\"),height:\"100%\",id:\"TWPs9HSFx\",layoutId:\"TWPs9HSFx\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ygu6ip-container\",inComponentSlot:true,nodeId:\"w6qxPtZZJ\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/n04PExE1CTdK8ul36dh9pvKr6V8.svg\"},\"\"),height:\"100%\",id:\"w6qxPtZZJ\",layoutId:\"w6qxPtZZJ\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18hp4oa-container\",inComponentSlot:true,nodeId:\"WFgPngLDB\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/Lctm48ELuJUzJ0M0MvCUPgyyXw.svg\"},\"\"),height:\"100%\",id:\"WFgPngLDB\",layoutId:\"WFgPngLDB\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18dhzdi-container\",inComponentSlot:true,nodeId:\"vNnO2COnP\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/qsK11Kz9aCvP7HMGIR8IH3TYHQ.svg\"},\"\"),height:\"100%\",id:\"vNnO2COnP\",layoutId:\"vNnO2COnP\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14x2gm1-container\",inComponentSlot:true,nodeId:\"BgNpPxsny\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/IzGhWIHq3oFEWT0R8shZ6lo.svg\"},\"\"),height:\"100%\",id:\"BgNpPxsny\",layoutId:\"BgNpPxsny\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-b2uzk2-container\",inComponentSlot:true,nodeId:\"TE3MEJB95\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/wHmqUQeiCmNatE4WqyMFOmnZf7U.png\",srcSet:\"https://framerusercontent.com/images/wHmqUQeiCmNatE4WqyMFOmnZf7U.png?scale-down-to=512 512w,https://framerusercontent.com/images/wHmqUQeiCmNatE4WqyMFOmnZf7U.png 705w\"},\"\"),height:\"100%\",id:\"TE3MEJB95\",layoutId:\"TE3MEJB95\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-whyuvl-container\",inComponentSlot:true,nodeId:\"GwfY0RMZk\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/YldQ3PhpdPRNkegIN7NwMNsXHs.svg\"},\"\"),height:\"100%\",id:\"GwfY0RMZk\",layoutId:\"GwfY0RMZk\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d9hrrt-container\",inComponentSlot:true,nodeId:\"tbBrVVeXO\",rendersWithMotion:true,scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(Brand,{HANviDBtV:addImageAlt({src:\"https://framerusercontent.com/images/CDoyTiKMYF4wqIPDQJL37Y54.svg\"},\"\"),height:\"100%\",id:\"tbBrVVeXO\",layoutId:\"tbBrVVeXO\",style:{width:\"100%\"},width:\"100%\"})})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1teyila\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-80vvmb\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l884c4\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{width:`max(min(min(${componentViewport?.width||\"100vw\"}, 1152px) - 48px, 379px), 100px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`max(min(max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1152px) - 80px) / 2, 1px), 379px), 100px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ygrsrb-container\",nodeId:\"kypG2ojK6\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"Vnhq4sK67\"}},children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",HkGjFz0Pg:true,i8bZsP3I7:\"Capacity intelligence that keeps your freight moving. Parade helps your team find the right carrier, the first time \u2014 using real-time capacity signals and automated workflows to speed up load coverage and scale what\u2019s already working.\\n\",id:\"kypG2ojK6\",layoutId:\"kypG2ojK6\",LRT_1771E:\"Parade Features\",style:{width:\"100%\"},variant:\"wk3JD3ITn\",width:\"100%\",XiYecUriZ:\"Why Parade?\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ly6ycl-container\",nodeId:\"plEa8Ksbe\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks4[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"plEa8Ksbe\",iibXa8Tj4:resolvedLinks4[0],layoutId:\"plEa8Ksbe\",MivtkGQOL:false,PtH_6DQYI:\"See Features\",QrtTSgtXW:false,variant:\"G8Y0yixwf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1662,intrinsicWidth:1983,pixelHeight:1662,pixelWidth:1983,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/T1VWbgjhIEYqScDURttdxZ2eYLM.png\"},className:\"framer-10m8ynl\",\"data-framer-name\":\"Right Image\"})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14iu1pv\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r7gx3h\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`min(min(${componentViewport?.width||\"100vw\"}, 1152px) - 48px, 710px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1em72v4-container\",nodeId:\"JPdkd_Q1I\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",HkGjFz0Pg:true,i8bZsP3I7:\"Parade gives brokers the tools to work more strategically  \u2014  automating repetitive tasks, improving carrier communication, and turning every quote into usable capacity intelligence.\\n\",id:\"JPdkd_Q1I\",layoutId:\"JPdkd_Q1I\",LRT_1771E:\"Benefits\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Vnhq4sK67\",width:\"100%\",XiYecUriZ:\"What can Parade do for you?\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ci6ls\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{background:{alt:\"\",backgroundSize:.42,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1468,pixelWidth:1702,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/Z8Sk66BmRnirBGQmvkEh2IkbT0.png\"}},OQFceudrM:{background:{alt:\"\",backgroundSize:.42,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1468,pixelWidth:1702,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/Z8Sk66BmRnirBGQmvkEh2IkbT0.png\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:.6,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1468,pixelWidth:1702,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/Z8Sk66BmRnirBGQmvkEh2IkbT0.png\"},className:\"framer-129dvyh\",\"data-framer-name\":\"Overlay Image Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k0j3qd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/uIjxDZhYBj6MloEFfvIUJZwWA0.svg\"},className:\"framer-1ji0pes\",\"data-framer-name\":\"Card Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sstju0\",\"data-framer-name\":\"Title & Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vxygdt\",\"data-styles-preset\":\"Md4OVPW6A\",children:\"Drive Top-of-Funnel with Qualified Carriers\"})}),className:\"framer-mwt6i7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12a4d21\",\"data-styles-preset\":\"hJ12E5MFl\",style:{\"--framer-text-color\":\"var(--token-a1a173db-b955-49ea-a0ee-46ac09b979e8, rgba(0, 0, 0, 0.6))\"},children:\"Fill your pipeline with carriers that actually fit. Parade helps you source and engage the right carriers at the right time \u2014 using automated load offers, private portals, and email campaigns that convert interest into action.\"})}),className:\"framer-12g6ttr\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lv0rkv-container\",nodeId:\"Ma43XFbYT\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks5[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"Ma43XFbYT\",iibXa8Tj4:resolvedLinks5[0],layoutId:\"Ma43XFbYT\",MivtkGQOL:true,PtH_6DQYI:\"Learn More\",QrtTSgtXW:false,variant:\"G1vGfGS4j\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-6topi1\",\"data-framer-name\":\"Radial Effect\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{background:{alt:\"\",backgroundSize:.46,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:886,pixelWidth:1468,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/4q6TTkFq9M73KdvZ60svSMeQkY.png\"}},OQFceudrM:{background:{alt:\"\",backgroundSize:.54,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:886,pixelWidth:1468,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/4q6TTkFq9M73KdvZ60svSMeQkY.png\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:.71,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:886,pixelWidth:1468,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/4q6TTkFq9M73KdvZ60svSMeQkY.png\"},className:\"framer-e66mx1\",\"data-framer-name\":\"Overlay Image Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eayn4l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/xxe8QZwtlYJJFTCAGZa4UWeGnU.svg\"},className:\"framer-84ewzn\",\"data-framer-name\":\"Card Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pojt0i\",\"data-framer-name\":\"Title & Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vxygdt\",\"data-styles-preset\":\"Md4OVPW6A\",children:\"Automate Your Core Lanes with Reliable Coverage\"})}),className:\"framer-1kyvrwj\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12a4d21\",\"data-styles-preset\":\"hJ12E5MFl\",style:{\"--framer-text-color\":\"var(--token-a1a173db-b955-49ea-a0ee-46ac09b979e8, rgba(0, 0, 0, 0.6))\"},children:\"Set it and let it run. Parade\u2019s automation tools help you cover your recurring freight with the carriers you already trust. Features like Cascade and AutoAssign reduce manual work and keep your lanes running smoothly.\"})}),className:\"framer-1rm297m\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-cbfa0l-container\",nodeId:\"lOmt6Zq3Q\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks6[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"lOmt6Zq3Q\",iibXa8Tj4:resolvedLinks6[0],layoutId:\"lOmt6Zq3Q\",MivtkGQOL:true,PtH_6DQYI:\"Learn More\",QrtTSgtXW:false,variant:\"G1vGfGS4j\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-os9l2j\",\"data-framer-name\":\"Radial Effect\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{background:{alt:\"\",backgroundSize:.4,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1468,pixelWidth:1702,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9FVawpr9Inyiv3DkFdewbfaMhLk.png\"}},OQFceudrM:{background:{alt:\"\",backgroundSize:.45,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1468,pixelWidth:1702,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9FVawpr9Inyiv3DkFdewbfaMhLk.png\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:.58,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1468,pixelWidth:1702,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9FVawpr9Inyiv3DkFdewbfaMhLk.png\"},className:\"framer-1mtruel\",\"data-framer-name\":\"Overlay Image Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jdat1a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/HPZNBYmeO2VG86M39g5KwdUlUzE.svg\"},className:\"framer-1lfeg5\",\"data-framer-name\":\"Card Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-k1rwo8\",\"data-framer-name\":\"Title & Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vxygdt\",\"data-styles-preset\":\"Md4OVPW6A\",children:\"Build a Trusted Network and Drive Carrier Reuse\"})}),className:\"framer-1qo0r1k\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12a4d21\",\"data-styles-preset\":\"hJ12E5MFl\",style:{\"--framer-text-color\":\"var(--token-a1a173db-b955-49ea-a0ee-46ac09b979e8, rgba(0, 0, 0, 0.6))\"},children:\"Keep your best carriers coming back. Parade makes it easy to track carrier preferences, manage performance, and re-engage top partners \u2014 so your freight gets booked by the carriers who know how to move it.\"})}),className:\"framer-4jvrxw\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined},{href:{webPageId:\"aJ64ikmlH\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ny5lfh-container\",nodeId:\"DWE2FH3Gw\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks7[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks7[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"DWE2FH3Gw\",iibXa8Tj4:resolvedLinks7[0],layoutId:\"DWE2FH3Gw\",MivtkGQOL:true,PtH_6DQYI:\"Learn More\",QrtTSgtXW:false,variant:\"G1vGfGS4j\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16bonwn\",\"data-framer-name\":\"Radial Effect\"})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{background:{alt:\"\",backgroundSize:.3,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1608,pixelWidth:2289,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/VKFcm9YchJ3u1wnlqM2SJo24rY.png\"}},OQFceudrM:{background:{alt:\"\",backgroundSize:.35,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1608,pixelWidth:2289,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/VKFcm9YchJ3u1wnlqM2SJo24rY.png\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",backgroundSize:.45,fit:\"tile\",intrinsicHeight:1200,intrinsicWidth:1656,pixelHeight:1608,pixelWidth:2289,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/VKFcm9YchJ3u1wnlqM2SJo24rY.png\"},className:\"framer-1j82p1e\",\"data-framer-name\":\"Overlay Image Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ablctk\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:24,intrinsicWidth:24,pixelHeight:24,pixelWidth:24,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/Hs6tXt2ltembtk0QQHFVOlA1vI.svg\"},className:\"framer-19uinfq\",\"data-framer-name\":\"Card Icon\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1f366v5\",\"data-framer-name\":\"Title & Description\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-vxygdt\",\"data-styles-preset\":\"Md4OVPW6A\",children:\"AI That Turns Conversations Into Strategy\"})}),className:\"framer-1on4exz\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-12a4d21\",\"data-styles-preset\":\"hJ12E5MFl\",style:{\"--framer-text-color\":\"var(--token-a1a173db-b955-49ea-a0ee-46ac09b979e8, rgba(0, 0, 0, 0.6))\"},children:\"Every email and phone call is packed with potential \u2014 CoDriver captures it. CoDriver responds to inbound carrier emails and phone calls, qualifies the opportunity, and captures quotes in real time. That data flows straight into Parade, giving your team the capacity intelligence to book faster, price smarter, and scale what works.\"})}),className:\"framer-7xmypz\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"m5IMSYnrJ\"},implicitPathVariables:undefined},{href:{webPageId:\"m5IMSYnrJ\"},implicitPathVariables:undefined},{href:{webPageId:\"m5IMSYnrJ\"},implicitPathVariables:undefined}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-niw71c-container\",nodeId:\"r15icLTOB\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks8[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks8[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"r15icLTOB\",iibXa8Tj4:resolvedLinks8[0],layoutId:\"r15icLTOB\",MivtkGQOL:true,PtH_6DQYI:\"Learn More\",QrtTSgtXW:false,variant:\"G1vGfGS4j\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-y9q1pj\",\"data-framer-name\":\"Radial Effect\"})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13yh958\",\"data-framer-name\":\"Integrations\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m1hs6k\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1152px) - 48px, 710px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1152px) - 48px, 710px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a1li6h-container\",nodeId:\"n96yLvBDs\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",HkGjFz0Pg:true,i8bZsP3I7:\"Parade seamlessly integrates with the best freight technology and the tools you already use, so you can make the most of your data and workflows. Parade makes all your favorite tech tools work better together, so you can unlock new results in your day-to-day operations in a unified tech stack.\",id:\"n96yLvBDs\",layoutId:\"n96yLvBDs\",LRT_1771E:\"Integrations\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Vnhq4sK67\",width:\"100%\",XiYecUriZ:\"We Integrate with Your Stack\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1odhd30\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"iiC_3fZvE\"},implicitPathVariables:undefined},{href:{webPageId:\"iiC_3fZvE\"},implicitPathVariables:undefined},{href:{webPageId:\"iiC_3fZvE\"},implicitPathVariables:undefined}],children:resolvedLinks9=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ztkg0-container\",nodeId:\"ZItXrujse\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{a6AC_FFgU:resolvedLinks9[2]},OQFceudrM:{a6AC_FFgU:resolvedLinks9[1]}},children:/*#__PURE__*/_jsx(StatsIntegration,{a6AC_FFgU:resolvedLinks9[0],height:\"100%\",id:\"ZItXrujse\",layoutId:\"ZItXrujse\",PNh3qv8be:addImageAlt({src:\"https://framerusercontent.com/images/5EiPlGioXgViW3jevZJ2dSfBfek.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},vpc2afjdh:\"TMS\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"PDGb9sMNE\"},implicitPathVariables:undefined},{href:{webPageId:\"PDGb9sMNE\"},implicitPathVariables:undefined},{href:{webPageId:\"PDGb9sMNE\"},implicitPathVariables:undefined}],children:resolvedLinks10=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h0wnuv-container\",nodeId:\"TGk976mSG\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{a6AC_FFgU:resolvedLinks10[2]},OQFceudrM:{a6AC_FFgU:resolvedLinks10[1]}},children:/*#__PURE__*/_jsx(StatsIntegration,{a6AC_FFgU:resolvedLinks10[0],height:\"100%\",id:\"TGk976mSG\",layoutId:\"TGk976mSG\",PNh3qv8be:addImageAlt({src:\"https://framerusercontent.com/images/1vBi6goWvQL02EVCrEomQDOhs.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},vpc2afjdh:\"Carrier Onboarding Tools\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"C7nyZgZtz\"},implicitPathVariables:undefined},{href:{webPageId:\"C7nyZgZtz\"},implicitPathVariables:undefined},{href:{webPageId:\"C7nyZgZtz\"},implicitPathVariables:undefined}],children:resolvedLinks11=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-pie6bk-container\",nodeId:\"N0cllbXxY\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{a6AC_FFgU:resolvedLinks11[2]},OQFceudrM:{a6AC_FFgU:resolvedLinks11[1]}},children:/*#__PURE__*/_jsx(StatsIntegration,{a6AC_FFgU:resolvedLinks11[0],height:\"100%\",id:\"N0cllbXxY\",layoutId:\"N0cllbXxY\",PNh3qv8be:addImageAlt({src:\"https://framerusercontent.com/images/qOP9zwVDGFrFfiAKgOvzgC6TBM.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},vpc2afjdh:\"Visibility Tools\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"dr7M1MUIQ\"},implicitPathVariables:undefined},{href:{webPageId:\"dr7M1MUIQ\"},implicitPathVariables:undefined},{href:{webPageId:\"dr7M1MUIQ\"},implicitPathVariables:undefined}],children:resolvedLinks12=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i5meik-container\",nodeId:\"uHYK5N056\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{a6AC_FFgU:resolvedLinks12[2]},OQFceudrM:{a6AC_FFgU:resolvedLinks12[1]}},children:/*#__PURE__*/_jsx(StatsIntegration,{a6AC_FFgU:resolvedLinks12[0],height:\"100%\",id:\"uHYK5N056\",layoutId:\"uHYK5N056\",PNh3qv8be:addImageAlt({src:\"https://framerusercontent.com/images/vJvSVAfqCEds0mXD6xDkvRcumN0.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},vpc2afjdh:\"Rate Benchmarks\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lf0Vl0dlU\"},implicitPathVariables:undefined},{href:{webPageId:\"lf0Vl0dlU\"},implicitPathVariables:undefined},{href:{webPageId:\"lf0Vl0dlU\"},implicitPathVariables:undefined}],children:resolvedLinks13=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vz213d-container\",nodeId:\"frjWEiHg9\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{a6AC_FFgU:resolvedLinks13[2]},OQFceudrM:{a6AC_FFgU:resolvedLinks13[1]}},children:/*#__PURE__*/_jsx(StatsIntegration,{a6AC_FFgU:resolvedLinks13[0],height:\"100%\",id:\"frjWEiHg9\",layoutId:\"frjWEiHg9\",PNh3qv8be:addImageAlt({src:\"https://framerusercontent.com/images/KlnL87XTZquETkyQVd2xbDutU.svg\"},\"\"),style:{height:\"100%\",width:\"100%\"},vpc2afjdh:\"Load Boards & Capacity Networks\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12tqqln\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7z7zc1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kj1kha\",\"data-framer-name\":\"Big Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sxfuyg\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1152px) - 128px, 783px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`min(min(${componentViewport?.width||\"100vw\"}, 1152px) - 168px, 783px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-c8be8h-container\",nodeId:\"UtnPx_diG\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",HkGjFz0Pg:true,i8bZsP3I7:\"Finding the right carrier for each load takes a lot of time. Parade's Al automates and streamlines.\",id:\"UtnPx_diG\",layoutId:\"UtnPx_diG\",LRT_1771E:\"Testimonials\",style:{width:\"100%\"},variant:\"MCllxCBdj\",width:\"100%\",XiYecUriZ:\"Freight leaders love Parade.\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yIN1KTgXK\"},implicitPathVariables:undefined},{href:{webPageId:\"yIN1KTgXK\"},implicitPathVariables:undefined},{href:{webPageId:\"yIN1KTgXK\"},implicitPathVariables:undefined}],children:resolvedLinks14=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fgv6ey-container\",nodeId:\"zpPPO4KH6\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks14[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks14[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"zpPPO4KH6\",iibXa8Tj4:resolvedLinks14[0],layoutId:\"zpPPO4KH6\",MivtkGQOL:true,PtH_6DQYI:\"Dig Deeper\",QrtTSgtXW:false,variant:\"G8Y0yixwf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1427,intrinsicWidth:2470,positionX:\"center\",positionY:\"center\",sizes:\"2469px\",src:\"https://framerusercontent.com/images/Fciz4rBEa32g6lVe41UnlhkGZOA.svg\",srcSet:\"https://framerusercontent.com/images/Fciz4rBEa32g6lVe41UnlhkGZOA.svg?scale-down-to=512 512w,https://framerusercontent.com/images/Fciz4rBEa32g6lVe41UnlhkGZOA.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/Fciz4rBEa32g6lVe41UnlhkGZOA.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/Fciz4rBEa32g6lVe41UnlhkGZOA.svg 2470w\"},className:\"framer-15wtnhf\",\"data-framer-name\":\"Pattern\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-z4uu9x\",\"data-framer-name\":\"Radial Effect Fill\"})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1152px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:414,width:`calc(min(${componentViewport?.width||\"100vw\"}, 1152px) - 120px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wopctd-container\",nodeId:\"AYcqEI7ZM\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{variant:\"pIsHwGVOl\"},OQFceudrM:{variant:\"rFK6yPrgM\"}},children:/*#__PURE__*/_jsx(QuoteTicker,{height:\"100%\",id:\"AYcqEI7ZM\",layoutId:\"AYcqEI7ZM\",style:{height:\"100%\",width:\"100%\"},variant:\"QIrHpWwWN\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-165vv1x\",\"data-framer-name\":\"Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kmo4ix\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n2crwu\",\"data-framer-name\":\"Top Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1152px) - 48px, 670px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:157,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1152px) - 48px, 670px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jaos1o-container\",nodeId:\"vKFR572Xm\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(SectionTitle,{height:\"100%\",HkGjFz0Pg:true,i8bZsP3I7:\"Learn more about who we are and how we think. Here, you\u2019ll find a wide array of videos, case studies, infographics, blog posts, and more.\",id:\"vKFR572Xm\",layoutId:\"vKFR572Xm\",LRT_1771E:\"Resources\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Vnhq4sK67\",width:\"100%\",XiYecUriZ:\"Learn More \"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"yIN1KTgXK\"},implicitPathVariables:undefined},{href:{webPageId:\"yIN1KTgXK\"},implicitPathVariables:undefined},{href:{webPageId:\"yIN1KTgXK\"},implicitPathVariables:undefined}],children:resolvedLinks15=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u8m9ux-container\",nodeId:\"eB9Cw4HaN\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{iibXa8Tj4:resolvedLinks15[2]},OQFceudrM:{iibXa8Tj4:resolvedLinks15[1]}},children:/*#__PURE__*/_jsx(Button,{DxVYztB3R:false,height:\"100%\",id:\"eB9Cw4HaN\",iibXa8Tj4:resolvedLinks15[0],layoutId:\"eB9Cw4HaN\",MivtkGQOL:true,PtH_6DQYI:\"Dig Deeper\",QrtTSgtXW:false,variant:\"G8Y0yixwf\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1e9mwdc-container\",nodeId:\"JxbfpnTcD\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(BlogComponentHomepage,{height:\"100%\",id:\"JxbfpnTcD\",layoutId:\"JxbfpnTcD\",style:{width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":H9wBHGFzY\",webPageId:\"JzhchWlKg\"},implicitPathVariables:undefined},{href:{hash:\":H9wBHGFzY\",webPageId:\"JzhchWlKg\"},implicitPathVariables:undefined},{href:{hash:\":H9wBHGFzY\",webPageId:\"JzhchWlKg\"},implicitPathVariables:undefined}],children:resolvedLinks16=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:674,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-oz4tmr-container\",nodeId:\"dCcf0qhhU\",scopeId:\"svTr9mRwG\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{n7pp02suE:{x7WTBpJAT:resolvedLinks16[2]},OQFceudrM:{x7WTBpJAT:resolvedLinks16[1]}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"dCcf0qhhU\",layoutId:\"dCcf0qhhU\",style:{width:\"100%\"},width:\"100%\",x7WTBpJAT:resolvedLinks16[0]})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PBusZ.framer-4gsicp, .framer-PBusZ .framer-4gsicp { display: block; }\",\".framer-PBusZ.framer-pyu780 { align-content: center; align-items: center; background-color: var(--token-fffeae6c-6f1d-4170-8157-d3b8b89c0cff, #fbfcff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-PBusZ .framer-rk1rc1-container { flex: none; height: auto; position: relative; width: 100%; z-index: 2; }\",\".framer-PBusZ .framer-jtx3tq-container { flex: none; height: 928px; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-PBusZ .framer-1v1prz6-container { bottom: 0px; flex: none; height: 83%; left: calc(50.00000000000002% - 970px / 2); opacity: 0.5; position: absolute; width: 970px; z-index: 0; }\",\".framer-PBusZ .framer-1xpljd1-container, .framer-PBusZ .framer-oz4tmr-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-1poioau { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 70px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-13ol0pu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1152px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1pwhjmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 750px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1ebv9xn, .framer-PBusZ .framer-qg20wu { flex: none; height: auto; max-width: 858px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PBusZ .framer-1bwr5fk { flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PBusZ .framer-16sjar0 { aspect-ratio: 4.014545454545455 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 275px); position: relative; width: 100%; }\",\".framer-PBusZ .framer-omo5kf { background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 60px 60px 0px rgba(75, 85, 114, 0.04), 0px 0px 2px 0px rgba(0, 0, 0, 0.08); display: grid; flex: none; gap: 16px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PBusZ .framer-147tnf7-container, .framer-PBusZ .framer-1jk7m8k-container, .framer-PBusZ .framer-1qq65xu-container, .framer-PBusZ .framer-vhyccb-container, .framer-PBusZ .framer-addsjx-container, .framer-PBusZ .framer-1mcvhp6-container, .framer-PBusZ .framer-1qvx1iu-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1v4ivn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-dj3jpj { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1018px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1px; z-index: 1; }\",\".framer-PBusZ .framer-qe969c-container { flex: none; height: auto; max-width: 970px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-ih2et6 { display: grid; flex: none; gap: 0px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-q40289 { background: linear-gradient(180deg, rgba(251, 252, 255, 0) 0%, rgb(251, 252, 255) 50.43285472972974%, rgba(251, 252, 255, 0) 100%); flex: none; height: 120px; overflow: hidden; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1rptqcl-container { bottom: 0px; flex: none; left: calc(50.00000000000002% - 970px / 2); position: absolute; top: 0px; width: 970px; }\",\".framer-PBusZ .framer-zy8a7e-container, .framer-PBusZ .framer-ygu6ip-container, .framer-PBusZ .framer-18hp4oa-container, .framer-PBusZ .framer-18dhzdi-container, .framer-PBusZ .framer-14x2gm1-container, .framer-PBusZ .framer-b2uzk2-container, .framer-PBusZ .framer-whyuvl-container, .framer-PBusZ .framer-1d9hrrt-container { height: auto; position: relative; width: 206px; }\",\".framer-PBusZ .framer-1teyila { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-80vvmb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1152px; overflow: hidden; padding: 0px 24px 0px 24px; position: relative; width: 1px; z-index: 1; }\",\".framer-PBusZ .framer-1l884c4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 379px; min-width: 100px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-PBusZ .framer-ygrsrb-container, .framer-PBusZ .framer-c8be8h-container, .framer-PBusZ .framer-1e9mwdc-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1ly6ycl-container, .framer-PBusZ .framer-lv0rkv-container, .framer-PBusZ .framer-cbfa0l-container, .framer-PBusZ .framer-1ny5lfh-container, .framer-PBusZ .framer-niw71c-container, .framer-PBusZ .framer-fgv6ey-container, .framer-PBusZ .framer-u8m9ux-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PBusZ .framer-10m8ynl { aspect-ratio: 1.010703363914373 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 686px); position: relative; width: 1px; }\",\".framer-PBusZ .framer-14iu1pv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 140px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-1r7gx3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1152px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-1em72v4-container, .framer-PBusZ .framer-1a1li6h-container { flex: none; height: auto; max-width: 710px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-ci6ls { display: grid; flex: none; gap: 8px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-129dvyh { align-self: start; border-bottom-left-radius: 16px; border-top-left-radius: 16px; box-shadow: 0px 60px 60px 0px rgba(76, 86, 115, 0.04), 0px 0px 2px 0px rgba(0, 0, 0, 0.08); flex: none; height: 500px; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-PBusZ .framer-k0j3qd, .framer-PBusZ .framer-eayn4l, .framer-PBusZ .framer-1jdat1a, .framer-PBusZ .framer-1ablctk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-end; left: 32px; overflow: visible; padding: 0px; position: absolute; right: 32px; top: 275px; z-index: 1; }\",\".framer-PBusZ .framer-1ji0pes, .framer-PBusZ .framer-84ewzn, .framer-PBusZ .framer-1lfeg5, .framer-PBusZ .framer-19uinfq { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-PBusZ .framer-sstju0, .framer-PBusZ .framer-1pojt0i, .framer-PBusZ .framer-k1rwo8, .framer-PBusZ .framer-1f366v5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-mwt6i7, .framer-PBusZ .framer-12g6ttr, .framer-PBusZ .framer-1kyvrwj, .framer-PBusZ .framer-1rm297m, .framer-PBusZ .framer-1qo0r1k, .framer-PBusZ .framer-1on4exz, .framer-PBusZ .framer-7xmypz { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PBusZ .framer-6topi1 { background: radial-gradient(114.99999999999999% 85.22336703197139% at 72.35293000400405% 14.776629048679258%, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 63.23024034500122%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-PBusZ .framer-e66mx1 { align-self: start; border-bottom-right-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 60px 60px 0px rgba(76, 86, 115, 0.04), 0px 0px 2px 0px rgba(0, 0, 0, 0.08); flex: none; height: 500px; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-PBusZ .framer-os9l2j { background: radial-gradient(129% 68% at 50.7% 20.599999999999998%, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 63.23024034500122%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-PBusZ .framer-1mtruel { align-self: start; border-bottom-left-radius: 16px; border-top-left-radius: 16px; box-shadow: 0px 60px 60px 0px rgba(76, 86, 115, 0.04), 0px 0px 2px 0px rgba(0, 0, 0, 0.08); flex: none; height: 544px; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-PBusZ .framer-4jvrxw { flex: none; height: 110px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-PBusZ .framer-16bonwn { background: radial-gradient(117% 85.22336703197139% at 72.35293000400405% 14.776629048679258%, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 63.23024034500122%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-PBusZ .framer-1j82p1e { align-self: start; border-bottom-right-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 60px 60px 0px rgba(76, 86, 115, 0.04), 0px 0px 2px 0px rgba(0, 0, 0, 0.08); flex: none; height: 544px; justify-self: start; overflow: visible; position: relative; width: 100%; }\",\".framer-PBusZ .framer-y9q1pj { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 35%, rgb(255, 255, 255) 63.23024034500122%); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-PBusZ .framer-13yh958 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 180px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-1m1hs6k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1152px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; z-index: 1; }\",\".framer-PBusZ .framer-1odhd30 { display: grid; flex: none; gap: 12px; grid-auto-rows: min-content; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); height: 184px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-ztkg0-container, .framer-PBusZ .framer-1h0wnuv-container, .framer-PBusZ .framer-pie6bk-container, .framer-PBusZ .framer-1i5meik-container, .framer-PBusZ .framer-1vz213d-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-PBusZ .framer-12tqqln { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 160px 0px 0px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-7z7zc1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1152px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1kj1kha { align-content: center; align-items: center; background-color: var(--token-04a9b9e2-7012-45ce-a739-7993c35e62dd, #020088); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 60px 280px 60px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-PBusZ .framer-sxfuyg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 783px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-PBusZ .framer-15wtnhf { aspect-ratio: 1.8522130532633159 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 1333px); left: 50%; position: absolute; top: 118%; transform: translate(-50%, -50%); width: 2469px; z-index: 0; }\",\".framer-PBusZ .framer-z4uu9x { background: radial-gradient(49.2622820854019% 18.004503804538295% at 50.020249856992535% 18.229555070458808%, rgba(217, 217, 217, 0) 0%, var(--token-04a9b9e2-7012-45ce-a739-7993c35e62dd, rgb(2, 0, 136)) 52.93954014778137%); flex: none; height: 100%; left: calc(49.979748886188766% - 100% / 2); position: absolute; top: calc(50.03750937734436% - 100% / 2); width: 100%; }\",\".framer-PBusZ .framer-wopctd-container { bottom: -190px; flex: none; height: 414px; left: 60px; position: absolute; right: 60px; z-index: 1; }\",\".framer-PBusZ .framer-165vv1x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 280px 0px 160px 0px; position: relative; width: 100%; z-index: 0; }\",\".framer-PBusZ .framer-1kmo4ix { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1152px; overflow: visible; padding: 0px 24px 0px 24px; position: relative; width: 1px; }\",\".framer-PBusZ .framer-n2crwu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-PBusZ .framer-1jaos1o-container { flex: none; height: auto; max-width: 670px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PBusZ.framer-pyu780, .framer-PBusZ .framer-1poioau, .framer-PBusZ .framer-13ol0pu, .framer-PBusZ .framer-1pwhjmh, .framer-PBusZ .framer-1v4ivn, .framer-PBusZ .framer-dj3jpj, .framer-PBusZ .framer-1teyila, .framer-PBusZ .framer-80vvmb, .framer-PBusZ .framer-1l884c4, .framer-PBusZ .framer-14iu1pv, .framer-PBusZ .framer-1r7gx3h, .framer-PBusZ .framer-k0j3qd, .framer-PBusZ .framer-sstju0, .framer-PBusZ .framer-eayn4l, .framer-PBusZ .framer-1pojt0i, .framer-PBusZ .framer-1jdat1a, .framer-PBusZ .framer-k1rwo8, .framer-PBusZ .framer-1ablctk, .framer-PBusZ .framer-1f366v5, .framer-PBusZ .framer-13yh958, .framer-PBusZ .framer-1m1hs6k, .framer-PBusZ .framer-12tqqln, .framer-PBusZ .framer-7z7zc1, .framer-PBusZ .framer-1kj1kha, .framer-PBusZ .framer-sxfuyg, .framer-PBusZ .framer-165vv1x, .framer-PBusZ .framer-1kmo4ix, .framer-PBusZ .framer-n2crwu { gap: 0px; } .framer-PBusZ.framer-pyu780 > *, .framer-PBusZ .framer-1poioau > *, .framer-PBusZ .framer-13ol0pu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-PBusZ.framer-pyu780 > :first-child, .framer-PBusZ .framer-1poioau > :first-child, .framer-PBusZ .framer-13ol0pu > :first-child, .framer-PBusZ .framer-1pwhjmh > :first-child, .framer-PBusZ .framer-dj3jpj > :first-child, .framer-PBusZ .framer-1l884c4 > :first-child, .framer-PBusZ .framer-14iu1pv > :first-child, .framer-PBusZ .framer-1r7gx3h > :first-child, .framer-PBusZ .framer-k0j3qd > :first-child, .framer-PBusZ .framer-sstju0 > :first-child, .framer-PBusZ .framer-eayn4l > :first-child, .framer-PBusZ .framer-1pojt0i > :first-child, .framer-PBusZ .framer-1jdat1a > :first-child, .framer-PBusZ .framer-k1rwo8 > :first-child, .framer-PBusZ .framer-1ablctk > :first-child, .framer-PBusZ .framer-1f366v5 > :first-child, .framer-PBusZ .framer-1m1hs6k > :first-child, .framer-PBusZ .framer-12tqqln > :first-child, .framer-PBusZ .framer-7z7zc1 > :first-child, .framer-PBusZ .framer-1kj1kha > :first-child, .framer-PBusZ .framer-sxfuyg > :first-child, .framer-PBusZ .framer-1kmo4ix > :first-child, .framer-PBusZ .framer-n2crwu > :first-child { margin-top: 0px; } .framer-PBusZ.framer-pyu780 > :last-child, .framer-PBusZ .framer-1poioau > :last-child, .framer-PBusZ .framer-13ol0pu > :last-child, .framer-PBusZ .framer-1pwhjmh > :last-child, .framer-PBusZ .framer-dj3jpj > :last-child, .framer-PBusZ .framer-1l884c4 > :last-child, .framer-PBusZ .framer-14iu1pv > :last-child, .framer-PBusZ .framer-1r7gx3h > :last-child, .framer-PBusZ .framer-k0j3qd > :last-child, .framer-PBusZ .framer-sstju0 > :last-child, .framer-PBusZ .framer-eayn4l > :last-child, .framer-PBusZ .framer-1pojt0i > :last-child, .framer-PBusZ .framer-1jdat1a > :last-child, .framer-PBusZ .framer-k1rwo8 > :last-child, .framer-PBusZ .framer-1ablctk > :last-child, .framer-PBusZ .framer-1f366v5 > :last-child, .framer-PBusZ .framer-1m1hs6k > :last-child, .framer-PBusZ .framer-12tqqln > :last-child, .framer-PBusZ .framer-7z7zc1 > :last-child, .framer-PBusZ .framer-1kj1kha > :last-child, .framer-PBusZ .framer-sxfuyg > :last-child, .framer-PBusZ .framer-1kmo4ix > :last-child, .framer-PBusZ .framer-n2crwu > :last-child { margin-bottom: 0px; } .framer-PBusZ .framer-1pwhjmh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-PBusZ .framer-1v4ivn > *, .framer-PBusZ .framer-1teyila > *, .framer-PBusZ .framer-165vv1x > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-PBusZ .framer-1v4ivn > :first-child, .framer-PBusZ .framer-1teyila > :first-child, .framer-PBusZ .framer-80vvmb > :first-child, .framer-PBusZ .framer-13yh958 > :first-child, .framer-PBusZ .framer-165vv1x > :first-child { margin-left: 0px; } .framer-PBusZ .framer-1v4ivn > :last-child, .framer-PBusZ .framer-1teyila > :last-child, .framer-PBusZ .framer-80vvmb > :last-child, .framer-PBusZ .framer-13yh958 > :last-child, .framer-PBusZ .framer-165vv1x > :last-child { margin-right: 0px; } .framer-PBusZ .framer-dj3jpj > *, .framer-PBusZ .framer-1r7gx3h > *, .framer-PBusZ .framer-1kmo4ix > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-PBusZ .framer-80vvmb > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-PBusZ .framer-1l884c4 > *, .framer-PBusZ .framer-1m1hs6k > *, .framer-PBusZ .framer-sxfuyg > *, .framer-PBusZ .framer-n2crwu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PBusZ .framer-14iu1pv > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PBusZ .framer-k0j3qd > *, .framer-PBusZ .framer-eayn4l > *, .framer-PBusZ .framer-1jdat1a > *, .framer-PBusZ .framer-1ablctk > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-PBusZ .framer-sstju0 > *, .framer-PBusZ .framer-1pojt0i > *, .framer-PBusZ .framer-k1rwo8 > *, .framer-PBusZ .framer-1f366v5 > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-PBusZ .framer-13yh958 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-PBusZ .framer-12tqqln > *, .framer-PBusZ .framer-7z7zc1 > *, .framer-PBusZ .framer-1kj1kha > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,\"@media (min-width: 810px) and (max-width: 1199px) { .framer-PBusZ.framer-pyu780 { width: 810px; } .framer-PBusZ .framer-rk1rc1-container { order: 0; } .framer-PBusZ .framer-jtx3tq-container { order: 2; } .framer-PBusZ .framer-1v1prz6-container { order: 1; } .framer-PBusZ .framer-1xpljd1-container { order: 3; } .framer-PBusZ .framer-1poioau { order: 4; padding: 72px 0px 0px 0px; } .framer-PBusZ .framer-16sjar0 { height: var(--framer-aspect-ratio-supported, 190px); } .framer-PBusZ .framer-omo5kf { background-color: unset; box-shadow: unset; } .framer-PBusZ .framer-1v4ivn { order: 5; } .framer-PBusZ .framer-ih2et6 { gap: 24px; grid-template-columns: repeat(auto-fill, minmax(302px, 1fr)); } .framer-PBusZ .framer-1rptqcl-container { left: -24px; right: -24px; width: unset; } .framer-PBusZ .framer-1teyila { order: 6; } .framer-PBusZ .framer-10m8ynl { height: var(--framer-aspect-ratio-supported, 361px); } .framer-PBusZ .framer-14iu1pv { order: 7; } .framer-PBusZ .framer-ci6ls { grid-template-columns: repeat(auto-fill, minmax(372px, 1fr)); } .framer-PBusZ .framer-k0j3qd, .framer-PBusZ .framer-eayn4l, .framer-PBusZ .framer-1jdat1a, .framer-PBusZ .framer-1ablctk { bottom: 32px; top: unset; } .framer-PBusZ .framer-os9l2j { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 47%); } .framer-PBusZ .framer-16bonwn { border-bottom-right-radius: unset; } .framer-PBusZ .framer-y9q1pj { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 35%, rgb(255, 255, 255) 38%); } .framer-PBusZ .framer-13yh958 { order: 8; padding: 140px 0px 0px 0px; } .framer-PBusZ .framer-1odhd30 { height: min-content; } .framer-PBusZ .framer-12tqqln { order: 9; padding: 120px 0px 120px 0px; } .framer-PBusZ .framer-165vv1x { order: 11; padding: 120px 0px 160px 0px; } .framer-PBusZ .framer-oz4tmr-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PBusZ .framer-ih2et6 { gap: 0px; } .framer-PBusZ .framer-ih2et6 > *, .framer-PBusZ .framer-ih2et6 > :first-child, .framer-PBusZ .framer-ih2et6 > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-PBusZ.framer-pyu780 { width: 390px; } .framer-PBusZ .framer-rk1rc1-container { order: 0; } .framer-PBusZ .framer-jtx3tq-container { order: 1; } .framer-PBusZ .framer-1xpljd1-container { order: 3; } .framer-PBusZ .framer-1poioau { order: 4; padding: 60px 0px 0px 0px; } .framer-PBusZ .framer-16sjar0 { height: var(--framer-aspect-ratio-supported, 50px); } .framer-PBusZ .framer-omo5kf { background-color: unset; box-shadow: unset; } .framer-PBusZ .framer-1v4ivn { flex-direction: column; order: 5; padding: 120px 0px 0px 0px; } .framer-PBusZ .framer-dj3jpj, .framer-PBusZ .framer-1m1hs6k { flex: none; width: 100%; } .framer-PBusZ .framer-ih2et6 { gap: 16px; grid-template-columns: repeat(auto-fill, minmax(136px, 1fr)); overflow: visible; } .framer-PBusZ .framer-1rptqcl-container { left: -74px; right: -74px; width: unset; } .framer-PBusZ .framer-1teyila { flex-direction: column; order: 6; padding: 120px 0px 0px 0px; } .framer-PBusZ .framer-80vvmb { flex: none; flex-direction: column; width: 100%; } .framer-PBusZ .framer-1l884c4 { align-content: center; align-items: center; flex: none; gap: 24px; order: 1; width: 100%; } .framer-PBusZ .framer-10m8ynl { flex: none; height: var(--framer-aspect-ratio-supported, 198px); order: 0; width: 100%; } .framer-PBusZ .framer-14iu1pv { order: 7; padding: 120px 0px 0px 0px; } .framer-PBusZ .framer-1r7gx3h { gap: 48px; } .framer-PBusZ .framer-ci6ls { grid-template-columns: repeat(auto-fill, minmax(272px, 1fr)); } .framer-PBusZ .framer-k0j3qd, .framer-PBusZ .framer-eayn4l, .framer-PBusZ .framer-1jdat1a, .framer-PBusZ .framer-1ablctk { bottom: 32px; top: unset; } .framer-PBusZ .framer-6topi1 { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 39%); } .framer-PBusZ .framer-os9l2j { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 37%); } .framer-PBusZ .framer-16bonwn { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 10.996563732624054%, rgb(255, 255, 255) 41%); } .framer-PBusZ .framer-y9q1pj { background: linear-gradient(180deg, rgba(217, 217, 217, 0) 19%, rgb(255, 255, 255) 32%); } .framer-PBusZ .framer-13yh958 { flex-direction: column; order: 8; padding: 100px 0px 0px 0px; } .framer-PBusZ .framer-1odhd30 { height: min-content; } .framer-PBusZ .framer-12tqqln { order: 9; padding: 120px 0px 0px 0px; } .framer-PBusZ .framer-1kj1kha { padding: 100px 40px 280px 40px; } .framer-PBusZ .framer-wopctd-container { bottom: -191px; left: 40px; right: 40px; } .framer-PBusZ .framer-165vv1x { flex-direction: column; order: 11; padding: 160px 0px 120px 0px; z-index: 1; } .framer-PBusZ .framer-1kmo4ix { flex: none; padding: 80px 24px 0px 24px; width: 100%; } .framer-PBusZ .framer-oz4tmr-container { order: 12; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-PBusZ .framer-1v4ivn, .framer-PBusZ .framer-ih2et6, .framer-PBusZ .framer-1teyila, .framer-PBusZ .framer-80vvmb, .framer-PBusZ .framer-1l884c4, .framer-PBusZ .framer-1r7gx3h, .framer-PBusZ .framer-13yh958, .framer-PBusZ .framer-165vv1x { gap: 0px; } .framer-PBusZ .framer-1v4ivn > *, .framer-PBusZ .framer-1teyila > *, .framer-PBusZ .framer-165vv1x > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-PBusZ .framer-1v4ivn > :first-child, .framer-PBusZ .framer-1teyila > :first-child, .framer-PBusZ .framer-80vvmb > :first-child, .framer-PBusZ .framer-1l884c4 > :first-child, .framer-PBusZ .framer-1r7gx3h > :first-child, .framer-PBusZ .framer-13yh958 > :first-child, .framer-PBusZ .framer-165vv1x > :first-child { margin-top: 0px; } .framer-PBusZ .framer-1v4ivn > :last-child, .framer-PBusZ .framer-1teyila > :last-child, .framer-PBusZ .framer-80vvmb > :last-child, .framer-PBusZ .framer-1l884c4 > :last-child, .framer-PBusZ .framer-1r7gx3h > :last-child, .framer-PBusZ .framer-13yh958 > :last-child, .framer-PBusZ .framer-165vv1x > :last-child { margin-bottom: 0px; } .framer-PBusZ .framer-ih2et6 > *, .framer-PBusZ .framer-ih2et6 > :first-child, .framer-PBusZ .framer-ih2et6 > :last-child { margin: 0px; } .framer-PBusZ .framer-80vvmb > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-PBusZ .framer-1l884c4 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-PBusZ .framer-1r7gx3h > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-PBusZ .framer-13yh958 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7270.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"OQFceudrM\":{\"layout\":[\"fixed\",\"auto\"]},\"n7pp02suE\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"r5ehnNOi1\":{\"pattern\":\":r5ehnNOi1\",\"name\":\"top\"},\"skQbomshB\":{\"pattern\":\":skQbomshB\",\"name\":\"header\"}}\n * @framerResponsiveScreen\n */const FramersvTr9mRwG=withCSS(Component,css,\"framer-PBusZ\");export default FramersvTr9mRwG;FramersvTr9mRwG.displayName=\"Home\";FramersvTr9mRwG.defaultProps={height:7270.5,width:1200};addFonts(FramersvTr9mRwG,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...AlertFonts,...HeaderBGColorEffectFonts,...BGLinesFonts,...HeaderFonts,...CtaCardFonts,...SectionTitleFonts,...StatsWidgetFonts,...BrandFonts,...TickerFonts,...ButtonFonts,...StatsIntegrationFonts,...QuoteTickerFonts,...BlogComponentHomepageFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersvTr9mRwG\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7270.5\",\"framerScrollSections\":\"{\\\"r5ehnNOi1\\\":{\\\"pattern\\\":\\\":r5ehnNOi1\\\",\\\"name\\\":\\\"top\\\"},\\\"skQbomshB\\\":{\\\"pattern\\\":\\\":skQbomshB\\\",\\\"name\\\":\\\"header\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OQFceudrM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n7pp02suE\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "directionTransformers", "offset", "supportsAcceleratedAnimations", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "useMotionValue", "transformer", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "measure", "te", "parentLength", "start", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "QuoteCardFonts", "getFonts", "pRHNxfQNC_default", "SlideshowFonts", "Slideshow", "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", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerKyo4w7WhU", "withCSS", "Kyo4w7WhU_default", "addPropertyControls", "ControlType", "addFonts", "ButtonFonts", "getFonts", "e4cLY_3Uc_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "cardImage", "description", "height", "id", "link", "title", "title2", "visible", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "aiRt2N4lW", "OH12IkuxY", "RjKwgYMss", "BbkejfJVC", "uXr8Zfg2t", "H5Kww_wZP", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerLr5OYEubM", "withCSS", "Lr5OYEubM_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BlogCard2Fonts", "getFonts", "pT3qjiXBK_default", "cycleOrder", "variantClassNames", "transitions", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "fallbackLocale", "locale", "dateStyle", "timeZone", "QueryData", "query", "children", "data", "useQueryData", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "useLocaleInfo", "style", "className", "layoutId", "variant", "aRsDZYt0IMKYn7FLEG", "z73Iw8W3BMKYn7FLEG", "Q6qNtccZdMKYn7FLEG", "MJoGirltkMKYn7FLEG", "ijli88ei6MKYn7FLEG", "LXPPb0mj_MKYn7FLEG", "idMKYn7FLEG", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "activeLocaleCode", "useLocaleCode", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "motion", "cx", "eLioD_txX_default", "collection", "i", "PathVariablesContext", "pT3qjiXBK_default", "resolveLink", "enumToDisplayNameFunctions", "css", "FramerX0kvphtgF", "withCSS", "X0kvphtgF_default", "addFonts", "BlogCard2Fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "AlertFonts", "getFonts", "ONt3ECiQY_default", "HeaderBGColorEffectFonts", "vVtWap7YY_default", "BGLinesFonts", "kaiTVKiR3_default", "HeaderFonts", "gXVPwU53P_default", "CtaCardFonts", "Lr5OYEubM_default", "SectionTitleFonts", "CzWhLJhhB_default", "StatsWidgetFonts", "ypZQ6tf1U_default", "BrandFonts", "N5ihzPwBB_default", "TickerFonts", "Ticker", "ButtonFonts", "e4cLY_3Uc_default", "StatsIntegrationFonts", "ku8l9d_5I_default", "QuoteTickerFonts", "Kyo4w7WhU_default", "BlogComponentHomepageFonts", "X0kvphtgF_default", "FooterFonts", "uWBBIPwQe_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "elementId1", "router", "useRouter", "ref2", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "ResolveLinks", "resolvedLinks", "RichText2", "x", "Image2", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "resolvedLinks8", "resolvedLinks9", "resolvedLinks10", "resolvedLinks11", "resolvedLinks12", "resolvedLinks13", "resolvedLinks14", "resolvedLinks15", "resolvedLinks16", "css", "FramersvTr9mRwG", "withCSS", "svTr9mRwG_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
