{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js", "ssg:https://ga.jspm.io/npm:phenomenon@1.6.0/dist/phenomenon.mjs", "ssg:https://ga.jspm.io/npm:cobe@0.6.0/dist/index.esm.js", "ssg:https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/SY4EOdo4KxEvLISnWiR3/Globe.js", "ssg:https://framerusercontent.com/modules/GS1wSMTYr4eTGySJQ49D/VGl06yPR4YWaRJij1Trn/qjkA5r_NQ.js", "ssg:https://framerusercontent.com/modules/yKqfjbZFgDqopJfHqoNT/PoKW92mNL9vJSftzvRMc/wGkQjXuJG.js", "ssg:https://framerusercontent.com/modules/FZnugcRPt3JpvJo53ZDU/rSIv1kCDUON6lTwFyHfM/BCHxjJJcf.js", "ssg:https://framerusercontent.com/modules/FvUdVuCobvU50JqOn8po/JcHkjmapcLRshuroAnds/o_g9FqfwV.js", "ssg:https://framerusercontent.com/modules/a2h1n6jWcmuPzVhzvRys/v1cPMiya41xPZK8sir0E/uAwW3wUbq.js", "ssg:https://framerusercontent.com/modules/qgBfHBzLhUllgTW9GlHW/gzQIHIZspQPaGQvXfcmd/xbmreDUZ8.js", "ssg:https://framerusercontent.com/modules/yuRc0OmpcLfFHFRqQQj5/BFKf5VCuzh9mJiIZVOuA/ZKgSHIfat.js", "ssg:https://framerusercontent.com/modules/qqlTYhIxOWT3P2kChzkl/Tn1y05tPYUMMZAuvs3Xg/augiA20Il.js"],
  "sourcesContent": ["function addUniqueItem(t,e){-1===t.indexOf(e)&&t.push(e)}function removeItem(t,e){const n=t.indexOf(e);n>-1&&t.splice(n,1)}const clamp=(t,e,n)=>Math.min(Math.max(n,t),e);const t={duration:.3,delay:0,endDelay:0,repeat:0,easing:\"ease\"};const isNumber=t=>\"number\"===typeof t;const isString=t=>\"string\"===typeof t;const isEasingGenerator=t=>\"object\"===typeof t&&Boolean(t.createAnimation);const isCubicBezier=t=>Array.isArray(t)&&isNumber(t[0]);const isEasingList=t=>Array.isArray(t)&&!isNumber(t[0]);const wrap=(t,e,n)=>{const o=e-t;return((n-t)%o+o)%o+t};function getEasingForSegment(t,e){return isEasingList(t)?t[wrap(0,t.length,e)]:t}const mix=(t,e,n)=>-n*t+n*e+t;const noop=()=>{};const noopReturn=t=>t;const progress=(t,e,n)=>e-t===0?1:(n-t)/(e-t);function fillOffset(t,e){const n=t[t.length-1];for(let o=1;o<=e;o++){const s=progress(0,e,o);t.push(mix(n,1,s))}}function defaultOffset(t){const e=[0];fillOffset(e,t-1);return e}function interpolate(t,e=defaultOffset(t.length),n=noopReturn){const o=t.length;const s=o-e.length;s>0&&fillOffset(e,s);return s=>{let r=0;for(;r<o-2;r++)if(s<e[r+1])break;let f=clamp(0,1,progress(e[r],e[r+1],s));const c=getEasingForSegment(n,r);f=c(f);return mix(t[r],t[r+1],f)}}const e={ms:t=>1e3*t,s:t=>t/1e3};\n/*\n  Convert velocity into velocity per second\n\n  @param [number]: Unit per frame\n  @param [number]: Frame duration in ms\n*/function velocityPerSecond(t,e){return e?t*(1e3/e):0}export{addUniqueItem,clamp,defaultOffset,t as defaults,fillOffset,getEasingForSegment,interpolate,isCubicBezier,isEasingGenerator,isEasingList,isNumber,isString,mix,noop,noopReturn,progress,removeItem,e as time,velocityPerSecond,wrap};\n\n//# sourceMappingURL=index.es.js.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useCallback,useLayoutEffect,useEffect,useState,useRef,cloneElement,startTransition}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{scroll,resize}from\"@motionone/dom\";import{clamp}from\"@motionone/utils\";import{animate,motion,useMotionValue,useTransform,useReducedMotion}from\"framer-motion\";import{usePadding,paddingControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";/**\n * Calculate the width of the fade mask. Fade width and inset are provided\n * as percentages. There's a fade on the left and the right, so we return\n * a maximum of 50%.\n */function calcMaskWidth([inset,width]){return inset+(100-inset)*(width/100)*.5;}/**\n * Use media queries to determine if this device uses a mouse as\n * the primary input.\n */function useIsMouse(){const[isMouseDevice,setIsMouseDevice]=useState(false);useLayoutEffect(()=>{startTransition(()=>setIsMouseDevice(window.matchMedia(\"(pointer:fine)\").matches));},[]);return isMouseDevice;}/**\n * This checks a scroll position against the available scrollable\n * range. If we have hit an edge, start/end, we fade out the pagination\n * controls and mask. Likewise if we've just moved away from an edge we\n * fade them back in.\n */function checkLimit(progress,target,{edgeOpacity,moreItems,buttonRef},transition){if(moreItems.current&&progress===target){moreItems.current=false;animate(edgeOpacity,1,transition);buttonRef.current.setAttribute(\"disabled\",\"\");}else if(!moreItems.current&&progress!==target){moreItems.current=true;animate(edgeOpacity,0,transition);buttonRef.current.removeAttribute(\"disabled\");}}function useGUI(initialMoreItems,initialAlpha){const moreItems=useRef(initialMoreItems);const edgeOpacity=useMotionValue(moreItems.current?0:1);const fadeOpacity=useTransform(edgeOpacity,[0,1],[initialAlpha||0,1]);const buttonOpacity=useTransform(edgeOpacity,v=>1-v);const buttonRef=useRef(null);/**\n     * Returns a pointer-events CSS value for a given opacity.\n     * The threshold here is arbitrary, the theory being we\n     * should only enable pointer-events when the button is\n     * somewhat visible.\n     */const pointerEvents=useTransform(buttonOpacity,v=>v>.2?\"auto\":\"none\");/**\n     * Returns a cursor CSS value for a given pointer-events value.\n     * So only indicate\n     */const cursor=useTransform(pointerEvents,v=>v===\"auto\"?\"pointer\":\"default\");const buttonStyle={...baseButtonStyles,opacity:buttonOpacity,pointerEvents,cursor};return{moreItems,fadeOpacity,edgeOpacity,buttonStyle,buttonRef};}function setAriaVisible({element}){element.setAttribute(\"aria-hidden\",false);}function useScrollLimits(container,axis,scrollInfo,updateCurrentScroll,targetScroll,checkLimits,measureItems){useEffect(()=>{if(!container.current)return;const updateScrollInfo=info=>{scrollInfo.current=info[axis];/**\n             * If we've reached our target scroll, delete it.\n             * This way we know when to make calculations based on the\n             * actual current scroll or the target scroll.\n             */if(info[axis].current===targetScroll.current){targetScroll.current=undefined;}updateCurrentScroll(info[axis].current);checkLimits();};const stopScroll=scroll(updateScrollInfo,{container:container.current,axis});const stopResize=resize(container.current,()=>{measureItems();checkLimits();});return()=>{stopScroll();stopResize();};},[checkLimits,measureItems]);}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export default function Carousel({slots,gap,axis,align,sizingObject,fadeObject,arrowObject,snapObject,progressObject,ariaLabel,borderRadius,effectsObject,...props}){// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numItems=Children.count(filteredSlots);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const padding=usePadding(props);const axisLabel=axis?\"x\":\"y\";const{fadeContent,fadeWidth,fadeInset,fadeTransition,fadeAlpha}=fadeObject;const{snap,snapEdge,fluid}=snapObject;const{widthType,widthInset,widthColumns,heightType,heightInset,heightRows}=sizingObject;const{showScrollbar,showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressObject;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowPadding}=arrowObject;/**\n     * The latest scroll info on the scrollable axis as reported by Motion One.\n     */const scrollInfo=useRef(undefined);/**\n     * The target scroll we're currently animating to, calculated when\n     * a user presses a pagination button.\n     */const targetScroll=useRef(undefined);/**\n     * If we're performing a scroll animation, return the target scroll instead\n     * of the latest scroll position. This will help users paginate through\n     * a carousel much quicker.\n     */const currentScroll=useMotionValue(0);const updateCurrentScroll=newScroll=>{currentScroll.set(targetScroll.current!==undefined?targetScroll.current:newScroll);};/**\n     * We only want to display pagination buttons if the user has enabled the setting\n     * and this is actually a mouse device.\n     */const isMouseDevice=useIsMouse();/**\n     * Create all the motion values for the GUI at each end of the carousel.\n     */const start=useGUI(false,fadeAlpha);const end=useGUI(true,fadeAlpha);const startMaskInset=useMotionValue(fadeInset*.5);const endMaskInset=useTransform(startMaskInset,v=>100-v);const baseWidth=useMotionValue(fadeWidth);const startMaskWidth=useTransform([startMaskInset,baseWidth],calcMaskWidth);const endMaskWidth=useTransform(startMaskWidth,v=>100-v);const direction=useMotionValue(axis?\"right\":\"bottom\");const mask=useTransform([direction,start.fadeOpacity,startMaskInset,startMaskWidth,end.fadeOpacity,endMaskInset,endMaskWidth],latest=>{return`linear-gradient(to ${latest[0]}, rgb(0, 0, 0, ${latest[1]}) ${latest[2]}%, rgb(0, 0, 0, 1) ${latest[3]}%, rgba(0, 0, 0, 1) ${latest[6]}%, rgb(0, 0, 0, ${latest[4]}) ${latest[5]}%)`;});const carouselRef=useRef(null);/**\n     * Dots state\n     */const[numPages,setNumPages]=useState(isCanvas?4:1);/**\n     * Generate styles for components.\n     */const itemStyle={scrollSnapAlign:snapEdge,flexShrink:0};const childStyle={};if(align===\"stretch\"){if(axis){childStyle.height=\"100%\";itemStyle.height=\"auto\";}else{childStyle.width=\"100%\";itemStyle.width=\"auto\";}}if(!fluid){itemStyle.scrollSnapStop=\"always\";}if(widthType===\"stretch\"){itemStyle.width=`calc(100% - ${widthInset||0}px)`;childStyle.width=\"100%\";}else if(widthType===\"columns\"){itemStyle.width=`calc(${100/widthColumns}% - ${gap}px + ${gap/widthColumns}px)`;childStyle.width=\"100%\";}if(heightType===\"stretch\"){itemStyle.height=`calc(100% - ${heightInset||0}px)`;childStyle.height=\"100%\";}else if(heightType===\"rows\"){itemStyle.height=`calc(${100/heightRows}% - ${gap}px + ${gap/heightRows}px)`;childStyle.height=\"100%\";}const scrollOverflow=isCanvas?\"hidden\":\"auto\";const containerStyle={...baseContainerStyle,padding};const carouselStyle={...baseCarouselStyle,gap,alignItems:align,flexDirection:axis?\"row\":\"column\",overflowX:axis?scrollOverflow:\"hidden\",overflowY:axis?\"hidden\":scrollOverflow,scrollSnapType:snap?`${axisLabel} mandatory`:undefined,WebkitOverflowScrolling:\"touch\",WebkitMaskImage:fadeContent?mask:undefined,maskImage:fadeContent?mask:undefined,borderRadius};const carouselA11y={[\"aria-roledescription\"]:\"carousel\"};if(ariaLabel){carouselA11y[\"aria-title\"]=ariaLabel;}const itemA11y={};if(align===\"stretch\"){itemA11y[\"aria-role\"]=\"group\";itemA11y[\"aria-roledescription\"]=\"slide\";}if(!isCanvas){const itemSizes=useRef([]);useScrollLimits(carouselRef,axisLabel,scrollInfo,updateCurrentScroll,targetScroll,useCallback(()=>{if(!scrollInfo.current)return;const{targetLength,containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();if(!targetLength&&!containerLength)return;if(targetLength>containerLength){checkLimit(current,0,start,fadeTransition);checkLimit(current,scrollLength,end,fadeTransition);for(let i=0;i<itemSizes.current.length;i++){const{element,start,end}=itemSizes.current[i];if(end<current||start>current+containerLength){element.setAttribute(\"aria-hidden\",true);}else{element.setAttribute(\"aria-hidden\",false);}}}else{checkLimit(0,0,start,fadeTransition);checkLimit(1,1,end,fadeTransition);itemSizes.current.forEach(setAriaVisible);}// This used to be Math.ceil, which would round 3.05 to 4.\n// This now uses Math.round to ensure people get a perfect amount of dots\n// when using Columns or Rows \u2014\u00A0Benjamin\n/**\n                 * Update by Matt: changing back to ceil, might break dots but round was incorrectly\n                 * paginating for all widths - overshooting items at shorter viewports and\n                 * not paginating at all for wide.\n                 */let newNumPages=Math.ceil(targetLength/containerLength);if(!isNaN(newNumPages)){// If the number of dots is 65% of the number of items, make it 100%\nif(newNumPages/numItems>.65)newNumPages=numItems;if(newNumPages!==numPages)setNumPages(newNumPages);}},[numPages]),useCallback(()=>{if(!carouselRef.current)return;itemSizes.current=Array.from(carouselRef.current.children).map(element=>{return axis?{element,start:element.offsetLeft,end:element.offsetLeft+element.offsetWidth}:{element,start:element.offsetTop,end:element.offsetTop+element.offsetHeight};});},[]));}/**\n     * On the canvas, we want to keep the motion values updated\n     * with the latest props. Outside of the canvas these will never\n     * update.\n     */if(isCanvas){useEffect(()=>{baseWidth.set(fadeWidth);},[fadeWidth]);useEffect(()=>{startMaskInset.set(fadeInset*.5);},[fadeInset]);useEffect(()=>{direction.set(axis?\"right\":\"bottom\");},[axis]);}/*const findNextItem = (delta: 1 | -1, target: number) => {\n        if (!scrollInfo.current) return\n        const { current } = scrollInfo.current\n        const { children } = carouselRef.current\n        let scrollTarget\n\n        let i = delta === 1 ? 0 : children.length - 1\n        while (scrollTarget === undefined) {\n            const item = children[i]\n\n            const start = axis ? item.offsetLeft : item.offsetTop\n            const length = axis ? item.offsetWidth : item.offsetHeight\n            const end = start + length\n\n            const threshold = 0.05\n            if (delta === 1) {\n                const visibility = progress(start, end, target)\n                if (visibility < 1 - threshold) {\n                    scrollTarget = start\n                } else if (i === children.length - 1) {\n                    scrollTarget = end\n                }\n            } else if (delta === -1) {\n                const visibility = progress(start, end, target)\n                if (visibility > threshold) {\n                    scrollTarget = end\n                } else if (i === 0) {\n                    scrollTarget = start\n                }\n            }\n\n            i += delta\n        }\n\n        return scrollTarget\n    }*/const isReducedMotion=useReducedMotion();const goto=scrollTo=>{targetScroll.current=scrollTo;const options=axis?{left:scrollTo}:{top:scrollTo};carouselRef.current.scrollTo({...options,behavior:isReducedMotion?\"auto\":\"smooth\"});};const gotoPage=(page,adjustment)=>{if(!scrollInfo.current)return;const{scrollLength}=scrollInfo.current;const totalLen=scrollLength/(numPages-1);goto(page*totalLen+adjustment*totalLen);};const gotoDelta=delta=>()=>{if(!scrollInfo.current)return;const{containerLength,scrollLength}=scrollInfo.current;const current=currentScroll.get();const pageLength=scrollLength/numPages;const currentPage=clamp(0,numPages-1,Math.floor(current/pageLength));let adjustment=0;if(snap&&(snapEdge===\"start\"||snapEdge===\"end\")&&delta>=1)adjustment=.4// this ensures it doesn't snap back to previous page*/\n    ;gotoPage(currentPage+delta,adjustment);};/**\n     * Return placeholder if no children\n     */if(numItems===0){return /*#__PURE__*/_jsx(Placeholder,{});}const dots=[];const dotsBlurStyle={};if(numPages>1&&showProgressDots&&!showScrollbar){for(let i=0;i<numPages;i++){const isSelected=isCanvas&&!i||false;dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,isSelected:isSelected,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>startTransition(()=>gotoPage(i)),currentScroll:currentScroll,scrollInfo:scrollInfo,total:numPages,index:i,gap:dotsGap,padding:dotsPadding,axis:axis}));}if(dotsBlur){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=`blur(${dotsBlur}px)`;}}return /*#__PURE__*/_jsxs(\"section\",{style:containerStyle,...carouselA11y,children:[/*#__PURE__*/_jsx(motion.ul,{ref:carouselRef,style:carouselStyle,className:\"framer--carousel\",\"data-show-scrollbar\":showScrollbar,\"aria-atomic\":\"false\",\"aria-live\":\"polite\",onWheel:()=>targetScroll.current=undefined,children:Children.map(filteredSlots,(child,index)=>/*#__PURE__*/_jsx(\"li\",{style:itemStyle,...itemA11y,\"aria-label\":`${index+1} of ${numItems}`,children:/*#__PURE__*/cloneElement(child,{...child.props,style:{...child.props?.style,...childStyle}})}))}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles,padding:arrowPadding,display:\"flex\",flexDirection:axis?\"row\":\"column\"},\"aria-label\":\"Carousel pagination controls\",className:\"framer--carousel-controls\",\"data-show-mouse-controls\":showMouseControls,children:[/*#__PURE__*/_jsx(motion.button,{ref:start.buttonRef,type:\"button\",style:{...start.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\"})}),/*#__PURE__*/_jsx(motion.button,{ref:end.buttonRef,type:\"button\",style:{...end.buttonStyle,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!axis?90:0,display:showMouseControls?\"block\":\"none\"},onClick:gotoDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.05},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",alt:\"\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\"})}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:axis?\"50%\":dotsInset,top:!axis?\"50%\":\"unset\",transform:axis?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:axis?\"row\":\"column\",bottom:axis?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,...dotsBlurStyle},children:dots}):null]}),/*#__PURE__*/_jsx(MouseStyles,{})]});}/* Default Properties */Carousel.defaultProps={gap:10,padding:10,progressObject:{showScrollbar:false,showProgressDots:false},sizingObject:{widthType:\"auto\",widthOffset:0,widthColumns:2,heightType:\"auto\",heightOffset:0,heightRows:2},borderRadius:0};/* Property Controls */addPropertyControls(Carousel,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},axis:{type:ControlType.Enum,title:\"Direction\",options:[true,false],optionIcons:[\"direction-horizontal\",\"direction-vertical\"],displaySegmentedControl:true},align:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{axis:{true:[\"align-top\",\"align-middle\",\"align-bottom\"],false:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},...paddingControl,sizingObject:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Enum,title:\"Width\",options:[\"auto\",\"stretch\",\"columns\"],optionTitles:[\"Auto\",\"Stretch\",\"Columns\"],defaultValue:\"auto\"},widthInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.widthType!==\"stretch\"},widthColumns:{type:ControlType.Number,title:\"Columns\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.widthType!==\"columns\"},heightType:{type:ControlType.Enum,title:\"Height\",options:[\"auto\",\"stretch\",\"rows\"],optionTitles:[\"Auto\",\"Stretch\",\"Rows\"],defaultValue:\"auto\"},heightInset:{type:ControlType.Number,title:\"Inset\",min:0,max:500,defaultValue:0,hidden:props=>props.heightType!==\"stretch\"},heightRows:{type:ControlType.Number,title:\"Rows\",min:1,max:10,defaultValue:2,displayStepper:true,hidden:props=>props.heightType!==\"rows\"}}},snapObject:{type:ControlType.Object,title:\"Snapping\",controls:{snap:{type:ControlType.Boolean,title:\"Enable\"},snapEdge:{type:ControlType.Enum,title:\"Edge\",options:[\"start\",\"center\",\"end\"],optionTitles:[\"Left\",\"Center\",\"Right\"],defaultValue:\"center\",hidden:props=>!props.snap},fluid:{type:ControlType.Boolean,title:\"Fluid\",defaultValue:false,hidden:props=>!props.snap}}},fadeObject:{type:ControlType.Object,title:\"Fading\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Enable\",defaultValue:false},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden:props=>!props.fadeContent},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",hidden:props=>!props.fadeContent,min:0,max:1,step:.05,defaultValue:0},fadeTransition:{type:ControlType.Transition,title:\"Transition\",hidden:props=>!props.fadeContent}}},progressObject:{type:ControlType.Object,title:\"Progress\",controls:{showScrollbar:{type:ControlType.Boolean,title:\"Scroll Bar\",defaultValue:false},showProgressDots:{type:ControlType.Boolean,title:\"Dots\",defaultValue:false,hidden:props=>props.showScrollbar},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:4,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}},arrowObject:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:true},arrowFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showMouseControls},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:40,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:0,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls}}},ariaLabel:{type:ControlType.String,title:\"Aria Label\",placeholder:\"Movies...\"},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0}});function Dot({currentScroll,scrollInfo,isSelected,selectedOpacity,opacity:unselectedOpacity,total,index,dotStyle,buttonStyle,gap,padding,axis,...props}){const opacity=useTransform(currentScroll,v=>{if(!scrollInfo.current?.scrollLength){return index===0?selectedOpacity:unselectedOpacity;}const pageLength=scrollInfo.current?.scrollLength/total;const minScroll=pageLength*index;const maxScroll=minScroll+pageLength;const isSelected=v>=minScroll&&(index<total-1?v<maxScroll:index===total-1);return isSelected?selectedOpacity:unselectedOpacity;});const inlinePadding=gap/2;let top=!axis&&index>0?inlinePadding:padding;let bottom=!axis&&index!==total-1?inlinePadding:padding;let right=axis&&index!==total-1?inlinePadding:padding;let left=axis&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle,opacity}})});}function Placeholder(){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 swipe between.\"})]});}function MouseStyles(){return /*#__PURE__*/_jsx(\"div\",{dangerouslySetInnerHTML:{__html:`<style>@media (pointer: fine) {\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar {\n                    display: none;\n                    -webkit-appearance: none;\n                    width: 0;\n                    height: 0;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"]::-webkit-scrollbar-thumb {\n                    display: none;\n                }\n\n                .framer--carousel[data-show-scrollbar=\"false\"] {\n                    scrollbar-width: none;\n                    scrollbar-height: none;\n                }\n            }</style>`}});}/* 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:130,lineHeight:1.5,textAlign:\"center\"};const labelStyle={clip:\"rect(0 0 0 0)\",WebkitClipPath:\"inset(50%)\",clipPath:\"inset(50%)\",height:1,width:1,margin:-1,padding:0,overflow:\"hidden\",position:\"absolute\",whiteSpace:\"nowrap\"};/**\n * GUI styles\n */const baseContainerStyle={display:\"flex\",overflow:\"hidden\",width:\"100%\",height:\"100%\",position:\"relative\"};const baseCarouselStyle={padding:0,margin:0,listStyle:\"none\",position:\"relative\",display:\"flex\",flex:\"1 1 100%\",width:\"100%\",height:\"100%\"};const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",top:0,left:0,right:0,bottom:0,pointerEvents:\"none\",border:0,padding:0,margin:0};/**\n * Dot styles\n */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Carousel\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicHeight\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "var t=[\"x\",\"y\",\"z\"],e=function(t){Object.assign(this,{uniforms:{},geometry:{vertices:[{x:0,y:0,z:0}]},mode:0,modifiers:{},attributes:[],multiplier:1,buffers:[]}),Object.assign(this,t),this.prepareProgram(),this.prepareUniforms(),this.prepareAttributes()};e.prototype.compileShader=function(t,r){var s=this.gl.createShader(t);return this.gl.shaderSource(s,r),this.gl.compileShader(s),s},e.prototype.prepareProgram=function(){var t=this.gl,r=this.vertex,s=this.fragment,n=t.createProgram();t.attachShader(n,this.compileShader(35633,r)),t.attachShader(n,this.compileShader(35632,s)),t.linkProgram(n),t.useProgram(n),this.program=n},e.prototype.prepareUniforms=function(){for(var t=Object.keys(this.uniforms),r=0;r<t.length;r+=1){var s=this.gl.getUniformLocation(this.program,t[r]);this.uniforms[t[r]].location=s}},e.prototype.prepareAttributes=function(){void 0!==this.geometry.vertices&&this.attributes.push({name:\"aPosition\",size:3}),void 0!==this.geometry.normal&&this.attributes.push({name:\"aNormal\",size:3}),this.attributeKeys=[];for(var t=0;t<this.attributes.length;t+=1)this.attributeKeys.push(this.attributes[t].name),this.prepareAttribute(this.attributes[t])},e.prototype.prepareAttribute=function(r){for(var s=this.geometry,n=this.multiplier,a=s.vertices,o=s.normal,h=new Float32Array(n*a.length*r.size),u=0;u<n;u+=1)for(var f=r.data&&r.data(u,n),c=u*a.length*r.size,l=0;l<a.length;l+=1)for(var p=0;p<r.size;p+=1){var m=this.modifiers[r.name];h[c]=void 0!==m?m(f,l,p,this):\"aPosition\"===r.name?a[l][t[p]]:\"aNormal\"===r.name?o[l][t[p]]:f[p],c+=1}this.attributes[this.attributeKeys.indexOf(r.name)].data=h,this.prepareBuffer(this.attributes[this.attributeKeys.indexOf(r.name)])},e.prototype.prepareBuffer=function(t){var r=t.data,s=t.name,n=t.size,a=this.gl.createBuffer();this.gl.bindBuffer(34962,a),this.gl.bufferData(34962,r,35044);var o=this.gl.getAttribLocation(this.program,s);this.gl.enableVertexAttribArray(o),this.gl.vertexAttribPointer(o,n,5126,!1,0,0),this.buffers[this.attributeKeys.indexOf(t.name)]={buffer:a,location:o,size:n}},e.prototype.render=function(t){var r=this,s=this.uniforms,n=this.multiplier,a=this.gl;a.useProgram(this.program);for(var o=0;o<this.buffers.length;o+=1){var h=this.buffers[o],u=h.location,f=h.buffer,c=h.size;a.enableVertexAttribArray(u),a.bindBuffer(34962,f),a.vertexAttribPointer(u,c,5126,!1,0,0)}Object.keys(t).forEach((function(r){s[r].value=t[r].value})),Object.keys(s).forEach((function(t){var n=s[t];r.uniformMap[n.type](n.location,n.value)})),a.drawArrays(this.mode,0,n*this.geometry.vertices.length),this.onRender&&this.onRender(this)},e.prototype.destroy=function(){for(var t=0;t<this.buffers.length;t+=1)this.gl.deleteBuffer(this.buffers[t].buffer);this.gl.deleteProgram(this.program),this.gl=null};var i=function(t){var r=this,s=t||{},n=s.canvas;void 0===n&&(n=document.querySelector(\"canvas\"));var a=s.context;void 0===a&&(a={});var o=s.contextType;void 0===o&&(o=\"experimental-webgl\");var h=s.settings;void 0===h&&(h={});var u=n.getContext(o,Object.assign({alpha:!1,antialias:!1},a));Object.assign(this,{gl:u,canvas:n,uniforms:{},instances:new Map,shouldRender:!0}),Object.assign(this,{devicePixelRatio:1,clearColor:[1,1,1,1],position:{x:0,y:0,z:2},clip:[.001,100]}),Object.assign(this,h),this.uniformMap={float:function(t,r){return u.uniform1f(t,r)},vec2:function(t,r){return u.uniform2fv(t,r)},vec3:function(t,r){return u.uniform3fv(t,r)},vec4:function(t,r){return u.uniform4fv(t,r)},mat2:function(t,r){return u.uniformMatrix2fv(t,!1,r)},mat3:function(t,r){return u.uniformMatrix3fv(t,!1,r)},mat4:function(t,r){return u.uniformMatrix4fv(t,!1,r)}},u.enable(u.DEPTH_TEST),u.depthFunc(u.LEQUAL),!1===u.getContextAttributes().alpha&&(u.clearColor.apply(u,this.clearColor),u.clearDepth(1)),this.onSetup&&this.onSetup(u),window.addEventListener(\"resize\",(function(){return r.resize()})),this.resize(),this.render()};i.prototype.resize=function(){var t=this.gl,r=this.canvas,s=this.devicePixelRatio,n=this.position;r.width=r.clientWidth*s,r.height=r.clientHeight*s;var a=t.drawingBufferWidth,o=t.drawingBufferHeight,h=a/o;t.viewport(0,0,a,o);var u=Math.tan(Math.PI/180*22.5),f=[1,0,0,0,0,1,0,0,0,0,1,0,n.x,n.y,(h<1?1:h)*-n.z,1];this.uniforms.uProjectionMatrix={type:\"mat4\",value:[.5/u,0,0,0,0,h/u*.5,0,0,0,0,-(this.clip[1]+this.clip[0])/(this.clip[1]-this.clip[0]),-1,0,0,-2*this.clip[1]*(this.clip[0]/(this.clip[1]-this.clip[0])),0]},this.uniforms.uViewMatrix={type:\"mat4\",value:[1,0,0,0,0,1,0,0,0,0,1,0,0,0,0,1]},this.uniforms.uModelMatrix={type:\"mat4\",value:f}},i.prototype.toggle=function(t){t!==this.shouldRender&&(this.shouldRender=void 0!==t?t:!this.shouldRender,this.shouldRender&&this.render())},i.prototype.render=function(){var t=this;this.gl.clear(16640),this.instances.forEach((function(r){r.render(t.uniforms)})),this.onRender&&this.onRender(this),this.shouldRender&&requestAnimationFrame((function(){return t.render()}))},i.prototype.add=function(t,r){void 0===r&&(r={uniforms:{}}),void 0===r.uniforms&&(r.uniforms={}),Object.assign(r.uniforms,JSON.parse(JSON.stringify(this.uniforms))),Object.assign(r,{gl:this.gl,uniformMap:this.uniformMap});var s=new e(r);return this.instances.set(t,s),s},i.prototype.remove=function(t){var r=this.instances.get(t);void 0!==r&&(r.destroy(),this.instances.delete(t))},i.prototype.destroy=function(){var t=this;this.instances.forEach((function(r,s){r.destroy(),t.instances.delete(s)})),this.toggle(!1)};export default i;\n\n//# sourceMappingURL=phenomenon.mjs.map", "import e from\"phenomenon\";var a=\"phi\",o=\"theta\",t=\"mapSamples\",i=\"mapBrightness\",f=\"baseColor\",r=\"markerColor\",l=\"glowColor\",c=\"markers\",n=\"diffuse\",A=\"devicePixelRatio\",g=\"dark\",v=\"offset\",s=\"scale\",d={[a]:\"A\",[o]:\"B\",[t]:\"k\",[i]:\"E\",[f]:\"L\",[r]:\"M\",[l]:\"y\",[n]:\"F\",[g]:\"G\",[v]:\"x\",[s]:\"C\"},{PI:u,sin:m,cos:x}=Math,U=e=>[].concat(...e.map((e=>{let[a,o]=e.location;a=a*u/180,o=o*u/180-u;let t=x(a);return[-t*x(o),m(a),t*m(o),e.size]})),[0,0,0,0]),D=(u,m)=>{let _=(e,a,o)=>({type:e,value:\"undefined\"==typeof m[a]?o:m[a]}),x=u.getContext(\"webgl\")?\"webgl\":\"experimental-webgl\",y=new e({canvas:u,contextType:x,context:{alpha:!0,stencil:!1,antialias:!0,depth:!1,preserveDrawingBuffer:!1},settings:{[A]:m[A]||1,onSetup:e=>{let a=e.RGB,o=e.UNSIGNED_BYTE,t=e.TEXTURE_2D,i=e.createTexture();e.bindTexture(t,i),e.texImage2D(t,0,a,1,1,0,a,o,new Uint8Array([0,0,0,0]));let f=new Image;f.onload=()=>{e.bindTexture(t,i),e.texImage2D(t,0,a,a,o,f),e.generateMipmap(t);let r=e.getParameter(e.CURRENT_PROGRAM),l=e.getUniformLocation(r,\"H\");e.texParameteri(t,e.TEXTURE_MIN_FILTER,e.NEAREST),e.texParameteri(t,e.TEXTURE_MAG_FILTER,e.NEAREST),e.uniform1i(l,0)},f.src=\"data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAQAAAACAAQAAAADMzoqnAAAAAXNSR0IArs4c6QAABA5JREFUeNrV179uHEUAx/Hf3JpbF+E2VASBsmVKTBcpKJs3SMEDcDwBiVJAAewYEBUivIHT0uUBIt0YCovKD0CRjUC4QfHYh8hYXu+P25vZ2Zm9c66gMd/GJ/tz82d3bk8GN4SrByYF2366FNTACIAkivVAAazQdnf3MvAlbNUQfOPAdQDvSAimMWhwy4I2g4SU+Kp04ISLpPBAKLxPyic3O/CCi+Y7rUJbiodcpDOFY7CgxCEXmdYD2EYK2s5lApOx5pEDDYCUwM1XdJUwBV11QQMg59kePSCaPAASQMEL2hwo6TJFgxpg+TgC2ymXPbuvc40awr3D1QCFfbH9kcoqAOkZozpQo0aqAGQRKCog/+tjkgbNFEtg2FffBvBGlSxHoAaAa1u6X4PBAwDiR8FFsrQgeUhfJTSALaB9jy5NCybJPn1SVFiWk7ywN+KzhH1aKAuydhGkbEF4lWohLXDXavlyFgHY7LBnLRdlAP6BS5Cc8RfVDXbkwN/oIvmY+6obbNeBP0JwTuMGu9gTzy1Q4RS/cWpfzszeYwd+CAFrtBW/Hur0gLbJGlD+/OjVwe/drfBxkbbg63dndEDfiEBlAd7ac0BPe1D6Jd8dfbLH+RI0OzseFB5s01/M+gMdAeluLOCAuaUA9Lezo/vSgXoCX9rtEiXnp7Q1W/CNyWcd8DXoS6jH/YZ5vAJEWY2dXFQe2TUgaFaNejCzJ98g6HnlVrsE58sDcYqg+9XY75fPqdoh/kRQWiXKg8MWlJQxUFMPjqnyujhFBE7UxIMjyszk0QwQlFsezImsyvUYYYVED2pk6m0Tg8T04Fwjk2kdAwSACqlM6gRRt3vQYAFGX0Ah7Ebx1H+MDRI5ui0QldH4j7FGcm90XdxD2Jg1AOEAVAKhEFXSn4cKUELurIAKwJ3MArypPscQaLhJFICJ0ohjDySAdH8AhDtCiTuMycH8CXzhH9jUACAO5uMhoAwA5i+T6WAKmmAqnLy80wxHqIPFYpqCwxGaYLt4Dyievg5kEoVEUAhs6pqKgFtDQYOuaXypaWKQfIuwwoGSZgfLsu/XAtI8cGN+h7Cc1A5oLOMhwlIPXuhu48AIvsSBkvtV9wsJRKCyYLfq5lTrQMFd1a262oqBck9K1V0YjQg0iEYYgpS1A9GlXQV5cykwm4A7BzVsxQqo7E+zCegO7Ma7yKgsuOcfKbMBwLC8wvVNYDsANYalEpOAa6zpWjTeMKGwEwC1CiQewJc5EKfgy7GmRAZA4vUVGwE2dPM/g0xuAInE/yG5aZ8ISxWGfYigUVbdyBElTHh2uCwGdfCkOLGgQVBh3Ewp+/QK4CDlR5Ws/Zf7yhCf8pH7vinWAvoVCQ6zz0NX5V/6GkAVV+2/5qsJ/gU8bsxpM8IeAQAAAABJRU5ErkJggg==\"}}});return y.add(\"\",{vertex:\"attribute vec3 aPosition;uniform mat4 uProjectionMatrix;uniform mat4 uModelMatrix;uniform mat4 uViewMatrix;void main(){gl_Position=uProjectionMatrix*uModelMatrix*uViewMatrix*vec4(aPosition,1.);}\",fragment:\"precision highp float;uniform vec2 r,x;uniform vec3 L,M,y;uniform vec4 z[64];uniform float A,B,k,C,D,E,F,G;uniform sampler2D H;float I=1./k;mat3 J(float a,float b){float c=cos(a),d=cos(b),e=sin(a),f=sin(b);return mat3(d,f*e,-f*c,0.,c,e,f,d*-e,d*c);}vec3 v(vec3 c,out float w){c=c.xzy;float p=max(2.,floor(log2(2.236068*k*3.141593*(1.-c.z*c.z))*.72021));vec2 g=floor(pow(1.618034,p)/2.236068*vec2(1.,1.618034)+.5),d=fract((g+1.)*.618034)*6.283185-3.883222,e=-2.*g,f=vec2(atan(c.y,c.x),c.z-1.),q=floor(vec2(e.y*f.x-d.y*(f.y*k+1.),-e.x*f.x+d.x*(f.y*k+1.))/(d.x*e.y-e.x*d.y));float n=3.141593;vec3 s;for(float h=0.;h<4.;h+=1.){vec2 t=vec2(mod(h,2.),floor(h*.5));float j=dot(g,q+t);if(j>k)continue;float a=j,b=0.;if(a>=524288.)a-=524288.,b+=.803894;if(a>=262144.)a-=262144.,b+=.901947;if(a>=131072.)a-=131072.,b+=.950973;if(a>=65536.)a-=65536.,b+=.475487;if(a>=32768.)a-=32768.,b+=.737743;if(a>=16384.)a-=16384.,b+=.868872;if(a>=8192.)a-=8192.,b+=.934436;if(a>=4096.)a-=4096.,b+=.467218;if(a>=2048.)a-=2048.,b+=.733609;if(a>=1024.)a-=1024.,b+=.866804;if(a>=512.)a-=512.,b+=.433402;if(a>=256.)a-=256.,b+=.216701;if(a>=128.)a-=128.,b+=.108351;if(a>=64.)a-=64.,b+=.554175;if(a>=32.)a-=32.,b+=.777088;if(a>=16.)a-=16.,b+=.888544;if(a>=8.)a-=8.,b+=.944272;if(a>=4.)a-=4.,b+=.472136;if(a>=2.)a-=2.,b+=.236068;if(a>=1.)a-=1.,b+=.618034;float l=fract(b)*6.283185,i=1.-2.*j*I,m=sqrt(1.-i*i);vec3 o=vec3(cos(l)*m,sin(l)*m,i);float u=length(c-o);if(u<n)n=u,s=o;}w=n;return s.xzy;}void main(){vec2 a=(gl_FragCoord.xy/r*2.-1.)/C-x*vec2(1.,-1.)/r;a.x*=r.x/r.y;float c=dot(a,a),b;vec3 d=vec3(0.,0.,1.),e=normalize(vec3(a,sqrt(.64-c)));if(c<=.64){vec3 f=e*J(B,A),g=v(f,b);float j=asin(g.y),h=acos(-g.x/cos(j));h=g.z<0.?-h:h;float t=texture2D(H,vec2(h*.5/3.141593,-(j/3.141593+.5))).x,u=smoothstep(8e-3,0.,b),l=dot(e,d),s=pow(l,F)*E,m=t*u*s,N=mix((1.-m)*pow(l,.4),m,G)+.1;gl_FragColor=vec4(L*N,1.);int O=int(D);float n=0.;for(int i=0;i<64;i++){if(i>=O)break;vec4 o=z[i];vec3 p=o.xyz,w=p-f;float q=o.w;if(dot(w,w)>q*q*4.)continue;vec3 P=v(p,b);b=length(P-f),b<q?n+=smoothstep(q*.5,0.,b):0.;}n=min(1.,n*s),gl_FragColor.xyz=mix(gl_FragColor.xyz,M,n),gl_FragColor.xyz+=pow(1.-dot(e,d),4.)*y;}float K=pow(dot(normalize(vec3(-a,sqrt(1.-c))),d),4.)*smoothstep(.1,1.,.2/(c-.64));gl_FragColor+=vec4(K*y,K);}\",uniforms:{r:{type:\"vec2\",value:[m.width,m.height]},A:_(\"float\",a),B:_(\"float\",o),k:_(\"float\",t),E:_(\"float\",i),L:_(\"vec3\",f),M:_(\"vec3\",r),F:_(\"float\",n),y:_(\"vec3\",l),G:_(\"float\",g),z:{type:\"vec4\",value:U(m[c])},D:{type:\"float\",value:m[c].length},x:_(\"vec2\",v,[0,0]),C:_(\"float\",s,1)},mode:4,geometry:{vertices:[{x:-100,y:100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0},{x:100,y:-100,z:0},{x:-100,y:-100,z:0},{x:100,y:100,z:0}]},onRender:({uniforms:e})=>{let a={};if(m.onRender){m.onRender(a);for(let o in d)void 0!==a[o]&&(e[d[o]].value=a[o]);void 0!==a[c]&&(e.z.value=U(a[c]),e.D.value=a[c].length),a.width&&a.height&&(e.r.value=[a.width,a.height])}}}),y};export{D as default};\n\n//# sourceMappingURL=index.esm.js.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,Color}from\"framer\";import{useEffect,useRef}from\"react\";import createGlobe from\"cobe\";import{useSpring}from\"framer-motion\";import{useIsStaticRenderer}from\"framer\";/**\n * GLOBE FOR FRAMER\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 300\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Globe(props){const{background,baseColor,glowColor,isDraggable,dragOptions,speed,theta,phi,dark,diffuse,maxSamples,mapBrightness,markerSize,markerArray,markerColor,scale,alignment,maxWidth,offset}=props;const{offsetX,offsetY}=offset;const{stiffness,damping,mass}=dragOptions;const canvasRef=useRef();const pointerInteracting=useRef(null);const pointerInteractionMovement=useRef(0);const isCanvas=useIsStaticRenderer();const r=useSpring(0,{stiffness:stiffness,damping:damping,mass:mass,restDelta:1e-4,restSpeed:1e-4});const fadeMask=\"radial-gradient(circle at 50% 50%, rgba(0,0,0,1) 60%, rgba(0,0,0,0) 70%)\";useEffect(()=>{let phiValue=phi;let width=0;const onResize=()=>{if(canvasRef.current&&(width=canvasRef.current.offsetWidth)){window.addEventListener(\"resize\",onResize);}};onResize();const baseConvert=convertRGB(baseColor);const glowConvert=convertRGB(glowColor);const markerConvert=convertRGB(markerColor);const globe=createGlobe(canvasRef.current,{devicePixelRatio:2,width:width*2,height:width*2,phi:phi,theta:theta,dark:dark,diffuse:diffuse,mapSamples:maxSamples,mapBrightness:mapBrightness,baseColor:[baseConvert.r,baseConvert.g,baseConvert.b],glowColor:[glowConvert.r,glowConvert.g,glowConvert.b],markerColor:[markerConvert.r,markerConvert.g,markerConvert.b],markers:markerArray.map(marker=>{return{location:[marker.latitude,marker.longitude],size:markerSize};}),scale:scale,offset:[offsetX,offsetY],onRender:state=>{if(!isCanvas){state.phi=phiValue+r.get();}state.width=width*2;state.height=width*2;if(!isCanvas){state.phi=phiValue+r.get();phiValue+=speed/200;}}});return()=>{globe.destroy();};},[props]);return /*#__PURE__*/_jsx(\"div\",{style:{...flexStyles,placeItems:alignment,background:background},children:/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",aspectRatio:\"1/1\",maxWidth:maxWidth,WebkitMaskImage:fadeMask,MozMaskImage:fadeMask,maskImage:fadeMask},children:/*#__PURE__*/_jsx(\"canvas\",{ref:canvasRef,style:{width:\"100%\",height:\"100%\",contain:\"layout paint size\",cursor:\"auto\",userSelect:\"none\"},onPointerDown:e=>{if(isDraggable){pointerInteracting.current=e.clientX-pointerInteractionMovement.current;canvasRef.current.style.cursor=\"grabbing\";}},onPointerUp:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"grab\";}},onPointerOver:()=>{if(isDraggable){canvasRef.current.style.cursor=\"grab\";}},onPointerOut:()=>{if(isDraggable){pointerInteracting.current=null;canvasRef.current.style.cursor=\"auto\";}},onMouseMove:e=>{if(isDraggable){if(pointerInteracting.current!==null){const delta=e.clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}},onTouchMove:e=>{if(pointerInteracting.current!==null&&e.touches[0]){const delta=e.touches[0].clientX-pointerInteracting.current;pointerInteractionMovement.current=delta;r.set(delta/100);}}})})});}/* Default properties */Globe.defaultProps={background:\"#000000\",baseColor:\"#333333\",glowColor:\"#ffffff\",markerColor:\"#ffffff\",isDraggable:true,dragOptions:{stiffness:200,damping:40,mass:1},speed:1,phi:0,theta:.3,dark:1,diffuse:2,mapBrightness:20,maxSamples:2e4,markerSize:.1,markerArray:{latitude:52.3676,longitude:4.9041},scale:1,alignment:\"center\",maxWidth:800,offset:{offsetX:0,offsetY:0}};Globe.displayName=\"Globe\";const dp=Globe.defaultProps;const dpOffset=Globe.defaultProps.offset;const dpDrag=Globe.defaultProps.dragOptions;addPropertyControls(Globe,{background:{type:ControlType.Color,title:\"Backdrop\",defaultValue:dp.background},baseColor:{type:ControlType.Color,title:\"Base\",defaultValue:dp.baseColor},glowColor:{type:ControlType.Color,title:\"Glow\",defaultValue:dp.glowColor},markerColor:{type:ControlType.Color,title:\"Marker\",defaultValue:dp.markerColor},isDraggable:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:dp.isDraggable},dragOptions:{type:ControlType.Object,title:\"Transition\",controls:{stiffness:{type:ControlType.Number,min:0,max:1e3,title:\"Stiffness\",defaultValue:dpDrag.stiffness},damping:{type:ControlType.Number,min:0,max:100,title:\"Damping\",defaultValue:dpDrag.damping},mass:{type:ControlType.Number,min:0,title:\"Mass\",displayStepper:true,defaultValue:dpDrag.mass}},hidden(props){return!props.isDraggable;}},speed:{type:ControlType.Number,min:0,step:.1,displayStepper:true,title:\"Speed\",defaultValue:dp.speed},phi:{type:ControlType.Number,min:0,max:6.28,step:.01,displayStepper:true,title:\"Phi\",defaultValue:dp.phi},theta:{type:ControlType.Number,min:-1.57,max:1.57,step:.01,title:\"Theta\",defaultValue:dp.theta},dark:{type:ControlType.Number,min:0,max:1,step:.1,displayStepper:true,title:\"Dark\",defaultValue:dp.dark},diffuse:{type:ControlType.Number,min:0,max:5,step:.01,title:\"Diffuse\",defaultValue:dp.diffuse},mapBrightness:{type:ControlType.Number,min:0,max:12,step:.01,title:\"Brightness\",defaultValue:dp.mapBrightness},maxSamples:{type:ControlType.Number,min:0,max:1e5,title:\"Samples\",defaultValue:dp.maxSamples},scale:{type:ControlType.Number,min:0,max:5,step:.025,displayStepper:true,title:\"Scale\",defaultValue:dp.scale},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:[\"align-top\",\"align-middle\",\"align-bottom\"],defaultValue:dp.alignment,displaySegmentedControl:true},maxWidth:{type:ControlType.Number,title:\"Max Width\",min:100,max:5e3,defaultValue:dp.maxWidth},offset:{type:ControlType.Object,title:\"Offset\",controls:{offsetX:{type:ControlType.Number,min:-5e3,max:5e3,title:\"X\",defaultValue:dpOffset.offsetX},offsetY:{type:ControlType.Number,min:-5e3,max:5e3,title:\"Y\",defaultValue:dpOffset.offsetY}}},markerSize:{type:ControlType.Number,min:0,max:1,step:.01,title:\"Markers\",defaultValue:dp.markerSize},markerArray:{type:ControlType.Array,title:\"Location\",// defaultValue: [{ latitude: 52.3676, longitude: 4.9041 }],\ncontrol:{type:ControlType.Object,title:\"Location\",controls:{latitude:{type:ControlType.Number,min:-90,max:90,title:\"Lat\",step:1e-4,defaultValue:dp.markerArray.latitude},longitude:{type:ControlType.Number,min:-180,max:180,title:\"Long\",step:1e-4,defaultValue:dp.markerArray.longitude}}}}});/* Styles */const flexStyles={width:\"100%\",height:\"100%\",display:\"flex\",placeItems:\"center\",placeContent:\"center\",overflow:\"visible\"};/* Functions */const convertRGB=color=>{return{r:Color(color).r/255,g:Color(color).g/255,b:Color(color).b/255};};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Globe\",\"slots\":[],\"annotations\":{\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"300\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Globe.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getPropertyControls,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/a4Ko2ynfy39ip44e7iuJ/8dAkkz76T3YLgAMdvGq1/dvxIS3aly.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/zgt9WnwnpM5LiapBVeOT/LlocXhPkd09LROnUYK4B/e8MqUfc3j.js\";import ImageCorner from\"https://framerusercontent.com/modules/Iu8tUvbc9zm7sYyvXkJK/sSUA2T9dezhseLkasRl2/cvsQUo4OB.js\";import Avatar from\"https://framerusercontent.com/modules/xbQkeAVXHi3aKa62M2XK/B2lElF6yjcdRnBktFBUz/tRpAAibDz.js\";const AvatarFonts=getFonts(Avatar);const ImageCornerFonts=getFonts(ImageCorner);const AvatarControls=getPropertyControls(Avatar);const cycleOrder=[\"JIjVYFt9s\",\"nbJKT2XM8\",\"B4i5D7cV1\"];const serializationHash=\"framer-J4Lr9\";const variantClassNames={B4i5D7cV1:\"framer-v-1p8cps3\",JIjVYFt9s:\"framer-v-opc219\",nbJKT2XM8:\"framer-v-xp1x0d\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableEnumMap={\"Default from tp\":\"Oy9Edn2j5\",\"Man 1\":\"I416:97571;24:600\",\"Man 2\":\"fKMORbcBP\",\"Man 3\":\"wQNh7Jgrf\",\"Woman 1\":\"giOLok5Cv\"};const humanReadableVariantMap={Desktop:\"JIjVYFt9s\",Mobile:\"B4i5D7cV1\",Tablet:\"nbJKT2XM8\"};const getProps=({avatar,background,content,height,id,name1,role,width,...props})=>{return{...props,aVnuOEPOK:name1??props.aVnuOEPOK??\"Thomas Wynn\",e5aDJXWMw:role??props.e5aDJXWMw??\"Truck Driver\",N9K4qX5Xd:background??props.N9K4qX5Xd??\"rgb(240, 249, 255)\",ulQAH7a6N:content??props.ulQAH7a6N??\"Amazing app. It's become a must-have for me since I saw my trainer using it. I'm a new driver and this app has help me a lot.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"JIjVYFt9s\",WVYFcS5nc:humanReadableEnumMap[avatar]??avatar??props.WVYFcS5nc??\"fKMORbcBP\"};};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,N9K4qX5Xd,ulQAH7a6N,aVnuOEPOK,e5aDJXWMw,WVYFcS5nc,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"JIjVYFt9s\",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.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-opc219\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"JIjVYFt9s\",ref:refBinding,style:{backgroundColor:N9K4qX5Xd,...style},...addPropertyOverrides({B4i5D7cV1:{\"data-framer-name\":\"Mobile\"},nbJKT2XM8:{\"data-framer-name\":\"Tablet\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-eit5c2\",layoutDependency:layoutDependency,layoutId:\"sqmMvQlG1\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-7a80x4\",layoutDependency:layoutDependency,layoutId:\"kc2w3fTF1\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-s8alvl\",layoutDependency:layoutDependency,layoutId:\"LsmeohHJN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.3em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgba(0, 0, 0, 0.8))\"},children:\"Amazing app. It's become a must-have for me since I saw my trainer using it. I'm a new driver and this app has help me a lot.\"})}),className:\"framer-1g2iid0\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"I81vq7ctA\",style:{\"--extracted-a0htzi\":\"rgba(0, 0, 0, 0.8)\",\"--framer-paragraph-spacing\":\"0px\"},text:ulQAH7a6N,verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-texqx9\",\"data-framer-name\":\"Detail Row\",layoutDependency:layoutDependency,layoutId:\"p8uHquLSZ\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-3w579n\",\"data-framer-name\":\"Avatar / Base\",layoutDependency:layoutDependency,layoutId:\"e_93iKovN\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"48px\",y:(componentViewport?.y||0)+(60+((componentViewport?.height||360)-110-178.5)/2)+5+0+0+0+0+64.5+0+0+0,...addPropertyOverrides({B4i5D7cV1:{y:(componentViewport?.y||0)+(30+((componentViewport?.height||466)-60-178.5)/2)+5+0+0+0+0+64.5+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3g7fww-container\",layoutDependency:layoutDependency,layoutId:\"UVUktXO76-container\",nodeId:\"UVUktXO76\",rendersWithMotion:true,scopeId:\"qjkA5r_NQ\",children:/*#__PURE__*/_jsx(Avatar,{height:\"100%\",id:\"UVUktXO76\",layoutId:\"UVUktXO76\",style:{height:\"100%\",width:\"100%\"},variant:WVYFcS5nc,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yjs3f3\",\"data-framer-name\":\"User Details\",layoutDependency:layoutDependency,layoutId:\"QGs34JDcy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50)))\"},children:\"Thomas Wynn\"})}),className:\"framer-1dcw4g5\",\"data-framer-name\":\"Avatar Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"TfxQQsu38\",style:{\"--extracted-r6o4lv\":\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",\"--framer-paragraph-spacing\":\"20px\"},text:aVnuOEPOK,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:\"Trucker Driver\"})}),className:\"framer-1un3vfj\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lOxJAAE8A\",style:{\"--framer-paragraph-spacing\":\"16px\"},text:e5aDJXWMw,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"42px\",y:(componentViewport?.y||0)+0,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1uxa20s-container\",layoutDependency:layoutDependency,layoutId:\"qDhbHbV4h-container\",nodeId:\"qDhbHbV4h\",rendersWithMotion:true,scopeId:\"qjkA5r_NQ\",children:/*#__PURE__*/_jsx(ImageCorner,{height:\"100%\",id:\"qDhbHbV4h\",layoutId:\"qDhbHbV4h\",style:{height:\"100%\",width:\"100%\"},variant:\"eU_CoYNRz\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:\"42px\",y:(componentViewport?.y||0)+(componentViewport?.height||360)-42,...addPropertyOverrides({B4i5D7cV1:{y:(componentViewport?.y||0)+(componentViewport?.height||466)-42}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-hp0obb-container\",layoutDependency:layoutDependency,layoutId:\"uBeITpz8O-container\",nodeId:\"uBeITpz8O\",rendersWithMotion:true,scopeId:\"qjkA5r_NQ\",style:{rotate:180},children:/*#__PURE__*/_jsx(ImageCorner,{height:\"100%\",id:\"uBeITpz8O\",layoutId:\"uBeITpz8O\",style:{height:\"100%\",width:\"100%\"},variant:\"eU_CoYNRz\",width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J4Lr9.framer-1p43lg9, .framer-J4Lr9 .framer-1p43lg9 { display: block; }\",\".framer-J4Lr9.framer-opc219 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 360px; justify-content: center; overflow: visible; padding: 60px 0px 50px 0px; position: relative; width: 880px; }\",\".framer-J4Lr9 .framer-eit5c2 { 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; overflow: visible; padding: 5px 0px 5px 0px; position: relative; width: 1px; }\",\".framer-J4Lr9 .framer-7a80x4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J4Lr9 .framer-s8alvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J4Lr9 .framer-1g2iid0 { --framer-text-wrap: balance; flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J4Lr9 .framer-texqx9 { align-content: center; align-items: center; 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: min-content; }\",\".framer-J4Lr9 .framer-3w579n { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 48px); overflow: visible; position: relative; width: 48px; }\",\".framer-J4Lr9 .framer-3g7fww-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-J4Lr9 .framer-1yjs3f3 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-J4Lr9 .framer-1dcw4g5, .framer-J4Lr9 .framer-1un3vfj { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J4Lr9 .framer-1uxa20s-container { flex: none; height: 42px; left: 0px; position: absolute; top: 0px; width: 42px; z-index: 1; }\",\".framer-J4Lr9 .framer-hp0obb-container { bottom: 0px; flex: none; height: 42px; position: absolute; right: 0px; width: 42px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J4Lr9.framer-opc219, .framer-J4Lr9 .framer-eit5c2, .framer-J4Lr9 .framer-7a80x4, .framer-J4Lr9 .framer-s8alvl, .framer-J4Lr9 .framer-texqx9, .framer-J4Lr9 .framer-1yjs3f3 { gap: 0px; } .framer-J4Lr9.framer-opc219 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-J4Lr9.framer-opc219 > :first-child { margin-left: 0px; } .framer-J4Lr9.framer-opc219 > :last-child { margin-right: 0px; } .framer-J4Lr9 .framer-eit5c2 > *, .framer-J4Lr9 .framer-s8alvl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J4Lr9 .framer-eit5c2 > :first-child, .framer-J4Lr9 .framer-7a80x4 > :first-child, .framer-J4Lr9 .framer-s8alvl > :first-child, .framer-J4Lr9 .framer-texqx9 > :first-child, .framer-J4Lr9 .framer-1yjs3f3 > :first-child { margin-top: 0px; } .framer-J4Lr9 .framer-eit5c2 > :last-child, .framer-J4Lr9 .framer-7a80x4 > :last-child, .framer-J4Lr9 .framer-s8alvl > :last-child, .framer-J4Lr9 .framer-texqx9 > :last-child, .framer-J4Lr9 .framer-1yjs3f3 > :last-child { margin-bottom: 0px; } .framer-J4Lr9 .framer-7a80x4 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-J4Lr9 .framer-texqx9 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-J4Lr9 .framer-1yjs3f3 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-J4Lr9.framer-v-xp1x0d.framer-opc219 { width: 660px; }\",\".framer-J4Lr9.framer-v-1p8cps3.framer-opc219 { height: 466px; padding: 30px 20px 30px 20px; width: 350px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 350\n * @framerIntrinsicWidth 850\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nbJKT2XM8\":{\"layout\":[\"fixed\",\"fixed\"]},\"B4i5D7cV1\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"N9K4qX5Xd\":\"background\",\"ulQAH7a6N\":\"content\",\"aVnuOEPOK\":\"name1\",\"e5aDJXWMw\":\"role\",\"WVYFcS5nc\":\"avatar\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqjkA5r_NQ=withCSS(Component,css,\"framer-J4Lr9\");export default FramerqjkA5r_NQ;FramerqjkA5r_NQ.displayName=\"Testimonial - simple\";FramerqjkA5r_NQ.defaultProps={height:350,width:850};addPropertyControls(FramerqjkA5r_NQ,{variant:{options:[\"JIjVYFt9s\",\"nbJKT2XM8\",\"B4i5D7cV1\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},N9K4qX5Xd:{defaultValue:\"rgb(240, 249, 255)\",title:\"Background\",type:ControlType.Color},ulQAH7a6N:{defaultValue:\"Amazing app. It's become a must-have for me since I saw my trainer using it. I'm a new driver and this app has help me a lot.\",displayTextArea:true,title:\"Content\",type:ControlType.String},aVnuOEPOK:{defaultValue:\"Thomas Wynn\",displayTextArea:false,title:\"Name\",type:ControlType.String},e5aDJXWMw:{defaultValue:\"Truck Driver\",displayTextArea:false,title:\"Role\",type:ControlType.String},WVYFcS5nc:AvatarControls?.[\"variant\"]&&{...AvatarControls[\"variant\"],defaultValue:\"fKMORbcBP\",description:undefined,hidden:undefined,title:\"Avatar\"}});addFonts(FramerqjkA5r_NQ,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"},{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\"}]},...AvatarFonts,...ImageCornerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqjkA5r_NQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"350\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"N9K4qX5Xd\\\":\\\"background\\\",\\\"ulQAH7a6N\\\":\\\"content\\\",\\\"aVnuOEPOK\\\":\\\"name1\\\",\\\"e5aDJXWMw\\\":\\\"role\\\",\\\"WVYFcS5nc\\\":\\\"avatar\\\"}\",\"framerIntrinsicWidth\":\"850\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nbJKT2XM8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"B4i5D7cV1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qjkA5r_NQ.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,useComponentViewport,useLocaleCode,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/a4Ko2ynfy39ip44e7iuJ/8dAkkz76T3YLgAMdvGq1/dvxIS3aly.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/oy7r8XN67cIEb8SGGLUI/v6p8SOsak7qbXpL7GvGk/ZtqXN38zW.js\";const enabledGestures={g5Cy1M4tZ:{hover:true}};const serializationHash=\"framer-kzHm6\";const variantClassNames={g5Cy1M4tZ:\"framer-v-10kna1\"};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 transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};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 getProps=({date,height,id,image,link,textContent,title,width,...props})=>{return{...props,QlMwPdRcd:link??props.QlMwPdRcd,sIxxEGYpm:date??props.sIxxEGYpm??\"2022-04-08T00:00:00.000Z\",vipO_1Q35:textContent??props.vipO_1Q35??\"Insight\",vufNqw2Cy:image??props.vufNqw2Cy,zxEpaSoRD:title??props.zxEpaSoRD??\"When and where does parking get filled up faster?\"};};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,QlMwPdRcd,vufNqw2Cy,zxEpaSoRD,vipO_1Q35,sIxxEGYpm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"g5Cy1M4tZ\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(sIxxEGYpm,{dateStyle:\"long\",locale:\"\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-10kna1\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"g5Cy1M4tZ\",ref:refBinding,style:{mask:\"url('https://framerusercontent.com/images/xG0ppuh0pjATdLs9YafHeOY81WA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/xG0ppuh0pjATdLs9YafHeOY81WA.svg') alpha no-repeat center / cover add\",...style},...addPropertyOverrides({\"g5Cy1M4tZ-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-e1y1qh\",\"data-framer-name\":\"Image Container\",layoutDependency:layoutDependency,layoutId:\"HlFC60acK\",children:/*#__PURE__*/_jsx(Link,{href:QlMwPdRcd,motionChild:true,nodeId:\"tjh7OstS_\",openInNewTab:false,scopeId:\"wGkQjXuJG\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1ed9svi framer-tulio1\",\"data-framer-name\":\"Blog Image\",layoutDependency:layoutDependency,layoutId:\"tjh7OstS_\",style:{backgroundColor:\"var(--token-23b16566-02a3-42f4-8dd0-2c07274965b8, rgb(0, 23, 40))\"},children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0),sizes:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) + 1.5px)`,...toResponsiveImage(vufNqw2Cy)},className:\"framer-1ty43t0\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"ElnbWJfLq\",style:{scale:1},variants:{\"g5Cy1M4tZ-hover\":{scale:1.1}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wl9p1z\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"lz4pQ0iaO\",style:{background:\"linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.9) 100%)\"},transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"When and where does parking get filled up faster?\"})}),className:\"framer-82zlq0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pu_wzBYyS\",style:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},text:zxEpaSoRD,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-15lt05a\",\"data-framer-name\":\"Line\",layoutDependency:layoutDependency,layoutId:\"c3riELFLk\",style:{background:\"linear-gradient(90deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.20055) 49.862170834818926%, rgba(255, 255, 255, 0) 100%)\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1i6lhxo\",\"data-framer-name\":\"Meta wrap\",layoutDependency:layoutDependency,layoutId:\"Guh9qvyel\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"industry Insights\"})}),className:\"framer-9fv36o\",\"data-framer-name\":\"Tag\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"I2487:3875;5187:3358\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:vipO_1Q35,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"16px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\",\"--framer-text-transform\":\"capitalize\"},children:\"/\"})}),className:\"framer-832qxj\",\"data-framer-name\":\"Tag\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"BFmCoUtrp\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cy6w7b\",\"data-framer-name\":\"Date time\",layoutDependency:layoutDependency,layoutId:\"fuGc0AAFw\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Content\"})}),className:\"framer-kkbwz\",\"data-framer-name\":\"Date and Time\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ZqoDlnSou\",style:{\"--extracted-r6o4lv\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},text:textContent,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-kzHm6.framer-tulio1, .framer-kzHm6 .framer-tulio1 { display: block; }\",\".framer-kzHm6.framer-10kna1 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 379px; }\",\".framer-kzHm6 .framer-e1y1qh { align-content: center; align-items: center; aspect-ratio: 1.514 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 132px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-kzHm6 .framer-1ed9svi { cursor: pointer; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-kzHm6 .framer-1ty43t0 { bottom: 0px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; z-index: 1; }\",\".framer-kzHm6 .framer-wl9p1z { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 9px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 80px 20px 20px 20px; position: absolute; width: 100%; z-index: 1; }\",\".framer-kzHm6 .framer-82zlq0 { cursor: pointer; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-kzHm6 .framer-15lt05a { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-kzHm6 .framer-1i6lhxo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-kzHm6 .framer-9fv36o, .framer-kzHm6 .framer-832qxj, .framer-kzHm6 .framer-kkbwz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-kzHm6 .framer-cy6w7b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-kzHm6.framer-10kna1, .framer-kzHm6 .framer-e1y1qh, .framer-kzHm6 .framer-wl9p1z, .framer-kzHm6 .framer-1i6lhxo, .framer-kzHm6 .framer-cy6w7b { gap: 0px; } .framer-kzHm6.framer-10kna1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-kzHm6.framer-10kna1 > :first-child, .framer-kzHm6 .framer-wl9p1z > :first-child { margin-top: 0px; } .framer-kzHm6.framer-10kna1 > :last-child, .framer-kzHm6 .framer-wl9p1z > :last-child { margin-bottom: 0px; } .framer-kzHm6 .framer-e1y1qh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-kzHm6 .framer-e1y1qh > :first-child, .framer-kzHm6 .framer-1i6lhxo > :first-child, .framer-kzHm6 .framer-cy6w7b > :first-child { margin-left: 0px; } .framer-kzHm6 .framer-e1y1qh > :last-child, .framer-kzHm6 .framer-1i6lhxo > :last-child, .framer-kzHm6 .framer-cy6w7b > :last-child { margin-right: 0px; } .framer-kzHm6 .framer-wl9p1z > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-kzHm6 .framer-1i6lhxo > *, .framer-kzHm6 .framer-cy6w7b > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 250\n * @framerIntrinsicWidth 378\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wRF3gLL06\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"QlMwPdRcd\":\"link\",\"vufNqw2Cy\":\"image\",\"zxEpaSoRD\":\"title\",\"vipO_1Q35\":\"textContent\",\"sIxxEGYpm\":\"date\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwGkQjXuJG=withCSS(Component,css,\"framer-kzHm6\");export default FramerwGkQjXuJG;FramerwGkQjXuJG.displayName=\"Main Blog Wrap\";FramerwGkQjXuJG.defaultProps={height:250,width:378};addPropertyControls(FramerwGkQjXuJG,{QlMwPdRcd:{title:\"Link\",type:ControlType.Link},vufNqw2Cy:{title:\"Image\",type:ControlType.ResponsiveImage},zxEpaSoRD:{defaultValue:\"When and where does parking get filled up faster?\",title:\"Title\",type:ControlType.String},vipO_1Q35:{defaultValue:\"Insight\",title:\"Text Content\",type:ControlType.String},sIxxEGYpm:{defaultValue:\"2022-04-08T00:00:00.000Z\",title:\"Date\",type:ControlType.Date}});addFonts(FramerwGkQjXuJG,[{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:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwGkQjXuJG\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"QlMwPdRcd\\\":\\\"link\\\",\\\"vufNqw2Cy\\\":\\\"image\\\",\\\"zxEpaSoRD\\\":\\\"title\\\",\\\"vipO_1Q35\\\":\\\"textContent\\\",\\\"sIxxEGYpm\\\":\\\"date\\\"}\",\"framerIntrinsicHeight\":\"250\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wRF3gLL06\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"378\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wGkQjXuJG.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"JWo0H8Kd9\",\"NdofP1zpA\"];const serializationHash=\"framer-uMpeO\";const variantClassNames={JWo0H8Kd9:\"framer-v-17khzf3\",NdofP1zpA:\"framer-v-45m1oz\"};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={bounce:.2,delay:0,duration:.4,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={\"Variant 1\":\"JWo0H8Kd9\",\"Variant 2\":\"NdofP1zpA\"};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:\"JWo0H8Kd9\"};};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:\"JWo0H8Kd9\",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-17khzf3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"JWo0H8Kd9\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({NdofP1zpA:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-civ3bo\",\"data-framer-name\":\"Icon/COMMAND/Load\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Djs9Lby66\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 8.77 2.498 L 2.965 2.498 L 2.965 8.278 L 8.77 8.278 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 17.477 2.498 L 11.672 2.498 L 11.672 8.278 L 17.477 8.278 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 8.77 11.168 L 2.965 11.168 L 2.965 16.948 L 8.77 16.948 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 17.477 11.167 L 11.672 11.167 L 11.672 16.947 L 17.477 16.947 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12148968307,withExternalLayout:true,...addPropertyOverrides({NdofP1zpA:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 8.77 2.498 L 2.965 2.498 L 2.965 8.278 L 8.77 8.278 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 17.477 2.498 L 11.672 2.498 L 11.672 8.278 L 17.477 8.278 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 8.77 11.168 L 2.965 11.168 L 2.965 16.948 L 8.77 16.948 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path><path d=\"M 17.477 11.167 L 11.672 11.167 L 11.672 16.947 L 17.477 16.947 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\"></path></svg>',svgContentId:12252551475}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-uMpeO.framer-1rt7cm0, .framer-uMpeO .framer-1rt7cm0 { display: block; }\",\".framer-uMpeO.framer-17khzf3 { height: 22px; overflow: visible; position: relative; width: 22px; }\",\".framer-uMpeO .framer-civ3bo { flex: none; height: 20px; position: absolute; right: 0px; top: calc(50.00000000000002% - 20px / 2); width: 21px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 22\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"NdofP1zpA\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBCHxjJJcf=withCSS(Component,css,\"framer-uMpeO\");export default FramerBCHxjJJcf;FramerBCHxjJJcf.displayName=\"Icon/Menu\";FramerBCHxjJJcf.defaultProps={height:22,width:22};addPropertyControls(FramerBCHxjJJcf,{variant:{options:[\"JWo0H8Kd9\",\"NdofP1zpA\"],optionTitles:[\"Variant 1\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBCHxjJJcf,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBCHxjJJcf\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"NdofP1zpA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"22\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"22\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BCHxjJJcf.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"YvhW2cGrH\",\"SG8hUyuem\"];const serializationHash=\"framer-Keu4z\";const variantClassNames={SG8hUyuem:\"framer-v-yjw9qk\",YvhW2cGrH:\"framer-v-ukfxl6\"};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={bounce:.2,delay:0,duration:.4,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={Gray:\"SG8hUyuem\",White:\"YvhW2cGrH\"};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:\"YvhW2cGrH\"};};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:\"YvhW2cGrH\",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-ukfxl6\",className,classNames),\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"YvhW2cGrH\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({SG8hUyuem:{\"data-framer-name\":\"Gray\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-9a4mzq\",\"data-framer-name\":\"Icon - Earth\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Na0sIyg16\",opacity:1,style:{backgroundColor:\"rgba(0, 0, 0, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 22\"><path d=\"M 10.5 20.5 C 15.47 20.5 19.5 16.449 19.5 11.452 C 19.5 9.9 19.111 8.44 18.426 7.163 M 10.5 20.5 C 5.529 20.5 1.5 16.449 1.5 11.452 M 10.5 20.5 L 11.715 17.83 L 11.917 14.704 L 7.934 12.994 L 6.793 9.11 L 1.804 9.11 L 1.5 11.452 M 1.5 11.452 C 1.5 6.456 5.529 2.405 10.5 2.405 C 11.125 2.405 11.735 2.469 12.325 2.591 M 18.6 5.119 C 18.6 7.118 16.8 9.19 15 11 C 13.2 9.19 11.4 7.118 11.4 5.119 C 11.4 3.12 13.011 1.5 15 1.5 C 16.988 1.5 18.6 3.12 18.6 5.119 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 13.937 5.085 C 13.937 4.464 14.441 3.961 15.062 3.961 C 15.683 3.961 16.187 4.464 16.187 5.085 C 16.187 5.706 15.683 6.21 15.062 6.21 C 14.441 6.21 13.937 5.706 13.937 5.085 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:12417699632,withExternalLayout:true,...addPropertyOverrides({SG8hUyuem:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 22\"><path d=\"M 10.5 20.5 C 15.47 20.5 19.5 16.449 19.5 11.452 C 19.5 9.9 19.111 8.44 18.426 7.163 M 10.5 20.5 C 5.529 20.5 1.5 16.449 1.5 11.452 M 10.5 20.5 L 11.715 17.83 L 11.917 14.704 L 7.934 12.994 L 6.793 9.11 L 1.804 9.11 L 1.5 11.452 M 1.5 11.452 C 1.5 6.456 5.529 2.405 10.5 2.405 C 11.125 2.405 11.735 2.469 12.325 2.591 M 18.6 5.119 C 18.6 7.118 16.8 9.19 15 11 C 13.2 9.19 11.4 7.118 11.4 5.119 C 11.4 3.12 13.011 1.5 15 1.5 C 16.988 1.5 18.6 3.12 18.6 5.119 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 13.937 5.085 C 13.937 4.464 14.441 3.961 15.062 3.961 C 15.683 3.961 16.187 4.464 16.187 5.085 C 16.187 5.706 15.683 6.21 15.062 6.21 C 14.441 6.21 13.937 5.706 13.937 5.085 Z\" fill=\"var(--token-c5eb5efa-871a-4b1e-98c5-df3ed80f171f, rgba(255, 255, 255, 0.45)) /* {&quot;name&quot;:&quot;Text - white 0.45&quot;} */\"></path></svg>',svgContentId:12415017851}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Keu4z.framer-xp6mlo, .framer-Keu4z .framer-xp6mlo { display: block; }\",\".framer-Keu4z.framer-ukfxl6 { height: 22px; overflow: visible; position: relative; width: 21px; }\",\".framer-Keu4z .framer-9a4mzq { flex: none; height: 22px; left: calc(50.00000000000002% - 21px / 2); position: absolute; top: calc(50.00000000000002% - 22px / 2); width: 21px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 21\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"SG8hUyuem\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framero_g9FqfwV=withCSS(Component,css,\"framer-Keu4z\");export default Framero_g9FqfwV;Framero_g9FqfwV.displayName=\"Icon/COMMAND/Map\";Framero_g9FqfwV.defaultProps={height:22,width:21};addPropertyControls(Framero_g9FqfwV,{variant:{options:[\"YvhW2cGrH\",\"SG8hUyuem\"],optionTitles:[\"White\",\"Gray\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framero_g9FqfwV,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero_g9FqfwV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"SG8hUyuem\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"21\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"22\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o_g9FqfwV.map", "// Generated by Framer (2923eb5)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"NmjODfh9n\",\"j3EHaCfFC\"];const serializationHash=\"framer-leCKZ\";const variantClassNames={j3EHaCfFC:\"framer-v-1jboq2y\",NmjODfh9n:\"framer-v-9y79qm\"};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={bounce:.2,delay:0,duration:.4,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={Gray:\"j3EHaCfFC\",White:\"NmjODfh9n\"};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:\"NmjODfh9n\"};};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:\"NmjODfh9n\",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-9y79qm\",className,classNames),\"data-framer-name\":\"White\",layoutDependency:layoutDependency,layoutId:\"NmjODfh9n\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({j3EHaCfFC:{\"data-framer-name\":\"Gray\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-x8b6na\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GFNHlXKmP\",opacity:1,style:{backgroundColor:\"rgba(173, 43, 43, 0)\"},svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 17.129 5.673 L 9.392 9.972 M 9.392 9.972 L 9.392 18.62 M 9.392 9.972 L 5.316 7.696 M 1.654 5.673 L 5.316 7.696 M 17.585 9.972 L 17.585 6.278 C 17.585 5.966 17.585 5.81 17.539 5.671 C 17.498 5.547 17.431 5.435 17.344 5.339 C 17.244 5.232 17.108 5.156 16.835 5.004 L 10.099 1.262 C 9.841 1.118 9.712 1.047 9.575 1.019 C 9.454 0.994 9.329 0.994 9.209 1.019 C 9.072 1.047 8.943 1.118 8.685 1.262 L 5.316 3.133 L 1.948 5.004 C 1.676 5.156 1.539 5.232 1.44 5.339 C 1.352 5.435 1.286 5.547 1.245 5.671 C 1.199 5.81 1.199 5.966 1.199 6.278 L 1.199 13.667 C 1.199 13.978 1.199 14.134 1.245 14.274 C 1.286 14.397 1.352 14.51 1.44 14.605 C 1.539 14.713 1.676 14.788 1.948 14.94 L 8.685 18.682 C 8.943 18.826 9.072 18.897 9.209 18.925 C 9.329 18.95 9.454 18.95 9.575 18.925 C 9.712 18.897 9.841 18.826 10.099 18.682 L 10.302 18.569 M 5.316 7.696 L 13.198 2.983 M 5.316 7.696 L 5.316 12.703 M 18.8 18.925 L 17.585 17.71 M 12.12 14.977 C 12.12 13.217 13.546 11.791 15.306 11.791 C 17.065 11.791 18.492 13.217 18.492 14.977 C 18.492 16.736 17.065 18.163 15.306 18.163 C 13.546 18.163 12.12 16.736 12.12 14.977 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:12057293379,withExternalLayout:true,...addPropertyOverrides({j3EHaCfFC:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 20\"><path d=\"M 17.129 5.673 L 9.392 9.972 M 9.392 9.972 L 9.392 18.62 M 9.392 9.972 L 5.316 7.696 M 1.654 5.673 L 5.316 7.696 M 17.585 9.972 L 17.585 6.278 C 17.585 5.966 17.585 5.81 17.539 5.671 C 17.498 5.547 17.431 5.435 17.344 5.339 C 17.244 5.232 17.108 5.156 16.835 5.004 L 10.099 1.262 C 9.841 1.118 9.712 1.047 9.575 1.019 C 9.454 0.994 9.329 0.994 9.209 1.019 C 9.072 1.047 8.943 1.118 8.685 1.262 L 5.316 3.133 L 1.948 5.004 C 1.676 5.156 1.539 5.232 1.44 5.339 C 1.352 5.435 1.286 5.547 1.245 5.671 C 1.199 5.81 1.199 5.966 1.199 6.278 L 1.199 13.667 C 1.199 13.978 1.199 14.134 1.245 14.274 C 1.286 14.397 1.352 14.51 1.44 14.605 C 1.539 14.713 1.676 14.788 1.948 14.94 L 8.685 18.682 C 8.943 18.826 9.072 18.897 9.209 18.925 C 9.329 18.95 9.454 18.95 9.575 18.925 C 9.712 18.897 9.841 18.826 10.099 18.682 L 10.302 18.569 M 5.316 7.696 L 13.198 2.983 M 5.316 7.696 L 5.316 12.703 M 18.8 18.925 L 17.585 17.71 M 12.12 14.977 C 12.12 13.217 13.546 11.791 15.306 11.791 C 17.065 11.791 18.492 13.217 18.492 14.977 C 18.492 16.736 17.065 18.163 15.306 18.163 C 13.546 18.163 12.12 16.736 12.12 14.977 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11564787163}},baseVariant,gestureVariant)})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-leCKZ.framer-iddyaf, .framer-leCKZ .framer-iddyaf { display: block; }\",\".framer-leCKZ.framer-9y79qm { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 22px; }\",\".framer-leCKZ .framer-x8b6na { flex: none; height: 20px; position: relative; width: 20px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-leCKZ.framer-9y79qm { gap: 0px; } .framer-leCKZ.framer-9y79qm > * { margin: 0px; margin-left: calc(9.166667938232422px / 2); margin-right: calc(9.166667938232422px / 2); } .framer-leCKZ.framer-9y79qm > :first-child { margin-left: 0px; } .framer-leCKZ.framer-9y79qm > :last-child { margin-right: 0px; } }\",\".framer-leCKZ.framer-v-1jboq2y.framer-9y79qm { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 22px); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 22\n * @framerIntrinsicWidth 22\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"j3EHaCfFC\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameruAwW3wUbq=withCSS(Component,css,\"framer-leCKZ\");export default FrameruAwW3wUbq;FrameruAwW3wUbq.displayName=\"Icon/COMMAND/Load\";FrameruAwW3wUbq.defaultProps={height:22,width:22};addPropertyControls(FrameruAwW3wUbq,{variant:{options:[\"NmjODfh9n\",\"j3EHaCfFC\"],optionTitles:[\"White\",\"Gray\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FrameruAwW3wUbq,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameruAwW3wUbq\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"22\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"22\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"j3EHaCfFC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./uAwW3wUbq.map", "// Generated by Framer (f26e712)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4Ko2ynfy39ip44e7iuJ/8dAkkz76T3YLgAMdvGq1/dvxIS3aly.js\";import IconMenu from\"https://framerusercontent.com/modules/FZnugcRPt3JpvJo53ZDU/rSIv1kCDUON6lTwFyHfM/BCHxjJJcf.js\";import ProgressBar from\"https://framerusercontent.com/modules/buI2EjL5AmcnUkXM4xro/YEEOdtO8pML7yJ1JZFmi/iffgM2Fdq.js\";import IconCOMMANDMap from\"https://framerusercontent.com/modules/FvUdVuCobvU50JqOn8po/JcHkjmapcLRshuroAnds/o_g9FqfwV.js\";import IconCOMMANDLoad from\"https://framerusercontent.com/modules/a2h1n6jWcmuPzVhzvRys/v1cPMiya41xPZK8sir0E/uAwW3wUbq.js\";const ImageWithFX=withFX(Image);const IconCOMMANDMapFonts=getFonts(IconCOMMANDMap);const ProgressBarFonts=getFonts(ProgressBar);const IconCOMMANDLoadFonts=getFonts(IconCOMMANDLoad);const IconMenuFonts=getFonts(IconMenu);const cycleOrder=[\"ujm_mMyXY\",\"hjF8SED9p\",\"Nt5MUgpyc\",\"tx8sDEoGc\",\"VPwuDHqot\",\"SpzMtbKKd\",\"k4qlHjqqV\",\"hBb33m1Mr\",\"DoO8QviB5\",\"yNbZTGTPc\",\"tmp2a_w0R\",\"tAIUdLAsG\"];const serializationHash=\"framer-jYMj1\";const variantClassNames={DoO8QviB5:\"framer-v-41gi75\",hBb33m1Mr:\"framer-v-8zo8a7\",hjF8SED9p:\"framer-v-19ebpa9\",k4qlHjqqV:\"framer-v-1c3dw9x\",Nt5MUgpyc:\"framer-v-onbul8\",SpzMtbKKd:\"framer-v-1n2c1z9\",tAIUdLAsG:\"framer-v-1d68lr6\",tmp2a_w0R:\"framer-v-q5aztg\",tx8sDEoGc:\"framer-v-ya87x0\",ujm_mMyXY:\"framer-v-s7w7pm\",VPwuDHqot:\"framer-v-kclj0n\",yNbZTGTPc:\"framer-v-yqyedi\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition2={damping:50,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:40};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;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={\"Phone \\xb7 Tab 1\":\"k4qlHjqqV\",\"Phone \\xb7 Tab 2\":\"hBb33m1Mr\",\"Phone \\xb7 Tab 3\":\"DoO8QviB5\",\"Phone \\xb7 Tab 4\":\"yNbZTGTPc\",\"Phone \\xb7 Tab 5\":\"tmp2a_w0R\",\"Phone \\xb7 Tab 6\":\"tAIUdLAsG\",\"Web \\xb7 Tab 1\":\"ujm_mMyXY\",\"Web \\xb7 Tab 2\":\"hjF8SED9p\",\"Web \\xb7 Tab 3\":\"Nt5MUgpyc\",\"Web \\xb7 Tab 4\":\"tx8sDEoGc\",\"Web \\xb7 Tab 5\":\"VPwuDHqot\",\"Web \\xb7 Tab 6\":\"SpzMtbKKd\"};const getProps=({height,id,tab1,tab1Describtion,tab1ImgPhone,tab2,tab2Describtion,tab2ImgPhone,tab3,tab3Describtion,tab3ImgPhone,tab4,tab4Describtion,tab4ImgPhone,tab5,tab5Describtion,tab5ImgPhone,width,...props})=>{return{...props,c2e5yWPKB:tab1??props.c2e5yWPKB??\"Dispatch System\",ClFQj3ido:tab4ImgPhone??props.ClFQj3ido??{src:\"https://framerusercontent.com/images/Z2yir0n2PL0WBrdpIFY5BE0bTM.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Z2yir0n2PL0WBrdpIFY5BE0bTM.png?scale-down-to=512 512w,https://framerusercontent.com/images/Z2yir0n2PL0WBrdpIFY5BE0bTM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Z2yir0n2PL0WBrdpIFY5BE0bTM.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Z2yir0n2PL0WBrdpIFY5BE0bTM.png 3072w\"},D9m3e1F_F:tab2ImgPhone??props.D9m3e1F_F??{src:\"https://framerusercontent.com/images/RFJ1c46P9USxDVtJU5P9SpeLVI.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/RFJ1c46P9USxDVtJU5P9SpeLVI.png?scale-down-to=512 512w,https://framerusercontent.com/images/RFJ1c46P9USxDVtJU5P9SpeLVI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/RFJ1c46P9USxDVtJU5P9SpeLVI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/RFJ1c46P9USxDVtJU5P9SpeLVI.png 3072w\"},FINXt1v0h:tab1ImgPhone??props.FINXt1v0h??{src:\"https://framerusercontent.com/images/F6gWsmfObKy9k3wnZ4SSkT1Mj0.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/F6gWsmfObKy9k3wnZ4SSkT1Mj0.png?scale-down-to=512 512w,https://framerusercontent.com/images/F6gWsmfObKy9k3wnZ4SSkT1Mj0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/F6gWsmfObKy9k3wnZ4SSkT1Mj0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/F6gWsmfObKy9k3wnZ4SSkT1Mj0.png 3072w\"},fNTgJJkKm:tab5ImgPhone??props.fNTgJJkKm??{src:\"https://framerusercontent.com/images/d1dYJL9LOBbl9o5AiyuZMvRdscA.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/d1dYJL9LOBbl9o5AiyuZMvRdscA.png?scale-down-to=512 512w,https://framerusercontent.com/images/d1dYJL9LOBbl9o5AiyuZMvRdscA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/d1dYJL9LOBbl9o5AiyuZMvRdscA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/d1dYJL9LOBbl9o5AiyuZMvRdscA.png 3072w\"},I2HJgJCRc:tab4??props.I2HJgJCRc??\"Dashboards & Reports\",ILNyEl4Z1:tab2??props.ILNyEl4Z1??\"Load Board\",kHd3PSlSX:tab5Describtion??props.kHd3PSlSX??\"Bringing large fleet discounts to all truckers! Save $50-$70 every time you fuel, upwards of tens of thousands of dollars per year without fuel cards and credit checks. \",lxmLuUyrv:tab5??props.lxmLuUyrv??\"Fuel Network \",rKtqyBR96:tab2Describtion??props.rKtqyBR96??\"Reach over 1,000 brokers posting 100,000+ loads daily on our fully integrated free load board exclusive to the Trucker Path community.\",sLbbSTL5l:tab3Describtion??props.sLbbSTL5l??\"AI document scanning and workflows to simplify your paperwork and automate invoicing, accounting, driver pay, expensing, and more. \",SolZtlCxF:tab1Describtion??props.SolZtlCxF??\"Award-winning TMS that simplifies trucking operations with everyone you need to manage your fleet.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"ujm_mMyXY\",VC7Qb0t21:tab3ImgPhone??props.VC7Qb0t21??{src:\"https://framerusercontent.com/images/NhCT8aKKxm7KdGLRjHa5opNg.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/NhCT8aKKxm7KdGLRjHa5opNg.png?scale-down-to=512 512w,https://framerusercontent.com/images/NhCT8aKKxm7KdGLRjHa5opNg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NhCT8aKKxm7KdGLRjHa5opNg.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NhCT8aKKxm7KdGLRjHa5opNg.png 3072w\"},wdx0q76K_:tab3??props.wdx0q76K_??\"Doc Management\",ZN35oYGyW:tab4Describtion??props.ZN35oYGyW??\"Empower your team with analytics for visibility across finance, operations, and safety. View your entire fleet's P&L in one place. Easy to understand pre-made reports ready out of the box. \"};};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,c2e5yWPKB,SolZtlCxF,ILNyEl4Z1,rKtqyBR96,wdx0q76K_,sLbbSTL5l,I2HJgJCRc,ZN35oYGyW,lxmLuUyrv,kHd3PSlSX,FINXt1v0h,D9m3e1F_F,VC7Qb0t21,ClFQj3ido,fNTgJJkKm,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"ujm_mMyXY\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1cqn4h9=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hjF8SED9p\"),7e3);});const onAppear1iqmay7=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Nt5MUgpyc\"),7e3);});const onAppear1r1g6ay=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"tx8sDEoGc\"),7e3);});const onAppear1vt7u8c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"VPwuDHqot\"),7e3);});const onAppear1wqlqaa=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"ujm_mMyXY\"),7e3);});const onTapo2js37=activeVariantCallback(async(...args)=>{setVariant(\"ujm_mMyXY\");});const onTap1yx9ldy=activeVariantCallback(async(...args)=>{setVariant(\"k4qlHjqqV\");});const onTap1nu9eck=activeVariantCallback(async(...args)=>{setVariant(\"hjF8SED9p\");});const onTapz6de2u=activeVariantCallback(async(...args)=>{setVariant(\"hBb33m1Mr\");});const onTap1pp3mr1=activeVariantCallback(async(...args)=>{setVariant(\"Nt5MUgpyc\");});const onTappb5mek=activeVariantCallback(async(...args)=>{setVariant(\"DoO8QviB5\");});const onTap1368w08=activeVariantCallback(async(...args)=>{setVariant(\"tx8sDEoGc\");});const onTap18ayx5=activeVariantCallback(async(...args)=>{setVariant(\"yNbZTGTPc\");});const onTaprtw7yi=activeVariantCallback(async(...args)=>{setVariant(\"VPwuDHqot\");});const onTap1utx3is=activeVariantCallback(async(...args)=>{setVariant(\"tmp2a_w0R\");});useOnVariantChange(baseVariant,{default:onAppear1cqn4h9,DoO8QviB5:undefined,hBb33m1Mr:undefined,hjF8SED9p:onAppear1iqmay7,k4qlHjqqV:undefined,Nt5MUgpyc:onAppear1r1g6ay,tmp2a_w0R:undefined,tx8sDEoGc:onAppear1vt7u8c,VPwuDHqot:onAppear1wqlqaa,yNbZTGTPc:undefined});const sharedStyleClassNames=[sharedStyle.className];const isDisplayed=()=>{if([\"SpzMtbKKd\",\"tAIUdLAsG\"].includes(baseVariant))return false;return true;};const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed1=()=>{if([\"hjF8SED9p\",\"Nt5MUgpyc\",\"tx8sDEoGc\",\"VPwuDHqot\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if([\"hjF8SED9p\",\"Nt5MUgpyc\",\"tx8sDEoGc\",\"VPwuDHqot\",\"k4qlHjqqV\",\"hBb33m1Mr\",\"DoO8QviB5\",\"yNbZTGTPc\",\"tmp2a_w0R\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(baseVariant===\"VPwuDHqot\")return true;return false;};const isDisplayed4=()=>{if(baseVariant===\"tx8sDEoGc\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"Nt5MUgpyc\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"hjF8SED9p\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:isDisplayed()&&/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-s7w7pm\",className,classNames),\"data-framer-name\":\"Web \\xb7 Tab 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ujm_mMyXY\",ref:refBinding,style:{...style},...addPropertyOverrides({DoO8QviB5:{\"data-framer-name\":\"Phone \\xb7 Tab 3\",\"data-highlight\":undefined},hBb33m1Mr:{\"data-framer-name\":\"Phone \\xb7 Tab 2\",\"data-highlight\":undefined},hjF8SED9p:{\"data-framer-name\":\"Web \\xb7 Tab 2\"},k4qlHjqqV:{\"data-framer-name\":\"Phone \\xb7 Tab 1\",\"data-highlight\":undefined},Nt5MUgpyc:{\"data-framer-name\":\"Web \\xb7 Tab 3\"},tmp2a_w0R:{\"data-framer-name\":\"Phone \\xb7 Tab 5\",\"data-highlight\":undefined},tx8sDEoGc:{\"data-framer-name\":\"Web \\xb7 Tab 4\"},VPwuDHqot:{\"data-framer-name\":\"Web \\xb7 Tab 5\"},yNbZTGTPc:{\"data-framer-name\":\"Phone \\xb7 Tab 4\",\"data-highlight\":undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lur6uo\",\"data-framer-name\":\"Screen\",layoutDependency:layoutDependency,layoutId:\"QmcuCoutQ\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9,transformPerspective:1e3},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-wa5z0g\",\"data-framer-name\":\"Video Container\",layoutDependency:layoutDependency,layoutId:\"mgjjzkX9Z\",style:{borderBottomLeftRadius:6,borderBottomRightRadius:6,borderTopLeftRadius:6,borderTopRightRadius:6}}),isDisplayed1()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+0),pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",sizes:\"850px\",src:\"https://framerusercontent.com/images/54xqXTRhX5LgWf24Kqi1psTXPgE.png\",srcSet:\"https://framerusercontent.com/images/54xqXTRhX5LgWf24Kqi1psTXPgE.png?scale-down-to=512 512w,https://framerusercontent.com/images/54xqXTRhX5LgWf24Kqi1psTXPgE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/54xqXTRhX5LgWf24Kqi1psTXPgE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/54xqXTRhX5LgWf24Kqi1psTXPgE.png 2550w\"},className:\"framer-19y5krg\",\"data-framer-name\":\"1 - desktop\",layoutDependency:layoutDependency,layoutId:\"GmVkqq9aO\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\"},variants:{DoO8QviB5:{mask:\"none\",WebkitMask:\"none\"},hBb33m1Mr:{mask:\"none\",WebkitMask:\"none\"},k4qlHjqqV:{mask:\"none\",WebkitMask:\"none\"},tmp2a_w0R:{mask:\"none\",WebkitMask:\"none\"},yNbZTGTPc:{mask:\"none\",WebkitMask:\"none\"}},...addPropertyOverrides({DoO8QviB5:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+0+0)+0),pixelHeight:1800,pixelWidth:3072,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(VC7Qb0t21),...{positionX:\"center\",positionY:\"center\"}}},hBb33m1Mr:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+0+0)+0),pixelHeight:1800,pixelWidth:3072,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(D9m3e1F_F),...{positionX:\"center\",positionY:\"center\"}}},k4qlHjqqV:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+0+0)+0),pixelHeight:1800,pixelWidth:3072,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(FINXt1v0h),...{positionX:\"center\",positionY:\"center\"}}},tmp2a_w0R:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+0+0)+246-246.5),pixelHeight:1800,pixelWidth:3072,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(fNTgJJkKm),...{positionX:\"center\",positionY:\"center\"}}},yNbZTGTPc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+0+0)+0),pixelHeight:1800,pixelWidth:3072,sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(ClFQj3ido),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:371,intrinsicWidth:278,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+83.50000000000011),pixelHeight:1113,pixelWidth:834,sizes:\"260px\",src:\"https://framerusercontent.com/images/HOnTF4JoXcNGJIGXjco7wk6YDZQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/HOnTF4JoXcNGJIGXjco7wk6YDZQ.png?scale-down-to=1024 767w,https://framerusercontent.com/images/HOnTF4JoXcNGJIGXjco7wk6YDZQ.png 834w\"},className:\"framer-k0qpw1\",\"data-framer-name\":\"1 - right\",layoutDependency:layoutDependency,layoutId:\"blgSNdHtl\",transformTemplate:transformTemplate1}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png\",srcSet:\"https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png 2550w\"},className:\"framer-14mmygr\",\"data-framer-name\":\"5 - desktop\",layoutDependency:layoutDependency,layoutId:\"OeKoUiFwg\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\"},transformTemplate:transformTemplate2,...addPropertyOverrides({VPwuDHqot:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+0),pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png\",srcSet:\"https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png?scale-down-to=512 512w,https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/shNpGWGDXz7f5B9hSdfsGvXvmJo.png 2550w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png\",srcSet:\"https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png 2550w\"},className:\"framer-1k3tuw8\",\"data-framer-name\":\"4 - desktop\",layoutDependency:layoutDependency,layoutId:\"ePWKTSVvz\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\"},transformTemplate:transformTemplate2,...addPropertyOverrides({tx8sDEoGc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+0),pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png\",srcSet:\"https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7aAoVL28zXM2WKGPxL73i2gGI.png 2550w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png\",srcSet:\"https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png 2550w\"},className:\"framer-4xl4zh\",\"data-framer-name\":\"3 - desktop\",layoutDependency:layoutDependency,layoutId:\"ToIF9JRDR\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\"},transformTemplate:transformTemplate2,...addPropertyOverrides({Nt5MUgpyc:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+0),pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png\",srcSet:\"https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ZepWdZJGOGWQaC2IjNFJGfTyAs.png 2550w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fit\",pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png\",srcSet:\"https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png?scale-down-to=512 512w,https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png 2550w\"},className:\"framer-htt5bs\",\"data-framer-name\":\"2 - desktop\",layoutDependency:layoutDependency,layoutId:\"M3kYr6TGR\",style:{mask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\",WebkitMask:\"linear-gradient(0deg, rgba(0,0,0,0) 10%, rgba(0,0,0,1) 55.00000000000001%) add\"},transformTemplate:transformTemplate2,...addPropertyOverrides({hjF8SED9p:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+0),pixelHeight:1610,pixelWidth:2550,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png\",srcSet:\"https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png?scale-down-to=512 512w,https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/s0qVeV9reFI416RYxppAqAS75lI.png 2550w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:564,intrinsicWidth:466.5,pixelHeight:1128,pixelWidth:933,src:\"https://framerusercontent.com/images/cffvZgHb9IL0H7x0tNZje1vDRwc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cffvZgHb9IL0H7x0tNZje1vDRwc.png?scale-down-to=1024 846w,https://framerusercontent.com/images/cffvZgHb9IL0H7x0tNZje1vDRwc.png 933w\"},className:\"framer-11finmj\",\"data-framer-name\":\"2 - logo\",layoutDependency:layoutDependency,layoutId:\"V5NH14sCJ\",...addPropertyOverrides({hjF8SED9p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:564,intrinsicWidth:466.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+467-257.5),pixelHeight:1128,pixelWidth:933,sizes:\"225.8059px\",src:\"https://framerusercontent.com/images/cffvZgHb9IL0H7x0tNZje1vDRwc.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/cffvZgHb9IL0H7x0tNZje1vDRwc.png?scale-down-to=1024 846w,https://framerusercontent.com/images/cffvZgHb9IL0H7x0tNZje1vDRwc.png 933w\"}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:366,pixelHeight:939,pixelWidth:1268,src:\"https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png?scale-down-to=512 512w,https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png 1268w\"},className:\"framer-1ddue27\",\"data-framer-name\":\"2 - right\",layoutDependency:layoutDependency,layoutId:\"jDqn5clRY\",...addPropertyOverrides({hjF8SED9p:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:274,intrinsicWidth:366,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+76),pixelHeight:939,pixelWidth:1268,sizes:\"349px\",src:\"https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png?scale-down-to=512 512w,https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/veEZC2LetwGjLn033gUjDsLxmE.png 1268w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:315.5,intrinsicWidth:315,pixelHeight:631,pixelWidth:630,src:\"https://framerusercontent.com/images/8DUhe4TzaC0Mdjf6lRBHc4E7qfE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8DUhe4TzaC0Mdjf6lRBHc4E7qfE.png 630w\"},className:\"framer-1ygr3kr\",\"data-framer-name\":\"3 - left\",layoutDependency:layoutDependency,layoutId:\"PEMZZLHdR\",...addPropertyOverrides({Nt5MUgpyc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:315.5,intrinsicWidth:315,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+467-239.5),pixelHeight:631,pixelWidth:630,sizes:\"205px\",src:\"https://framerusercontent.com/images/8DUhe4TzaC0Mdjf6lRBHc4E7qfE.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/8DUhe4TzaC0Mdjf6lRBHc4E7qfE.png 630w\"}}},baseVariant,gestureVariant)}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:302.5,intrinsicWidth:488,pixelHeight:605,pixelWidth:976,src:\"https://framerusercontent.com/images/gx98h5HNYEuvCssl36urWpoZV0g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gx98h5HNYEuvCssl36urWpoZV0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/gx98h5HNYEuvCssl36urWpoZV0g.png 976w\"},className:\"framer-1swblry\",\"data-framer-name\":\"3 - right\",layoutDependency:layoutDependency,layoutId:\"WUNiC368S\",...addPropertyOverrides({Nt5MUgpyc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:302.5,intrinsicWidth:488,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+467-340.9999999999999),pixelHeight:605,pixelWidth:976,sizes:\"422.6645px\",src:\"https://framerusercontent.com/images/gx98h5HNYEuvCssl36urWpoZV0g.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/gx98h5HNYEuvCssl36urWpoZV0g.png?scale-down-to=512 512w,https://framerusercontent.com/images/gx98h5HNYEuvCssl36urWpoZV0g.png 976w\"}}},baseVariant,gestureVariant)}),isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:290,intrinsicWidth:304,pixelHeight:924,pixelWidth:971,src:\"https://framerusercontent.com/images/st8FuQA6Z7ZwNzjwSUvUiermz4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/st8FuQA6Z7ZwNzjwSUvUiermz4.png?scale-down-to=512 512w,https://framerusercontent.com/images/st8FuQA6Z7ZwNzjwSUvUiermz4.png 971w\"},className:\"framer-q37n3j\",\"data-framer-name\":\"4 - right\",layoutDependency:layoutDependency,layoutId:\"J2cn7FJGM\",...addPropertyOverrides({tx8sDEoGc:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:290,intrinsicWidth:304,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+467-252),pixelHeight:924,pixelWidth:971,sizes:\"292.469px\",src:\"https://framerusercontent.com/images/st8FuQA6Z7ZwNzjwSUvUiermz4.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/st8FuQA6Z7ZwNzjwSUvUiermz4.png?scale-down-to=512 512w,https://framerusercontent.com/images/st8FuQA6Z7ZwNzjwSUvUiermz4.png 971w\"}}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:356.5,pixelHeight:431,pixelWidth:713,src:\"https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png 1069w\"},className:\"framer-1yw3cgk\",\"data-framer-name\":\"5 - right\",layoutDependency:layoutDependency,layoutId:\"fDjy26GRv\",...addPropertyOverrides({VPwuDHqot:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:215.5,intrinsicWidth:356.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+0+0)+467-211),pixelHeight:431,pixelWidth:713,sizes:\"357.3271px\",src:\"https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xuqe4vyKfcPTauEZzGmD0Lizc5A.png 1069w\"}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1okfsj2\",\"data-framer-name\":\"Tabs + Description\",layoutDependency:layoutDependency,layoutId:\"YByu4410m\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1t1feh9\",\"data-framer-name\":\"Tabs container\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"Ze8sjvnB7\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",mask:\"none\",WebkitMask:\"none\"},variants:{DoO8QviB5:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",mask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\",WebkitMask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\"},hBb33m1Mr:{mask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\",WebkitMask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\"},k4qlHjqqV:{mask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\",WebkitMask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\"},tmp2a_w0R:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",mask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\",WebkitMask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\"},yNbZTGTPc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",mask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\",WebkitMask:\"linear-gradient(270deg, rgba(0,0,0,0) 0%, rgba(0,0,0,1) 28.999999999999996%) add\"}},...addPropertyOverrides({DoO8QviB5:{\"data-border\":true}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-17x67z1\",\"data-border\":true,\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"f5F59RfPe\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(255, 255, 255, 0.1)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qsysao\",\"data-border\":true,\"data-framer-name\":\"Tab 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dC8jfZ6q4\",onTap:onTapo2js37,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{DoO8QviB5:{\"--border-bottom-width\":\"0px\"},hBb33m1Mr:{\"--border-bottom-width\":\"0px\"},hjF8SED9p:{\"--border-color\":\"rgba(255, 255, 255, 0)\"},Nt5MUgpyc:{\"--border-color\":\"rgba(255, 255, 255, 0)\"},tmp2a_w0R:{\"--border-bottom-width\":\"0px\"},tx8sDEoGc:{\"--border-color\":\"rgba(255, 255, 255, 0)\"},VPwuDHqot:{\"--border-color\":\"rgba(255, 255, 255, 0)\"},yNbZTGTPc:{\"--border-bottom-width\":\"0px\"}},...addPropertyOverrides({DoO8QviB5:{onTap:onTap1yx9ldy},hBb33m1Mr:{onTap:onTap1yx9ldy},k4qlHjqqV:{onTap:onTap1yx9ldy},tmp2a_w0R:{onTap:onTap1yx9ldy},yNbZTGTPc:{onTap:onTap1yx9ldy}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fdnoht\",\"data-framer-name\":\"Nav Icon and Text\",layoutDependency:layoutDependency,layoutId:\"G13zYh7ae\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-fqe3cy\",\"data-framer-name\":\"Nav Icon\",layoutDependency:layoutDependency,layoutId:\"MaMqLHY3J\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+0+0+.9999990463256836+95367431640625e-20,...addPropertyOverrides({DoO8QviB5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836+95367431640625e-20},hBb33m1Mr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836+95367431640625e-20},k4qlHjqqV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836+95367431640625e-20},tmp2a_w0R:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836+95367431640625e-20},yNbZTGTPc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836+95367431640625e-20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-e4u88n-container\",layoutDependency:layoutDependency,layoutId:\"XBMvFHVFZ-container\",nodeId:\"XBMvFHVFZ\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(IconCOMMANDMap,{height:\"100%\",id:\"XBMvFHVFZ\",layoutId:\"XBMvFHVFZ\",style:{height:\"100%\",width:\"100%\"},variant:\"YvhW2cGrH\",width:\"100%\",...addPropertyOverrides({DoO8QviB5:{variant:\"SG8hUyuem\"},hBb33m1Mr:{variant:\"SG8hUyuem\"},hjF8SED9p:{variant:\"SG8hUyuem\"},Nt5MUgpyc:{variant:\"SG8hUyuem\"},tmp2a_w0R:{variant:\"SG8hUyuem\"},tx8sDEoGc:{variant:\"SG8hUyuem\"},VPwuDHqot:{variant:\"SG8hUyuem\"},yNbZTGTPc:{variant:\"SG8hUyuem\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Truck Navigation\"})}),className:\"framer-1s362so\",\"data-framer-name\":\"Nav Text\",fonts:[\"GF;Poppins-500\"],layoutDependency:layoutDependency,layoutId:\"HhmJXGWtd\",style:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:c2e5yWPKB,variants:{DoO8QviB5:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},hBb33m1Mr:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},hjF8SED9p:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},Nt5MUgpyc:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},tmp2a_w0R:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},tx8sDEoGc:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},VPwuDHqot:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"},yNbZTGTPc:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DoO8QviB5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},hBb33m1Mr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},hjF8SED9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},Nt5MUgpyc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},tmp2a_w0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},tx8sDEoGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},VPwuDHqot:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]},yNbZTGTPc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Truck Navigation\"})}),fonts:[\"GF;Poppins-regular\"]}},baseVariant,gestureVariant)})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:3,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+38-2,children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-rt4knv-container\",layoutDependency:layoutDependency,layoutId:\"Cfvm6n8Wr-container\",nodeId:\"Cfvm6n8Wr\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(ProgressBar,{height:\"100%\",id:\"Cfvm6n8Wr\",layoutId:\"Cfvm6n8Wr\",style:{height:\"100%\",width:\"100%\"},variant:\"oC80HThqF\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1g5m7nx\",\"data-framer-name\":\"Tab 2\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Ci3ndWdDC\",onTap:onTap1nu9eck,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{DoO8QviB5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},hBb33m1Mr:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},hjF8SED9p:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},k4qlHjqqV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Nt5MUgpyc:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},tmp2a_w0R:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},tx8sDEoGc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},VPwuDHqot:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},yNbZTGTPc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({DoO8QviB5:{onTap:onTapz6de2u},hBb33m1Mr:{\"data-border\":true,onTap:onTapz6de2u},hjF8SED9p:{\"data-border\":true},k4qlHjqqV:{onTap:onTapz6de2u},Nt5MUgpyc:{\"data-border\":true},tmp2a_w0R:{onTap:onTapz6de2u},VPwuDHqot:{\"data-border\":true},yNbZTGTPc:{onTap:onTapz6de2u}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1f2eeru\",\"data-framer-name\":\"Nav Icon and Text\",layoutDependency:layoutDependency,layoutId:\"NkMCAMU1f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22.000001907348633,width:\"22px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+0+0+.9999990463256836,...addPropertyOverrides({DoO8QviB5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836},hBb33m1Mr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836},k4qlHjqqV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836},tmp2a_w0R:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836},yNbZTGTPc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+.9999990463256836}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-jgqm4-container\",layoutDependency:layoutDependency,layoutId:\"LQXokayVE-container\",nodeId:\"LQXokayVE\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(IconCOMMANDLoad,{height:\"100%\",id:\"LQXokayVE\",layoutId:\"LQXokayVE\",style:{height:\"100%\",width:\"100%\"},variant:\"j3EHaCfFC\",width:\"100%\",...addPropertyOverrides({hBb33m1Mr:{variant:\"NmjODfh9n\"},hjF8SED9p:{variant:\"NmjODfh9n\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Load Board\"})}),className:\"framer-bajozl\",\"data-framer-name\":\"Nav Text\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"UJ15QdvIM\",style:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"0px\"},text:ILNyEl4Z1,variants:{hBb33m1Mr:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},hjF8SED9p:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hBb33m1Mr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Load Board\"})}),fonts:[\"GF;Poppins-500\"]},hjF8SED9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Load Board\"})}),fonts:[\"GF;Poppins-500\"]}},baseVariant,gestureVariant)})]}),isDisplayed6()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hjF8SED9p:{height:3,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+38-2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1tk4e0y-container\",layoutDependency:layoutDependency,layoutId:\"xsMmk7UvI-container\",nodeId:\"xsMmk7UvI\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(ProgressBar,{height:\"100%\",id:\"xsMmk7UvI\",layoutId:\"xsMmk7UvI\",style:{height:\"100%\",width:\"100%\"},variant:\"oC80HThqF\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ff98ev\",\"data-framer-name\":\"Tab 3\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"k3gLElZ9G\",onTap:onTap1pp3mr1,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{DoO8QviB5:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},hBb33m1Mr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},k4qlHjqqV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Nt5MUgpyc:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},tmp2a_w0R:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},tx8sDEoGc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},VPwuDHqot:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},yNbZTGTPc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({DoO8QviB5:{\"data-border\":true,onTap:onTappb5mek},hBb33m1Mr:{onTap:onTappb5mek},k4qlHjqqV:{onTap:onTappb5mek},Nt5MUgpyc:{\"data-border\":true},tmp2a_w0R:{onTap:onTappb5mek},VPwuDHqot:{\"data-border\":true},yNbZTGTPc:{onTap:onTappb5mek}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bb5y3x\",\"data-framer-name\":\"Nav Icon and Text\",layoutDependency:layoutDependency,layoutId:\"Jsjy3gRLD\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1rzpuoj\",\"data-framer-name\":\"graphic\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"jcbgMWr_n\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 22\"><path d=\"M 7.375 3.781 L 4.717 3.781 C 3.907 3.781 3.25 4.438 3.25 5.248 L 3.25 18.815 C 3.25 19.625 3.907 20.281 4.717 20.281 L 18.283 20.281 C 19.093 20.281 19.75 19.625 19.75 18.815 L 19.75 5.248 C 19.75 4.438 19.093 3.781 18.283 3.781 L 15.625 3.781\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.817 5.5 C 7.311 5.5 6.9 5.5 6.9 5.5 L 6.9 1.833 C 6.9 1.833 7.311 1.833 7.817 1.833 L 15.181 1.833 C 15.687 1.833 16.098 1.833 16.098 1.833 L 16.098 5.5 C 16.098 5.5 15.687 5.5 15.181 5.5 Z\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.917 9.83 L 8.292 11.206 L 10.582 8.916\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.229 15.723 C 7.229 14.85 7.937 14.142 8.81 14.142 C 9.683 14.142 10.391 14.85 10.391 15.723 C 10.391 16.596 9.683 17.304 8.81 17.304 C 7.937 17.304 7.229 16.596 7.229 15.723 Z\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.885 10.313 L 16.678 10.313 M 13.885 15.813 L 16.678 15.813\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11442681145,withExternalLayout:true,...addPropertyOverrides({DoO8QviB5:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 22\"><path d=\"M 7.375 3.781 L 4.717 3.781 C 3.907 3.781 3.25 4.438 3.25 5.248 L 3.25 18.815 C 3.25 19.625 3.907 20.281 4.717 20.281 L 18.283 20.281 C 19.093 20.281 19.75 19.625 19.75 18.815 L 19.75 5.248 C 19.75 4.438 19.093 3.781 18.283 3.781 L 15.625 3.781\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.817 5.5 C 7.311 5.5 6.9 5.5 6.9 5.5 L 6.9 1.833 C 6.9 1.833 7.311 1.833 7.817 1.833 L 15.181 1.833 C 15.687 1.833 16.098 1.833 16.098 1.833 L 16.098 5.5 C 16.098 5.5 15.687 5.5 15.181 5.5 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.917 9.83 L 8.292 11.206 L 10.582 8.916\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.229 15.723 C 7.229 14.85 7.937 14.142 8.81 14.142 C 9.683 14.142 10.391 14.85 10.391 15.723 C 10.391 16.596 9.683 17.304 8.81 17.304 C 7.937 17.304 7.229 16.596 7.229 15.723 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.885 10.313 L 16.678 10.313 M 13.885 15.813 L 16.678 15.813\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8807128707},Nt5MUgpyc:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 22\"><path d=\"M 7.375 3.781 L 4.717 3.781 C 3.907 3.781 3.25 4.438 3.25 5.248 L 3.25 18.815 C 3.25 19.625 3.907 20.281 4.717 20.281 L 18.283 20.281 C 19.093 20.281 19.75 19.625 19.75 18.815 L 19.75 5.248 C 19.75 4.438 19.093 3.781 18.283 3.781 L 15.625 3.781\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.817 5.5 C 7.311 5.5 6.9 5.5 6.9 5.5 L 6.9 1.833 C 6.9 1.833 7.311 1.833 7.817 1.833 L 15.181 1.833 C 15.687 1.833 16.098 1.833 16.098 1.833 L 16.098 5.5 C 16.098 5.5 15.687 5.5 15.181 5.5 Z\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.917 9.83 L 8.292 11.206 L 10.582 8.916\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.229 15.723 C 7.229 14.85 7.937 14.142 8.81 14.142 C 9.683 14.142 10.391 14.85 10.391 15.723 C 10.391 16.596 9.683 17.304 8.81 17.304 C 7.937 17.304 7.229 16.596 7.229 15.723 Z\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.885 10.313 L 16.678 10.313 M 13.885 15.813 L 16.678 15.813\" fill=\"transparent\" stroke-width=\"1.375\" stroke=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:8963365602},tmp2a_w0R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23 22\"><path d=\"M 7.375 3.781 L 4.717 3.781 C 3.907 3.781 3.25 4.438 3.25 5.248 L 3.25 18.815 C 3.25 19.625 3.907 20.281 4.717 20.281 L 18.283 20.281 C 19.093 20.281 19.75 19.625 19.75 18.815 L 19.75 5.248 C 19.75 4.438 19.093 3.781 18.283 3.781 L 15.625 3.781\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 7.817 5.5 C 7.311 5.5 6.9 5.5 6.9 5.5 L 6.9 1.833 C 6.9 1.833 7.311 1.833 7.817 1.833 L 15.181 1.833 C 15.687 1.833 16.098 1.833 16.098 1.833 L 16.098 5.5 C 16.098 5.5 15.687 5.5 15.181 5.5 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 6.917 9.83 L 8.292 11.206 L 10.582 8.916\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path><path d=\"M 7.229 15.723 C 7.229 14.85 7.937 14.142 8.81 14.142 C 9.683 14.142 10.391 14.85 10.391 15.723 C 10.391 16.596 9.683 17.304 8.81 17.304 C 7.937 17.304 7.229 16.596 7.229 15.723 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.885 10.313 L 16.678 10.313 M 13.885 15.813 L 16.678 15.813\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\" stroke-linecap=\"round\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path></svg>',svgContentId:11246397677}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Driver Dispatch\"})}),className:\"framer-1ounehn\",\"data-framer-name\":\"Nav Text\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"kE5DTljdX\",style:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"0px\"},text:wdx0q76K_,variants:{DoO8QviB5:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},Nt5MUgpyc:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DoO8QviB5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Driver Dispatch\"})}),fonts:[\"GF;Poppins-500\"]},Nt5MUgpyc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Driver Dispatch\"})}),fonts:[\"GF;Poppins-500\"]},tmp2a_w0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Driver Dispatch\"})})}},baseVariant,gestureVariant)})]}),isDisplayed5()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({Nt5MUgpyc:{height:3,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+38-2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1awf26f-container\",layoutDependency:layoutDependency,layoutId:\"NYziOkrpL-container\",nodeId:\"NYziOkrpL\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(ProgressBar,{height:\"100%\",id:\"NYziOkrpL\",layoutId:\"NYziOkrpL\",style:{height:\"100%\",width:\"100%\"},variant:\"oC80HThqF\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4myufo\",\"data-framer-name\":\"Tab 4\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"phX3uQ9lH\",onTap:onTap1368w08,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{DoO8QviB5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},hBb33m1Mr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},k4qlHjqqV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},Nt5MUgpyc:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},tmp2a_w0R:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},tx8sDEoGc:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},VPwuDHqot:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgba(255, 255, 255, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},yNbZTGTPc:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({DoO8QviB5:{onTap:onTap18ayx5},hBb33m1Mr:{onTap:onTap18ayx5},k4qlHjqqV:{onTap:onTap18ayx5},Nt5MUgpyc:{\"data-border\":true},tmp2a_w0R:{onTap:onTap18ayx5},tx8sDEoGc:{\"data-border\":true},VPwuDHqot:{\"data-border\":true},yNbZTGTPc:{\"data-border\":true,onTap:onTap18ayx5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-r5t49g\",\"data-framer-name\":\"Nav Icon and Text\",layoutDependency:layoutDependency,layoutId:\"CcKRxIBxZ\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:22,width:\"22px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+0+0+1,...addPropertyOverrides({DoO8QviB5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},hBb33m1Mr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},k4qlHjqqV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},tmp2a_w0R:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},yNbZTGTPc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-448)/2+246+33)+0+0+0+0+16+0+0+1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o9udwf-container\",layoutDependency:layoutDependency,layoutId:\"TlBtMtgbQ-container\",nodeId:\"TlBtMtgbQ\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(IconMenu,{height:\"100%\",id:\"TlBtMtgbQ\",layoutId:\"TlBtMtgbQ\",style:{height:\"100%\",width:\"100%\"},variant:\"NdofP1zpA\",width:\"100%\",...addPropertyOverrides({tx8sDEoGc:{variant:\"JWo0H8Kd9\"},yNbZTGTPc:{variant:\"JWo0H8Kd9\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Build Routes\"})}),className:\"framer-vhqdb3\",\"data-framer-name\":\"Nav Text\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"SkUl_dCUE\",style:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"0px\"},text:I2HJgJCRc,variants:{tx8sDEoGc:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},yNbZTGTPc:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Nt5MUgpyc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Build Routes\"})})},tx8sDEoGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Build Routes\"})}),fonts:[\"GF;Poppins-500\"]},VPwuDHqot:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Build Routes\"})})},yNbZTGTPc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Build Routes\"})}),fonts:[\"GF;Poppins-500\"]}},baseVariant,gestureVariant)})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({tx8sDEoGc:{height:3,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+38-2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1oej2hu-container\",layoutDependency:layoutDependency,layoutId:\"lTRzGmwoe-container\",nodeId:\"lTRzGmwoe\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(ProgressBar,{height:\"100%\",id:\"lTRzGmwoe\",layoutId:\"lTRzGmwoe\",style:{height:\"100%\",width:\"100%\"},variant:\"oC80HThqF\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zarsmh\",\"data-framer-name\":\"Tab 5\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FfknaM8P2\",onTap:onTaprtw7yi,style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{DoO8QviB5:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},hBb33m1Mr:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},k4qlHjqqV:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"},tmp2a_w0R:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},VPwuDHqot:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(255, 255, 255)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},yNbZTGTPc:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({DoO8QviB5:{onTap:onTap1utx3is},hBb33m1Mr:{onTap:onTap1utx3is},k4qlHjqqV:{onTap:onTap1utx3is},tmp2a_w0R:{\"data-border\":true,onTap:onTap1utx3is},VPwuDHqot:{\"data-border\":true},yNbZTGTPc:{onTap:onTap1utx3is}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vn4213\",\"data-framer-name\":\"Nav Icon and Text\",layoutDependency:layoutDependency,layoutId:\"z2Ic_uTwW\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-f7g3nx\",\"data-framer-name\":\"Nav Icon\",layoutDependency:layoutDependency,layoutId:\"aWrsaEJQj\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12twkes\",\"data-framer-name\":\"Group 427320474\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"aoRqCXVON\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 11.975 0.578 C 13.197 0.578 14.187 1.568 14.187 2.789 L 14.187 8.222 L 14.591 8.222 C 15.352 8.222 16.082 8.525 16.621 9.063 C 17.159 9.602 17.461 10.332 17.461 11.093 L 17.461 14.369 C 17.461 14.621 17.561 14.863 17.74 15.041 C 17.918 15.219 18.159 15.319 18.411 15.319 C 18.663 15.319 18.905 15.219 19.083 15.041 C 19.261 14.863 19.361 14.621 19.361 14.369 L 19.361 7.414 L 18.957 7.414 C 18.485 7.414 18.033 7.226 17.699 6.893 C 17.365 6.559 17.178 6.106 17.178 5.634 L 17.178 4.827 L 16.288 3.937 C 16.019 3.668 16.019 3.233 16.288 2.965 C 16.556 2.696 16.992 2.696 17.26 2.965 L 18.351 4.056 L 18.352 4.057 L 20.535 6.24 C 20.664 6.369 20.736 6.544 20.736 6.726 L 20.736 14.369 C 20.736 14.986 20.491 15.577 20.055 16.013 C 19.619 16.449 19.028 16.694 18.411 16.694 C 17.795 16.694 17.203 16.449 16.767 16.013 C 16.331 15.577 16.086 14.986 16.086 14.369 L 16.086 11.093 C 16.086 10.697 15.929 10.316 15.648 10.035 C 15.368 9.755 14.987 9.597 14.591 9.597 L 14.187 9.597 L 14.187 18.046 L 15.135 18.046 C 15.515 18.046 15.823 18.354 15.823 18.733 C 15.823 19.113 15.515 19.421 15.135 19.421 L 14.187 19.421 L 14.187 19.422 L 1.896 19.422 L 1.896 19.421 L 0.952 19.421 C 0.572 19.421 0.265 19.113 0.265 18.733 C 0.265 18.354 0.572 18.046 0.952 18.046 L 1.896 18.046 L 1.896 2.789 C 1.896 1.568 2.886 0.578 4.107 0.578 Z M 3.271 18.046 L 12.812 18.046 L 12.812 8.929 L 12.811 8.91 L 12.812 8.891 L 12.812 7.147 L 3.271 7.147 Z M 6.446 13.447 C 6.446 12.746 7.133 11.687 8.196 10.272 C 9.26 11.687 9.933 12.746 9.933 13.447 C 9.933 14.499 9.077 15.352 8.196 15.352 C 7.316 15.352 6.446 14.499 6.446 13.447 Z M 12.812 5.772 L 12.812 2.789 C 12.812 2.327 12.437 1.953 11.975 1.953 L 4.107 1.953 C 3.645 1.953 3.271 2.327 3.271 2.789 L 3.271 5.772 Z\" fill=\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)) /* {&quot;name&quot;:&quot;Text 3&quot;} */\"></path></svg>',svgContentId:9221052281,withExternalLayout:true,...addPropertyOverrides({tmp2a_w0R:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 11.975 0.578 C 13.197 0.578 14.187 1.568 14.187 2.789 L 14.187 8.222 L 14.591 8.222 C 15.352 8.222 16.082 8.525 16.621 9.063 C 17.159 9.602 17.461 10.332 17.461 11.093 L 17.461 14.369 C 17.461 14.621 17.561 14.863 17.74 15.041 C 17.918 15.219 18.159 15.319 18.411 15.319 C 18.663 15.319 18.905 15.219 19.083 15.041 C 19.261 14.863 19.361 14.621 19.361 14.369 L 19.361 7.414 L 18.957 7.414 C 18.485 7.414 18.033 7.226 17.699 6.893 C 17.365 6.559 17.178 6.106 17.178 5.634 L 17.178 4.827 L 16.288 3.937 C 16.019 3.668 16.019 3.233 16.288 2.965 C 16.556 2.696 16.992 2.696 17.26 2.965 L 18.351 4.056 L 18.352 4.057 L 20.535 6.24 C 20.664 6.369 20.736 6.544 20.736 6.726 L 20.736 14.369 C 20.736 14.986 20.491 15.577 20.055 16.013 C 19.619 16.449 19.028 16.694 18.411 16.694 C 17.795 16.694 17.203 16.449 16.767 16.013 C 16.331 15.577 16.086 14.986 16.086 14.369 L 16.086 11.093 C 16.086 10.697 15.929 10.316 15.648 10.035 C 15.368 9.755 14.987 9.597 14.591 9.597 L 14.187 9.597 L 14.187 18.046 L 15.135 18.046 C 15.515 18.046 15.823 18.354 15.823 18.733 C 15.823 19.113 15.515 19.421 15.135 19.421 L 14.187 19.421 L 14.187 19.422 L 1.896 19.422 L 1.896 19.421 L 0.952 19.421 C 0.572 19.421 0.265 19.113 0.265 18.733 C 0.265 18.354 0.572 18.046 0.952 18.046 L 1.896 18.046 L 1.896 2.789 C 1.896 1.568 2.886 0.578 4.107 0.578 Z M 3.271 18.046 L 12.812 18.046 L 12.812 8.929 L 12.811 8.91 L 12.812 8.891 L 12.812 7.147 L 3.271 7.147 Z M 6.446 13.447 C 6.446 12.746 7.133 11.687 8.196 10.272 C 9.26 11.687 9.933 12.746 9.933 13.447 C 9.933 14.499 9.077 15.352 8.196 15.352 C 7.316 15.352 6.446 14.499 6.446 13.447 Z M 12.812 5.772 L 12.812 2.789 C 12.812 2.327 12.437 1.953 11.975 1.953 L 4.107 1.953 C 3.645 1.953 3.271 2.327 3.271 2.789 L 3.271 5.772 Z\" fill=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\"></path></svg>',svgContentId:10147221954},VPwuDHqot:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 21 20\"><path d=\"M 11.975 0.578 C 13.197 0.578 14.187 1.568 14.187 2.789 L 14.187 8.222 L 14.591 8.222 C 15.352 8.222 16.082 8.525 16.621 9.063 C 17.159 9.602 17.461 10.332 17.461 11.093 L 17.461 14.369 C 17.461 14.621 17.561 14.863 17.74 15.041 C 17.918 15.219 18.159 15.319 18.411 15.319 C 18.663 15.319 18.905 15.219 19.083 15.041 C 19.261 14.863 19.361 14.621 19.361 14.369 L 19.361 7.414 L 18.957 7.414 C 18.485 7.414 18.033 7.226 17.699 6.893 C 17.365 6.559 17.178 6.106 17.178 5.634 L 17.178 4.827 L 16.288 3.937 C 16.019 3.668 16.019 3.233 16.288 2.965 C 16.556 2.696 16.992 2.696 17.26 2.965 L 18.351 4.056 L 18.352 4.057 L 20.535 6.24 C 20.664 6.369 20.736 6.544 20.736 6.726 L 20.736 14.369 C 20.736 14.986 20.491 15.577 20.055 16.013 C 19.619 16.449 19.028 16.694 18.411 16.694 C 17.795 16.694 17.203 16.449 16.767 16.013 C 16.331 15.577 16.086 14.986 16.086 14.369 L 16.086 11.093 C 16.086 10.697 15.929 10.316 15.648 10.035 C 15.368 9.755 14.987 9.597 14.591 9.597 L 14.187 9.597 L 14.187 18.046 L 15.135 18.046 C 15.515 18.046 15.823 18.354 15.823 18.733 C 15.823 19.113 15.515 19.421 15.135 19.421 L 14.187 19.421 L 14.187 19.422 L 1.896 19.422 L 1.896 19.421 L 0.952 19.421 C 0.572 19.421 0.265 19.113 0.265 18.733 C 0.265 18.354 0.572 18.046 0.952 18.046 L 1.896 18.046 L 1.896 2.789 C 1.896 1.568 2.886 0.578 4.107 0.578 Z M 3.271 18.046 L 12.812 18.046 L 12.812 8.929 L 12.811 8.91 L 12.812 8.891 L 12.812 7.147 L 3.271 7.147 Z M 6.446 13.447 C 6.446 12.746 7.133 11.687 8.196 10.272 C 9.26 11.687 9.933 12.746 9.933 13.447 C 9.933 14.499 9.077 15.352 8.196 15.352 C 7.316 15.352 6.446 14.499 6.446 13.447 Z M 12.812 5.772 L 12.812 2.789 C 12.812 2.327 12.437 1.953 11.975 1.953 L 4.107 1.953 C 3.645 1.953 3.271 2.327 3.271 2.789 L 3.271 5.772 Z\" fill=\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;Text - white&quot;} */\"></path></svg>',svgContentId:10147221954}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\",\"--framer-text-transform\":\"capitalize\"},children:\"Fuel\"})}),className:\"framer-1uge0a2\",\"data-framer-name\":\"Nav Text\",fonts:[\"GF;Poppins-regular\"],layoutDependency:layoutDependency,layoutId:\"lYCREMcdr\",style:{\"--extracted-1of0zx5\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"0px\"},text:lxmLuUyrv,variants:{tmp2a_w0R:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},VPwuDHqot:{\"--extracted-1of0zx5\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({tmp2a_w0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Fuel Network \"})}),fonts:[\"GF;Poppins-500\"]},VPwuDHqot:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy01MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255)))\"},children:\"Fuel\"})}),fonts:[\"GF;Poppins-500\"]}},baseVariant,gestureVariant)})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({VPwuDHqot:{height:3,y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-593)/2+467+33)+0+0+0+0+38-2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vdsu2t-container\",layoutDependency:layoutDependency,layoutId:\"Mvg3SAd4R-container\",nodeId:\"Mvg3SAd4R\",rendersWithMotion:true,scopeId:\"xbmreDUZ8\",children:/*#__PURE__*/_jsx(ProgressBar,{height:\"100%\",id:\"Mvg3SAd4R\",layoutId:\"Mvg3SAd4R\",style:{height:\"100%\",width:\"100%\"},variant:\"oC80HThqF\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1b1t0h4\",\"data-framer-name\":\"Footer Text and Button\",layoutDependency:layoutDependency,layoutId:\"zwpaybBPq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Award-winning TMS that simplifies trucking operations with everyone you need to manage your fleet.\"})}),className:\"framer-ammk97\",\"data-framer-name\":\"Footer Text\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"i4ci_WJk9\",style:{\"--extracted-r6o4lv\":\"var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152))\",\"--framer-paragraph-spacing\":\"0px\"},text:SolZtlCxF,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({DoO8QviB5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Manage drivers efficiently with real-time location tracking and task assignment. Ensure smooth communication and seamless coordination across your fleet.\"})}),text:sLbbSTL5l},hBb33m1Mr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Browse thousands of available loads tailored to truckers, filter by region, and find your next job with ease. Gain insights from fellow truckers on load availability and rates.\"})}),text:rKtqyBR96},hjF8SED9p:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Browse thousands of available loads tailored to truckers, filter by region, and find your next job with ease. Gain insights from fellow truckers on load availability and rates.\"})}),text:rKtqyBR96},Nt5MUgpyc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Manage drivers efficiently with real-time location tracking and task assignment. Ensure smooth communication and seamless coordination across your fleet.\"})}),text:sLbbSTL5l},tmp2a_w0R:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Streamline paperwork with automated invoicing, compliance tracking, and reporting. Simplify your back-office processes to save time and focus on driving.\"})}),text:kHd3PSlSX},tx8sDEoGc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Plan optimized routes that accommodate your truck\u2019s dimensions and find truck-friendly stops. Get real-time updates on traffic and road conditions along the way.\"})}),text:ZN35oYGyW},VPwuDHqot:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Locate nearby fuel stations with the best prices and access discounts. Track fuel usage in real-time and optimize routes to minimize fuel costs.\"})}),text:kHd3PSlSX},yNbZTGTPc:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b3b64d87-da9f-465e-bfe4-bc9f0b81e14c, rgb(134, 143, 152)))\"},children:\"Plan optimized routes that accommodate your truck\u2019s dimensions and find truck-friendly stops. Get real-time updates on traffic and road conditions along the way.\"})}),text:ZN35oYGyW}},baseVariant,gestureVariant)})})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jYMj1.framer-eb1nop, .framer-jYMj1 .framer-eb1nop { display: block; }\",\".framer-jYMj1.framer-s7w7pm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 33px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jYMj1 .framer-lur6uo { flex: none; height: 467px; overflow: visible; position: relative; width: 1000px; }\",\".framer-jYMj1 .framer-wa5z0g { bottom: -75px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jYMj1 .framer-19y5krg { aspect-ratio: 1.5822784810126582 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 537px); left: 75px; position: absolute; right: 75px; top: 0px; }\",\".framer-jYMj1 .framer-k0qpw1 { aspect-ratio: 0.7493261455525606 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 347px); left: 740px; overflow: visible; position: absolute; right: 0px; top: 55%; }\",\".framer-jYMj1 .framer-14mmygr, .framer-jYMj1 .framer-1k3tuw8, .framer-jYMj1 .framer-4xl4zh, .framer-jYMj1 .framer-htt5bs { aspect-ratio: 1.5822784810126582 / 1; bottom: -70px; flex: none; left: 50%; position: absolute; top: 0px; width: var(--framer-aspect-ratio-supported, 850px); }\",\".framer-jYMj1 .framer-11finmj { aspect-ratio: 0.8271276595744681 / 1; bottom: -15px; flex: none; height: var(--framer-aspect-ratio-supported, 273px); left: -13px; overflow: visible; position: absolute; width: 226px; }\",\".framer-jYMj1 .framer-1ddue27 { aspect-ratio: 1.3357664233576643 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 274px); overflow: visible; position: absolute; right: 0px; top: 12px; width: 366px; }\",\".framer-jYMj1 .framer-1ygr3kr { aspect-ratio: 0.9984152139461173 / 1; bottom: 15px; flex: none; height: var(--framer-aspect-ratio-supported, 217px); left: -17px; overflow: visible; position: absolute; width: 216px; }\",\".framer-jYMj1 .framer-1swblry { aspect-ratio: 1.6132231404958677 / 1; bottom: 79px; flex: none; height: var(--framer-aspect-ratio-supported, 262px); overflow: visible; position: absolute; right: 0px; width: 423px; }\",\".framer-jYMj1 .framer-q37n3j { aspect-ratio: 1.0482758620689656 / 1; bottom: -27px; flex: none; height: var(--framer-aspect-ratio-supported, 279px); overflow: visible; position: absolute; right: -1px; width: 292px; }\",\".framer-jYMj1 .framer-1yw3cgk { aspect-ratio: 1.654292343387471 / 1; bottom: -5px; flex: none; height: var(--framer-aspect-ratio-supported, 216px); overflow: visible; position: absolute; right: -18px; width: 357px; }\",\".framer-jYMj1 .framer-1okfsj2 { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-start; max-width: 1100px; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-jYMj1 .framer-1t1feh9 { 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: 0px; position: relative; width: min-content; }\",\".framer-jYMj1 .framer-17x67z1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jYMj1 .framer-1qsysao { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 0px 14px 0px; position: relative; width: min-content; }\",\".framer-jYMj1 .framer-fdnoht, .framer-jYMj1 .framer-1f2eeru, .framer-jYMj1 .framer-1bb5y3x, .framer-jYMj1 .framer-r5t49g, .framer-jYMj1 .framer-vn4213 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jYMj1 .framer-fqe3cy, .framer-jYMj1 .framer-f7g3nx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 9px; height: 22px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 22px; }\",\".framer-jYMj1 .framer-e4u88n-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\".framer-jYMj1 .framer-1s362so, .framer-jYMj1 .framer-bajozl, .framer-jYMj1 .framer-1ounehn, .framer-jYMj1 .framer-vhqdb3, .framer-jYMj1 .framer-1uge0a2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jYMj1 .framer-rt4knv-container, .framer-jYMj1 .framer-1tk4e0y-container, .framer-jYMj1 .framer-1awf26f-container, .framer-jYMj1 .framer-1oej2hu-container, .framer-jYMj1 .framer-1vdsu2t-container { bottom: -1px; flex: none; height: 3px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-jYMj1 .framer-1g5m7nx, .framer-jYMj1 .framer-1ff98ev, .framer-jYMj1 .framer-4myufo, .framer-jYMj1 .framer-zarsmh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 14px 0px; position: relative; width: min-content; }\",\".framer-jYMj1 .framer-jgqm4-container, .framer-jYMj1 .framer-o9udwf-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-jYMj1 .framer-1rzpuoj { flex: none; height: 22px; position: relative; width: 23px; }\",\".framer-jYMj1 .framer-12twkes { flex: none; height: 20px; position: relative; width: 21px; }\",\".framer-jYMj1 .framer-1b1t0h4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jYMj1 .framer-ammk97 { flex: 1 0 0px; height: 40px; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-s7w7pm, .framer-jYMj1 .framer-1okfsj2, .framer-jYMj1 .framer-1t1feh9, .framer-jYMj1 .framer-17x67z1, .framer-jYMj1 .framer-1qsysao, .framer-jYMj1 .framer-fdnoht, .framer-jYMj1 .framer-fqe3cy, .framer-jYMj1 .framer-1g5m7nx, .framer-jYMj1 .framer-1f2eeru, .framer-jYMj1 .framer-1ff98ev, .framer-jYMj1 .framer-1bb5y3x, .framer-jYMj1 .framer-4myufo, .framer-jYMj1 .framer-r5t49g, .framer-jYMj1 .framer-zarsmh, .framer-jYMj1 .framer-vn4213, .framer-jYMj1 .framer-f7g3nx { gap: 0px; } .framer-jYMj1.framer-s7w7pm > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-jYMj1.framer-s7w7pm > :first-child, .framer-jYMj1 .framer-1okfsj2 > :first-child, .framer-jYMj1 .framer-1qsysao > :first-child, .framer-jYMj1 .framer-1g5m7nx > :first-child, .framer-jYMj1 .framer-1ff98ev > :first-child, .framer-jYMj1 .framer-4myufo > :first-child, .framer-jYMj1 .framer-zarsmh > :first-child { margin-top: 0px; } .framer-jYMj1.framer-s7w7pm > :last-child, .framer-jYMj1 .framer-1okfsj2 > :last-child, .framer-jYMj1 .framer-1qsysao > :last-child, .framer-jYMj1 .framer-1g5m7nx > :last-child, .framer-jYMj1 .framer-1ff98ev > :last-child, .framer-jYMj1 .framer-4myufo > :last-child, .framer-jYMj1 .framer-zarsmh > :last-child { margin-bottom: 0px; } .framer-jYMj1 .framer-1okfsj2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-jYMj1 .framer-1t1feh9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jYMj1 .framer-1t1feh9 > :first-child, .framer-jYMj1 .framer-17x67z1 > :first-child, .framer-jYMj1 .framer-fdnoht > :first-child, .framer-jYMj1 .framer-fqe3cy > :first-child, .framer-jYMj1 .framer-1f2eeru > :first-child, .framer-jYMj1 .framer-1bb5y3x > :first-child, .framer-jYMj1 .framer-r5t49g > :first-child, .framer-jYMj1 .framer-vn4213 > :first-child, .framer-jYMj1 .framer-f7g3nx > :first-child { margin-left: 0px; } .framer-jYMj1 .framer-1t1feh9 > :last-child, .framer-jYMj1 .framer-17x67z1 > :last-child, .framer-jYMj1 .framer-fdnoht > :last-child, .framer-jYMj1 .framer-fqe3cy > :last-child, .framer-jYMj1 .framer-1f2eeru > :last-child, .framer-jYMj1 .framer-1bb5y3x > :last-child, .framer-jYMj1 .framer-r5t49g > :last-child, .framer-jYMj1 .framer-vn4213 > :last-child, .framer-jYMj1 .framer-f7g3nx > :last-child { margin-right: 0px; } .framer-jYMj1 .framer-17x67z1 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-jYMj1 .framer-1qsysao > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-jYMj1 .framer-fdnoht > *, .framer-jYMj1 .framer-1f2eeru > *, .framer-jYMj1 .framer-1bb5y3x > *, .framer-jYMj1 .framer-r5t49g > *, .framer-jYMj1 .framer-vn4213 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-jYMj1 .framer-fqe3cy > *, .framer-jYMj1 .framer-f7g3nx > * { margin: 0px; margin-left: calc(9.166667938232422px / 2); margin-right: calc(9.166667938232422px / 2); } .framer-jYMj1 .framer-1g5m7nx > *, .framer-jYMj1 .framer-1ff98ev > *, .framer-jYMj1 .framer-4myufo > *, .framer-jYMj1 .framer-zarsmh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-jYMj1.framer-v-19ebpa9 .framer-1ddue27 { height: var(--framer-aspect-ratio-supported, 261px); right: 9px; top: 76px; width: 349px; }\",\".framer-jYMj1.framer-v-19ebpa9 .framer-1g5m7nx, .framer-jYMj1.framer-v-kclj0n .framer-1g5m7nx, .framer-jYMj1.framer-v-kclj0n .framer-1ff98ev, .framer-jYMj1.framer-v-kclj0n .framer-4myufo, .framer-jYMj1.framer-v-kclj0n .framer-zarsmh, .framer-jYMj1.framer-v-8zo8a7 .framer-1g5m7nx, .framer-jYMj1.framer-v-41gi75 .framer-1ff98ev, .framer-jYMj1.framer-v-yqyedi .framer-4myufo, .framer-jYMj1.framer-v-q5aztg .framer-zarsmh { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-19ebpa9 .framer-1g5m7nx { gap: 0px; } .framer-jYMj1.framer-v-19ebpa9 .framer-1g5m7nx > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-jYMj1.framer-v-19ebpa9 .framer-1g5m7nx > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-19ebpa9 .framer-1g5m7nx > :last-child { margin-bottom: 0px; } }\",\".framer-jYMj1.framer-v-onbul8 .framer-1ygr3kr { bottom: 34px; height: var(--framer-aspect-ratio-supported, 206px); left: 0px; width: 205px; }\",\".framer-jYMj1.framer-v-onbul8 .framer-1qsysao, .framer-jYMj1.framer-v-ya87x0 .framer-1qsysao, .framer-jYMj1.framer-v-1c3dw9x .framer-1qsysao { order: 0; }\",\".framer-jYMj1.framer-v-onbul8 .framer-1g5m7nx { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; order: 1; }\",\".framer-jYMj1.framer-v-onbul8 .framer-1ff98ev { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; order: 2; }\",\".framer-jYMj1.framer-v-onbul8 .framer-4myufo, .framer-jYMj1.framer-v-ya87x0 .framer-4myufo { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; order: 3; }\",\".framer-jYMj1.framer-v-onbul8 .framer-zarsmh, .framer-jYMj1.framer-v-ya87x0 .framer-zarsmh, .framer-jYMj1.framer-v-1c3dw9x .framer-zarsmh { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-onbul8 .framer-1g5m7nx, .framer-jYMj1.framer-v-onbul8 .framer-1ff98ev, .framer-jYMj1.framer-v-onbul8 .framer-4myufo { gap: 0px; } .framer-jYMj1.framer-v-onbul8 .framer-1g5m7nx > *, .framer-jYMj1.framer-v-onbul8 .framer-1ff98ev > *, .framer-jYMj1.framer-v-onbul8 .framer-4myufo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-jYMj1.framer-v-onbul8 .framer-1g5m7nx > :first-child, .framer-jYMj1.framer-v-onbul8 .framer-1ff98ev > :first-child, .framer-jYMj1.framer-v-onbul8 .framer-4myufo > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-onbul8 .framer-1g5m7nx > :last-child, .framer-jYMj1.framer-v-onbul8 .framer-1ff98ev > :last-child, .framer-jYMj1.framer-v-onbul8 .framer-4myufo > :last-child { margin-bottom: 0px; } }\",\".framer-jYMj1.framer-v-ya87x0 .framer-1g5m7nx, .framer-jYMj1.framer-v-1c3dw9x .framer-1g5m7nx { order: 1; }\",\".framer-jYMj1.framer-v-ya87x0 .framer-1ff98ev, .framer-jYMj1.framer-v-1c3dw9x .framer-1ff98ev { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-ya87x0 .framer-4myufo { gap: 0px; } .framer-jYMj1.framer-v-ya87x0 .framer-4myufo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-jYMj1.framer-v-ya87x0 .framer-4myufo > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-ya87x0 .framer-4myufo > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-kclj0n .framer-1g5m7nx, .framer-jYMj1.framer-v-kclj0n .framer-1ff98ev, .framer-jYMj1.framer-v-kclj0n .framer-4myufo, .framer-jYMj1.framer-v-kclj0n .framer-zarsmh { gap: 0px; } .framer-jYMj1.framer-v-kclj0n .framer-1g5m7nx > *, .framer-jYMj1.framer-v-kclj0n .framer-1ff98ev > *, .framer-jYMj1.framer-v-kclj0n .framer-4myufo > *, .framer-jYMj1.framer-v-kclj0n .framer-zarsmh > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-jYMj1.framer-v-kclj0n .framer-1g5m7nx > :first-child, .framer-jYMj1.framer-v-kclj0n .framer-1ff98ev > :first-child, .framer-jYMj1.framer-v-kclj0n .framer-4myufo > :first-child, .framer-jYMj1.framer-v-kclj0n .framer-zarsmh > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-kclj0n .framer-1g5m7nx > :last-child, .framer-jYMj1.framer-v-kclj0n .framer-1ff98ev > :last-child, .framer-jYMj1.framer-v-kclj0n .framer-4myufo > :last-child, .framer-jYMj1.framer-v-kclj0n .framer-zarsmh > :last-child { margin-bottom: 0px; } }\",\".framer-jYMj1.framer-v-1c3dw9x.framer-s7w7pm, .framer-jYMj1.framer-v-8zo8a7.framer-s7w7pm, .framer-jYMj1.framer-v-41gi75.framer-s7w7pm, .framer-jYMj1.framer-v-yqyedi.framer-s7w7pm, .framer-jYMj1.framer-v-q5aztg.framer-s7w7pm { width: 390px; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-lur6uo, .framer-jYMj1.framer-v-8zo8a7 .framer-lur6uo, .framer-jYMj1.framer-v-41gi75 .framer-lur6uo, .framer-jYMj1.framer-v-yqyedi .framer-lur6uo, .framer-jYMj1.framer-v-q5aztg .framer-lur6uo { aspect-ratio: 1.5853658536585367 / 1; height: var(--framer-aspect-ratio-supported, 126px); width: 100%; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-19y5krg, .framer-jYMj1.framer-v-8zo8a7 .framer-19y5krg, .framer-jYMj1.framer-v-41gi75 .framer-19y5krg, .framer-jYMj1.framer-v-yqyedi .framer-19y5krg { aspect-ratio: unset; bottom: 0px; height: unset; left: 0px; right: 0px; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-1okfsj2, .framer-jYMj1.framer-v-8zo8a7 .framer-1okfsj2, .framer-jYMj1.framer-v-41gi75 .framer-1okfsj2, .framer-jYMj1.framer-v-yqyedi .framer-1okfsj2, .framer-jYMj1.framer-v-q5aztg .framer-1okfsj2 { align-self: unset; width: 100%; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-1t1feh9, .framer-jYMj1.framer-v-8zo8a7 .framer-1t1feh9, .framer-jYMj1.framer-v-yqyedi .framer-1t1feh9, .framer-jYMj1.framer-v-q5aztg .framer-1t1feh9 { align-content: flex-start; align-items: flex-start; flex-direction: column; overflow: auto; width: 100%; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-17x67z1, .framer-jYMj1.framer-v-yqyedi .framer-17x67z1 { padding: 16px 70px 0px 16px; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-4myufo { order: 3; }\",\".framer-jYMj1.framer-v-1c3dw9x .framer-ammk97, .framer-jYMj1.framer-v-8zo8a7 .framer-ammk97, .framer-jYMj1.framer-v-41gi75 .framer-ammk97, .framer-jYMj1.framer-v-yqyedi .framer-ammk97, .framer-jYMj1.framer-v-q5aztg .framer-ammk97 { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-1c3dw9x .framer-1t1feh9 { gap: 0px; } .framer-jYMj1.framer-v-1c3dw9x .framer-1t1feh9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jYMj1.framer-v-1c3dw9x .framer-1t1feh9 > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-1c3dw9x .framer-1t1feh9 > :last-child { margin-bottom: 0px; } }\",\".framer-jYMj1.framer-v-8zo8a7 .framer-17x67z1 { justify-content: center; padding: 16px 70px 0px 16px; }\",\".framer-jYMj1.framer-v-8zo8a7 .framer-1qsysao, .framer-jYMj1.framer-v-41gi75 .framer-1qsysao, .framer-jYMj1.framer-v-yqyedi .framer-1qsysao, .framer-jYMj1.framer-v-q5aztg .framer-1qsysao { align-content: center; align-items: center; gap: 10px; justify-content: center; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-8zo8a7 .framer-1t1feh9, .framer-jYMj1.framer-v-8zo8a7 .framer-1qsysao, .framer-jYMj1.framer-v-8zo8a7 .framer-1g5m7nx { gap: 0px; } .framer-jYMj1.framer-v-8zo8a7 .framer-1t1feh9 > *, .framer-jYMj1.framer-v-8zo8a7 .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jYMj1.framer-v-8zo8a7 .framer-1t1feh9 > :first-child, .framer-jYMj1.framer-v-8zo8a7 .framer-1qsysao > :first-child, .framer-jYMj1.framer-v-8zo8a7 .framer-1g5m7nx > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-8zo8a7 .framer-1t1feh9 > :last-child, .framer-jYMj1.framer-v-8zo8a7 .framer-1qsysao > :last-child, .framer-jYMj1.framer-v-8zo8a7 .framer-1g5m7nx > :last-child { margin-bottom: 0px; } .framer-jYMj1.framer-v-8zo8a7 .framer-1g5m7nx > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-jYMj1.framer-v-41gi75 .framer-1t1feh9 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; justify-content: flex-start; overflow: auto; overscroll-behavior: contain; width: 100%; }\",\".framer-jYMj1.framer-v-41gi75 .framer-17x67z1, .framer-jYMj1.framer-v-q5aztg .framer-17x67z1 { padding: 16px 70px 0px 16px; width: 1009px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-41gi75 .framer-1t1feh9, .framer-jYMj1.framer-v-41gi75 .framer-1qsysao, .framer-jYMj1.framer-v-41gi75 .framer-1ff98ev { gap: 0px; } .framer-jYMj1.framer-v-41gi75 .framer-1t1feh9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-jYMj1.framer-v-41gi75 .framer-1t1feh9 > :first-child, .framer-jYMj1.framer-v-41gi75 .framer-1qsysao > :first-child, .framer-jYMj1.framer-v-41gi75 .framer-1ff98ev > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-41gi75 .framer-1t1feh9 > :last-child, .framer-jYMj1.framer-v-41gi75 .framer-1qsysao > :last-child, .framer-jYMj1.framer-v-41gi75 .framer-1ff98ev > :last-child { margin-bottom: 0px; } .framer-jYMj1.framer-v-41gi75 .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jYMj1.framer-v-41gi75 .framer-1ff98ev > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-yqyedi .framer-1t1feh9, .framer-jYMj1.framer-v-yqyedi .framer-1qsysao, .framer-jYMj1.framer-v-yqyedi .framer-4myufo { gap: 0px; } .framer-jYMj1.framer-v-yqyedi .framer-1t1feh9 > *, .framer-jYMj1.framer-v-yqyedi .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jYMj1.framer-v-yqyedi .framer-1t1feh9 > :first-child, .framer-jYMj1.framer-v-yqyedi .framer-1qsysao > :first-child, .framer-jYMj1.framer-v-yqyedi .framer-4myufo > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-yqyedi .framer-1t1feh9 > :last-child, .framer-jYMj1.framer-v-yqyedi .framer-1qsysao > :last-child, .framer-jYMj1.framer-v-yqyedi .framer-4myufo > :last-child { margin-bottom: 0px; } .framer-jYMj1.framer-v-yqyedi .framer-4myufo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-jYMj1.framer-v-q5aztg .framer-19y5krg { bottom: 0px; height: var(--framer-aspect-ratio-supported, 246px); left: 0px; right: 0px; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-jYMj1.framer-v-q5aztg .framer-1t1feh9, .framer-jYMj1.framer-v-q5aztg .framer-1qsysao, .framer-jYMj1.framer-v-q5aztg .framer-zarsmh { gap: 0px; } .framer-jYMj1.framer-v-q5aztg .framer-1t1feh9 > *, .framer-jYMj1.framer-v-q5aztg .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jYMj1.framer-v-q5aztg .framer-1t1feh9 > :first-child, .framer-jYMj1.framer-v-q5aztg .framer-1qsysao > :first-child, .framer-jYMj1.framer-v-q5aztg .framer-zarsmh > :first-child { margin-top: 0px; } .framer-jYMj1.framer-v-q5aztg .framer-1t1feh9 > :last-child, .framer-jYMj1.framer-v-q5aztg .framer-1qsysao > :last-child, .framer-jYMj1.framer-v-q5aztg .framer-zarsmh > :last-child { margin-bottom: 0px; } .framer-jYMj1.framer-v-q5aztg .framer-zarsmh > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,'.framer-jYMj1[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-jYMj1 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-jYMj1[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-jYMj1 [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-jYMj1[data-hide-scrollbars=\"true\"], .framer-jYMj1 [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-jYMj1[data-border=\"true\"]::after, .framer-jYMj1 [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 593\n * @framerIntrinsicWidth 1000\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hjF8SED9p\":{\"layout\":[\"auto\",\"auto\"]},\"Nt5MUgpyc\":{\"layout\":[\"auto\",\"auto\"]},\"tx8sDEoGc\":{\"layout\":[\"auto\",\"auto\"]},\"VPwuDHqot\":{\"layout\":[\"auto\",\"auto\"]},\"SpzMtbKKd\":{\"layout\":[\"auto\",\"auto\"]},\"k4qlHjqqV\":{\"layout\":[\"fixed\",\"auto\"]},\"hBb33m1Mr\":{\"layout\":[\"fixed\",\"auto\"]},\"DoO8QviB5\":{\"layout\":[\"fixed\",\"auto\"]},\"yNbZTGTPc\":{\"layout\":[\"fixed\",\"auto\"]},\"tmp2a_w0R\":{\"layout\":[\"fixed\",\"auto\"]},\"tAIUdLAsG\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"c2e5yWPKB\":\"tab1\",\"SolZtlCxF\":\"tab1Describtion\",\"ILNyEl4Z1\":\"tab2\",\"rKtqyBR96\":\"tab2Describtion\",\"wdx0q76K_\":\"tab3\",\"sLbbSTL5l\":\"tab3Describtion\",\"I2HJgJCRc\":\"tab4\",\"ZN35oYGyW\":\"tab4Describtion\",\"lxmLuUyrv\":\"tab5\",\"kHd3PSlSX\":\"tab5Describtion\",\"FINXt1v0h\":\"tab1ImgPhone\",\"D9m3e1F_F\":\"tab2ImgPhone\",\"VC7Qb0t21\":\"tab3ImgPhone\",\"ClFQj3ido\":\"tab4ImgPhone\",\"fNTgJJkKm\":\"tab5ImgPhone\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxbmreDUZ8=withCSS(Component,css,\"framer-jYMj1\");export default FramerxbmreDUZ8;FramerxbmreDUZ8.displayName=\"COMMAND - Horizontal\";FramerxbmreDUZ8.defaultProps={height:593,width:1e3};addPropertyControls(FramerxbmreDUZ8,{variant:{options:[\"ujm_mMyXY\",\"hjF8SED9p\",\"Nt5MUgpyc\",\"tx8sDEoGc\",\"VPwuDHqot\",\"SpzMtbKKd\",\"k4qlHjqqV\",\"hBb33m1Mr\",\"DoO8QviB5\",\"yNbZTGTPc\",\"tmp2a_w0R\",\"tAIUdLAsG\"],optionTitles:[\"Web \\xb7 Tab 1\",\"Web \\xb7 Tab 2\",\"Web \\xb7 Tab 3\",\"Web \\xb7 Tab 4\",\"Web \\xb7 Tab 5\",\"Web \\xb7 Tab 6\",\"Phone \\xb7 Tab 1\",\"Phone \\xb7 Tab 2\",\"Phone \\xb7 Tab 3\",\"Phone \\xb7 Tab 4\",\"Phone \\xb7 Tab 5\",\"Phone \\xb7 Tab 6\"],title:\"Variant\",type:ControlType.Enum},c2e5yWPKB:{defaultValue:\"Dispatch System\",displayTextArea:false,title:\"Tab 1 \",type:ControlType.String},SolZtlCxF:{defaultValue:\"Award-winning TMS that simplifies trucking operations with everyone you need to manage your fleet.\",displayTextArea:true,title:\"Tab 1 - Describtion\",type:ControlType.String},ILNyEl4Z1:{defaultValue:\"Load Board\",displayTextArea:false,title:\"Tab 2\",type:ControlType.String},rKtqyBR96:{defaultValue:\"Reach over 1,000 brokers posting 100,000+ loads daily on our fully integrated free load board exclusive to the Trucker Path community.\",displayTextArea:true,title:\"Tab 2 - Describtion\",type:ControlType.String},wdx0q76K_:{defaultValue:\"Doc Management\",displayTextArea:false,title:\"Tab 3\",type:ControlType.String},sLbbSTL5l:{defaultValue:\"AI document scanning and workflows to simplify your paperwork and automate invoicing, accounting, driver pay, expensing, and more. \",displayTextArea:true,title:\"Tab 3 - Describtion\",type:ControlType.String},I2HJgJCRc:{defaultValue:\"Dashboards & Reports\",displayTextArea:false,title:\"Tab 4\",type:ControlType.String},ZN35oYGyW:{defaultValue:\"Empower your team with analytics for visibility across finance, operations, and safety. View your entire fleet's P&L in one place. Easy to understand pre-made reports ready out of the box. \",displayTextArea:true,title:\"Tab 4 - Describtion\",type:ControlType.String},lxmLuUyrv:{defaultValue:\"Fuel Network \",displayTextArea:false,title:\"Tab 5\",type:ControlType.String},kHd3PSlSX:{defaultValue:\"Bringing large fleet discounts to all truckers! Save $50-$70 every time you fuel, upwards of tens of thousands of dollars per year without fuel cards and credit checks. \",displayTextArea:true,title:\"Tab 5 - Describtion\",type:ControlType.String},FINXt1v0h:{__defaultAssetReference:\"data:framer/asset-reference,F6gWsmfObKy9k3wnZ4SSkT1Mj0.png?originalFilename=image.png&preferredSize=auto\",description:\"Tab 1 img for Phone & Tablet\",title:\"Tab 1 Img - Phone\",type:ControlType.ResponsiveImage},D9m3e1F_F:{__defaultAssetReference:\"data:framer/asset-reference,RFJ1c46P9USxDVtJU5P9SpeLVI.png?originalFilename=image.png&preferredSize=auto\",description:\"img for Phone & Tablet\",title:\"Tab 2 Img - Phone\",type:ControlType.ResponsiveImage},VC7Qb0t21:{__defaultAssetReference:\"data:framer/asset-reference,NhCT8aKKxm7KdGLRjHa5opNg.png?originalFilename=image.png&preferredSize=auto\",description:\"img for Phone & Tablet\",title:\"Tab 3 Img - Phone\",type:ControlType.ResponsiveImage},ClFQj3ido:{__defaultAssetReference:\"data:framer/asset-reference,Z2yir0n2PL0WBrdpIFY5BE0bTM.png?originalFilename=image.png&preferredSize=auto\",description:\"img for Phone & Tablet\",title:\"Tab 4 Img - Phone\",type:ControlType.ResponsiveImage},fNTgJJkKm:{__defaultAssetReference:\"data:framer/asset-reference,d1dYJL9LOBbl9o5AiyuZMvRdscA.png?originalFilename=image.png&preferredSize=auto\",description:\"img for Phone & Tablet\",title:\"Tab 5 Img - Phone\",type:ControlType.ResponsiveImage}});addFonts(FramerxbmreDUZ8,[{explicitInter:true,fonts:[{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLGT9V15vFP-KUEg.woff2\",weight:\"500\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.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/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\"}]},...IconCOMMANDMapFonts,...ProgressBarFonts,...IconCOMMANDLoadFonts,...IconMenuFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxbmreDUZ8\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"593\",\"framerVariables\":\"{\\\"c2e5yWPKB\\\":\\\"tab1\\\",\\\"SolZtlCxF\\\":\\\"tab1Describtion\\\",\\\"ILNyEl4Z1\\\":\\\"tab2\\\",\\\"rKtqyBR96\\\":\\\"tab2Describtion\\\",\\\"wdx0q76K_\\\":\\\"tab3\\\",\\\"sLbbSTL5l\\\":\\\"tab3Describtion\\\",\\\"I2HJgJCRc\\\":\\\"tab4\\\",\\\"ZN35oYGyW\\\":\\\"tab4Describtion\\\",\\\"lxmLuUyrv\\\":\\\"tab5\\\",\\\"kHd3PSlSX\\\":\\\"tab5Describtion\\\",\\\"FINXt1v0h\\\":\\\"tab1ImgPhone\\\",\\\"D9m3e1F_F\\\":\\\"tab2ImgPhone\\\",\\\"VC7Qb0t21\\\":\\\"tab3ImgPhone\\\",\\\"ClFQj3ido\\\":\\\"tab4ImgPhone\\\",\\\"fNTgJJkKm\\\":\\\"tab5ImgPhone\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hjF8SED9p\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Nt5MUgpyc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tx8sDEoGc\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VPwuDHqot\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SpzMtbKKd\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"k4qlHjqqV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hBb33m1Mr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DoO8QviB5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yNbZTGTPc\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tmp2a_w0R\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tAIUdLAsG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1000\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xbmreDUZ8.map", "// Generated by Framer (fb31e5e)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/rvWPOur2t8QtnXIDe6JJ/Po4SwYlZg7JRq3OLtH1b/Jjj2T4gpQ.js\";import Button from\"https://framerusercontent.com/modules/awHyv0WeZbmQRykcROg5/34yqMlix0itmrWEnRaHi/KF7UbbSfc.js\";import TabItem from\"https://framerusercontent.com/modules/mEcgRj2RSfrdmEsuVbd9/dlIFFaznnLxLJHmxWpza/NfS3Exusk.js\";import BadgeNormal from\"https://framerusercontent.com/modules/weITt5RPXotuSWpCVeGf/RM3dzMDSWa8GX6kpzKt8/sqcnnD9OB.js\";const BadgeNormalFonts=getFonts(BadgeNormal);const TabItemFonts=getFonts(TabItem);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ButtonFonts=getFonts(Button);const ImageWithFX=withFX(Image);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"uUVBHPnqM\",\"rYF9Bg0jx\",\"vOYLaoAGN\",\"hk5gWssrr\",\"vS2ft1h8j\",\"n4VS0B5nY\"];const serializationHash=\"framer-a9W6R\";const variantClassNames={hk5gWssrr:\"framer-v-1adilro\",n4VS0B5nY:\"framer-v-1825elz\",rYF9Bg0jx:\"framer-v-d6nvun\",uUVBHPnqM:\"framer-v-1jctnah\",vOYLaoAGN:\"framer-v-mfk7t4\",vS2ft1h8j:\"framer-v-1fyxm01\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition1={damping:50,delay:.3,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transition3={bounce:0,delay:.3,duration:.8,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:40};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop \\xb7 1\":\"uUVBHPnqM\",\"Desktop \\xb7 2\":\"rYF9Bg0jx\",\"Desktop \\xb7 3\":\"vOYLaoAGN\",\"Phone \\xb7 1\":\"hk5gWssrr\",\"Phone \\xb7 2\":\"vS2ft1h8j\",\"Phone \\xb7 3\":\"n4VS0B5nY\"};const getProps=({_1Describtion,_1Icon,_1Image,_1Title,_2Describtion,_2Icon,_2Image,_2Title,_3Describtion,_3Icon,_3Image,_3Title,gap,height,id,subtitle,title,transition,width,...props})=>{return{...props,aI70D75oH:_1Image??props.aI70D75oH??{src:\"https://framerusercontent.com/images/Jgg1HqwBeZP6dTa49dNGSAg4Er8.png\",srcSet:\"https://framerusercontent.com/images/Jgg1HqwBeZP6dTa49dNGSAg4Er8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Jgg1HqwBeZP6dTa49dNGSAg4Er8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Jgg1HqwBeZP6dTa49dNGSAg4Er8.png 1560w\"},bmM49d4SI:_2Title??props.bmM49d4SI??\"Trucker\u2019s Map\",dW4623YlD:_1Title??props.dW4623YlD??\"Truck GPS and Navigation\",EVviO36ke:transition??props.EVviO36ke??{bounce:0,delay:0,duration:.6,type:\"spring\"},gE9PZnwlL:_1Icon??props.gE9PZnwlL??\"truck-trailer\",GGzPxg2qS:_1Describtion??props.GGzPxg2qS??\"Real-time Traffic Updates, Truck Restrictions, Customized Routing, Intuitive & User-friendly Interface, Dock info & insights.\u200B\",JEXJeqc7J:gap??props.JEXJeqc7J??16,Jn2fBLeSS:_3Icon??props.Jn2fBLeSS??\"navigation\",kRf_Nyhvw:_3Image??props.kRf_Nyhvw??{src:\"https://framerusercontent.com/images/Pal34HBR0qnkIltJUVNfRJnVr8.png\",srcSet:\"https://framerusercontent.com/images/Pal34HBR0qnkIltJUVNfRJnVr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/Pal34HBR0qnkIltJUVNfRJnVr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Pal34HBR0qnkIltJUVNfRJnVr8.png 1560w\"},L_iPAaI37:title??props.L_iPAaI37??\"The #1 App for North American Truckers\",t1Q_rPmE1:_3Describtion??props.t1Q_rPmE1??\"Optimized journey; HOS breaks, Fuel Stops, Pinpoint ETA predictions.\",UoP3klZtW:_2Describtion??props.UoP3klZtW??\"Over 500,000 Truck POI: Secure parking, real-time weigh station status, and unbiased driver reviews.\",v8SERHiV4:_3Title??props.v8SERHiV4??\"Advanced Trip Planning\",variant:humanReadableVariantMap[props.variant]??props.variant??\"uUVBHPnqM\",WNfbqKU5M:subtitle??props.WNfbqKU5M??\"FOR OWNER OPERATORS AND DRIVERS\",wqlOkCBPf:_2Icon??props.wqlOkCBPf??\"map\",y8FPN2HJE:_2Image??props.y8FPN2HJE??{src:\"https://framerusercontent.com/images/Se9p7xxnGz8nmjNRwbGxg3i9ydA.png\",srcSet:\"https://framerusercontent.com/images/Se9p7xxnGz8nmjNRwbGxg3i9ydA.png?scale-down-to=512 512w,https://framerusercontent.com/images/Se9p7xxnGz8nmjNRwbGxg3i9ydA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Se9p7xxnGz8nmjNRwbGxg3i9ydA.png 1560w\"}};};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,WNfbqKU5M,L_iPAaI37,JEXJeqc7J,EVviO36ke,aI70D75oH,gE9PZnwlL,dW4623YlD,GGzPxg2qS,y8FPN2HJE,wqlOkCBPf,bmM49d4SI,UoP3klZtW,kRf_Nyhvw,Jn2fBLeSS,v8SERHiV4,t1Q_rPmE1,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"uUVBHPnqM\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppear1is6hy0=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rYF9Bg0jx\"),15e3);});const onAppear2lr1ej=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vOYLaoAGN\"),15e3);});const onAppearput0ps=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uUVBHPnqM\"),15e3);});const onAppearh71bxi=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vS2ft1h8j\"),15e3);});const onAppear3uf57a=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hk5gWssrr\"),15e3);});const RDmGAwKxPguu4z9=activeVariantCallback(async(...args)=>{setVariant(\"uUVBHPnqM\");});const RDmGAwKxP1t7amab=activeVariantCallback(async(...args)=>{setVariant(\"hk5gWssrr\");});const RDmGAwKxP1oibhe=activeVariantCallback(async(...args)=>{setVariant(\"rYF9Bg0jx\");});const RDmGAwKxP1815mde=activeVariantCallback(async(...args)=>{setVariant(\"vS2ft1h8j\");});const RDmGAwKxPc4ux2s=activeVariantCallback(async(...args)=>{setVariant(\"vOYLaoAGN\");});const RDmGAwKxP1svgcnr=activeVariantCallback(async(...args)=>{setVariant(\"n4VS0B5nY\");});useOnVariantChange(baseVariant,{default:onAppear1is6hy0,hk5gWssrr:onAppearh71bxi,n4VS0B5nY:onAppear3uf57a,rYF9Bg0jx:onAppear2lr1ej,vOYLaoAGN:onAppearput0ps,vS2ft1h8j:onAppear3uf57a});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"hk5gWssrr\")return true;return false;};const isDisplayed1=()=>{if(baseVariant===\"vS2ft1h8j\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"n4VS0B5nY\")return true;return false;};const isDisplayed3=()=>{if([\"hk5gWssrr\",\"vS2ft1h8j\",\"n4VS0B5nY\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if([\"rYF9Bg0jx\",\"vOYLaoAGN\"].includes(baseVariant))return false;return true;};const isDisplayed5=()=>{if(baseVariant===\"rYF9Bg0jx\")return true;return false;};const isDisplayed6=()=>{if(baseVariant===\"vOYLaoAGN\")return true;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:EVviO36ke,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1jctnah\",className,classNames),\"data-framer-name\":\"Desktop \\xb7 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"uUVBHPnqM\",ref:refBinding,style:{...style},...addPropertyOverrides({hk5gWssrr:{\"data-framer-name\":\"Phone \\xb7 1\"},n4VS0B5nY:{\"data-framer-name\":\"Phone \\xb7 3\"},rYF9Bg0jx:{\"data-framer-name\":\"Desktop \\xb7 2\"},vOYLaoAGN:{\"data-framer-name\":\"Desktop \\xb7 3\"},vS2ft1h8j:{\"data-framer-name\":\"Phone \\xb7 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uq3rp1\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"Wg83aW68d\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iqnhq0\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"XvDKGYlGB\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-577)/2)+0+0+0+0,...addPropertyOverrides({hk5gWssrr:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+0+0+0},n4VS0B5nY:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+0+0+0},vS2ft1h8j:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nmhqv8-container\",layoutDependency:layoutDependency,layoutId:\"g3Ka8l3vm-container\",nodeId:\"g3Ka8l3vm\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"g3Ka8l3vm\",JDEMNPLZW:WNfbqKU5M,layoutId:\"g3Ka8l3vm\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(58, 71, 85) 0%, rgb(9, 33, 56) 83%)\"},children:\"The #1 App for North American Truckers\"})})}),className:\"framer-1m8h1dm\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"UmaiyU42m\",style:{\"--extracted-gdpscs\":\"rgb(0, 0, 0)\",\"--framer-paragraph-spacing\":\"0px\"},text:L_iPAaI37,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({hk5gWssrr:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(58, 71, 85) 0%, rgb(9, 33, 56) 83%)\"},children:\"The #1 App for North American Truckers\"})})})},n4VS0B5nY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(58, 71, 85) 0%, rgb(9, 33, 56) 83%)\"},children:\"The #1 App for North American Truckers\"})})})},vS2ft1h8j:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-gdpscs, rgb(0, 0, 0))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(58, 71, 85) 0%, rgb(9, 33, 56) 83%)\"},children:\"The #1 App for North American Truckers\"})})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1m5p55s\",\"data-framer-name\":\"Tabs\",layoutDependency:layoutDependency,layoutId:\"nQGYWVKN7\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:\"536px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-577)/2)+0+93+0+0,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+0},n4VS0B5nY:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+0},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-nidj9u-container\",layoutDependency:layoutDependency,layoutId:\"jvg79Hu92-container\",nodeId:\"jvg79Hu92\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:dW4623YlD,height:\"100%\",hUFr0FvsG:\"Buy Now\",id:\"jvg79Hu92\",kGPf904Pj:\"rgba(255, 255, 255, 0)\",layoutId:\"jvg79Hu92\",lbLjqqSZR:false,qw_TXowYs:\"0px\",QxbkRlZZU:\"20px 0px 20px 0px\",style:{width:\"100%\"},tPdViqwiD:true,U8MtZan4d:gE9PZnwlL,UcxooM043:true,variant:\"R0GuQ7RPN\",width:\"100%\",xNPJv87bA:GGzPxg2qS,Y7dkQGON1:\"rgba(255, 255, 255, 0)\",...addPropertyOverrides({hk5gWssrr:{xNPJv87bA:\"Real-time Traffic Updates, Truck Restrictions, Customized Routing, User-friendly Interface.\"},n4VS0B5nY:{RDmGAwKxP:RDmGAwKxP1t7amab,UcxooM043:false,variant:\"OI3YinN0S\",xNPJv87bA:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\"},rYF9Bg0jx:{RDmGAwKxP:RDmGAwKxPguu4z9,UcxooM043:false,variant:\"OI3YinN0S\"},vOYLaoAGN:{RDmGAwKxP:RDmGAwKxPguu4z9,UcxooM043:false,variant:\"OI3YinN0S\"},vS2ft1h8j:{RDmGAwKxP:RDmGAwKxP1t7amab,UcxooM043:false,variant:\"OI3YinN0S\",xNPJv87bA:\"TruckLoads helps carriers and owner operators move freight via our mobile application and web portal.\"}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-12usrz2\",\"data-framer-appear-id\":\"12usrz2\",\"data-framer-name\":\"Phone \\xb7 Img 1\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"fOL8q2nAO\",optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1200,pixelWidth:1200,sizes:\"390px\",...toResponsiveImage(aI70D75oH)},className:\"framer-1yrbx1e\",\"data-framer-name\":\"Img wrap\",layoutDependency:layoutDependency,layoutId:\"vx9Lf6k2F\",...addPropertyOverrides({hk5gWssrr:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+134+0),pixelHeight:1200,pixelWidth:1200,sizes:\"390px\",...toResponsiveImage(aI70D75oH)}}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:\"536px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-577)/2)+0+93+0+134,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+524},n4VS0B5nY:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+134},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+134}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1eig32b-container\",layoutDependency:layoutDependency,layoutId:\"pYcvEF4I6-container\",nodeId:\"pYcvEF4I6\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:bmM49d4SI,height:\"100%\",hUFr0FvsG:\"Buy Now\",id:\"pYcvEF4I6\",kGPf904Pj:\"rgba(255, 255, 255, 0)\",layoutId:\"pYcvEF4I6\",lbLjqqSZR:false,qw_TXowYs:\"0px\",QxbkRlZZU:\"20px 0px 20px 0px\",RDmGAwKxP:RDmGAwKxP1oibhe,style:{width:\"100%\"},tPdViqwiD:true,U8MtZan4d:wqlOkCBPf,UcxooM043:false,variant:\"OI3YinN0S\",width:\"100%\",xNPJv87bA:UoP3klZtW,Y7dkQGON1:\"rgba(255, 255, 255, 0)\",...addPropertyOverrides({hk5gWssrr:{RDmGAwKxP:RDmGAwKxP1815mde,xNPJv87bA:\"TruckLoads helps freight brokers get matched with tons of capacity. Over 1,000 brokers post loads on TruckLoads to get...\"},n4VS0B5nY:{RDmGAwKxP:RDmGAwKxP1815mde,xNPJv87bA:\"TruckLoads helps freight brokers get matched with tons of capacity. Over 1,000 brokers post loads on TruckLoads to get...\"},rYF9Bg0jx:{UcxooM043:true,variant:\"R0GuQ7RPN\"},vS2ft1h8j:{RDmGAwKxP:undefined,UcxooM043:true,variant:\"R0GuQ7RPN\",xNPJv87bA:\"Over 500,000 Truck POI: Secure parking, real-time weigh station status, and unbiased driver reviews.\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:134,width:\"536px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-577)/2)+0+93+0+268,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+658},n4VS0B5nY:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+268},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+658}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-vs413i-container\",layoutDependency:layoutDependency,layoutId:\"u1Q46KN_y-container\",nodeId:\"u1Q46KN_y\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(TabItem,{c0aevj6e1:v8SERHiV4,height:\"100%\",hUFr0FvsG:\"Buy Now\",id:\"u1Q46KN_y\",kGPf904Pj:\"rgba(255, 255, 255, 0)\",layoutId:\"u1Q46KN_y\",lbLjqqSZR:true,qw_TXowYs:\"0px\",QxbkRlZZU:\"20px 0px 20px 0px\",RDmGAwKxP:RDmGAwKxPc4ux2s,style:{width:\"100%\"},tPdViqwiD:true,U8MtZan4d:Jn2fBLeSS,UcxooM043:false,variant:\"OI3YinN0S\",width:\"100%\",xNPJv87bA:t1Q_rPmE1,Y7dkQGON1:\"rgba(255, 255, 255, 0)\",...addPropertyOverrides({hk5gWssrr:{RDmGAwKxP:RDmGAwKxP1svgcnr,xNPJv87bA:\"TruckLoads helps freight brokers get matched with tons of capacity. Over 1,000 brokers post loads on TruckLoads to get...\"},n4VS0B5nY:{RDmGAwKxP:undefined,UcxooM043:true,variant:\"R0GuQ7RPN\",xNPJv87bA:\"Optimized journey; HOS breaks, Fuel Stops, Pinpoint ETA predictions.\"},vOYLaoAGN:{UcxooM043:true,variant:\"R0GuQ7RPN\"},vS2ft1h8j:{RDmGAwKxP:RDmGAwKxP1svgcnr,xNPJv87bA:\"TruckLoads helps freight brokers get matched with tons of capacity. Over 1,000 brokers post loads on TruckLoads to get...\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1gg3zvm\",\"data-framer-appear-id\":\"1gg3zvm\",\"data-framer-name\":\"Phone \\xb7 Img 2\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"zcna2ewwx\",optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1800,pixelWidth:1800,sizes:\"390px\",...toResponsiveImage(y8FPN2HJE)},className:\"framer-z8sa1k\",\"data-framer-name\":\"Img wrap\",layoutDependency:layoutDependency,layoutId:\"pNse425iV\",...addPropertyOverrides({vS2ft1h8j:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+268+0),pixelHeight:1800,pixelWidth:1800,sizes:\"390px\",...toResponsiveImage(y8FPN2HJE)}}},baseVariant,gestureVariant)})}),isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation2,className:\"framer-1ddvv4a\",\"data-framer-appear-id\":\"1ddvv4a\",\"data-framer-name\":\"Phone \\xb7 Img 3\",initial:animation3,layoutDependency:layoutDependency,layoutId:\"asI6yQODA\",optimized:true,children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"390px\",...toResponsiveImage(kRf_Nyhvw)},className:\"framer-11ikeg7\",\"data-framer-name\":\"Img wrap\",layoutDependency:layoutDependency,layoutId:\"sGvFcOF3K\",...addPropertyOverrides({n4VS0B5nY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+109+0+402+0),sizes:\"390px\",...toResponsiveImage(kRf_Nyhvw)}}},baseVariant,gestureVariant)})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ijarzp\",\"data-framer-name\":\"Buttons\",layoutDependency:layoutDependency,layoutId:\"l7_WFKKyy\",style:{\"--2py9yn\":JEXJeqc7J},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-577)/2)+0+503+36,...addPropertyOverrides({hk5gWssrr:{width:`max((${componentViewport?.width||\"100vw\"} - ${JEXJeqc7J*1}px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+925+36},n4VS0B5nY:{width:`max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+925+36},vS2ft1h8j:{width:`max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+925+36}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3ud2jp-container\",layoutDependency:layoutDependency,layoutId:\"L4kp4eZiw-container\",nodeId:\"L4kp4eZiw\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://www.truckerpath.com/trucker-path-app/\",GR68CgLTN:\"Try for free\",height:\"100%\",id:\"L4kp4eZiw\",layoutId:\"L4kp4eZiw\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-577)/2)+0+503+36,...addPropertyOverrides({hk5gWssrr:{width:`max((${componentViewport?.width||\"100vw\"} - ${JEXJeqc7J*1}px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+925+36},n4VS0B5nY:{width:`max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+925+36},vS2ft1h8j:{width:`max((${componentViewport?.width||\"100vw\"} - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||200)-0-999)/1*0)+0+925+36}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-igca2a-container\",layoutDependency:layoutDependency,layoutId:\"NVBN7WnRC-container\",nodeId:\"NVBN7WnRC\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://www.truckerpath.com/trucker-path-app/truck-gps/\",GR68CgLTN:\"Learn More\",height:\"100%\",id:\"NVBN7WnRC\",layoutId:\"NVBN7WnRC\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"crBu0Yadm\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})]})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qsqsb4\",\"data-framer-name\":\"Desktop \\xb7 Img container\",layoutDependency:layoutDependency,layoutId:\"Qkaw1b8vU\",children:[isDisplayed4()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+50),pixelHeight:1560,pixelWidth:1560,sizes:\"500px\",...toResponsiveImage(aI70D75oH),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-19vcjzh\",\"data-framer-name\":\"Img 1\",layoutDependency:layoutDependency,layoutId:\"w1W6dwDsM\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24}}),isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1560,pixelWidth:1560,...toResponsiveImage(y8FPN2HJE),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-nj4hxv\",\"data-framer-name\":\"Img 2\",layoutDependency:layoutDependency,layoutId:\"Gb2f8HEph\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({rYF9Bg0jx:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+50),pixelHeight:1560,pixelWidth:1560,sizes:\"500px\",...toResponsiveImage(y8FPN2HJE),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",pixelHeight:1560,pixelWidth:1560,...toResponsiveImage(kRf_Nyhvw),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-3ad7wm\",\"data-framer-name\":\"Img 3\",layoutDependency:layoutDependency,layoutId:\"JKy05Nf3d\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({vOYLaoAGN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-600)/2)+50),pixelHeight:1560,pixelWidth:1560,sizes:\"500px\",...toResponsiveImage(kRf_Nyhvw),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-a9W6R.framer-15vu78m, .framer-a9W6R .framer-15vu78m { display: block; }\",\".framer-a9W6R.framer-1jctnah { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-a9W6R .framer-uq3rp1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 536px; }\",\".framer-a9W6R .framer-iqnhq0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-a9W6R .framer-nmhqv8-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-a9W6R .framer-1m8h1dm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 536px; word-break: break-word; word-wrap: break-word; }\",\".framer-a9W6R .framer-1m5p55s { 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; position: relative; width: 100%; }\",\".framer-a9W6R .framer-nidj9u-container, .framer-a9W6R .framer-1eig32b-container, .framer-a9W6R .framer-vs413i-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-a9W6R .framer-12usrz2, .framer-a9W6R .framer-1gg3zvm, .framer-a9W6R .framer-1ddvv4a { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 390px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 390px; }\",\".framer-a9W6R .framer-1yrbx1e, .framer-a9W6R .framer-z8sa1k, .framer-a9W6R .framer-11ikeg7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 390px); overflow: visible; position: relative; width: 390px; }\",\".framer-a9W6R .framer-ijarzp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 36px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-a9W6R .framer-3ud2jp-container, .framer-a9W6R .framer-igca2a-container { flex: none; height: auto; position: relative; width: 170px; }\",\".framer-a9W6R .framer-1qsqsb4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 600px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 600px; }\",\".framer-a9W6R .framer-19vcjzh, .framer-a9W6R .framer-nj4hxv, .framer-a9W6R .framer-3ad7wm { flex: none; height: 500px; overflow: visible; position: relative; width: 500px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a9W6R .framer-uq3rp1, .framer-a9W6R .framer-iqnhq0, .framer-a9W6R .framer-1m5p55s, .framer-a9W6R .framer-12usrz2, .framer-a9W6R .framer-1gg3zvm, .framer-a9W6R .framer-1ddvv4a, .framer-a9W6R .framer-ijarzp, .framer-a9W6R .framer-1qsqsb4 { gap: 0px; } .framer-a9W6R .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-a9W6R .framer-uq3rp1 > :first-child, .framer-a9W6R .framer-iqnhq0 > :first-child, .framer-a9W6R .framer-1m5p55s > :first-child { margin-top: 0px; } .framer-a9W6R .framer-uq3rp1 > :last-child, .framer-a9W6R .framer-iqnhq0 > :last-child, .framer-a9W6R .framer-1m5p55s > :last-child { margin-bottom: 0px; } .framer-a9W6R .framer-iqnhq0 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-a9W6R .framer-1m5p55s > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-a9W6R .framer-12usrz2 > *, .framer-a9W6R .framer-1gg3zvm > *, .framer-a9W6R .framer-1ddvv4a > *, .framer-a9W6R .framer-1qsqsb4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-a9W6R .framer-12usrz2 > :first-child, .framer-a9W6R .framer-1gg3zvm > :first-child, .framer-a9W6R .framer-1ddvv4a > :first-child, .framer-a9W6R .framer-ijarzp > :first-child, .framer-a9W6R .framer-1qsqsb4 > :first-child { margin-left: 0px; } .framer-a9W6R .framer-12usrz2 > :last-child, .framer-a9W6R .framer-1gg3zvm > :last-child, .framer-a9W6R .framer-1ddvv4a > :last-child, .framer-a9W6R .framer-ijarzp > :last-child, .framer-a9W6R .framer-1qsqsb4 > :last-child { margin-right: 0px; } .framer-a9W6R .framer-ijarzp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-a9W6R.framer-v-1adilro.framer-1jctnah, .framer-a9W6R.framer-v-1fyxm01.framer-1jctnah, .framer-a9W6R.framer-v-1825elz.framer-1jctnah { flex-direction: column; width: 390px; }\",\".framer-a9W6R.framer-v-1adilro .framer-uq3rp1 { gap: 24px; order: 0; width: 100%; }\",\".framer-a9W6R.framer-v-1adilro .framer-iqnhq0, .framer-a9W6R.framer-v-1adilro .framer-1m5p55s, .framer-a9W6R.framer-v-1fyxm01 .framer-iqnhq0, .framer-a9W6R.framer-v-1fyxm01 .framer-1m5p55s, .framer-a9W6R.framer-v-1825elz .framer-iqnhq0, .framer-a9W6R.framer-v-1825elz .framer-1m5p55s { align-content: center; align-items: center; }\",\".framer-a9W6R.framer-v-1adilro .framer-1m8h1dm, .framer-a9W6R.framer-v-1fyxm01 .framer-1m8h1dm, .framer-a9W6R.framer-v-1825elz .framer-1m8h1dm { width: 100%; }\",\".framer-a9W6R.framer-v-1adilro .framer-nidj9u-container, .framer-a9W6R.framer-v-1fyxm01 .framer-nidj9u-container, .framer-a9W6R.framer-v-1825elz .framer-nidj9u-container { order: 0; }\",\".framer-a9W6R.framer-v-1adilro .framer-12usrz2 { order: 1; }\",\".framer-a9W6R.framer-v-1adilro .framer-1eig32b-container, .framer-a9W6R.framer-v-1fyxm01 .framer-1eig32b-container, .framer-a9W6R.framer-v-1825elz .framer-1eig32b-container { order: 2; }\",\".framer-a9W6R.framer-v-1adilro .framer-vs413i-container, .framer-a9W6R.framer-v-1fyxm01 .framer-vs413i-container, .framer-a9W6R.framer-v-1825elz .framer-vs413i-container { order: 4; }\",\".framer-a9W6R.framer-v-1adilro .framer-ijarzp { gap: calc(max(0, var(--2py9yn)) * 1px); width: 100%; }\",\".framer-a9W6R.framer-v-1adilro .framer-3ud2jp-container, .framer-a9W6R.framer-v-1adilro .framer-igca2a-container, .framer-a9W6R.framer-v-1fyxm01 .framer-3ud2jp-container, .framer-a9W6R.framer-v-1fyxm01 .framer-igca2a-container, .framer-a9W6R.framer-v-1825elz .framer-3ud2jp-container, .framer-a9W6R.framer-v-1825elz .framer-igca2a-container { flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a9W6R.framer-v-1adilro.framer-1jctnah, .framer-a9W6R.framer-v-1adilro .framer-uq3rp1, .framer-a9W6R.framer-v-1adilro .framer-ijarzp { gap: 0px; } .framer-a9W6R.framer-v-1adilro.framer-1jctnah > *, .framer-a9W6R.framer-v-1adilro.framer-1jctnah > :first-child, .framer-a9W6R.framer-v-1adilro.framer-1jctnah > :last-child { margin: 0px; } .framer-a9W6R.framer-v-1adilro .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-a9W6R.framer-v-1adilro .framer-uq3rp1 > :first-child { margin-top: 0px; } .framer-a9W6R.framer-v-1adilro .framer-uq3rp1 > :last-child { margin-bottom: 0px; } .framer-a9W6R.framer-v-1adilro .framer-ijarzp > * { margin: 0px; margin-left: calc(calc(max(0, var(--2py9yn)) * 1px) / 2); margin-right: calc(calc(max(0, var(--2py9yn)) * 1px) / 2); } .framer-a9W6R.framer-v-1adilro .framer-ijarzp > :first-child { margin-left: 0px; } .framer-a9W6R.framer-v-1adilro .framer-ijarzp > :last-child { margin-right: 0px; } }\",\".framer-a9W6R.framer-v-1fyxm01 .framer-uq3rp1, .framer-a9W6R.framer-v-1825elz .framer-uq3rp1 { gap: 24px; width: 100%; }\",\".framer-a9W6R.framer-v-1fyxm01 .framer-1gg3zvm { order: 3; }\",\".framer-a9W6R.framer-v-1fyxm01 .framer-ijarzp, .framer-a9W6R.framer-v-1825elz .framer-ijarzp { gap: 16px; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a9W6R.framer-v-1fyxm01.framer-1jctnah, .framer-a9W6R.framer-v-1fyxm01 .framer-uq3rp1, .framer-a9W6R.framer-v-1fyxm01 .framer-ijarzp { gap: 0px; } .framer-a9W6R.framer-v-1fyxm01.framer-1jctnah > *, .framer-a9W6R.framer-v-1fyxm01.framer-1jctnah > :first-child, .framer-a9W6R.framer-v-1fyxm01.framer-1jctnah > :last-child { margin: 0px; } .framer-a9W6R.framer-v-1fyxm01 .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-a9W6R.framer-v-1fyxm01 .framer-uq3rp1 > :first-child { margin-top: 0px; } .framer-a9W6R.framer-v-1fyxm01 .framer-uq3rp1 > :last-child { margin-bottom: 0px; } .framer-a9W6R.framer-v-1fyxm01 .framer-ijarzp > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-a9W6R.framer-v-1fyxm01 .framer-ijarzp > :first-child { margin-left: 0px; } .framer-a9W6R.framer-v-1fyxm01 .framer-ijarzp > :last-child { margin-right: 0px; } }\",\".framer-a9W6R.framer-v-1825elz .framer-1ddvv4a { order: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-a9W6R.framer-v-1825elz.framer-1jctnah, .framer-a9W6R.framer-v-1825elz .framer-uq3rp1, .framer-a9W6R.framer-v-1825elz .framer-ijarzp { gap: 0px; } .framer-a9W6R.framer-v-1825elz.framer-1jctnah > *, .framer-a9W6R.framer-v-1825elz.framer-1jctnah > :first-child, .framer-a9W6R.framer-v-1825elz.framer-1jctnah > :last-child { margin: 0px; } .framer-a9W6R.framer-v-1825elz .framer-uq3rp1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-a9W6R.framer-v-1825elz .framer-uq3rp1 > :first-child { margin-top: 0px; } .framer-a9W6R.framer-v-1825elz .framer-uq3rp1 > :last-child { margin-bottom: 0px; } .framer-a9W6R.framer-v-1825elz .framer-ijarzp > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-a9W6R.framer-v-1825elz .framer-ijarzp > :first-child { margin-left: 0px; } .framer-a9W6R.framer-v-1825elz .framer-ijarzp > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"rYF9Bg0jx\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"vOYLaoAGN\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"hk5gWssrr\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"vS2ft1h8j\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]},\"n4VS0B5nY\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1200px\",null,null]}}}\n * @framerVariables {\"WNfbqKU5M\":\"subtitle\",\"L_iPAaI37\":\"title\",\"JEXJeqc7J\":\"gap\",\"EVviO36ke\":\"transition\",\"aI70D75oH\":\"_1Image\",\"gE9PZnwlL\":\"_1Icon\",\"dW4623YlD\":\"_1Title\",\"GGzPxg2qS\":\"_1Describtion\",\"y8FPN2HJE\":\"_2Image\",\"wqlOkCBPf\":\"_2Icon\",\"bmM49d4SI\":\"_2Title\",\"UoP3klZtW\":\"_2Describtion\",\"kRf_Nyhvw\":\"_3Image\",\"Jn2fBLeSS\":\"_3Icon\",\"v8SERHiV4\":\"_3Title\",\"t1Q_rPmE1\":\"_3Describtion\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZKgSHIfat=withCSS(Component,css,\"framer-a9W6R\");export default FramerZKgSHIfat;FramerZKgSHIfat.displayName=\"Carousel - Vertical (3 items) - img right\";FramerZKgSHIfat.defaultProps={height:600,width:1200};addPropertyControls(FramerZKgSHIfat,{variant:{options:[\"uUVBHPnqM\",\"rYF9Bg0jx\",\"vOYLaoAGN\",\"hk5gWssrr\",\"vS2ft1h8j\",\"n4VS0B5nY\"],optionTitles:[\"Desktop \\xb7 1\",\"Desktop \\xb7 2\",\"Desktop \\xb7 3\",\"Phone \\xb7 1\",\"Phone \\xb7 2\",\"Phone \\xb7 3\"],title:\"Variant\",type:ControlType.Enum},WNfbqKU5M:{defaultValue:\"FOR OWNER OPERATORS AND DRIVERS\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String},L_iPAaI37:{defaultValue:\"The #1 App for North American Truckers\",displayTextArea:false,title:\"Title\",type:ControlType.String},JEXJeqc7J:{defaultValue:16,description:\"Gap between buttons\",min:0,title:\"Gap\",type:ControlType.Number},EVviO36ke:{defaultValue:{bounce:0,delay:0,duration:.6,type:\"spring\"},description:\"\",title:\"Transition\",type:ControlType.Transition},aI70D75oH:{__defaultAssetReference:\"data:framer/asset-reference,Jgg1HqwBeZP6dTa49dNGSAg4Er8.png?originalFilename=image.png&preferredSize=auto\",description:\"\",title:\"1 - Image\",type:ControlType.ResponsiveImage},gE9PZnwlL:{defaultValue:\"truck-trailer\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"1 - Icon\",type:ControlType.String},dW4623YlD:{defaultValue:\"Truck GPS and Navigation\",displayTextArea:false,title:\"1 - Title\",type:ControlType.String},GGzPxg2qS:{defaultValue:\"Real-time Traffic Updates, Truck Restrictions, Customized Routing, Intuitive & User-friendly Interface, Dock info & insights.\u200B\",displayTextArea:true,title:\"1 - Describtion\",type:ControlType.String},y8FPN2HJE:{__defaultAssetReference:\"data:framer/asset-reference,Se9p7xxnGz8nmjNRwbGxg3i9ydA.png?originalFilename=image.png&preferredSize=auto\",description:\"\",title:\"2 - Image\",type:ControlType.ResponsiveImage},wqlOkCBPf:{defaultValue:\"map\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"2 - Icon\",type:ControlType.String},bmM49d4SI:{defaultValue:\"Trucker\u2019s Map\",displayTextArea:false,title:\"2 - Title\",type:ControlType.String},UoP3klZtW:{defaultValue:\"Over 500,000 Truck POI: Secure parking, real-time weigh station status, and unbiased driver reviews.\",displayTextArea:true,title:\"2 - Describtion\",type:ControlType.String},kRf_Nyhvw:{__defaultAssetReference:\"data:framer/asset-reference,Pal34HBR0qnkIltJUVNfRJnVr8.png?originalFilename=image.png&preferredSize=auto\",description:\"\",title:\"3 - Image\",type:ControlType.ResponsiveImage},Jn2fBLeSS:{defaultValue:\"navigation\",placeholder:\"Menu, Wifi, Box\u2026\",title:\"3 - Icon\",type:ControlType.String},v8SERHiV4:{defaultValue:\"Advanced Trip Planning\",displayTextArea:false,title:\"3 - Title\",type:ControlType.String},t1Q_rPmE1:{defaultValue:\"Optimized journey; HOS breaks, Fuel Stops, Pinpoint ETA predictions.\",displayTextArea:true,title:\"3 - Describtion\",type:ControlType.String}});addFonts(FramerZKgSHIfat,[{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\"}]},...BadgeNormalFonts,...TabItemFonts,...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZKgSHIfat\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"WNfbqKU5M\\\":\\\"subtitle\\\",\\\"L_iPAaI37\\\":\\\"title\\\",\\\"JEXJeqc7J\\\":\\\"gap\\\",\\\"EVviO36ke\\\":\\\"transition\\\",\\\"aI70D75oH\\\":\\\"_1Image\\\",\\\"gE9PZnwlL\\\":\\\"_1Icon\\\",\\\"dW4623YlD\\\":\\\"_1Title\\\",\\\"GGzPxg2qS\\\":\\\"_1Describtion\\\",\\\"y8FPN2HJE\\\":\\\"_2Image\\\",\\\"wqlOkCBPf\\\":\\\"_2Icon\\\",\\\"bmM49d4SI\\\":\\\"_2Title\\\",\\\"UoP3klZtW\\\":\\\"_2Describtion\\\",\\\"kRf_Nyhvw\\\":\\\"_3Image\\\",\\\"Jn2fBLeSS\\\":\\\"_3Icon\\\",\\\"v8SERHiV4\\\":\\\"_3Title\\\",\\\"t1Q_rPmE1\\\":\\\"_3Describtion\\\"}\",\"framerIntrinsicWidth\":\"1200\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"rYF9Bg0jx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"vOYLaoAGN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"hk5gWssrr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"vS2ft1h8j\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]},\\\"n4VS0B5nY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1200px\\\",null,null]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (e22b717)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useQueryData,useRouteElementId,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import Carousel from\"https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/YnJq9QRMz3qTkn8Nbo0f/Carousel.js\";import Globe from\"https://framerusercontent.com/modules/xFhv3ETdRBLjJusGaZ1P/SY4EOdo4KxEvLISnWiR3/Globe.js\";import GetDemoForms from\"#framer/local/canvasComponent/fwwfTO2lF/fwwfTO2lF.js\";import Button from\"#framer/local/canvasComponent/KF7UbbSfc/KF7UbbSfc.js\";import CardHomepageStyle from\"#framer/local/canvasComponent/KhqzZjiNb/KhqzZjiNb.js\";import HomePageStyle from\"#framer/local/canvasComponent/LpjyIZj0_/LpjyIZj0_.js\";import SectionFooter from\"#framer/local/canvasComponent/lS9TvqxVt/lS9TvqxVt.js\";import TestimonialSimple from\"#framer/local/canvasComponent/qjkA5r_NQ/qjkA5r_NQ.js\";import TopNavigationBar from\"#framer/local/canvasComponent/sltkc74h7/sltkc74h7.js\";import BadgeNormal from\"#framer/local/canvasComponent/sqcnnD9OB/sqcnnD9OB.js\";import Metrics from\"#framer/local/canvasComponent/ufsrhqAPf/ufsrhqAPf.js\";import MainBlogWrap from\"#framer/local/canvasComponent/wGkQjXuJG/wGkQjXuJG.js\";import COMMANDHorizontal from\"#framer/local/canvasComponent/xbmreDUZ8/xbmreDUZ8.js\";import CarouselVertical3ItemsImgRight from\"#framer/local/canvasComponent/ZKgSHIfat/ZKgSHIfat.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/wi5ius45d/wi5ius45d.js\";import*as sharedStyle4 from\"#framer/local/css/dvxIS3aly/dvxIS3aly.js\";import*as sharedStyle1 from\"#framer/local/css/iWwuCnlxd/iWwuCnlxd.js\";import*as sharedStyle2 from\"#framer/local/css/Jjj2T4gpQ/Jjj2T4gpQ.js\";import*as sharedStyle from\"#framer/local/css/oEPT_ciXE/oEPT_ciXE.js\";import*as sharedStyle3 from\"#framer/local/css/ZtqXN38zW/ZtqXN38zW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const RichTextWithFX=withFX(RichText);const ButtonFonts=getFonts(Button);const GetDemoFormsFonts=getFonts(GetDemoForms);const MotionDivWithFX=withFX(motion.div);const VideoFonts=getFonts(Video);const TopNavigationBarFonts=getFonts(TopNavigationBar);const TopNavigationBarWithVariantAppearEffect=withVariantAppearEffect(TopNavigationBar);const GlobeFonts=getFonts(Globe);const MetricsFonts=getFonts(Metrics);const ContainerWithFX=withFX(Container);const BadgeNormalFonts=getFonts(BadgeNormal);const CarouselVertical3ItemsImgRightFonts=getFonts(CarouselVertical3ItemsImgRight);const CardHomepageStyleFonts=getFonts(CardHomepageStyle);const COMMANDHorizontalFonts=getFonts(COMMANDHorizontal);const MainBlogWrapFonts=getFonts(MainBlogWrap);const TestimonialSimpleFonts=getFonts(TestimonialSimple);const CarouselFonts=getFonts(Carousel);const HomePageStyleFonts=getFonts(HomePageStyle);const SectionFooterFonts=getFonts(SectionFooter);const breakpoints={g76lmA3ja:\"(min-width: 2300px)\",ilCPgpUK1:\"(min-width: 810px) and (max-width: 1279px)\",rsmmI6XOa:\"(min-width: 2000px) and (max-width: 2299px)\",WQLkyLRf1:\"(min-width: 1920px) and (max-width: 1999px)\",xf27aOaI0:\"(min-width: 1280px) and (max-width: 1919px)\",Z6y1FBI5u:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-6uC03\";const variantClassNames={g76lmA3ja:\"framer-v-1smm6dr\",ilCPgpUK1:\"framer-v-fr0arj\",rsmmI6XOa:\"framer-v-14e91p1\",WQLkyLRf1:\"framer-v-72rtr7\",xf27aOaI0:\"framer-v-138cown\",Z6y1FBI5u:\"framer-v-1gtjlzk\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:40};const transition1={damping:80,delay:.7,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:40};const transition2={damping:80,delay:.9,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:40};const transition3={damping:80,delay:1,mass:1,stiffness:500,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:40};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition4={damping:60,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:40};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-40,y:0};const transition5={damping:60,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:-40,y:0};const transition6={damping:60,delay:.4,mass:1,stiffness:500,type:\"spring\"};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:-40,y:0};const transition7={damping:60,delay:.5,mass:1,stiffness:500,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:-40,y:0};const transition8={damping:60,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:-40,y:0};const animation13={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:-2e3,y:0};const transition9={damping:50,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation14={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const animation15={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:2e3,y:0};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:300,y:0};const transition11={damping:50,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:500,y:0};const transition12={damping:50,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transformTemplate2=(_,t)=>`translateY(-50%) ${t}`;const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition5,x:0,y:40};const transition13={damping:50,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:40};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition14={damping:80,delay:.6,mass:1,stiffness:500,type:\"spring\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition14,x:0,y:40};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition13,x:0,y:40};const transition15={damping:50,delay:.3,mass:1,stiffness:500,type:\"spring\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition15,x:0,y:40};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\">2200\":\"g76lmA3ja\",\"2000\":\"rsmmI6XOa\",\"Desktop-1920\":\"WQLkyLRf1\",Desktop:\"xf27aOaI0\",Phone:\"Z6y1FBI5u\",Tablet:\"ilCPgpUK1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,zoDgtzo_Xryx0o5v_X,SH1CWIwZYryx0o5v_X,AZ0LZUg6lryx0o5v_X,UY3M_LOh8ryx0o5v_X,PrtYd7Cnxryx0o5v_X,idryx0o5v_X,SH1CWIwZYJFORGoI9I,zoDgtzo_XlFqxW2YyM,SH1CWIwZYlFqxW2YyM,AZ0LZUg6llFqxW2YyM,UY3M_LOh8lFqxW2YyM,PrtYd7CnxlFqxW2YyM,idlFqxW2YyM,zoDgtzo_XIvJg1rSK3,SH1CWIwZYIvJg1rSK3,AZ0LZUg6lIvJg1rSK3,UY3M_LOh8IvJg1rSK3,PrtYd7CnxIvJg1rSK3,idIvJg1rSK3,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const xqgHFj_DV3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const evN6TmSwJ1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const RG4uc4vsi3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"WU0aoa7pm\");const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"Z6y1FBI5u\")return false;return true;};const ref2=React.useRef(null);const ref3=React.useRef(null);const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const ref8=React.useRef(null);const ref9=React.useRef(null);const ref10=React.useRef(null);const elementId1=useRouteElementId(\"UOk9FntRQ\");const elementId2=useRouteElementId(\"JfY3qQ99S\");const elementId3=useRouteElementId(\"vklFYQBjl\");const ref11=React.useRef(null);const elementId4=useRouteElementId(\"en9DPYMYC\");const elementId5=useRouteElementId(\"MkPNiBkc3\");const elementId6=useRouteElementId(\"xI8eHmFFt\");const elementId7=useRouteElementId(\"Jm8BBXxHh\");const ref12=React.useRef(null);const elementId8=useRouteElementId(\"mDKtvSHLR\");const elementId9=useRouteElementId(\"WO_CYq1M0\");const elementId10=useRouteElementId(\"H82kSLpnb\");const ref13=React.useRef(null);const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ilCPgpUK1\")return false;return true;};const elementId11=useRouteElementId(\"zziYYfZJy\");const ref14=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if([\"ilCPgpUK1\",\"Z6y1FBI5u\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"Z6y1FBI5u\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"ilCPgpUK1\")return true;return false;};const elementId12=useRouteElementId(\"HuFDIhcTV\");const ref15=React.useRef(null);const elementId13=useRouteElementId(\"qJRyITRr0\");useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-rh52p0\",\"data-framer-name\":\"Section - Hero\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14p8it0\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ord7lk\",\"data-framer-name\":\"Content left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-snau87\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1bihixq\",\"data-framer-name\":\"Title\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-fuccyw\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-1.2px\",\"--framer-text-alignment\":\"left\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4421deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 103%)\"},children:[\"Improving \",/*#__PURE__*/_jsx(\"br\",{}),\"Life On-The-Road\"]})})}),fonts:[\"GF;Poppins-700\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-l9pyi7\",\"data-styles-preset\":\"oEPT_ciXE\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4421deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 103%)\"},children:[\"Improving \",/*#__PURE__*/_jsx(\"br\",{}),\"Life On-The-Road\"]})})}),className:\"framer-1v4qfs8\",\"data-framer-name\":\"Improving Safety & Productivity for Carriers\",fonts:[\"Inter\"],id:\"1v4qfs8\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"North America's leader in truck driver safety, efficiency, and over-the-road comfort and convenience.\"})})},Z6y1FBI5u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"North America's leader in truck driver safety, efficiency, and over-the-road comfort and convenience.\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-f0yoox\",\"data-styles-preset\":\"iWwuCnlxd\",style:{\"--framer-text-color\":\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\"},children:\"North America's leader in truck driver safety, efficiency, and over-the-road comfort and convenience.\"})}),className:\"framer-1b5bi3y\",\"data-framer-name\":\"To be the technology platform that eliminates inefficiencies in the transportation industry.\",fonts:[\"Inter\"],style:{transformPerspective:1200},verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1tt11zr\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+0+60+326.375+0+0+249.25+0},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+0+60+276.375+0+0+249.25+0},Z6y1FBI5u:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 56px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+150+0+0+0+0+217.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+0+60+201.375+0+0+249.25+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-1mmuyiq-container\",id:\"1mmuyiq\",nodeId:\"qoIqJKIyD\",scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"arrow-right\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",GR68CgLTN:\"Get a demo\",height:\"100%\",id:\"qoIqJKIyD\",layoutId:\"qoIqJKIyD\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1},xqgHFj_DV:xqgHFj_DV3bnx0g({overlay})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-9y1ers\"),\"data-framer-portal-id\":\"1mmuyiq\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"AfxQREMUH\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{width:\"90vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-17jyl6l-container\"),\"data-framer-portal-id\":\"1mmuyiq\",inComponentSlot:true,nodeId:\"b5tuFfuTt\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(GetDemoForms,{evN6TmSwJ:evN6TmSwJ1wnntms({overlay}),height:\"100%\",id:\"b5tuFfuTt\",layoutId:\"b5tuFfuTt\",variant:\"A5_VRBwYD\",width:\"100%\"})})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+0+60+326.375+0+0+249.25+0},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+0+60+276.375+0+0+249.25+0},Z6y1FBI5u:{width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 56px) / 2, 1px)`,y:(componentViewport?.y||0)+0+0+150+0+0+0+0+217.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+0+60+201.375+0+0+249.25+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eb7wss-container\",nodeId:\"HN4I0DibW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"arrow-right\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://command.truckerpath.com/map/index?utm_source=COMMAND%20Demo&utm_medium=homepage&utm_campaign=plg\",GR68CgLTN:\"Try for free\",height:\"100%\",id:\"HN4I0DibW\",layoutId:\"HN4I0DibW\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"crBu0Yadm\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})]})]})}),isDisplayed()&&/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation4,__framer__exit:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-abi7o hidden-1gtjlzk\",\"data-framer-name\":\"Mask\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-oq70kj\",\"data-framer-name\":\"Video container\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-138a2nw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PGaY34rM7\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"PGaY34rM7\",isMixedBorderRadius:false,layoutId:\"PGaY34rM7\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/M4Okh6UHmZZuK6Dbri6zUBQqwFQ.mp4\",srcType:\"Upload\",srcUrl:\"\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-bfeal6-container\",id:\"bfeal6\",layoutScroll:true,nodeId:\"jpWd9MAEH\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{__framer__targets:[{ref:ref2,target:\"QFrDOQu_j\"}],variant:\"nsRDszgp7\"},Z6y1FBI5u:{__framer__targets:[{ref:ref2,target:\"UM0ttWWRK\"},{offset:200,ref:ref3,target:\"UM0ttWWRK\"},{ref:ref4,target:\"UM0ttWWRK\"},{ref:ref5,target:\"UM0ttWWRK\"},{ref:ref6,target:\"UM0ttWWRK\"},{ref:ref7,target:\"UM0ttWWRK\"},{ref:ref8,target:\"UM0ttWWRK\"},{ref:ref9,target:\"UM0ttWWRK\"},{ref:ref10,target:\"UM0ttWWRK\"}],variant:\"wLpyUMyTT\"}},children:/*#__PURE__*/_jsx(TopNavigationBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{ref:ref2,target:\"OkDLMfbZE\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"jpWd9MAEH\",Kn_0mcfVa:\"0px 1px 3px 0px rgba(0, 0, 0, 0.09)\",layoutId:\"jpWd9MAEH\",QC5fvS0rg:0,RG4uc4vsi:RG4uc4vsi3bnx0g({overlay:overlay1}),style:{width:\"100%\"},variant:\"tZO_1MKZj\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-3nhc0z\"),\"data-framer-portal-id\":\"bfeal6\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"z3a7FZQoZ\"),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{width:\"90vw\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1h9fhui-container\"),\"data-framer-portal-id\":\"bfeal6\",inComponentSlot:true,nodeId:\"KkF51ypsN\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(GetDemoForms,{evN6TmSwJ:evN6TmSwJ1wnntms({overlay:overlay1}),height:\"100%\",id:\"KkF51ypsN\",layoutId:\"KkF51ypsN\",variant:\"A5_VRBwYD\",width:\"100%\"})})})})})]}),getContainer())})})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19j09dv\",\"data-framer-name\":\"Section - Metrics\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k3au2z-container\",\"data-framer-name\":\"Whie globe\",isAuthoredByUser:true,isModuleExternal:true,name:\"Whie globe\",nodeId:\"HXPguoYzN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Globe,{alignment:\"center\",background:\"rgba(0, 0, 0, 0)\",baseColor:\"rgb(250, 253, 255)\",dark:0,diffuse:1.05,dragOptions:{damping:40,mass:1,stiffness:200},glowColor:\"rgb(219, 237, 255)\",height:\"100%\",id:\"HXPguoYzN\",isDraggable:false,layoutId:\"HXPguoYzN\",mapBrightness:.64,markerArray:[],markerColor:\"rgb(255, 255, 255)\",markerSize:1,maxSamples:35e3,maxWidth:3657,name:\"Whie globe\",offset:{offsetX:0,offsetY:0},phi:0,scale:1,speed:.15,style:{height:\"100%\",width:\"100%\"},theta:.22,width:\"100%\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uomr3k\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(396deg, rgb(13, 116, 206) 0%, rgb(17, 50, 100) 100%)\"},children:\"Since Launching 2013\"})})}),className:\"framer-142lzyz\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"Trucker Path Today\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"Trucker Path Today\"})})}),className:\"framer-vrycbx\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k5j6wn\",\"data-framer-name\":\"Metrics Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+1e3+100+149.3+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 2, 50px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+900+100+149.3+0},Z6y1FBI5u:{y:(componentViewport?.y||0)+0+656.8+80+105.6+40+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:\"240.5px\",y:(componentViewport?.y||0)+0+750+100+149.3+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-o983ui-container\",nodeId:\"xE0SrMncW\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{SNuWDeJ62:44},Z6y1FBI5u:{Myp1APLC4:\"8px\",SNuWDeJ62:28}},children:/*#__PURE__*/_jsx(Metrics,{DCaQAQNbF:\"0px\",Delmzchz7:9,H8CLDZj2k:{borderBottomWidth:0,borderColor:'var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) /* {\"name\":\"Brand - Primary\"} */',borderLeftWidth:2.5,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"xE0SrMncW\",iqvA2p2cB:\"M+\",JGI9l04Vz:\"Total App Downloads\",layoutId:\"xE0SrMncW\",mbxUynr6u:0,mv4yUp_oV:false,Myp1APLC4:\"0px\",p2dDeof9t:80,SNuWDeJ62:48,style:{width:\"100%\"},T1M4hQEkm:true,tQuFdgEg4:\"9M+ \",variant:\"WPit0o_Re\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+1e3+100+149.3+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 2, 50px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+900+100+149.3+0},Z6y1FBI5u:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+656.8+80+105.6+40+188}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:\"281.8333px\",y:(componentViewport?.y||0)+0+750+100+149.3+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18i61wp-container\",nodeId:\"oNXjSqjyT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{SNuWDeJ62:44},Z6y1FBI5u:{Myp1APLC4:\"8px\",SNuWDeJ62:28}},children:/*#__PURE__*/_jsx(Metrics,{DCaQAQNbF:\"0px\",Delmzchz7:33,H8CLDZj2k:{borderBottomWidth:0,borderColor:'var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) /* {\"name\":\"Brand - Primary\"} */',borderLeftWidth:2.5,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"oNXjSqjyT\",iqvA2p2cB:\"%\",JGI9l04Vz:\"Of Truckers Rely Upon Our App\",layoutId:\"oNXjSqjyT\",mbxUynr6u:0,mv4yUp_oV:false,Myp1APLC4:\"0px\",p2dDeof9t:50,SNuWDeJ62:48,style:{width:\"100%\"},T1M4hQEkm:true,tQuFdgEg4:\"1 / 3\",variant:\"WPit0o_Re\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+1e3+100+149.3+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 2, 50px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+900+100+149.3+0},Z6y1FBI5u:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+656.8+80+105.6+40+376}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:\"281.8333px\",y:(componentViewport?.y||0)+0+750+100+149.3+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-vobw59-container\",nodeId:\"rHbYWPNkg\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{SNuWDeJ62:44},Z6y1FBI5u:{Myp1APLC4:\"8px\",SNuWDeJ62:28}},children:/*#__PURE__*/_jsx(Metrics,{DCaQAQNbF:\"0px\",Delmzchz7:37,H8CLDZj2k:{borderBottomWidth:0,borderColor:'var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) /* {\"name\":\"Brand - Primary\"} */',borderLeftWidth:2.5,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"rHbYWPNkg\",iqvA2p2cB:\"M+\",JGI9l04Vz:\"Miles Safely Navigated Daily\",layoutId:\"rHbYWPNkg\",mbxUynr6u:0,mv4yUp_oV:false,Myp1APLC4:\"0px\",p2dDeof9t:40,SNuWDeJ62:48,style:{width:\"100%\"},T1M4hQEkm:true,tQuFdgEg4:\"37M+ \",variant:\"WPit0o_Re\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+1e3+100+149.3+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 60px) / 2, 50px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+900+100+149.3+0},Z6y1FBI5u:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1200px) - 80px)`,y:(componentViewport?.y||0)+0+656.8+80+105.6+40+564}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:148,width:\"281.8333px\",y:(componentViewport?.y||0)+0+750+100+149.3+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fuczsl-container\",nodeId:\"wZ9nAXvGo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{SNuWDeJ62:44},Z6y1FBI5u:{Myp1APLC4:\"8px\",SNuWDeJ62:28}},children:/*#__PURE__*/_jsx(Metrics,{DCaQAQNbF:\"0px\",Delmzchz7:450,H8CLDZj2k:{borderBottomWidth:0,borderColor:'var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184)) /* {\"name\":\"Brand - Primary\"} */',borderLeftWidth:2.5,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},height:\"100%\",id:\"wZ9nAXvGo\",iqvA2p2cB:\"K+\",JGI9l04Vz:\"Trucker submissions daily\",layoutId:\"wZ9nAXvGo\",mbxUynr6u:0,mv4yUp_oV:false,Myp1APLC4:\"0px\",p2dDeof9t:3,SNuWDeJ62:48,style:{width:\"100%\"},T1M4hQEkm:true,tQuFdgEg4:\"450K+\",variant:\"WPit0o_Re\",width:\"100%\"})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u7qaay\",\"data-framer-name\":\"Section - Brand \",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation13,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-hskbqr\",\"data-framer-name\":\"Green Container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nmavac\",\"data-framer-name\":\"Green\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3764 592\"><path d=\"M 0 160 L 2176.67 160 L 2327 592 L 0 592 Z\" fill=\"rgb(9,204,115)\"></path></svg>',svgContentId:9969297888,withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation15,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1wuclhq\",\"data-framer-name\":\"Blue Container\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-nbwywk\",\"data-framer-name\":\"Blue\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3764 592\"><path d=\"M 3763 0 L 1501.77 0.003 L 1348 432 L 3763 432 Z\" fill=\"rgb(6,141,208)\"></path></svg>',svgContentId:11766234514,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yw7oeu\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4590deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.88) 100%)\"},children:\"Driving the Future of Trucking Forward\"})})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"120%\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4590deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.88) 100%)\"},children:\"Driving the Future of Trucking Forward\"})})}),className:\"framer-bgwmoz\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Z6y1FBI5u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Empowering over 1 million commercial \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),\"drivers with over-the-road AI tools. \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation16,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy1yZWd1bGFy\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"Empowering over 1 million commercial \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:\"drivers with over-the-road AI tools. \"}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"20px\"},children:/*#__PURE__*/_jsx(\"br\",{})})]})}),className:\"framer-bk0eht\",\"data-framer-name\":\"Subtitle\",fonts:[\"GF;Poppins-regular\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{transformTemplate:transformTemplate2}},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation17,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__targets:[{offset:200,ref:ref3,target:\"animate\"}],__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-14l6phx\",\"data-framer-name\":\"Truck Container\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1521+53.5+0),pixelHeight:586,pixelWidth:2220,positionX:\"center\",positionY:\"center\",sizes:\"2037px\",src:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png\",srcSet:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png 2220w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",pixelHeight:586,pixelWidth:2220,positionX:\"center\",positionY:\"center\",sizes:\"2037px\",src:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png\",srcSet:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png 2220w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1421+53.5+0),pixelHeight:586,pixelWidth:2220,positionX:\"center\",positionY:\"center\",sizes:\"2037px\",src:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png\",srcSet:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png 2220w\"}},xf27aOaI0:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1271+55.5+0),pixelHeight:586,pixelWidth:2220,positionX:\"center\",positionY:\"center\",sizes:\"2037px\",src:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png\",srcSet:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png 2220w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1664.4+151+0),pixelHeight:586,pixelWidth:2220,positionX:\"center\",positionY:\"center\",sizes:\"1036px\",src:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png\",srcSet:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png 2220w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1271+53.5+0),pixelHeight:586,pixelWidth:2220,positionX:\"center\",positionY:\"center\",sizes:\"2037px\",src:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png\",srcSet:\"https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=512 512w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/qOwpncQpA6mSwO9kkQt3JDDFhE.png 2220w\"},className:\"framer-1kqqkuf\",\"data-framer-name\":\"truck\"})})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1l6z8l2\",\"data-framer-name\":\"Section - Solutions\",id:elementId3,ref:ref11,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18v0gjf\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+2169+62+0+0+0},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+2069+62+0+0+0},Z6y1FBI5u:{y:(componentViewport?.y||0)+0+2049.4+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+1919+62+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5s6h41-container\",nodeId:\"XXYucpTKP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"XXYucpTKP\",JDEMNPLZW:\"Trucker Path Platform\",layoutId:\"XXYucpTKP\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"Solutions for the Transportation Industry\"})})}),className:\"framer-1125x1c\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation18,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u500c6\",\"data-framer-name\":\"Section - Solutions\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":en9DPYMYC\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"JqMI2nAYM\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-3b3c51 framer-lux5qc\",\"data-framer-name\":\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-tudnhb\",\"data-framer-name\":\"Rectangle 544218\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2169+62+141+0+0),positionX:\"center\",positionY:\"center\",sizes:\"277px\",src:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png\",srcSet:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png 1156w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"277px\",src:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png\",srcSet:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png 1156w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2069+62+141+0+0),positionX:\"center\",positionY:\"center\",sizes:\"277px\",src:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png\",srcSet:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png 1156w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2049.4+60+105+0+0+0),positionX:\"center\",positionY:\"center\",sizes:\"277px\",src:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png\",srcSet:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png 1156w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1919+62+141+0+0),positionX:\"center\",positionY:\"center\",sizes:\"277px\",src:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png\",srcSet:\"https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=512 512w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/5lU7T07a3ZBTW7tTsVKXz04TLzE.png 1156w\"},className:\"framer-nlid1d\",\"data-framer-name\":\"b189c763-0390-4f03-9e6b-d28fdc0876bc 3\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Owner Operators\",/*#__PURE__*/_jsx(\"br\",{}),\"and Drivers\"]})}),className:\"framer-4up1m9\",\"data-framer-name\":\"Truck Navigation and GPS\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1q8nsl9\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:320,svg:'<svg width=\"320\" height=\"51\" viewBox=\"0 0 320 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.5 3.03984e-06L301.96 0L320 51L0.5 51V3.03984e-06Z\" fill=\"#09CC73\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1xdeaku\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:120,intrinsicWidth:185,svg:'<svg width=\"185\" height=\"120\" viewBox=\"0 0 185 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 65.2156L185 0V54.7844L0 120V65.2156Z\" fill=\"#1688CA\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2169+62+141+0+10),positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png\",srcSet:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png?scale-down-to=1024 537w,https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png 556w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png\",srcSet:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png?scale-down-to=1024 537w,https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png 556w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2069+62+141+0+10),positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png\",srcSet:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png?scale-down-to=1024 537w,https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png 556w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2049.4+60+105+0+0+10),positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png\",srcSet:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png?scale-down-to=1024 537w,https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png 556w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1919+62+141+0+10),positionX:\"center\",positionY:\"center\",sizes:\"139px\",src:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png\",srcSet:\"https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png?scale-down-to=1024 537w,https://framerusercontent.com/images/BHc03NnWK9JJGGYODolNfHGaSDs.png 556w\"},className:\"framer-iwcbbx\",\"data-framer-name\":\"Mask group\"})})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":xI8eHmFFt\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"yvswMkw1L\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1lyhphu framer-lux5qc\",\"data-framer-name\":\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-lkgqc3\",\"data-framer-name\":\"Rectangle 544219\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12pc7cv\",\"data-framer-name\":\"b189c763-0390-4f03-9e6b-d28fdc0876bc 4\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1esa7y2\",\"data-framer-name\":\"Group 427320520\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2169+62+141+0+20+-5),pixelHeight:555,pixelWidth:846,positionX:\"center\",positionY:\"bottom\",sizes:\"279px\",src:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png\",srcSet:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png?scale-down-to=512 512w,https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png 846w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",pixelHeight:555,pixelWidth:846,positionX:\"center\",positionY:\"bottom\",sizes:\"279px\",src:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png\",srcSet:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png?scale-down-to=512 512w,https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png 846w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2069+62+141+0+20+-5),pixelHeight:555,pixelWidth:846,positionX:\"center\",positionY:\"bottom\",sizes:\"279px\",src:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png\",srcSet:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png?scale-down-to=512 512w,https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png 846w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2049.4+60+105+0+442+20+-5),pixelHeight:555,pixelWidth:846,positionX:\"center\",positionY:\"bottom\",sizes:\"279px\",src:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png\",srcSet:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png?scale-down-to=512 512w,https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png 846w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1919+62+141+0+20+-5),pixelHeight:555,pixelWidth:846,positionX:\"center\",positionY:\"bottom\",sizes:\"279px\",src:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png\",srcSet:\"https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png?scale-down-to=512 512w,https://framerusercontent.com/images/rexru7zGOmIdNQ46yZUFl3Nro.png 846w\"},className:\"framer-1dih3di\",\"data-framer-name\":\"operators 2\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Small to Mid-Sized Fleets\"})}),className:\"framer-wj7p2y\",\"data-framer-name\":\"Small Fleet Operators\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1c22yxy\",\"data-framer-name\":\"\u8DEF\u5F84\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:89,svg:'<svg width=\"89\" height=\"48\" viewBox=\"0 0 89 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-6.10352e-05 2.37681e-05L72.6099 -7.16435e-07L89 48L-2.09815e-06 48L-6.10352e-05 2.37681e-05Z\" fill=\"#09CC73\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-59283e\",\"data-framer-name\":\"\u8DEF\u5F84\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:210,svg:'<svg width=\"210\" height=\"48\" viewBox=\"0 0 210 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M210 -7.84935e-06L17.1313 0.000331147L2.09815e-06 48L210 47.9997L210 -7.84935e-06Z\" fill=\"#068DD0\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":MkPNiBkc3\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"zqvUXyVgT\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-r731g9 framer-lux5qc\",\"data-framer-name\":\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-4j9zyk\",\"data-framer-name\":\"Rectangle 544220\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:[\"Enterprise\",/*#__PURE__*/_jsx(\"br\",{}),\"Fleets\"]})}),className:\"framer-1aldunr\",\"data-framer-name\":\"Enterprise Trucking Fleets\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sfttyl\",\"data-framer-name\":\"Green\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:51,intrinsicWidth:97,svg:'<svg width=\"97\" height=\"51\" viewBox=\"0 0 97 51\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 0H78.9597L97 51H0V0Z\" fill=\"#09CC73\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2169+62+141+0+8),pixelHeight:844,pixelWidth:845,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png\",srcSet:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png 845w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",pixelHeight:844,pixelWidth:845,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png\",srcSet:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png 845w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2069+62+141+0+8),pixelHeight:844,pixelWidth:845,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png\",srcSet:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png 845w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2049.4+60+105+0+884+8),pixelHeight:844,pixelWidth:845,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png\",srcSet:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png 845w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1919+62+141+0+8),pixelHeight:844,pixelWidth:845,positionX:\"center\",positionY:\"center\",sizes:\"287px\",src:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png\",srcSet:\"https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png?scale-down-to=512 512w,https://framerusercontent.com/images/9kMu4Hos8ZKcoDAYsOCFbiAEXwk.png 845w\"},className:\"framer-1vl26y9\",\"data-framer-name\":\"Mask group\"})}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s6jbx1\",\"data-framer-name\":\"Blue\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:120,intrinsicWidth:185,svg:'<svg width=\"185\" height=\"120\" viewBox=\"0 0 185 120\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 65.2156L185 0V54.7844L0 120V65.2156Z\" fill=\"#1688CA\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":mDKtvSHLR\",webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"oMuPIVfGW\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1qbr1fq framer-lux5qc\",\"data-framer-name\":\"4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2169+62+141+0+23),pixelHeight:558,pixelWidth:846,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png\",srcSet:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png 846w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",pixelHeight:558,pixelWidth:846,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png\",srcSet:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png 846w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2069+62+141+0+23),pixelHeight:558,pixelWidth:846,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png\",srcSet:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png 846w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2049.4+60+105+0+1326+23),pixelHeight:558,pixelWidth:846,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png\",srcSet:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png 846w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1919+62+141+0+23),pixelHeight:558,pixelWidth:846,positionX:\"center\",positionY:\"center\",sizes:\"335px\",src:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png\",srcSet:\"https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png?scale-down-to=512 512w,https://framerusercontent.com/images/9UqVXfs5l7y0x3qV4QVyVTys1v4.png 846w\"},className:\"framer-1hw4768\",\"data-framer-name\":\"Midjourney Feed\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s37k3c\",\"data-framer-name\":\"Rectangle 544221\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Freight Brokers and 3PLs\"})}),className:\"framer-18r2rrx\",\"data-framer-name\":\"Freight Brokers and 3PLs\",fonts:[\"GF;Poppins-600\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7cyevu\",\"data-framer-name\":\"\u8DEF\u5F84\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:89,svg:'<svg width=\"89\" height=\"48\" viewBox=\"0 0 89 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M-6.10352e-05 2.37681e-05L72.6099 -7.16435e-07L89 48L-2.09815e-06 48L-6.10352e-05 2.37681e-05Z\" fill=\"#09CC73\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-3o620n\",\"data-framer-name\":\"\u8DEF\u5F84\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:48,intrinsicWidth:210,svg:'<svg width=\"210\" height=\"48\" viewBox=\"0 0 210 48\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M210 -7.84935e-06L17.1313 0.000331147L2.09815e-06 48L210 47.9997L210 -7.84935e-06Z\" fill=\"#068DD0\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1hww0bp\",\"data-framer-name\":\"Section - Drivers\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+2862+20+0},ilCPgpUK1:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+2762+20+0},xf27aOaI0:{width:`min(${componentViewport?.width||\"100vw\"} - 160px, 1200px)`},Z6y1FBI5u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4010.4+60+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:600,width:`min(${componentViewport?.width||\"100vw\"}, 1200px)`,y:(componentViewport?.y||0)+0+2612+20+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-urrb9s-container\",nodeId:\"XwUqknA13\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"hk5gWssrr\"},Z6y1FBI5u:{variant:\"hk5gWssrr\"}},children:/*#__PURE__*/_jsx(CarouselVertical3ItemsImgRight,{bmM49d4SI:\"Trucker\u2019s Map\",dW4623YlD:\"Truck GPS and Navigation\",EVviO36ke:{bounce:0,delay:0,duration:.6,type:\"spring\"},gE9PZnwlL:\"truck-trailer\",GGzPxg2qS:\"Real-time Traffic Updates, Truck Restrictions, Customized Routing, Intuitive & User-friendly Interface, Dock info & insights.\u200B\",height:\"100%\",id:\"XwUqknA13\",JEXJeqc7J:16,Jn2fBLeSS:\"navigation\",L_iPAaI37:\"The #1 App for North American Truckers\",layoutId:\"XwUqknA13\",style:{maxWidth:\"100%\",width:\"100%\"},t1Q_rPmE1:\"Optimized journey; HOS breaks, Fuel Stops, Pinpoint ETA predictions.\",UoP3klZtW:\"Over 500,000 Truck POI: Secure parking, real-time weigh station status, and unbiased driver reviews.\",v8SERHiV4:\"Advanced Trip Planning\",variant:\"uUVBHPnqM\",width:\"100%\",WNfbqKU5M:\"FOR OWNER OPERATORS AND DRIVERS\",wqlOkCBPf:\"map\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d48teu\",\"data-framer-name\":\"Section - Enterprise\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mzwty2\",\"data-framer-name\":\"Bg\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3502+840-546+12),pixelHeight:910,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg\",srcSet:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg 3200w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fill\",pixelHeight:910,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg\",srcSet:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg 3200w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3402+840-546+12),pixelHeight:910,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg\",srcSet:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg 3200w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4730.4+1036.8-556+10),pixelHeight:910,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg\",srcSet:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg 3200w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3252+840-546+12),pixelHeight:910,pixelWidth:3200,positionX:\"center\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg\",srcSet:\"https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/O3yVBwlTr0JQrz3HTNcpaNYdzVk.jpg 3200w\"},className:\"framer-1eo99id\",\"data-framer-name\":\"Img\"})})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-gdmkxf\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ktq3eo\",\"data-framer-name\":\"Section Header\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(109.396deg, rgb(197, 223, 246) 0%, rgb(71, 152, 234) 100%)\"},children:\"Enterprise Grade Solutions\"})})}),className:\"framer-st2xk3\",\"data-framer-name\":\"Section Subheader\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{xf27aOaI0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4634deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 100%)\"},children:\"Commercial Truck Navigation for Fleets\"})})})},Z6y1FBI5u:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4634deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 100%)\"},children:\"Commercial Truck Navigation for Fleets\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsxs(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4634deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 100%)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Commercial Truck-Safe \"}),/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:\"Navigation for Fleets\"})]})})}),className:\"framer-1z0p8qq\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ae2e88\",\"data-framer-name\":\"Feature List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+3502+80+0+0+133.8+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 32px) / 3, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+3402+80+0+0+133.8+0},Z6y1FBI5u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4730.4+60+0+0+185.8+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3252+80+0+0+133.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-jmi5yh-container\",nodeId:\"kbyL5rqTG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{yap7bmkrI:\"24px\"}},children:/*#__PURE__*/_jsx(CardHomepageStyle,{flxsgcgOJ:addImageAlt({src:\"https://framerusercontent.com/images/Asj6yvs13gsw9af6zHk98CfWNEw.png\"},\"\"),height:\"100%\",HV6A7Dx4S:true,id:\"kbyL5rqTG\",jYRTIHH4g:\"Leading Truck-Safe Navigation\",layoutId:\"kbyL5rqTG\",MrqncbLM8:false,style:{width:\"100%\"},variant:\"TBaiSNWzU\",width:\"100%\",yAJeTLfJq:\"Commercial Fleet Navigation. Low Data, Custom Routes and Locations.\",yap7bmkrI:\"32px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+3502+80+0+0+133.8+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 32px) / 3, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+3402+80+0+0+133.8+0},Z6y1FBI5u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4730.4+60+0+0+185.8+0+211}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3252+80+0+0+133.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8dggj8-container\",nodeId:\"iNLV7t4IV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{yap7bmkrI:\"24px\"}},children:/*#__PURE__*/_jsx(CardHomepageStyle,{flxsgcgOJ:addImageAlt({src:\"https://framerusercontent.com/images/p6qvdpv4bD00iTe8YhwEHhiNfc.png\"},\"\"),height:\"100%\",HV6A7Dx4S:true,id:\"iNLV7t4IV\",jYRTIHH4g:\"White Glove Service\",layoutId:\"iNLV7t4IV\",MrqncbLM8:false,style:{width:\"100%\"},variant:\"TBaiSNWzU\",width:\"100%\",yAJeTLfJq:\"Custom Setup, Integration, and Training. Seamless Deployment.\",yap7bmkrI:\"32px\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+3502+80+0+0+133.8+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 32px) / 3, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+3402+80+0+0+133.8+0},Z6y1FBI5u:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+4730.4+60+0+0+185.8+0+422}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:199,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 1px)`,y:(componentViewport?.y||0)+0+3252+80+0+0+133.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-s11efl-container\",nodeId:\"GzxbjkpWJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{yap7bmkrI:\"24px\"}},children:/*#__PURE__*/_jsx(CardHomepageStyle,{flxsgcgOJ:addImageAlt({src:\"https://framerusercontent.com/images/Ev82V6TYiKgtAL6lDNeTH6f6hWk.png\"},\"\"),height:\"100%\",HV6A7Dx4S:true,id:\"GzxbjkpWJ\",jYRTIHH4g:\"Data and Cybersecurity\",layoutId:\"GzxbjkpWJ\",MrqncbLM8:false,style:{width:\"100%\"},variant:\"TBaiSNWzU\",width:\"100%\",yAJeTLfJq:\"SOC2 Compliant, SSO Supported. Manage Access via MDM.\",yap7bmkrI:\"32px\"})})})})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tdm7vz\",\"data-framer-name\":\"Buttons\",style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+3502+80+0+0+382.8+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+3402+80+0+0+382.8+0},Z6y1FBI5u:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4730.4+60+0+0+115.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+3252+80+0+0+382.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ybhirc-container\",nodeId:\"cRvi06aWR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://command.truckerpath.com/\",GR68CgLTN:\"Try for free\",height:\"100%\",id:\"cRvi06aWR\",layoutId:\"cRvi06aWR\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+3502+80+0+0+382.8+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+3402+80+0+0+382.8+0},Z6y1FBI5u:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+4730.4+60+0+0+115.8+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+3252+80+0+0+382.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12ct7ac-container\",nodeId:\"QyOH2jUYL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://command.truckerpath.com/overview?point=TPhomepageTopbar&UTM_source=TPHomepage&UTM_content=TPhomepage_header\",GR68CgLTN:\"Learn More\",height:\"100%\",id:\"QyOH2jUYL\",layoutId:\"QyOH2jUYL\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"crBu0Yadm\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})]})]})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onInView\",__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pbde3d\",\"data-framer-name\":\"Section - Small Business\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1r4xgzo\",\"data-framer-name\":\"Header\",id:elementId7,ref:ref12,style:{transformPerspective:1200},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.1em\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(396deg, rgb(197, 223, 246) 0%, rgb(71, 152, 234) 100%)\"},children:\"Small Business Solutions\"})})}),className:\"framer-1xrk2ac\",\"data-framer-name\":\"Sub-header\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"radial-gradient(42% 213%, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 100%)\"},children:\"Deals, Dispatch and Dashboards for Small to Mid-Sized Fleets\"})})}),className:\"framer-tga4d2\",\"data-framer-name\":\"Main headline\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vodvw2\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+4342+80+0+0+97.8+8},ilCPgpUK1:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+4242+80+0+0+97.8+8},Z6y1FBI5u:{width:`max((${componentViewport?.width||\"100vw\"} - 56px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5767.2+60+0+0+97.8+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+4092+80+0+0+97.8+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1iddyjg-container\",nodeId:\"p1keajakh\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://command.truckerpath.com/\",GR68CgLTN:\"Try for free\",height:\"100%\",id:\"p1keajakh\",layoutId:\"p1keajakh\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+4342+80+0+0+97.8+8},ilCPgpUK1:{width:`max((${componentViewport?.width||\"100vw\"} - 104px) / 2, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+4242+80+0+0+97.8+8},Z6y1FBI5u:{width:`max((${componentViewport?.width||\"100vw\"} - 56px) / 2, 1px)`,y:(componentViewport?.y||0)+0+5767.2+60+0+0+97.8+8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+4092+80+0+0+97.8+8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14e7x2w-container\",nodeId:\"PEhz1E_sj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://command.truckerpath.com/overview?point=TPhomepageTopbar&UTM_source=TPHomepage&UTM_content=TPhomepage_header\",GR68CgLTN:\"Learn More\",height:\"100%\",id:\"PEhz1E_sj\",layoutId:\"PEhz1E_sj\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"crBu0Yadm\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+4342+80+183.8},ilCPgpUK1:{width:`calc(${componentViewport?.width||\"100vw\"} - 80px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+4242+80+183.8},Z6y1FBI5u:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:(componentViewport?.y||0)+0+5767.2+60+183.8}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:593,y:(componentViewport?.y||0)+0+4092+80+183.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gtuu14-container\",nodeId:\"AqeQzrmMf\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{style:{width:\"100%\"},variant:\"k4qlHjqqV\"},Z6y1FBI5u:{SolZtlCxF:\"Explore over 500K+ POls tailored to truckers, and find out parking availability, weigh station status in real time from truckers onsite. Read honest reviews and ratings from fellow truckers.\",style:{width:\"100%\"},variant:\"k4qlHjqqV\"}},children:/*#__PURE__*/_jsx(COMMANDHorizontal,{c2e5yWPKB:\"Dispatch & Navigation\",height:\"100%\",I2HJgJCRc:\"Dashboards & Reports\",id:\"AqeQzrmMf\",ILNyEl4Z1:\"Load Board\",kHd3PSlSX:\"Bringing large fleet discounts to all truckers! Save $50-$70 every time you fuel, upwards of tens of thousands of dollars per year without fuel cards and credit checks. \",layoutId:\"AqeQzrmMf\",lxmLuUyrv:\"Fuel Discounts & Controls\",rKtqyBR96:\"Reach over 1,000 brokers posting 100,000+ loads daily on our fully integrated free load board exclusive to the Trucker Path community.\",sLbbSTL5l:\"AI document scanning and workflows to simplify your paperwork and automate invoicing, accounting, driver pay, expensing, and more. \",SolZtlCxF:\"Award-winning TMS that simplifies trucking operations with everyone you need to manage your fleet.\",variant:\"ujm_mMyXY\",wdx0q76K_:\"Doc Management\",width:\"100%\",ZN35oYGyW:\"Empower your team with analytics for visibility across finance, operations, and safety. View your entire fleet's P&L in one place. Easy to understand pre-made reports ready out of the box. \"})})})})})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dgl7m9\",\"data-framer-name\":\"Section - Brokers\",id:elementId8,ref:ref8,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lkrf4s\",\"data-framer-name\":\"Inner Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m1b1ro\",\"data-framer-name\":\"Left Column\",id:elementId9,ref:ref9,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pfqvc0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5278.8+40+0+19+0+0+0+0},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5178.8+40+0+19+0+0+0+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+5028.8+40+0+28.5+0+0+0+0},Z6y1FBI5u:{y:(componentViewport?.y||0)+0+6664+60+0+0+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+5028.8+40+0+19+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1auqqvh-container\",nodeId:\"uXkzQTGYo\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"uXkzQTGYo\",JDEMNPLZW:\"For Brokers and 3PLS\",layoutId:\"uXkzQTGYo\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"Connect with over 1 Million Drivers\"})})}),className:\"framer-1tdpxco\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b6ea7q\",\"data-framer-name\":\"Features Section\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://truckerpath.com/for-brokerages/\",motionChild:true,nodeId:\"Wx80SvsSN\",openInNewTab:false,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-tjna8m framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Expand Carrier Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qwfdy2\",\"data-framer-name\":\"Expand Carrier Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kd1egs\",\"data-framer-name\":\"Expand Carrier Header\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-16i4wuh\",\"data-framer-name\":\"Expand Carrier Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mw6zsc\",\"data-framer-name\":\"Union\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:21,svg:'<svg width=\"21\" height=\"21\" viewBox=\"-1 -1 21 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.5 0.5C12.9477 0.5 12.5 0.947715 12.5 1.5C12.5 2.05228 12.9477 2.5 13.5 2.5H15.1434L10.9283 7.09832L7.16436 3.7526C6.76863 3.40083 6.16729 3.4185 5.79289 3.7929L0.792893 8.7929C0.402369 9.18342 0.402369 9.81659 0.792893 10.2071C1.18342 10.5976 1.81658 10.5976 2.20711 10.2071L6.54037 5.87385L10.3356 9.24742C10.744 9.61037 11.368 9.57845 11.7372 9.17573L16.5 3.9799V5.5C16.5 6.05228 16.9477 6.5 17.5 6.5C18.0523 6.5 18.5 6.05228 18.5 5.5V1.5C18.5 0.947715 18.0523 0.5 17.5 0.5H13.5ZM16.5 8.5C15.9477 8.5 15.5 8.94772 15.5 9.5V17.5C15.5 18.0523 15.9477 18.5 16.5 18.5C17.0523 18.5 17.5 18.0523 17.5 17.5V9.5C17.5 8.94771 17.0523 8.5 16.5 8.5ZM5.5 10.5V17.5C5.5 18.0523 5.94772 18.5 6.5 18.5C7.05228 18.5 7.5 18.0523 7.5 17.5V10.5C7.5 9.94771 7.05228 9.5 6.5 9.5C5.94772 9.5 5.5 9.94771 5.5 10.5ZM1.5 12.5C0.947715 12.5 0.5 12.9477 0.5 13.5V17.5C0.5 18.0523 0.947715 18.5 1.5 18.5C2.05228 18.5 2.5 18.0523 2.5 17.5V13.5C2.5 12.9477 2.05228 12.5 1.5 12.5ZM10.5 13.5C10.5 12.9477 10.9477 12.5 11.5 12.5C12.0523 12.5 12.5 12.9477 12.5 13.5V17.5C12.5 18.0523 12.0523 18.5 11.5 18.5C10.9477 18.5 10.5 18.0523 10.5 17.5V13.5Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Expand your Carrier Network\"})}),className:\"framer-udpgcg\",\"data-framer-name\":\"Expand Carrier Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Tap into the largest owner operator network to move your freight.\"})}),className:\"framer-19k5s3x hidden-1gtjlzk\",\"data-framer-name\":\"Expand Carrier Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})}),/*#__PURE__*/_jsx(Link,{href:\"https://truckerpath.com/for-brokerages/\",motionChild:true,nodeId:\"sjIS2C6or\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-c9ewcq framer-lux5qc\",\"data-framer-name\":\"Free Load Integration Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1le418t\",\"data-framer-name\":\"Free Load Integration Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hwbpa3\",\"data-framer-name\":\"Free Load Integration Header\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-125f8a6\",\"data-framer-name\":\"graphic\",fill:\"black\",intrinsicHeight:25,intrinsicWidth:25,svg:'<svg width=\"25\" height=\"25\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" stroke=\"#0A0D14\" stroke-width=\"2\" stroke-linecap=\"round\" stroke-linejoin=\"round\"><path d=\"M12.5 14.5v4.666m-5.92-.08 1.863-1.862c.25-.251.39-.59.39-.943V14.5m9.587 4.586-1.862-1.862a1.333 1.333 0 0 1-.391-.943V14.5m2.666-6.667a3.31 3.31 0 0 0-1.048.184c-.247-2.716-2.504-4.851-5.285-4.851-2.782 0-5.038 2.136-5.286 4.85a3.297 3.297 0 0 0-1.048-.183 3.333 3.333 0 1 0 0 6.666h12.667a3.333 3.333 0 1 0 0-6.666ZM12.5 23.166a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"/><path d=\"M5.167 22.5a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm14.666 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .833)\" d=\"M0 0h24v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1a12uxy\",\"data-styles-preset\":\"ZtqXN38zW\",children:\"Hassle-Free Load Board Integration\"})}),className:\"framer-1s0xy2\",\"data-framer-name\":\"Free Load Integration 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-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",style:{\"--framer-text-color\":\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\"},children:\"Connect with our team at Integrations@TruckerPath.com to setup your connection.\"})}),className:\"framer-60gbwy\",\"data-framer-name\":\"Free Load Integration Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8n3kt9\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5278.8+40+0+19+0+474+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5178.8+40+0+19+0+474+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+5028.8+40+0+28.5+0+455+0},Z6y1FBI5u:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+6664+60+0+0+0+0+352+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+5028.8+40+0+19+0+474+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1sujn4h-container\",nodeId:\"chbiTKFIt\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"file-arrow-up\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://shipment.truckerpath.com/broker/loads/multiple-post\",GR68CgLTN:\"Post Freight\",height:\"100%\",id:\"chbiTKFIt\",layoutId:\"chbiTKFIt\",LG5CSJpvD:true,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5278.8+40+0+19+0+474+0},ilCPgpUK1:{width:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1200px) - 24px) / 2, 1px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5178.8+40+0+19+0+474+0},xf27aOaI0:{y:(componentViewport?.y||0)+0+5028.8+40+0+28.5+0+455+0},Z6y1FBI5u:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 16px) / 2, 1px)`,y:(componentViewport?.y||0)+0+6664+60+0+0+0+0+352+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+5028.8+40+0+19+0+474+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o1mabx-container\",nodeId:\"iIJmbVtpe\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"magnifying-glass\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://shipment.truckerpath.com/broker/truck-capacity/find-trucks\",GR68CgLTN:\"Find Carriers\",height:\"100%\",id:\"iIJmbVtpe\",layoutId:\"iIJmbVtpe\",LG5CSJpvD:true,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:true,style:{width:\"100%\"},UTVnKbU_2:\"calander\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5278.8+40+0+0),positionX:\"center\",positionY:\"center\",sizes:\"550px\",src:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png\",srcSet:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png 1650w\"}},ilCPgpUK1:{background:{alt:\"\",fit:\"fit\",positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,src:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png\",srcSet:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png 1650w\"}},rsmmI6XOa:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5178.8+40+0+0),positionX:\"center\",positionY:\"center\",sizes:\"550px\",src:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png\",srcSet:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png 1650w\"}},Z6y1FBI5u:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6664+60+0+0+411),positionX:\"center\",positionY:\"center\",sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,src:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png\",srcSet:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png 1650w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5028.8+40+0+0),positionX:\"center\",positionY:\"center\",sizes:\"550px\",src:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png\",srcSet:\"https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png?scale-down-to=1024 1023w,https://framerusercontent.com/images/4WkxLfBXk7AnixrhdmT8o3wBpCU.png 1650w\"},className:\"framer-1j89gd7\",\"data-framer-name\":\"Imgs\"})})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1plokhc\",\"data-framer-name\":\"Section - News\",id:elementId10,ref:ref13,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5sngll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bcyuax\",\"data-framer-name\":\"title\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-szsqhe\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7UG9wcGlucy03MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(396deg, rgb(197, 223, 246) 0%, rgb(71, 152, 234) 100%)\"},children:\"What\u2019s new with Trucker  Path\"})})}),className:\"framer-368o58\",\"data-framer-name\":\"What\u2019s new with Trucker Path\",fonts:[\"GF;Poppins-700\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4053deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.698) 100%)\"},children:\"Latest News & Insights \"})})}),className:\"framer-c1hycy\",\"data-framer-name\":\"Section \u2192 Heading 1 \u2192 Driver, Broker & Fleet Solutions\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5948.8+80+0+0+22.8},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5848.8+80+0+0+22.8},Z6y1FBI5u:{width:`min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px)`,y:(componentViewport?.y||0)+0+7745+60+0+0+0+103.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+5698.8+80+0+0+22.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-vgl0bl-container\",nodeId:\"feIFTl5dV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:\"https://truckerpath.com/blog/\",GR68CgLTN:\"View Blog\",height:\"100%\",id:\"feIFTl5dV\",layoutId:\"feIFTl5dV\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rva882\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-t1wmg5\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13ncd5d\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ryx0o5v_X\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"ryx0o5v_X\",name:\"zoDgtzo_X\",type:\"Identifier\"},{collection:\"ryx0o5v_X\",name:\"SH1CWIwZY\",type:\"Identifier\"},{collection:\"ryx0o5v_X\",name:\"AZ0LZUg6l\",type:\"Identifier\"},{collection:\"ryx0o5v_X\",name:\"UY3M_LOh8\",type:\"Identifier\"},{collection:\"ryx0o5v_X\",name:\"PrtYd7Cnx\",type:\"Identifier\"},{collection:\"ryx0o5v_X\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"ryx0o5v_X\",name:\"SH1CWIwZY\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:SH1CWIwZYJFORGoI9I},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({AZ0LZUg6l:AZ0LZUg6lryx0o5v_X,id:idryx0o5v_X,PrtYd7Cnx:PrtYd7Cnxryx0o5v_X,SH1CWIwZY:SH1CWIwZYryx0o5v_X,UY3M_LOh8:UY3M_LOh8ryx0o5v_X,zoDgtzo_X:zoDgtzo_Xryx0o5v_X},index)=>{SH1CWIwZYryx0o5v_X??=\"\";PrtYd7Cnxryx0o5v_X??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ryx0o5v_X-${idryx0o5v_X}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PrtYd7Cnx:PrtYd7Cnxryx0o5v_X},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5948.8+80+0+131.6+0+0+0+0},ilCPgpUK1:{width:`calc(max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1200px) - 32px) / 2, 200px) * 2 + 32px)`,y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5848.8+80+0+131.6+0+0+0+0},Z6y1FBI5u:{width:`max(max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px), 1px), 200px)`,y:(componentViewport?.y||0)+0+7745+60+0+181.6+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,y:(componentViewport?.y||0)+0+5698.8+80+0+131.6+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yr6zps-container\",nodeId:\"quQ0dzHJB\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{style:{width:\"100%\"}},Z6y1FBI5u:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(MainBlogWrap,{height:\"100%\",id:\"quQ0dzHJB\",layoutId:\"quQ0dzHJB\",QlMwPdRcd:\"https://truckerpath.com/blog/protect-yourself-from-growing-the-threat-of-cargo-theft/\",sIxxEGYpm:UY3M_LOh8ryx0o5v_X,vipO_1Q35:enumToDisplayNameFunctions[\"AZ0LZUg6l\"]?.(AZ0LZUg6lryx0o5v_X,activeLocale),vufNqw2Cy:toResponsiveImage(zoDgtzo_Xryx0o5v_X),width:\"100%\",zxEpaSoRD:SH1CWIwZYryx0o5v_X})})})})})})},idryx0o5v_X);})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hd0u3m hidden-fr0arj\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1p6hn95\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{query:{from:{alias:\"lFqxW2YyM\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"lFqxW2YyM\",name:\"zoDgtzo_X\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"SH1CWIwZY\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"AZ0LZUg6l\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"UY3M_LOh8\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"PrtYd7Cnx\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"lFqxW2YyM\",name:\"SH1CWIwZY\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:SH1CWIwZYJFORGoI9I},type:\"BinaryOperation\"}}}}},children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"lFqxW2YyM\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"lFqxW2YyM\",name:\"zoDgtzo_X\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"SH1CWIwZY\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"AZ0LZUg6l\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"UY3M_LOh8\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"PrtYd7Cnx\",type:\"Identifier\"},{collection:\"lFqxW2YyM\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"lFqxW2YyM\",name:\"SH1CWIwZY\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:SH1CWIwZYJFORGoI9I},type:\"BinaryOperation\"}}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({AZ0LZUg6l:AZ0LZUg6llFqxW2YyM,id:idlFqxW2YyM,PrtYd7Cnx:PrtYd7CnxlFqxW2YyM,SH1CWIwZY:SH1CWIwZYlFqxW2YyM,UY3M_LOh8:UY3M_LOh8lFqxW2YyM,zoDgtzo_X:zoDgtzo_XlFqxW2YyM},index1)=>{SH1CWIwZYlFqxW2YyM??=\"\";PrtYd7CnxlFqxW2YyM??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`lFqxW2YyM-${idlFqxW2YyM}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PrtYd7Cnx:PrtYd7CnxlFqxW2YyM},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5948.8+80+0+131.6+0+0+0+0},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5848.8+80+0+131.6+0+0+0+0},Z6y1FBI5u:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px), 200px)`,y:(componentViewport?.y||0)+0+7745+60+0+181.6+0+530+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"378.6667px\",y:(componentViewport?.y||0)+0+5698.8+80+0+131.6+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-f1w9k0-container\",nodeId:\"MKH60QfNL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MainBlogWrap,{height:\"100%\",id:\"MKH60QfNL\",layoutId:\"MKH60QfNL\",QlMwPdRcd:\"https://truckerpath.com/blog/avoid-falling-prey-to-todays-predatory-towing-practices/\",sIxxEGYpm:UY3M_LOh8lFqxW2YyM,style:{width:\"100%\"},vipO_1Q35:enumToDisplayNameFunctions[\"AZ0LZUg6l\"]?.(AZ0LZUg6llFqxW2YyM,activeLocale),vufNqw2Cy:toResponsiveImage(zoDgtzo_XlFqxW2YyM),width:\"100%\",zxEpaSoRD:SH1CWIwZYlFqxW2YyM})})})})})},idlFqxW2YyM);})})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-198eo4v hidden-fr0arj\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pka0fe\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"IvJg1rSK3\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:2},select:[{collection:\"IvJg1rSK3\",name:\"zoDgtzo_X\",type:\"Identifier\"},{collection:\"IvJg1rSK3\",name:\"SH1CWIwZY\",type:\"Identifier\"},{collection:\"IvJg1rSK3\",name:\"AZ0LZUg6l\",type:\"Identifier\"},{collection:\"IvJg1rSK3\",name:\"UY3M_LOh8\",type:\"Identifier\"},{collection:\"IvJg1rSK3\",name:\"PrtYd7Cnx\",type:\"Identifier\"},{collection:\"IvJg1rSK3\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"IvJg1rSK3\",name:\"SH1CWIwZY\",type:\"Identifier\"},operator:\"==\",right:{type:\"LiteralValue\",value:SH1CWIwZYJFORGoI9I},type:\"BinaryOperation\"}}},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({AZ0LZUg6l:AZ0LZUg6lIvJg1rSK3,id:idIvJg1rSK3,PrtYd7Cnx:PrtYd7CnxIvJg1rSK3,SH1CWIwZY:SH1CWIwZYIvJg1rSK3,UY3M_LOh8:UY3M_LOh8IvJg1rSK3,zoDgtzo_X:zoDgtzo_XIvJg1rSK3},index2)=>{SH1CWIwZYIvJg1rSK3??=\"\";PrtYd7CnxIvJg1rSK3??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`IvJg1rSK3-${idIvJg1rSK3}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{PrtYd7Cnx:PrtYd7CnxIvJg1rSK3},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+5948.8+80+0+131.6+0+0+0+0},rsmmI6XOa:{y:(componentViewport?.y||0)+0+5848.8+80+0+131.6+0+0+0+0},Z6y1FBI5u:{width:`max(min(max(${componentViewport?.width||\"100vw\"} - 40px, 1px), 1200px), 200px)`,y:(componentViewport?.y||0)+0+7745+60+0+181.6+0+1060+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:250,width:\"378.6667px\",y:(componentViewport?.y||0)+0+5698.8+80+0+131.6+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1w0ffiw-container\",nodeId:\"ZEyTchwMw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(MainBlogWrap,{height:\"100%\",id:\"ZEyTchwMw\",layoutId:\"ZEyTchwMw\",QlMwPdRcd:\"https://truckerpath.com/blog/trucker-path-community-ranks-top-truck-stops-2025/\",sIxxEGYpm:UY3M_LOh8IvJg1rSK3,style:{width:\"100%\"},vipO_1Q35:enumToDisplayNameFunctions[\"AZ0LZUg6l\"]?.(AZ0LZUg6lIvJg1rSK3,activeLocale),vufNqw2Cy:toResponsiveImage(zoDgtzo_XIvJg1rSK3),width:\"100%\",zxEpaSoRD:SH1CWIwZYIvJg1rSK3})})})})})},idIvJg1rSK3);})})})})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation6,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-248eh9\",\"data-framer-name\":\"Section - Testimonial\",id:elementId11,ref:ref14,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v1yb5e\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+6491.4+80+0+0+0},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+6391.4+80+0+0+0},Z6y1FBI5u:{y:(componentViewport?.y||0)+0+9626.6+60+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:21,y:(componentViewport?.y||0)+0+6241.4+80+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vydr51-container\",nodeId:\"SRToUMjPX\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(BadgeNormal,{height:\"100%\",id:\"SRToUMjPX\",JDEMNPLZW:\"TESTIMONIALS\",layoutId:\"SRToUMjPX\",uCazwUNgB:{borderColor:\"rgb(211, 227, 235)\",borderStyle:\"solid\",borderWidth:1},variant:\"CjEHFWqVh\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"Hear From Our Customers\"})})}),className:\"framer-o232tf\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-czrlfx-container hidden-fr0arj hidden-1gtjlzk\",\"data-framer-name\":\"Web\",isAuthoredByUser:true,isModuleExternal:true,name:\"Web\",nodeId:\"iiK3iIeaV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(255, 255, 255)\",arrowPadding:40,arrowRadius:40,arrowSize:60,leftArrow:\"https://framerusercontent.com/images/zmcdFKGILa5yNJcCEK9Zgi0aD8.png\",rightArrow:\"https://framerusercontent.com/images/1mr3pSIQi3quT21OTRJhkUheavk.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:8},gap:24,height:\"100%\",id:\"iiK3iIeaV\",layoutId:\"iiK3iIeaV\",name:\"Web\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-dhsioj-container\",\"data-framer-name\":\"Dekstop - 1\",inComponentSlot:true,name:\"Dekstop - 1\",nodeId:\"dPFH7LSB2\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Thomas Wynn\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"dPFH7LSB2\",layoutId:\"dPFH7LSB2\",N9K4qX5Xd:\"rgb(240, 249, 255)\",name:\"Dekstop - 1\",ulQAH7a6N:\"Amazing app. It's become a must-have for me since I saw my trainer using it. I'm a new driver and this app has help me a lot.\",variant:\"JIjVYFt9s\",width:\"100%\",WVYFcS5nc:\"I416:97571;24:600\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1bko3bx-container\",\"data-framer-name\":\"Dekstop - 2\",inComponentSlot:true,name:\"Dekstop - 2\",nodeId:\"RH9MKbRHS\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Chris Ward\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"RH9MKbRHS\",layoutId:\"RH9MKbRHS\",N9K4qX5Xd:\"rgb(238, 251, 250)\",name:\"Dekstop - 2\",ulQAH7a6N:\"The Trucker Path Navigation has been a lifesaver... it is accurate down to the entry/exit points of shippers/receivers. I would recommend TP Navigation to everyone\",variant:\"JIjVYFt9s\",width:\"100%\",WVYFcS5nc:\"fKMORbcBP\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1148cie-container\",\"data-framer-name\":\"Dekstop - 3\",inComponentSlot:true,name:\"Dekstop - 3\",nodeId:\"UBQ7PYB6F\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Lisa Carter\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"UBQ7PYB6F\",layoutId:\"UBQ7PYB6F\",N9K4qX5Xd:\"rgb(240, 249, 255)\",name:\"Dekstop - 3\",ulQAH7a6N:\"It's been great seeing how the app has progressed ... Trucker Path is still my go to app\",variant:\"JIjVYFt9s\",width:\"100%\",WVYFcS5nc:\"giOLok5Cv\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rseojm-container\",\"data-framer-name\":\"Dekstop - 4\",inComponentSlot:true,name:\"Dekstop - 4\",nodeId:\"VZDLliUVa\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Chris Ward\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"VZDLliUVa\",layoutId:\"VZDLliUVa\",N9K4qX5Xd:\"rgb(238, 251, 250)\",name:\"Dekstop - 4\",ulQAH7a6N:\"I have been driving for 13 years and I have used TP since its release. Thank you guys for all the hard work making this app a better experience for all of us drivers.\",variant:\"JIjVYFt9s\",width:\"100%\",WVYFcS5nc:\"wQNh7Jgrf\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1elli67-container hidden-72rtr7 hidden-138cown hidden-fr0arj hidden-14e91p1 hidden-1smm6dr\",\"data-framer-name\":\"Mobile\",isAuthoredByUser:true,isModuleExternal:true,name:\"Mobile\",nodeId:\"vSDTjPFHa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgba(255, 255, 255, 0.8)\",arrowPadding:40,arrowRadius:40,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/zmcdFKGILa5yNJcCEK9Zgi0aD8.png\",rightArrow:\"https://framerusercontent.com/images/1mr3pSIQi3quT21OTRJhkUheavk.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:8},gap:8,height:\"100%\",id:\"vSDTjPFHa\",layoutId:\"vSDTjPFHa\",name:\"Mobile\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:2,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-j3d1bj-container\",\"data-framer-name\":\"Phone - 1\",inComponentSlot:true,name:\"Phone - 1\",nodeId:\"jR83R2v6j\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Thomas Wynn\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"jR83R2v6j\",layoutId:\"jR83R2v6j\",N9K4qX5Xd:\"rgb(240, 249, 255)\",name:\"Phone - 1\",ulQAH7a6N:\"Amazing app. It's become a must-have for me since I saw my trainer using it. I'm a new driver and this app has help me a lot.\",variant:\"B4i5D7cV1\",width:\"100%\",WVYFcS5nc:\"I416:97571;24:600\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1669twy-container\",\"data-framer-name\":\"Phone - 2\",inComponentSlot:true,name:\"Phone - 2\",nodeId:\"odYwPkGoE\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Chris Ward\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"odYwPkGoE\",layoutId:\"odYwPkGoE\",N9K4qX5Xd:\"rgb(238, 251, 250)\",name:\"Phone - 2\",ulQAH7a6N:\"The Trucker Path Navigation has been a lifesaver... it is accurate down to the entry/exit points of shippers/receivers. I would recommend TP Navigation to everyone\",variant:\"B4i5D7cV1\",width:\"100%\",WVYFcS5nc:\"fKMORbcBP\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1buj8yu-container\",\"data-framer-name\":\"Phone - 3\",inComponentSlot:true,name:\"Phone - 3\",nodeId:\"OQqzqEg_7\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Lisa Carter\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"OQqzqEg_7\",layoutId:\"OQqzqEg_7\",N9K4qX5Xd:\"rgb(240, 249, 255)\",name:\"Phone - 3\",ulQAH7a6N:\"It's been great seeing how the app has progressed ... Trucker Path is still my go to app\",variant:\"B4i5D7cV1\",width:\"100%\",WVYFcS5nc:\"giOLok5Cv\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-th62gn-container\",\"data-framer-name\":\"Phone - 4\",inComponentSlot:true,name:\"Phone - 4\",nodeId:\"ATtpn3rIM\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Chris Ward\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"ATtpn3rIM\",layoutId:\"ATtpn3rIM\",N9K4qX5Xd:\"rgb(238, 251, 250)\",name:\"Phone - 4\",ulQAH7a6N:\"I have been driving for 13 years and I have used TP since its release. Thank you guys for all the hard work making this app a better experience for all of us drivers.\",variant:\"B4i5D7cV1\",width:\"100%\",WVYFcS5nc:\"wQNh7Jgrf\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-33moym-container hidden-72rtr7 hidden-138cown hidden-1gtjlzk hidden-14e91p1 hidden-1smm6dr\",\"data-framer-name\":\"Dekstop\",isAuthoredByUser:true,isModuleExternal:true,name:\"Dekstop\",nodeId:\"qhkvdd8oq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Carousel,{align:\"center\",ariaLabel:\"\",arrowObject:{arrowFill:\"rgb(255, 255, 255)\",arrowPadding:40,arrowRadius:40,arrowSize:60,leftArrow:\"https://framerusercontent.com/images/zmcdFKGILa5yNJcCEK9Zgi0aD8.png\",rightArrow:\"https://framerusercontent.com/images/1mr3pSIQi3quT21OTRJhkUheavk.png\",showMouseControls:true},axis:true,borderRadius:0,fadeObject:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeTransition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},fadeWidth:8},gap:16,height:\"100%\",id:\"qhkvdd8oq\",layoutId:\"qhkvdd8oq\",name:\"Dekstop\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressObject:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:4,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false,showScrollbar:false},sizingObject:{heightInset:0,heightRows:2,heightType:\"auto\",widthColumns:1,widthInset:0,widthType:\"auto\"},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f2nk9j-container\",\"data-framer-name\":\"Tablet - 1\",inComponentSlot:true,name:\"Tablet - 1\",nodeId:\"SLdu2HfCO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Thomas Wynn\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"SLdu2HfCO\",layoutId:\"SLdu2HfCO\",N9K4qX5Xd:\"rgb(240, 249, 255)\",name:\"Tablet - 1\",ulQAH7a6N:\"Amazing app. It's become a must-have for me since I saw my trainer using it. I'm a new driver and this app has help me a lot.\",variant:\"nbJKT2XM8\",width:\"100%\",WVYFcS5nc:\"I416:97571;24:600\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-y8w1gg-container\",\"data-framer-name\":\"Tablet - 2\",inComponentSlot:true,name:\"Tablet - 2\",nodeId:\"shm5byFFJ\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Chris Ward\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"shm5byFFJ\",layoutId:\"shm5byFFJ\",N9K4qX5Xd:\"rgb(238, 251, 250)\",name:\"Tablet - 2\",ulQAH7a6N:\"The Trucker Path Navigation has been a lifesaver... it is accurate down to the entry/exit points of shippers/receivers. I would recommend TP Navigation to everyone\",variant:\"nbJKT2XM8\",width:\"100%\",WVYFcS5nc:\"fKMORbcBP\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-x2dda7-container\",\"data-framer-name\":\"Tablet - 3\",inComponentSlot:true,name:\"Tablet - 3\",nodeId:\"EQJHuTyl6\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Lisa Carter\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"EQJHuTyl6\",layoutId:\"EQJHuTyl6\",N9K4qX5Xd:\"rgb(240, 249, 255)\",name:\"Tablet - 3\",ulQAH7a6N:\"It's been great seeing how the app has progressed ... Trucker Path is still my go to app\",variant:\"nbJKT2XM8\",width:\"100%\",WVYFcS5nc:\"giOLok5Cv\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:350,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7ntk00-container\",\"data-framer-name\":\"Tablet - 4\",inComponentSlot:true,name:\"Tablet - 4\",nodeId:\"bcNQy53th\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(TestimonialSimple,{aVnuOEPOK:\"Chris Ward\",e5aDJXWMw:\"Truck Driver\",height:\"100%\",id:\"bcNQy53th\",layoutId:\"bcNQy53th\",N9K4qX5Xd:\"rgb(238, 251, 250)\",name:\"Tablet - 4\",ulQAH7a6N:\"I have been driving for 13 years and I have used TP since its release. Thank you guys for all the hard work making this app a better experience for all of us drivers.\",variant:\"nbJKT2XM8\",width:\"100%\",WVYFcS5nc:\"wQNh7Jgrf\"})})})],snapObject:{fluid:false,snap:true,snapEdge:\"center\"},style:{width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+6900.4},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+6800.4},Z6y1FBI5u:{y:(componentViewport?.y||0)+0+9989.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:430,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6650.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a1v6xh-container\",id:elementId12,nodeId:\"HuFDIhcTV\",ref:ref15,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"bxCCCX6Qn\"},Z6y1FBI5u:{variant:\"b5pZoR74d\"}},children:/*#__PURE__*/_jsx(HomePageStyle,{height:\"100%\",id:\"HuFDIhcTV\",layoutId:\"HuFDIhcTV\",s1K46b8TV:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",style:{width:\"100%\"},variant:\"RmqJkb9gf\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{g76lmA3ja:{y:(componentViewport?.y||0)+0+7330.4},ilCPgpUK1:{y:undefined},rsmmI6XOa:{y:(componentViewport?.y||0)+0+7230.4},Z6y1FBI5u:{y:(componentViewport?.y||0)+0+10419.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:564,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+7080.4,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lej1m7-container\",id:elementId13,nodeId:\"qJRyITRr0\",ref:ref10,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ilCPgpUK1:{variant:\"F3zm5FrZx\"},Z6y1FBI5u:{variant:\"TfR8Rq4xe\"}},children:/*#__PURE__*/_jsx(SectionFooter,{height:\"100%\",id:\"qJRyITRr0\",layoutId:\"qJRyITRr0\",style:{width:\"100%\"},variant:\"Rnrfca9Uv\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-6uC03.framer-lux5qc, .framer-6uC03 .framer-lux5qc { display: block; }\",\".framer-6uC03.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-6uC03 .framer-rh52p0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 750px; justify-content: center; overflow: hidden; padding: 60px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-14p8it0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-6uC03 .framer-1ord7lk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 525px; }\",\".framer-6uC03 .framer-snau87 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1bihixq { 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: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-fuccyw { 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; position: relative; width: min-content; }\",\".framer-6uC03 .framer-1v4qfs8 { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 525px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-1b5bi3y, .framer-6uC03 .framer-1125x1c, .framer-6uC03 .framer-1tdpxco, .framer-6uC03 .framer-o232tf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-1tt11zr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6uC03 .framer-1mmuyiq-container, .framer-6uC03 .framer-eb7wss-container, .framer-6uC03 .framer-1ybhirc-container, .framer-6uC03 .framer-12ct7ac-container, .framer-6uC03 .framer-1iddyjg-container, .framer-6uC03 .framer-14e7x2w-container, .framer-6uC03 .framer-1sujn4h-container, .framer-6uC03 .framer-1o1mabx-container, .framer-6uC03 .framer-vgl0bl-container { flex: none; height: auto; position: relative; width: 170px; }\",\".framer-6uC03.framer-9y1ers, .framer-6uC03.framer-3nhc0z { background-color: rgba(0, 0, 0, 0.6); inset: 0px; position: fixed; user-select: none; z-index: 7; }\",\".framer-6uC03.framer-17jyl6l-container, .framer-6uC03.framer-1h9fhui-container { flex: none; height: auto; left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: auto; z-index: 7; }\",\".framer-6uC03 .framer-abi7o { background: linear-gradient(270deg, rgba(0, 12, 31, 0) 25%, rgba(0, 10, 26, 0.95) 100%); bottom: 0px; flex: none; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-6uC03 .framer-oq70kj { background: radial-gradient(50% 107% at 72% 97.39999999999999%, #0e2235 0%, rgb(0, 16, 29) 100%); flex: none; height: 750px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; }\",\".framer-6uC03 .framer-138a2nw-container { bottom: 0px; flex: none; height: 800px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-6uC03 .framer-bfeal6-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 7; }\",\".framer-6uC03 .framer-19j09dv { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25.705588400900904%) add; align-content: center; align-items: center; background: linear-gradient(0deg, #ffffff 25%, rgb(245, 250, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 90px; height: 521px; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25.705588400900904%) add; overflow: hidden; padding: 100px 0px 140px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6uC03 .framer-1k3au2z-container { aspect-ratio: 1.14726507713885 / 1; bottom: -471px; flex: none; left: 49%; opacity: 0.36; position: absolute; top: 146px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 971px); z-index: 1; }\",\".framer-6uC03 .framer-1uomr3k { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6uC03 .framer-142lzyz, .framer-6uC03 .framer-vrycbx, .framer-6uC03 .framer-st2xk3, .framer-6uC03 .framer-1z0p8qq, .framer-6uC03 .framer-1xrk2ac, .framer-6uC03 .framer-368o58, .framer-6uC03 .framer-c1hycy { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6uC03 .framer-1k5j6wn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1200px; z-index: 2; }\",\".framer-6uC03 .framer-o983ui-container { flex: none; height: auto; position: relative; width: 241px; }\",\".framer-6uC03 .framer-18i61wp-container, .framer-6uC03 .framer-vobw59-container, .framer-6uC03 .framer-fuczsl-container, .framer-6uC03 .framer-jmi5yh-container, .framer-6uC03 .framer-8dggj8-container, .framer-6uC03 .framer-s11efl-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-6uC03 .framer-u7qaay { background-color: #ffffff; flex: none; height: 648px; overflow: hidden; position: relative; width: 100%; }\",\".framer-6uC03 .framer-hskbqr { flex: none; height: 592px; left: -1218px; overflow: hidden; position: absolute; right: -626px; top: calc(45.98765432098767% - 592px / 2); }\",\".framer-6uC03 .framer-nmavac, .framer-6uC03 .framer-nbwywk { flex: none; height: 592px; left: calc(50.00000000000002% - 3764px / 2); position: absolute; top: calc(50.00000000000002% - 592px / 2); width: 3764px; }\",\".framer-6uC03 .framer-1wuclhq { flex: none; height: 592px; left: -1197px; overflow: visible; position: absolute; right: -647px; top: calc(45.98765432098767% - 592px / 2); transform-style: preserve-3d; }\",\".framer-6uC03 .framer-yw7oeu { 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-start; left: 50%; max-width: 1200px; overflow: visible; padding: 0px; position: absolute; top: 34%; transform: translate(-50%, -50%); width: 100%; }\",\".framer-6uC03 .framer-bgwmoz { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 520px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-bk0eht { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-14l6phx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 553px; justify-content: center; left: 748px; overflow: visible; padding: 0px; position: absolute; right: -865px; scroll-margin-top: 200px; top: calc(50.92592592592595% - 553px / 2); }\",\".framer-6uC03 .framer-1kqqkuf { flex: none; height: 553px; position: relative; width: 2037px; }\",\".framer-6uC03 .framer-1l6z8l2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: flex-start; overflow: visible; padding: 62px 0px 80px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6uC03 .framer-18v0gjf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; max-width: 850px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-5s6h41-container, .framer-6uC03 .framer-1gtuu14-container, .framer-6uC03 .framer-1auqqvh-container, .framer-6uC03 .framer-1vydr51-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-6uC03 .framer-1u500c6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6uC03 .framer-3b3c51, .framer-6uC03 .framer-1lyhphu, .framer-6uC03 .framer-r731g9, .framer-6uC03 .framer-1qbr1fq { flex: none; height: 410px; overflow: hidden; position: relative; text-decoration: none; width: 282px; }\",\".framer-6uC03 .framer-tudnhb, .framer-6uC03 .framer-4j9zyk { aspect-ratio: 1.3364928909952607 / 1; background: linear-gradient(180deg, #0b60a0 0%, rgba(4, 35, 58, 1) 100%); flex: none; height: var(--framer-aspect-ratio-supported, 211px); left: 0px; position: absolute; top: 199px; width: 282px; }\",\".framer-6uC03 .framer-nlid1d { aspect-ratio: 1.1942148760330578 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 232px); left: -15px; position: absolute; top: 0px; width: 277px; }\",\".framer-6uC03 .framer-4up1m9 { --framer-paragraph-spacing: 0px; bottom: 30px; flex: none; height: auto; left: 33px; position: absolute; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-1q8nsl9 { bottom: 173px; flex: none; left: -223px; position: absolute; right: 185px; top: 186px; }\",\".framer-6uC03 .framer-1xdeaku, .framer-6uC03 .framer-1s6jbx1 { bottom: 118px; flex: none; left: 97px; position: absolute; right: 0px; top: 172px; }\",\".framer-6uC03 .framer-iwcbbx { flex: none; height: 265px; left: 147px; position: absolute; top: 10px; width: 139px; }\",\".framer-6uC03 .framer-lkgqc3 { aspect-ratio: 1.41 / 1; background: linear-gradient(180deg, #0b60a0 0%, rgba(4, 35, 58, 1) 100%); bottom: 0px; flex: none; height: var(--framer-aspect-ratio-supported, 202px); left: -1px; position: absolute; right: -1px; }\",\".framer-6uC03 .framer-12pc7cv { aspect-ratio: 1.1942148760330578 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 242px); position: absolute; right: 14px; top: -5px; width: 289px; }\",\".framer-6uC03 .framer-1esa7y2 { flex: none; height: 190px; left: 9px; overflow: visible; position: absolute; top: 20px; width: 273px; }\",\".framer-6uC03 .framer-1dih3di { flex: none; height: 194px; left: -10px; position: absolute; top: -5px; width: 279px; }\",\".framer-6uC03 .framer-wj7p2y { --framer-paragraph-spacing: 0px; bottom: 30px; flex: none; height: auto; left: 33px; position: absolute; white-space: pre-wrap; width: 223px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-1c22yxy { bottom: 153px; flex: none; height: 48px; left: 0px; position: absolute; width: 89px; }\",\".framer-6uC03 .framer-59283e { flex: none; height: 48px; position: absolute; right: 0px; top: calc(45.12195121951222% - 48px / 2); width: 210px; }\",\".framer-6uC03 .framer-1aldunr { --framer-paragraph-spacing: 0px; bottom: 30px; flex: none; height: auto; left: 31px; position: absolute; white-space: pre-wrap; width: 226px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-sfttyl { bottom: 173px; flex: none; left: 0px; position: absolute; right: 185px; top: 186px; }\",\".framer-6uC03 .framer-1vl26y9 { flex: none; height: 281px; left: -3px; position: absolute; right: -2px; top: 8px; }\",\".framer-6uC03 .framer-1hw4768 { aspect-ratio: 1.791111111111111 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 187px); left: -26px; position: absolute; right: -27px; top: 23px; }\",\".framer-6uC03 .framer-s37k3c { background: linear-gradient(180deg, #0b60a0 0%, rgba(4, 35, 58, 1) 100%); bottom: 0px; flex: none; height: 200px; left: -10px; position: absolute; right: -9px; }\",\".framer-6uC03 .framer-18r2rrx { --framer-paragraph-spacing: 0px; bottom: 30px; flex: none; height: auto; left: 33px; position: absolute; white-space: pre-wrap; width: 204px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-7cyevu { bottom: 152px; flex: none; height: 48px; left: 0px; position: absolute; width: 89px; }\",\".framer-6uC03 .framer-3o620n { flex: none; height: 48px; position: absolute; right: 0px; top: calc(45.36585365853661% - 48px / 2); width: 210px; }\",\".framer-6uC03 .framer-1hww0bp { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 20px 0px 20px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-urrb9s-container { flex: none; height: auto; max-width: 1200px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1d48teu { align-content: center; align-items: center; background-color: #0b1421; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 840px; justify-content: flex-start; overflow: visible; padding: 80px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1mzwty2 { bottom: 0px; flex: none; height: 546px; left: 0px; overflow: visible; position: absolute; width: 100%; z-index: 1; }\",\".framer-6uC03 .framer-1eo99id { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.000000000000002%, rgba(0,0,0,1) 100%) add; flex: none; height: 534px; left: 0px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 15.000000000000002%, rgba(0,0,0,1) 100%) add; position: absolute; top: 12px; width: 100%; }\",\".framer-6uC03 .framer-gdmkxf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6uC03 .framer-1ktq3eo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6uC03 .framer-ae2e88 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-tdm7vz, .framer-6uC03 .framer-8n3kt9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6uC03 .framer-1pbde3d { align-content: center; align-items: center; background: radial-gradient(56.99999999999999% 80% at 50% 43.5%, #032140 1.0300000198185444%, rgb(0, 3, 5) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1r4xgzo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 40px; width: 693px; }\",\".framer-6uC03 .framer-tga4d2 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 693px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-vodvw2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 8px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1dgl7m9 { 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: 40px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1lkrf4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1m1b1ro { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 540px; }\",\".framer-6uC03 .framer-1pfqvc0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-1b6ea7q { 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; position: relative; width: 100%; }\",\".framer-6uC03 .framer-tjna8m { --border-bottom-width: 1px; --border-color: #f3f5f6; --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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: hidden; padding: 24px 0px 24px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-6uC03 .framer-1qwfdy2, .framer-6uC03 .framer-1le418t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-kd1egs, .framer-6uC03 .framer-1hwbpa3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-6uC03 .framer-16i4wuh { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-6uC03 .framer-mw6zsc { flex: none; height: 21px; left: 2px; position: absolute; top: 2px; width: 21px; }\",\".framer-6uC03 .framer-udpgcg, .framer-6uC03 .framer-1s0xy2 { --framer-paragraph-spacing: 20px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-6uC03 .framer-19k5s3x, .framer-6uC03 .framer-60gbwy { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 540px; word-break: break-word; word-wrap: break-word; }\",\".framer-6uC03 .framer-c9ewcq { 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: hidden; padding: 24px 0px 24px 0px; position: relative; text-decoration: none; width: 100%; }\",\".framer-6uC03 .framer-125f8a6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-6uC03 .framer-1j89gd7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); overflow: hidden; position: relative; width: 550px; }\",\".framer-6uC03 .framer-1plokhc { align-content: center; align-items: center; background: radial-gradient(126.9299965531047% 73.07000248688288% at 79.33999748216254% 111.10000361490857%, #0e2134 0%, rgba(0, 15, 28, 1) 100%); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 80px 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-6uC03 .framer-5sngll { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-6uC03 .framer-bcyuax { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-szsqhe { 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: min-content; }\",\".framer-6uC03 .framer-rva882 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-t1wmg5, .framer-6uC03 .framer-1hd0u3m, .framer-6uC03 .framer-198eo4v { flex: none; height: 251px; overflow: hidden; position: relative; width: 379px; }\",\".framer-6uC03 .framer-13ncd5d { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: absolute; right: -284px; top: 0px; width: min-content; }\",\".framer-6uC03 .framer-1yr6zps-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: fit-content; }\",\".framer-6uC03 .framer-1p6hn95, .framer-6uC03 .framer-1pka0fe { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); height: min-content; justify-content: center; left: 0px; padding: 0px; position: absolute; right: -821px; top: 0px; }\",\".framer-6uC03 .framer-f1w9k0-container, .framer-6uC03 .framer-1w0ffiw-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-6uC03 .framer-248eh9 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-6uC03 .framer-v1yb5e { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 800px; }\",\".framer-6uC03 .framer-czrlfx-container { flex: none; height: auto; position: relative; width: 1100px; }\",\".framer-6uC03 .framer-dhsioj-container, .framer-6uC03 .framer-1bko3bx-container, .framer-6uC03 .framer-1148cie-container, .framer-6uC03 .framer-1rseojm-container, .framer-6uC03 .framer-j3d1bj-container, .framer-6uC03 .framer-1669twy-container, .framer-6uC03 .framer-1buj8yu-container, .framer-6uC03 .framer-th62gn-container, .framer-6uC03 .framer-1f2nk9j-container, .framer-6uC03 .framer-y8w1gg-container, .framer-6uC03 .framer-x2dda7-container, .framer-6uC03 .framer-7ntk00-container { height: auto; position: relative; width: auto; }\",\".framer-6uC03 .framer-1elli67-container, .framer-6uC03 .framer-33moym-container, .framer-6uC03 .framer-1a1v6xh-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-6uC03 .framer-lej1m7-container { flex: none; height: auto; position: relative; width: 100%; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6uC03.framer-72rtr7, .framer-6uC03 .framer-rh52p0, .framer-6uC03 .framer-14p8it0, .framer-6uC03 .framer-1ord7lk, .framer-6uC03 .framer-snau87, .framer-6uC03 .framer-1bihixq, .framer-6uC03 .framer-fuccyw, .framer-6uC03 .framer-1tt11zr, .framer-6uC03 .framer-19j09dv, .framer-6uC03 .framer-1uomr3k, .framer-6uC03 .framer-1k5j6wn, .framer-6uC03 .framer-yw7oeu, .framer-6uC03 .framer-14l6phx, .framer-6uC03 .framer-1l6z8l2, .framer-6uC03 .framer-18v0gjf, .framer-6uC03 .framer-1u500c6, .framer-6uC03 .framer-1hww0bp, .framer-6uC03 .framer-1d48teu, .framer-6uC03 .framer-gdmkxf, .framer-6uC03 .framer-1ktq3eo, .framer-6uC03 .framer-ae2e88, .framer-6uC03 .framer-tdm7vz, .framer-6uC03 .framer-1pbde3d, .framer-6uC03 .framer-1r4xgzo, .framer-6uC03 .framer-vodvw2, .framer-6uC03 .framer-1dgl7m9, .framer-6uC03 .framer-1m1b1ro, .framer-6uC03 .framer-1pfqvc0, .framer-6uC03 .framer-1b6ea7q, .framer-6uC03 .framer-tjna8m, .framer-6uC03 .framer-1qwfdy2, .framer-6uC03 .framer-kd1egs, .framer-6uC03 .framer-c9ewcq, .framer-6uC03 .framer-1le418t, .framer-6uC03 .framer-1hwbpa3, .framer-6uC03 .framer-8n3kt9, .framer-6uC03 .framer-1plokhc, .framer-6uC03 .framer-5sngll, .framer-6uC03 .framer-szsqhe, .framer-6uC03 .framer-248eh9, .framer-6uC03 .framer-v1yb5e { gap: 0px; } .framer-6uC03.framer-72rtr7 > *, .framer-6uC03 .framer-rh52p0 > *, .framer-6uC03 .framer-fuccyw > *, .framer-6uC03 .framer-1d48teu > *, .framer-6uC03 .framer-1dgl7m9 > *, .framer-6uC03 .framer-1b6ea7q > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6uC03.framer-72rtr7 > :first-child, .framer-6uC03 .framer-rh52p0 > :first-child, .framer-6uC03 .framer-1ord7lk > :first-child, .framer-6uC03 .framer-snau87 > :first-child, .framer-6uC03 .framer-1bihixq > :first-child, .framer-6uC03 .framer-fuccyw > :first-child, .framer-6uC03 .framer-19j09dv > :first-child, .framer-6uC03 .framer-1uomr3k > :first-child, .framer-6uC03 .framer-yw7oeu > :first-child, .framer-6uC03 .framer-1l6z8l2 > :first-child, .framer-6uC03 .framer-18v0gjf > :first-child, .framer-6uC03 .framer-1hww0bp > :first-child, .framer-6uC03 .framer-1d48teu > :first-child, .framer-6uC03 .framer-gdmkxf > :first-child, .framer-6uC03 .framer-1ktq3eo > :first-child, .framer-6uC03 .framer-1pbde3d > :first-child, .framer-6uC03 .framer-1r4xgzo > :first-child, .framer-6uC03 .framer-1dgl7m9 > :first-child, .framer-6uC03 .framer-1m1b1ro > :first-child, .framer-6uC03 .framer-1pfqvc0 > :first-child, .framer-6uC03 .framer-1b6ea7q > :first-child, .framer-6uC03 .framer-tjna8m > :first-child, .framer-6uC03 .framer-1qwfdy2 > :first-child, .framer-6uC03 .framer-c9ewcq > :first-child, .framer-6uC03 .framer-1le418t > :first-child, .framer-6uC03 .framer-5sngll > :first-child, .framer-6uC03 .framer-szsqhe > :first-child, .framer-6uC03 .framer-248eh9 > :first-child, .framer-6uC03 .framer-v1yb5e > :first-child { margin-top: 0px; } .framer-6uC03.framer-72rtr7 > :last-child, .framer-6uC03 .framer-rh52p0 > :last-child, .framer-6uC03 .framer-1ord7lk > :last-child, .framer-6uC03 .framer-snau87 > :last-child, .framer-6uC03 .framer-1bihixq > :last-child, .framer-6uC03 .framer-fuccyw > :last-child, .framer-6uC03 .framer-19j09dv > :last-child, .framer-6uC03 .framer-1uomr3k > :last-child, .framer-6uC03 .framer-yw7oeu > :last-child, .framer-6uC03 .framer-1l6z8l2 > :last-child, .framer-6uC03 .framer-18v0gjf > :last-child, .framer-6uC03 .framer-1hww0bp > :last-child, .framer-6uC03 .framer-1d48teu > :last-child, .framer-6uC03 .framer-gdmkxf > :last-child, .framer-6uC03 .framer-1ktq3eo > :last-child, .framer-6uC03 .framer-1pbde3d > :last-child, .framer-6uC03 .framer-1r4xgzo > :last-child, .framer-6uC03 .framer-1dgl7m9 > :last-child, .framer-6uC03 .framer-1m1b1ro > :last-child, .framer-6uC03 .framer-1pfqvc0 > :last-child, .framer-6uC03 .framer-1b6ea7q > :last-child, .framer-6uC03 .framer-tjna8m > :last-child, .framer-6uC03 .framer-1qwfdy2 > :last-child, .framer-6uC03 .framer-c9ewcq > :last-child, .framer-6uC03 .framer-1le418t > :last-child, .framer-6uC03 .framer-5sngll > :last-child, .framer-6uC03 .framer-szsqhe > :last-child, .framer-6uC03 .framer-248eh9 > :last-child, .framer-6uC03 .framer-v1yb5e > :last-child { margin-bottom: 0px; } .framer-6uC03 .framer-14p8it0 > * { margin: 0px; margin-left: calc(27px / 2); margin-right: calc(27px / 2); } .framer-6uC03 .framer-14p8it0 > :first-child, .framer-6uC03 .framer-1tt11zr > :first-child, .framer-6uC03 .framer-1k5j6wn > :first-child, .framer-6uC03 .framer-14l6phx > :first-child, .framer-6uC03 .framer-1u500c6 > :first-child, .framer-6uC03 .framer-ae2e88 > :first-child, .framer-6uC03 .framer-tdm7vz > :first-child, .framer-6uC03 .framer-vodvw2 > :first-child, .framer-6uC03 .framer-kd1egs > :first-child, .framer-6uC03 .framer-1hwbpa3 > :first-child, .framer-6uC03 .framer-8n3kt9 > :first-child, .framer-6uC03 .framer-1plokhc > :first-child { margin-left: 0px; } .framer-6uC03 .framer-14p8it0 > :last-child, .framer-6uC03 .framer-1tt11zr > :last-child, .framer-6uC03 .framer-1k5j6wn > :last-child, .framer-6uC03 .framer-14l6phx > :last-child, .framer-6uC03 .framer-1u500c6 > :last-child, .framer-6uC03 .framer-ae2e88 > :last-child, .framer-6uC03 .framer-tdm7vz > :last-child, .framer-6uC03 .framer-vodvw2 > :last-child, .framer-6uC03 .framer-kd1egs > :last-child, .framer-6uC03 .framer-1hwbpa3 > :last-child, .framer-6uC03 .framer-8n3kt9 > :last-child, .framer-6uC03 .framer-1plokhc > :last-child { margin-right: 0px; } .framer-6uC03 .framer-1ord7lk > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6uC03 .framer-snau87 > *, .framer-6uC03 .framer-1m1b1ro > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-6uC03 .framer-1bihixq > *, .framer-6uC03 .framer-1uomr3k > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-6uC03 .framer-1tt11zr > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6uC03 .framer-19j09dv > * { margin: 0px; margin-bottom: calc(90px / 2); margin-top: calc(90px / 2); } .framer-6uC03 .framer-1k5j6wn > * { margin: 0px; margin-left: calc(38px / 2); margin-right: calc(38px / 2); } .framer-6uC03 .framer-yw7oeu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-6uC03 .framer-14l6phx > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6uC03 .framer-1l6z8l2 > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-6uC03 .framer-18v0gjf > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6uC03 .framer-1u500c6 > *, .framer-6uC03 .framer-ae2e88 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-6uC03 .framer-1hww0bp > *, .framer-6uC03 .framer-1pbde3d > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6uC03 .framer-gdmkxf > *, .framer-6uC03 .framer-248eh9 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-6uC03 .framer-1ktq3eo > *, .framer-6uC03 .framer-1r4xgzo > *, .framer-6uC03 .framer-1pfqvc0 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-6uC03 .framer-tdm7vz > *, .framer-6uC03 .framer-vodvw2 > *, .framer-6uC03 .framer-8n3kt9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-6uC03 .framer-tjna8m > *, .framer-6uC03 .framer-c9ewcq > *, .framer-6uC03 .framer-szsqhe > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-6uC03 .framer-1qwfdy2 > *, .framer-6uC03 .framer-1le418t > * { margin: 0px; margin-bottom: calc(6px / 2); margin-top: calc(6px / 2); } .framer-6uC03 .framer-kd1egs > *, .framer-6uC03 .framer-1hwbpa3 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-6uC03 .framer-1plokhc > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-6uC03 .framer-5sngll > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-6uC03 .framer-v1yb5e > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-6uC03[data-border=\"true\"]::after, .framer-6uC03 [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; }',\"@media (min-width: 1280px) and (max-width: 1919px) { .framer-6uC03.framer-72rtr7 { width: 1280px; } .framer-6uC03 .framer-rh52p0, .framer-6uC03 .framer-1ord7lk { order: 0; } .framer-6uC03 .framer-bfeal6-container { order: 1; } .framer-6uC03 .framer-19j09dv { order: 3; } .framer-6uC03 .framer-u7qaay { order: 4; } .framer-6uC03 .framer-1wuclhq { left: -1187px; right: -657px; } .framer-6uC03 .framer-14l6phx { height: min-content; left: 338px; right: -1095px; top: 51%; transform: translateY(-50%); } .framer-6uC03 .framer-1l6z8l2 { order: 5; } .framer-6uC03 .framer-1hww0bp { order: 6; padding: 20px 80px 20px 80px; } .framer-6uC03 .framer-1d48teu { order: 7; } .framer-6uC03 .framer-1ktq3eo { width: 100%; } .framer-6uC03 .framer-1pbde3d { order: 8; } .framer-6uC03 .framer-1dgl7m9 { order: 9; } .framer-6uC03 .framer-tjna8m { padding: 5px 0px 24px 0px; } .framer-6uC03 .framer-1plokhc { order: 10; } .framer-6uC03 .framer-248eh9 { order: 11; } .framer-6uC03 .framer-1a1v6xh-container { order: 12; } .framer-6uC03 .framer-lej1m7-container { order: 13; }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-6uC03.framer-72rtr7 { width: 810px; } .framer-6uC03 .framer-rh52p0 { height: 472px; order: 0; padding: 140px 40px 60px 40px; } .framer-6uC03 .framer-14p8it0 { flex-direction: column; gap: 40px; } .framer-6uC03 .framer-1ord7lk, .framer-6uC03 .framer-tdm7vz, .framer-6uC03 .framer-1r4xgzo, .framer-6uC03 .framer-1gtuu14-container, .framer-6uC03 .framer-1m1b1ro, .framer-6uC03 .framer-60gbwy, .framer-6uC03 .framer-8n3kt9, .framer-6uC03 .framer-v1yb5e { width: 100%; } .framer-6uC03 .framer-snau87 { gap: 12px; } .framer-6uC03 .framer-fuccyw { align-content: center; align-items: center; } .framer-6uC03 .framer-1b5bi3y { width: 70%; } .framer-6uC03 .framer-bfeal6-container { order: 1; } .framer-6uC03 .framer-19j09dv { height: min-content; order: 3; padding: 80px 40px 80px 40px; } .framer-6uC03 .framer-1k3au2z-container { bottom: -432px; left: 50%; opacity: 0.3; top: 107px; width: var(--framer-aspect-ratio-supported, 990px); } .framer-6uC03 .framer-1k5j6wn { align-content: unset; align-items: unset; display: grid; gap: 60px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); width: 100%; } .framer-6uC03 .framer-o983ui-container { align-self: start; height: 100%; justify-self: start; width: 100%; } .framer-6uC03 .framer-18i61wp-container, .framer-6uC03 .framer-vobw59-container, .framer-6uC03 .framer-fuczsl-container { align-self: start; flex: none; height: 100%; justify-self: start; width: 100%; } .framer-6uC03 .framer-u7qaay { order: 4; } .framer-6uC03 .framer-1wuclhq { left: -1377px; right: unset; width: 3764px; } .framer-6uC03 .framer-yw7oeu { left: 150px; top: 31%; transform: translateY(-50%); width: min-content; } .framer-6uC03 .framer-bgwmoz { width: 520px; } .framer-6uC03 .framer-14l6phx { top: calc(74.07407407407409% - 553px / 2); } .framer-6uC03 .framer-1l6z8l2 { gap: 32px; order: 5; padding: 60px 40px 60px 40px; } .framer-6uC03 .framer-1u500c6 { flex-wrap: wrap; justify-content: center; width: 100%; } .framer-6uC03 .framer-1hww0bp { order: 6; padding: 60px 40px 60px 40px; } .framer-6uC03 .framer-1d48teu { height: min-content; order: 7; padding: 60px 40px 340px 40px; } .framer-6uC03 .framer-gdmkxf, .framer-6uC03 .framer-5sngll { gap: 40px; } .framer-6uC03 .framer-ae2e88 { gap: 16px; } .framer-6uC03 .framer-1ybhirc-container, .framer-6uC03 .framer-12ct7ac-container, .framer-6uC03 .framer-1iddyjg-container, .framer-6uC03 .framer-14e7x2w-container, .framer-6uC03 .framer-1sujn4h-container, .framer-6uC03 .framer-1o1mabx-container { flex: 1 0 0px; width: 1px; } .framer-6uC03 .framer-1pbde3d { order: 8; padding: 60px 40px 60px 40px; } .framer-6uC03 .framer-1dgl7m9 { order: 9; padding: 80px 40px 80px 40px; } .framer-6uC03 .framer-1lkrf4s { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 48px; justify-content: flex-start; } .framer-6uC03 .framer-1j89gd7 { aspect-ratio: unset; height: 460px; width: 100%; } .framer-6uC03 .framer-1plokhc { order: 10; padding: 60px 40px 60px 40px; } .framer-6uC03 .framer-rva882 { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-6uC03 .framer-t1wmg5 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-6uC03 .framer-13ncd5d { grid-template-columns: repeat(2, minmax(200px, 1fr)); position: relative; right: unset; top: unset; width: 100%; } .framer-6uC03 .framer-1yr6zps-container { grid-column: auto / span 2; height: auto; width: 100%; } .framer-6uC03 .framer-248eh9 { gap: 40px; order: 11; padding: 60px 40px 0px 40px; } .framer-6uC03 .framer-1a1v6xh-container { order: 12; } .framer-6uC03 .framer-lej1m7-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6uC03 .framer-14p8it0, .framer-6uC03 .framer-snau87, .framer-6uC03 .framer-1k5j6wn, .framer-6uC03 .framer-1l6z8l2, .framer-6uC03 .framer-gdmkxf, .framer-6uC03 .framer-ae2e88, .framer-6uC03 .framer-1lkrf4s, .framer-6uC03 .framer-5sngll, .framer-6uC03 .framer-rva882, .framer-6uC03 .framer-t1wmg5, .framer-6uC03 .framer-248eh9 { gap: 0px; } .framer-6uC03 .framer-14p8it0 > *, .framer-6uC03 .framer-gdmkxf > *, .framer-6uC03 .framer-5sngll > *, .framer-6uC03 .framer-248eh9 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6uC03 .framer-14p8it0 > :first-child, .framer-6uC03 .framer-snau87 > :first-child, .framer-6uC03 .framer-1l6z8l2 > :first-child, .framer-6uC03 .framer-gdmkxf > :first-child, .framer-6uC03 .framer-1lkrf4s > :first-child, .framer-6uC03 .framer-5sngll > :first-child, .framer-6uC03 .framer-rva882 > :first-child, .framer-6uC03 .framer-t1wmg5 > :first-child, .framer-6uC03 .framer-248eh9 > :first-child { margin-top: 0px; } .framer-6uC03 .framer-14p8it0 > :last-child, .framer-6uC03 .framer-snau87 > :last-child, .framer-6uC03 .framer-1l6z8l2 > :last-child, .framer-6uC03 .framer-gdmkxf > :last-child, .framer-6uC03 .framer-1lkrf4s > :last-child, .framer-6uC03 .framer-5sngll > :last-child, .framer-6uC03 .framer-rva882 > :last-child, .framer-6uC03 .framer-t1wmg5 > :last-child, .framer-6uC03 .framer-248eh9 > :last-child { margin-bottom: 0px; } .framer-6uC03 .framer-snau87 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-6uC03 .framer-1k5j6wn > *, .framer-6uC03 .framer-1k5j6wn > :first-child, .framer-6uC03 .framer-1k5j6wn > :last-child { margin: 0px; } .framer-6uC03 .framer-1l6z8l2 > *, .framer-6uC03 .framer-rva882 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6uC03 .framer-ae2e88 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6uC03 .framer-ae2e88 > :first-child { margin-left: 0px; } .framer-6uC03 .framer-ae2e88 > :last-child { margin-right: 0px; } .framer-6uC03 .framer-1lkrf4s > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-6uC03 .framer-t1wmg5 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }}\",\"@media (max-width: 809px) { .framer-6uC03.framer-72rtr7 { justify-content: flex-start; width: 390px; } .framer-6uC03 .framer-rh52p0 { background: radial-gradient(50% 107% at 72% 97.39999999999999%, #0e2235 0%, rgb(0, 16, 29) 100%); height: min-content; justify-content: flex-start; order: 0; padding: 150px 0px 0px 0px; } .framer-6uC03 .framer-14p8it0 { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 32px; order: 0; padding: 0px 20px 0px 20px; } .framer-6uC03 .framer-1ord7lk { align-content: center; align-items: center; gap: 24px; width: 100%; } .framer-6uC03 .framer-snau87 { gap: 12px; } .framer-6uC03 .framer-1bihixq { align-content: center; align-items: center; gap: 0px; } .framer-6uC03 .framer-fuccyw { align-content: center; align-items: center; width: 100%; } .framer-6uC03 .framer-1v4qfs8, .framer-6uC03 .framer-bk0eht { --framer-text-wrap: balance; width: 100%; } .framer-6uC03 .framer-1b5bi3y { --framer-text-wrap-override: balance; } .framer-6uC03 .framer-1tt11zr { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-6uC03 .framer-1mmuyiq-container, .framer-6uC03 .framer-eb7wss-container, .framer-6uC03 .framer-1ybhirc-container, .framer-6uC03 .framer-12ct7ac-container, .framer-6uC03 .framer-1iddyjg-container, .framer-6uC03 .framer-14e7x2w-container, .framer-6uC03 .framer-1sujn4h-container, .framer-6uC03 .framer-1o1mabx-container { flex: 1 0 0px; width: 1px; } .framer-6uC03.framer-17jyl6l-container, .framer-6uC03.framer-1h9fhui-container { width: 90%; } .framer-6uC03 .framer-oq70kj { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%) add, linear-gradient(180deg, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%) add; height: 251px; left: unset; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 40%) add, linear-gradient(180deg, rgba(0,0,0,0) 75%, rgba(0,0,0,1) 100%) add; order: 3; position: relative; top: unset; } .framer-6uC03 .framer-138a2nw-container { bottom: unset; height: 100%; top: 1px; } .framer-6uC03 .framer-bfeal6-container { order: 2; } .framer-6uC03 .framer-19j09dv { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 20%) add; gap: 30px; height: min-content; justify-content: flex-start; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 20%) add; order: 1; padding: 80px 0px 30px 0px; } .framer-6uC03 .framer-1k3au2z-container { bottom: unset; height: var(--framer-aspect-ratio-supported, 701px); left: 50%; opacity: 0.31; top: 118px; width: 804px; } .framer-6uC03 .framer-vrycbx, .framer-6uC03 .framer-1z0p8qq { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-6uC03 .framer-1k5j6wn { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 40px; justify-content: flex-start; padding: 40px; width: 100%; } .framer-6uC03 .framer-18i61wp-container, .framer-6uC03 .framer-vobw59-container, .framer-6uC03 .framer-fuczsl-container, .framer-6uC03 .framer-jmi5yh-container, .framer-6uC03 .framer-8dggj8-container, .framer-6uC03 .framer-s11efl-container { flex: none; width: 100%; } .framer-6uC03 .framer-u7qaay { height: 385px; order: 3; } .framer-6uC03 .framer-hskbqr { aspect-ratio: 3.7794117647058822 / 1; height: var(--framer-aspect-ratio-supported, 224px); left: -636px; right: unset; top: 43px; width: 847px; } .framer-6uC03 .framer-1wuclhq { height: 220px; left: 0px; right: unset; top: calc(28.57142857142859% - 220px / 2); width: 787px; } .framer-6uC03 .framer-nbwywk { left: calc(67.85260482846253% - 3764px / 2); top: calc(40.454545454545475% - 592px / 2); } .framer-6uC03 .framer-yw7oeu { gap: 12px; max-width: unset; padding: 0px 20px 0px 100px; top: 29%; } .framer-6uC03 .framer-14l6phx { height: min-content; left: 20px; right: unset; top: 151px; width: min-content; } .framer-6uC03 .framer-1kqqkuf { aspect-ratio: 3.6878048780487807 / 1; height: var(--framer-aspect-ratio-supported, 281px); width: 1036px; } .framer-6uC03 .framer-1l6z8l2 { gap: 24px; order: 4; padding: 60px 16px 60px 16px; } .framer-6uC03 .framer-1u500c6 { flex-direction: column; } .framer-6uC03 .framer-1hww0bp { gap: 32px; order: 6; padding: 60px 20px 60px 20px; } .framer-6uC03 .framer-1d48teu { height: min-content; order: 7; padding: 60px 20px 170px 20px; } .framer-6uC03 .framer-1mzwty2 { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0,0,0,1) 100%) add; height: 556px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 25%, rgba(0,0,0,1) 100%) add; right: 0px; width: unset; } .framer-6uC03 .framer-1eo99id { top: 10px; } .framer-6uC03 .framer-gdmkxf { gap: 32px; } .framer-6uC03 .framer-1ktq3eo { order: 0; width: 100%; } .framer-6uC03 .framer-ae2e88 { flex-direction: column; gap: 12px; order: 2; } .framer-6uC03 .framer-tdm7vz { gap: 16px; max-width: 430px; order: 1; width: 100%; } .framer-6uC03 .framer-1pbde3d { order: 8; padding: 60px 20px 60px 20px; } .framer-6uC03 .framer-1r4xgzo, .framer-6uC03 .framer-tga4d2, .framer-6uC03 .framer-1gtuu14-container, .framer-6uC03 .framer-1m1b1ro, .framer-6uC03 .framer-1yr6zps-container, .framer-6uC03 .framer-v1yb5e { width: 100%; } .framer-6uC03 .framer-vodvw2 { gap: 16px; } .framer-6uC03 .framer-1dgl7m9 { order: 9; padding: 60px 20px 60px 20px; } .framer-6uC03 .framer-1lkrf4s { flex-direction: column; gap: 21px; justify-content: flex-start; } .framer-6uC03 .framer-1pfqvc0, .framer-6uC03 .framer-1hwbpa3 { order: 0; } .framer-6uC03 .framer-1b6ea7q { order: 1; } .framer-6uC03 .framer-tjna8m, .framer-6uC03 .framer-c9ewcq { padding: 20px 0px 20px 0px; } .framer-6uC03 .framer-60gbwy { order: 1; width: 100%; } .framer-6uC03 .framer-8n3kt9 { gap: 16px; max-width: 430px; order: 2; width: 100%; } .framer-6uC03 .framer-1j89gd7 { height: var(--framer-aspect-ratio-supported, 350px); width: 100%; } .framer-6uC03 .framer-1plokhc { order: 10; padding: 60px 20px 60px 20px; } .framer-6uC03 .framer-5sngll { gap: 40px; } .framer-6uC03 .framer-bcyuax { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 28px; justify-content: flex-start; } .framer-6uC03 .framer-szsqhe { gap: 4px; order: 0; width: 100%; } .framer-6uC03 .framer-vgl0bl-container { order: 2; width: 100%; } .framer-6uC03 .framer-rva882 { flex-direction: column; gap: 10px; justify-content: flex-start; } .framer-6uC03 .framer-t1wmg5 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-6uC03 .framer-13ncd5d { flex: 1 0 0px; gap: 20px; grid-template-columns: repeat(1, minmax(200px, 1fr)); position: relative; right: unset; top: unset; width: 1px; } .framer-6uC03 .framer-1hd0u3m, .framer-6uC03 .framer-198eo4v { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-6uC03 .framer-1p6hn95, .framer-6uC03 .framer-1pka0fe { gap: 20px; grid-template-columns: repeat(1, minmax(200px, 1fr)); left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-6uC03 .framer-248eh9 { gap: 24px; order: 11; padding: 60px 20px 0px 20px; } .framer-6uC03 .framer-1a1v6xh-container { order: 12; } .framer-6uC03 .framer-lej1m7-container { order: 13; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-6uC03 .framer-14p8it0, .framer-6uC03 .framer-1ord7lk, .framer-6uC03 .framer-snau87, .framer-6uC03 .framer-1bihixq, .framer-6uC03 .framer-19j09dv, .framer-6uC03 .framer-1k5j6wn, .framer-6uC03 .framer-yw7oeu, .framer-6uC03 .framer-1l6z8l2, .framer-6uC03 .framer-1u500c6, .framer-6uC03 .framer-1hww0bp, .framer-6uC03 .framer-gdmkxf, .framer-6uC03 .framer-ae2e88, .framer-6uC03 .framer-tdm7vz, .framer-6uC03 .framer-vodvw2, .framer-6uC03 .framer-1lkrf4s, .framer-6uC03 .framer-8n3kt9, .framer-6uC03 .framer-5sngll, .framer-6uC03 .framer-bcyuax, .framer-6uC03 .framer-szsqhe, .framer-6uC03 .framer-rva882, .framer-6uC03 .framer-t1wmg5, .framer-6uC03 .framer-13ncd5d, .framer-6uC03 .framer-1hd0u3m, .framer-6uC03 .framer-1p6hn95, .framer-6uC03 .framer-198eo4v, .framer-6uC03 .framer-1pka0fe, .framer-6uC03 .framer-248eh9 { gap: 0px; } .framer-6uC03 .framer-14p8it0 > *, .framer-6uC03 .framer-1u500c6 > *, .framer-6uC03 .framer-1hww0bp > *, .framer-6uC03 .framer-gdmkxf > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-6uC03 .framer-14p8it0 > :first-child, .framer-6uC03 .framer-1ord7lk > :first-child, .framer-6uC03 .framer-snau87 > :first-child, .framer-6uC03 .framer-1bihixq > :first-child, .framer-6uC03 .framer-19j09dv > :first-child, .framer-6uC03 .framer-1k5j6wn > :first-child, .framer-6uC03 .framer-yw7oeu > :first-child, .framer-6uC03 .framer-1l6z8l2 > :first-child, .framer-6uC03 .framer-1u500c6 > :first-child, .framer-6uC03 .framer-1hww0bp > :first-child, .framer-6uC03 .framer-gdmkxf > :first-child, .framer-6uC03 .framer-ae2e88 > :first-child, .framer-6uC03 .framer-1lkrf4s > :first-child, .framer-6uC03 .framer-5sngll > :first-child, .framer-6uC03 .framer-bcyuax > :first-child, .framer-6uC03 .framer-szsqhe > :first-child, .framer-6uC03 .framer-rva882 > :first-child, .framer-6uC03 .framer-1hd0u3m > :first-child, .framer-6uC03 .framer-198eo4v > :first-child, .framer-6uC03 .framer-248eh9 > :first-child { margin-top: 0px; } .framer-6uC03 .framer-14p8it0 > :last-child, .framer-6uC03 .framer-1ord7lk > :last-child, .framer-6uC03 .framer-snau87 > :last-child, .framer-6uC03 .framer-1bihixq > :last-child, .framer-6uC03 .framer-19j09dv > :last-child, .framer-6uC03 .framer-1k5j6wn > :last-child, .framer-6uC03 .framer-yw7oeu > :last-child, .framer-6uC03 .framer-1l6z8l2 > :last-child, .framer-6uC03 .framer-1u500c6 > :last-child, .framer-6uC03 .framer-1hww0bp > :last-child, .framer-6uC03 .framer-gdmkxf > :last-child, .framer-6uC03 .framer-ae2e88 > :last-child, .framer-6uC03 .framer-1lkrf4s > :last-child, .framer-6uC03 .framer-5sngll > :last-child, .framer-6uC03 .framer-bcyuax > :last-child, .framer-6uC03 .framer-szsqhe > :last-child, .framer-6uC03 .framer-rva882 > :last-child, .framer-6uC03 .framer-1hd0u3m > :last-child, .framer-6uC03 .framer-198eo4v > :last-child, .framer-6uC03 .framer-248eh9 > :last-child { margin-bottom: 0px; } .framer-6uC03 .framer-1ord7lk > *, .framer-6uC03 .framer-1l6z8l2 > *, .framer-6uC03 .framer-248eh9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-6uC03 .framer-snau87 > *, .framer-6uC03 .framer-yw7oeu > *, .framer-6uC03 .framer-ae2e88 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-6uC03 .framer-1bihixq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-6uC03 .framer-19j09dv > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-6uC03 .framer-1k5j6wn > *, .framer-6uC03 .framer-5sngll > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-6uC03 .framer-tdm7vz > *, .framer-6uC03 .framer-vodvw2 > *, .framer-6uC03 .framer-8n3kt9 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-6uC03 .framer-tdm7vz > :first-child, .framer-6uC03 .framer-vodvw2 > :first-child, .framer-6uC03 .framer-8n3kt9 > :first-child, .framer-6uC03 .framer-t1wmg5 > :first-child { margin-left: 0px; } .framer-6uC03 .framer-tdm7vz > :last-child, .framer-6uC03 .framer-vodvw2 > :last-child, .framer-6uC03 .framer-8n3kt9 > :last-child, .framer-6uC03 .framer-t1wmg5 > :last-child { margin-right: 0px; } .framer-6uC03 .framer-1lkrf4s > * { margin: 0px; margin-bottom: calc(21px / 2); margin-top: calc(21px / 2); } .framer-6uC03 .framer-bcyuax > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-6uC03 .framer-szsqhe > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-6uC03 .framer-rva882 > *, .framer-6uC03 .framer-1hd0u3m > *, .framer-6uC03 .framer-198eo4v > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-6uC03 .framer-t1wmg5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-6uC03 .framer-13ncd5d > *, .framer-6uC03 .framer-13ncd5d > :first-child, .framer-6uC03 .framer-13ncd5d > :last-child, .framer-6uC03 .framer-1p6hn95 > *, .framer-6uC03 .framer-1p6hn95 > :first-child, .framer-6uC03 .framer-1p6hn95 > :last-child, .framer-6uC03 .framer-1pka0fe > *, .framer-6uC03 .framer-1pka0fe > :first-child, .framer-6uC03 .framer-1pka0fe > :last-child { margin: 0px; } }}\",\"@media (min-width: 2000px) and (max-width: 2299px) { .framer-6uC03.framer-72rtr7 { width: 2000px; } .framer-6uC03 .framer-rh52p0, .framer-6uC03 .framer-oq70kj, .framer-6uC03 .framer-138a2nw-container { height: 900px; }}\",\"@media (min-width: 2300px) { .framer-6uC03.framer-72rtr7 { width: 2300px; } .framer-6uC03 .framer-rh52p0, .framer-6uC03 .framer-138a2nw-container { height: 1000px; } .framer-6uC03 .framer-oq70kj { bottom: 0px; height: unset; right: 0px; width: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7855.5\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"xf27aOaI0\":{\"layout\":[\"fixed\",\"auto\"]},\"ilCPgpUK1\":{\"layout\":[\"fixed\",\"auto\"]},\"Z6y1FBI5u\":{\"layout\":[\"fixed\",\"auto\"]},\"rsmmI6XOa\":{\"layout\":[\"fixed\",\"auto\"]},\"g76lmA3ja\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"WU0aoa7pm\":{\"pattern\":\":WU0aoa7pm\",\"name\":\"hero\"},\"UOk9FntRQ\":{\"pattern\":\":UOk9FntRQ\",\"name\":\"data\"},\"JfY3qQ99S\":{\"pattern\":\":JfY3qQ99S\",\"name\":\"trigger-truck\"},\"vklFYQBjl\":{\"pattern\":\":vklFYQBjl\",\"name\":\"solutions\"},\"en9DPYMYC\":{\"pattern\":\":en9DPYMYC\",\"name\":\"for-drivers\"},\"MkPNiBkc3\":{\"pattern\":\":MkPNiBkc3\",\"name\":\"2-enterprise\"},\"xI8eHmFFt\":{\"pattern\":\":xI8eHmFFt\",\"name\":\"3-small-business\"},\"Jm8BBXxHh\":{\"pattern\":\":Jm8BBXxHh\",\"name\":\"tms-header\"},\"mDKtvSHLR\":{\"pattern\":\":mDKtvSHLR\",\"name\":\"4-for-brokers\"},\"WO_CYq1M0\":{\"pattern\":\":WO_CYq1M0\",\"name\":\"3pl\"},\"H82kSLpnb\":{\"pattern\":\":H82kSLpnb\",\"name\":\"news\"},\"zziYYfZJy\":{\"pattern\":\":zziYYfZJy\",\"name\":\"testimonial\"},\"HuFDIhcTV\":{\"pattern\":\":HuFDIhcTV\",\"name\":\"call-to-action\"},\"qJRyITRr0\":{\"pattern\":\":qJRyITRr0\",\"name\":\"footer\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-6uC03\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7855.5,width:1920};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLCz7V15vFP-KUEg.woff2\",weight:\"700\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiByp8kv8JHgFVrLEj6V15vFP-KUEg.woff2\",weight:\"600\"}]},...ButtonFonts,...GetDemoFormsFonts,...VideoFonts,...TopNavigationBarFonts,...GlobeFonts,...MetricsFonts,...BadgeNormalFonts,...CarouselVertical3ItemsImgRightFonts,...CardHomepageStyleFonts,...COMMANDHorizontalFonts,...MainBlogWrapFonts,...TestimonialSimpleFonts,...CarouselFonts,...HomePageStyleFonts,...SectionFooterFonts,...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\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xf27aOaI0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ilCPgpUK1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z6y1FBI5u\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rsmmI6XOa\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"g76lmA3ja\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1920\",\"framerComponentViewportWidth\":\"true\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"7855.5\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"WU0aoa7pm\\\":{\\\"pattern\\\":\\\":WU0aoa7pm\\\",\\\"name\\\":\\\"hero\\\"},\\\"UOk9FntRQ\\\":{\\\"pattern\\\":\\\":UOk9FntRQ\\\",\\\"name\\\":\\\"data\\\"},\\\"JfY3qQ99S\\\":{\\\"pattern\\\":\\\":JfY3qQ99S\\\",\\\"name\\\":\\\"trigger-truck\\\"},\\\"vklFYQBjl\\\":{\\\"pattern\\\":\\\":vklFYQBjl\\\",\\\"name\\\":\\\"solutions\\\"},\\\"en9DPYMYC\\\":{\\\"pattern\\\":\\\":en9DPYMYC\\\",\\\"name\\\":\\\"for-drivers\\\"},\\\"MkPNiBkc3\\\":{\\\"pattern\\\":\\\":MkPNiBkc3\\\",\\\"name\\\":\\\"2-enterprise\\\"},\\\"xI8eHmFFt\\\":{\\\"pattern\\\":\\\":xI8eHmFFt\\\",\\\"name\\\":\\\"3-small-business\\\"},\\\"Jm8BBXxHh\\\":{\\\"pattern\\\":\\\":Jm8BBXxHh\\\",\\\"name\\\":\\\"tms-header\\\"},\\\"mDKtvSHLR\\\":{\\\"pattern\\\":\\\":mDKtvSHLR\\\",\\\"name\\\":\\\"4-for-brokers\\\"},\\\"WO_CYq1M0\\\":{\\\"pattern\\\":\\\":WO_CYq1M0\\\",\\\"name\\\":\\\"3pl\\\"},\\\"H82kSLpnb\\\":{\\\"pattern\\\":\\\":H82kSLpnb\\\",\\\"name\\\":\\\"news\\\"},\\\"zziYYfZJy\\\":{\\\"pattern\\\":\\\":zziYYfZJy\\\",\\\"name\\\":\\\"testimonial\\\"},\\\"HuFDIhcTV\\\":{\\\"pattern\\\":\\\":HuFDIhcTV\\\",\\\"name\\\":\\\"call-to-action\\\"},\\\"qJRyITRr0\\\":{\\\"pattern\\\":\\\":qJRyITRr0\\\",\\\"name\\\":\\\"footer\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["clamp", "e", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "Z", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "pointerEvents", "cursor", "buttonStyle", "baseButtonStyles", "setAriaVisible", "element", "useScrollLimits", "container", "axis", "scrollInfo", "updateCurrentScroll", "targetScroll", "checkLimits", "measureItems", "ue", "stopScroll", "scroll", "info", "stopResize", "resize", "Carousel", "slots", "gap", "align", "sizingObject", "fadeObject", "arrowObject", "snapObject", "progressObject", "ariaLabel", "borderRadius", "effectsObject", "props", "filteredSlots", "numItems", "j", "isCanvas", "RenderTarget", "padding", "usePadding", "axisLabel", "fadeContent", "fadeWidth", "fadeInset", "fadeTransition", "fadeAlpha", "snap", "snapEdge", "fluid", "widthType", "widthInset", "widthColumns", "heightType", "heightInset", "heightRows", "showScrollbar", "showProgressDots", "dotSize", "dotsInset", "dotsRadius", "dotsPadding", "dotsGap", "dotsFill", "dotsBackground", "dotsActiveOpacity", "dotsOpacity", "dotsBlur", "showMouseControls", "arrowSize", "arrowRadius", "arrowFill", "leftArrow", "rightArrow", "arrowPadding", "currentScroll", "newScroll", "start", "end", "startMaskInset", "endMaskInset", "v", "baseWidth", "startMaskWidth", "endMaskWidth", "direction", "mask", "latest", "carouselRef", "numPages", "setNumPages", "itemStyle", "childStyle", "scrollOverflow", "containerStyle", "baseContainerStyle", "carouselStyle", "baseCarouselStyle", "carouselA11y", "itemA11y", "itemSizes", "te", "targetLength", "containerLength", "scrollLength", "current", "i", "newNumPages", "isReducedMotion", "useReducedMotion", "goto", "scrollTo", "options", "gotoPage", "page", "adjustment", "totalLen", "gotoDelta", "delta", "pageLength", "currentPage", "clamp", "p", "Placeholder", "dots", "dotsBlurStyle", "isSelected", "Dot", "dotStyle", "u", "motion", "child", "index", "q", "controlsStyles", "dotsContainerStyle", "MouseStyles", "addPropertyControls", "ControlType", "paddingControl", "selectedOpacity", "unselectedOpacity", "total", "opacity", "minScroll", "maxScroll", "inlinePadding", "top", "bottom", "right", "left", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "baseContainerStyle", "baseCarouselStyle", "baseButtonStyles", "controlsStyles", "dotsContainerStyle", "dotStyle", "t", "e", "r", "s", "n", "a", "o", "h", "u", "f", "c", "l", "p", "m", "i", "window", "phenomenon_default", "a", "o", "t", "i", "f", "r", "l", "c", "n", "A", "g", "v", "s", "d", "u", "m", "x", "U", "e", "D", "_", "y", "phenomenon_default", "Globe", "props", "background", "baseColor", "glowColor", "isDraggable", "dragOptions", "speed", "theta", "phi", "dark", "diffuse", "maxSamples", "mapBrightness", "markerSize", "markerArray", "markerColor", "scale", "alignment", "maxWidth", "offset", "offsetX", "offsetY", "stiffness", "damping", "mass", "canvasRef", "pe", "pointerInteracting", "pointerInteractionMovement", "isCanvas", "useIsStaticRenderer", "r", "useSpring", "fadeMask", "ue", "phiValue", "width", "onResize", "window", "baseConvert", "convertRGB", "glowConvert", "markerConvert", "globe", "D", "marker", "state", "p", "flexStyles", "e", "delta", "dp", "dpOffset", "dpDrag", "addPropertyControls", "ControlType", "color", "Color", "AvatarFonts", "getFonts", "tRpAAibDz_default", "ImageCornerFonts", "cvsQUo4OB_default", "AvatarControls", "getPropertyControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "avatar", "background", "content", "height", "id", "name1", "role", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "N9K4qX5Xd", "ulQAH7a6N", "aVnuOEPOK", "e5aDJXWMw", "WVYFcS5nc", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerqjkA5r_NQ", "withCSS", "qjkA5r_NQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "image", "link", "textContent", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "QlMwPdRcd", "vufNqw2Cy", "zxEpaSoRD", "vipO_1Q35", "sIxxEGYpm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerwGkQjXuJG", "withCSS", "wGkQjXuJG_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "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", "SVG", "css", "FramerBCHxjJJcf", "withCSS", "BCHxjJJcf_default", "addPropertyControls", "ControlType", "addFonts", "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", "SVG", "css", "Framero_g9FqfwV", "withCSS", "o_g9FqfwV_default", "addPropertyControls", "ControlType", "addFonts", "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", "SVG", "css", "FrameruAwW3wUbq", "withCSS", "uAwW3wUbq_default", "addPropertyControls", "ControlType", "addFonts", "ImageWithFX", "withFX", "Image2", "IconCOMMANDMapFonts", "getFonts", "o_g9FqfwV_default", "ProgressBarFonts", "iffgM2Fdq_default", "IconCOMMANDLoadFonts", "uAwW3wUbq_default", "IconMenuFonts", "BCHxjJJcf_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "animation1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "tab1", "tab1Describtion", "tab1ImgPhone", "tab2", "tab2Describtion", "tab2ImgPhone", "tab3", "tab3Describtion", "tab3ImgPhone", "tab4", "tab4Describtion", "tab4ImgPhone", "tab5", "tab5Describtion", "tab5ImgPhone", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "c2e5yWPKB", "SolZtlCxF", "ILNyEl4Z1", "rKtqyBR96", "wdx0q76K_", "sLbbSTL5l", "I2HJgJCRc", "ZN35oYGyW", "lxmLuUyrv", "kHd3PSlSX", "FINXt1v0h", "D9m3e1F_F", "VC7Qb0t21", "ClFQj3ido", "fNTgJJkKm", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1cqn4h9", "args", "onAppear1iqmay7", "onAppear1r1g6ay", "onAppear1vt7u8c", "onAppear1wqlqaa", "onTapo2js37", "onTap1yx9ldy", "onTap1nu9eck", "onTapz6de2u", "onTap1pp3mr1", "onTappb5mek", "onTap1368w08", "onTap18ayx5", "onTaprtw7yi", "onTap1utx3is", "useOnVariantChange", "sharedStyleClassNames", "isDisplayed", "scopingClassNames", "cx", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "SVG", "css", "FramerxbmreDUZ8", "withCSS", "xbmreDUZ8_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "BadgeNormalFonts", "getFonts", "sqcnnD9OB_default", "TabItemFonts", "NfS3Exusk_default", "MotionDivWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "motion", "ButtonFonts", "KF7UbbSfc_default", "ImageWithFX", "Image2", "MotionDivWithFX", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "animation1", "transition3", "animation2", "animation3", "toResponsiveImage", "value", "animation4", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "_1Describtion", "_1Icon", "_1Image", "_1Title", "_2Describtion", "_2Icon", "_2Image", "_2Title", "_3Describtion", "_3Icon", "_3Image", "_3Title", "gap", "height", "id", "subtitle", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "WNfbqKU5M", "L_iPAaI37", "JEXJeqc7J", "EVviO36ke", "aI70D75oH", "gE9PZnwlL", "dW4623YlD", "GGzPxg2qS", "y8FPN2HJE", "wqlOkCBPf", "bmM49d4SI", "UoP3klZtW", "kRf_Nyhvw", "Jn2fBLeSS", "v8SERHiV4", "t1Q_rPmE1", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onAppear1is6hy0", "args", "onAppear2lr1ej", "onAppearput0ps", "onAppearh71bxi", "onAppear3uf57a", "RDmGAwKxPguu4z9", "RDmGAwKxP1t7amab", "RDmGAwKxP1oibhe", "RDmGAwKxP1815mde", "RDmGAwKxPc4ux2s", "RDmGAwKxP1svgcnr", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "isDisplayed6", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLoadingLazyAtYPosition", "css", "FramerZKgSHIfat", "withCSS", "ZKgSHIfat_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "RichTextWithFX", "withFX", "RichText2", "ButtonFonts", "getFonts", "KF7UbbSfc_default", "GetDemoFormsFonts", "fwwfTO2lF_default", "MotionDivWithFX", "motion", "VideoFonts", "Video", "TopNavigationBarFonts", "sltkc74h7_default", "TopNavigationBarWithVariantAppearEffect", "withVariantAppearEffect", "GlobeFonts", "Globe", "MetricsFonts", "ufsrhqAPf_default", "ContainerWithFX", "Container", "BadgeNormalFonts", "sqcnnD9OB_default", "CarouselVertical3ItemsImgRightFonts", "ZKgSHIfat_default", "CardHomepageStyleFonts", "KhqzZjiNb_default", "COMMANDHorizontalFonts", "xbmreDUZ8_default", "MainBlogWrapFonts", "wGkQjXuJG_default", "TestimonialSimpleFonts", "qjkA5r_NQ_default", "CarouselFonts", "Carousel", "HomePageStyleFonts", "LpjyIZj0_default", "SectionFooterFonts", "lS9TvqxVt_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "animation1", "transition2", "animation2", "transition3", "animation3", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation4", "animation5", "animation6", "transition4", "animation7", "animation8", "transition5", "animation9", "transition6", "animation10", "transition7", "animation11", "transition8", "animation12", "animation13", "transition9", "transition10", "animation14", "animation15", "animation16", "transition11", "animation17", "transition12", "transformTemplate2", "animation18", "transition13", "animation19", "addImageAlt", "image", "alt", "transition14", "animation20", "animation21", "transition15", "animation22", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "data", "useQueryData", "HTMLStyle", "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", "zoDgtzo_Xryx0o5v_X", "SH1CWIwZYryx0o5v_X", "AZ0LZUg6lryx0o5v_X", "UY3M_LOh8ryx0o5v_X", "PrtYd7Cnxryx0o5v_X", "idryx0o5v_X", "SH1CWIwZYJFORGoI9I", "zoDgtzo_XlFqxW2YyM", "SH1CWIwZYlFqxW2YyM", "AZ0LZUg6llFqxW2YyM", "UY3M_LOh8lFqxW2YyM", "PrtYd7CnxlFqxW2YyM", "idlFqxW2YyM", "zoDgtzo_XIvJg1rSK3", "SH1CWIwZYIvJg1rSK3", "AZ0LZUg6lIvJg1rSK3", "UY3M_LOh8IvJg1rSK3", "PrtYd7CnxIvJg1rSK3", "idIvJg1rSK3", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "xqgHFj_DV3bnx0g", "overlay", "loadMore", "args", "evN6TmSwJ1wnntms", "RG4uc4vsi3bnx0g", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "isDisplayed", "ref2", "ref3", "ref4", "ref5", "ref6", "ref7", "ref8", "ref9", "ref10", "elementId1", "elementId2", "elementId3", "ref11", "elementId4", "elementId5", "elementId6", "elementId7", "ref12", "elementId8", "elementId9", "elementId10", "ref13", "isDisplayed1", "elementId11", "ref14", "isDisplayed2", "isDisplayed3", "isDisplayed4", "elementId12", "ref15", "elementId13", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "x", "l", "ComponentViewportProvider", "AnimatePresence", "Ga", "overlay1", "SVG", "getLoadingLazyAtYPosition", "Image2", "Link", "ChildrenCanSuspend", "wi5ius45d_default", "collection", "paginationInfo", "index", "PathVariablesContext", "enumToDisplayNameFunctions", "collection1", "paginationInfo1", "loadMore1", "index1", "collection2", "paginationInfo2", "loadMore2", "index2", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
