{
  "version": 3,
  "sources": ["ssg:https://ga.jspm.io/npm:@motionone/utils@10.12.0/dist/index.es.js", "ssg:https://framerusercontent.com/modules/UIrMjSS6ZX89L0CsT8k6/ML2P8tpN3NMgUZoox0ho/Carousel.js", "ssg:https://framerusercontent.com/modules/SX3VmZcbqqFv97tq0R9a/As47viIvir9TO44DsUuO/pl7ATvQos.js", "ssg:https://framerusercontent.com/modules/yKqfjbZFgDqopJfHqoNT/RGsieEm4q0gOEauJDY7p/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/5lGMeUhwl8GUuaDhRmNX/xbmreDUZ8.js", "ssg:https://framerusercontent.com/modules/yuRc0OmpcLfFHFRqQQj5/Q96EsNG3hicycahHzes8/ZKgSHIfat.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(()=>{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=0)=>{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:[isMouseDevice&&/*#__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\"})}),isMouseDevice&&/*#__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\":{\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Carousel.map", "// Generated by Framer (0c5492c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/a4Ko2ynfy39ip44e7iuJ/8dAkkz76T3YLgAMdvGq1/dvxIS3aly.js\";const PhosphorFonts=getFonts(Phosphor);const enabledGestures={zNScdWUBs:{hover:true}};const cycleOrder=[\"zNScdWUBs\",\"qhNpyzRI4\"];const serializationHash=\"framer-78UPW\";const variantClassNames={qhNpyzRI4:\"framer-v-ycw9w8\",zNScdWUBs:\"framer-v-1eqjpp5\"};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 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 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={\"Variant 1\":\"zNScdWUBs\",Phone:\"qhNpyzRI4\"};const getProps=({height,id,image,link,title,width,...props})=>{return{...props,LkjDVDR39:image??props.LkjDVDR39??{alt:\"\",pixelHeight:820,pixelWidth:564,src:\"https://framerusercontent.com/images/IVVlTJtDo4CrQ54EyBdgEzOpkbQ.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/IVVlTJtDo4CrQ54EyBdgEzOpkbQ.png 564w\"},NwAUuCsmG:link??props.NwAUuCsmG,variant:humanReadableVariantMap[props.variant]??props.variant??\"zNScdWUBs\",y4vW236JD:title??props.y4vW236JD??\"For Truck Drivers\"};};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,LkjDVDR39,y4vW236JD,NwAUuCsmG,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"zNScdWUBs\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.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__*/_jsx(Link,{href:NwAUuCsmG,motionChild:true,nodeId:\"zNScdWUBs\",openInNewTab:false,scopeId:\"pl7ATvQos\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-1eqjpp5\",className,classNames)} framer-n94ytj`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"zNScdWUBs\",ref:refBinding,style:{backgroundColor:\"var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255))\",...style},...addPropertyOverrides({\"zNScdWUBs-hover\":{\"data-framer-name\":undefined},qhNpyzRI4:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:componentViewport?.width||\"100vw\",...toResponsiveImage(LkjDVDR39)},className:\"framer-18thi22\",\"data-framer-name\":\"Img\",layoutDependency:layoutDependency,layoutId:\"N7llGf0pY\",style:{scale:1},variants:{\"zNScdWUBs-hover\":{scale:1.05}},...addPropertyOverrides({qhNpyzRI4:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:`calc(${componentViewport?.width||\"100vw\"} + 25px)`,...toResponsiveImage(LkjDVDR39)}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bz8jkw\",layoutDependency:layoutDependency,layoutId:\"lRf6hedlR\",transformTemplate:transformTemplate1,...addPropertyOverrides({qhNpyzRI4:{transformTemplate:undefined}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.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\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"For Truck Drivers\"})}),className:\"framer-4nww38\",\"data-framer-name\":\"Truck Navigation and GPS\",fonts:[\"GF;Poppins-600\"],layoutDependency:layoutDependency,layoutId:\"snXcczHNo\",style:{\"--extracted-1of0zx5\":\"rgb(255, 255, 255)\",\"--framer-paragraph-spacing\":\"0px\"},text:y4vW236JD,verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({qhNpyzRI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{style:{\"--font-selector\":\"R0Y7UG9wcGlucy02MDA=\",\"--framer-font-family\":'\"Poppins\", \"Poppins Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-1of0zx5, rgb(255, 255, 255))\"},children:\"For Truck Drivers\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k394hd\",layoutDependency:layoutDependency,layoutId:\"Cps0v3UJO\",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-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7)))\"},children:\"Learn more\"})}),className:\"framer-1wyeysq\",\"data-framer-name\":\"Truck Navigation and GPS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y_EuGsFuG\",style:{\"--extracted-r6o4lv\":\"var(--token-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({qhNpyzRI4:{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\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7)))\"},children:\"Learn more\"})}),fonts:[\"GF;Poppins-regular\"]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-xpnm63-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"RrE5EQN_W-container\",nodeId:\"RrE5EQN_W\",rendersWithMotion:true,scopeId:\"pl7ATvQos\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7))\",height:\"100%\",iconSearch:\"caret-right\",iconSelection:\"House\",id:\"RrE5EQN_W\",layoutId:\"RrE5EQN_W\",mirrored:false,selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-78UPW.framer-n94ytj, .framer-78UPW .framer-n94ytj { display: block; }\",\".framer-78UPW.framer-1eqjpp5 { cursor: pointer; height: 410px; overflow: hidden; position: relative; text-decoration: none; width: 282px; }\",\".framer-78UPW .framer-18thi22 { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-78UPW .framer-bz8jkw { align-content: flex-start; align-items: flex-start; bottom: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; width: min-content; }\",\".framer-78UPW .framer-4nww38 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 240px; word-break: break-word; word-wrap: break-word; }\",\".framer-78UPW .framer-k394hd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 1px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-78UPW .framer-1wyeysq { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-78UPW .framer-xpnm63-container { flex: none; height: 16px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-78UPW .framer-bz8jkw, .framer-78UPW .framer-k394hd { gap: 0px; } .framer-78UPW .framer-bz8jkw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-78UPW .framer-bz8jkw > :first-child { margin-top: 0px; } .framer-78UPW .framer-bz8jkw > :last-child { margin-bottom: 0px; } .framer-78UPW .framer-k394hd > * { margin: 0px; margin-left: calc(1px / 2); margin-right: calc(1px / 2); } .framer-78UPW .framer-k394hd > :first-child { margin-left: 0px; } .framer-78UPW .framer-k394hd > :last-child { margin-right: 0px; } }\",\".framer-78UPW.framer-v-ycw9w8.framer-1eqjpp5 { align-content: center; align-items: center; aspect-ratio: 0.6882591093117408 / 1; cursor: unset; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: var(--framer-aspect-ratio-supported, 247px); justify-content: flex-end; padding: 0px 10px 10px 10px; width: 170px; }\",\".framer-78UPW.framer-v-ycw9w8 .framer-18thi22 { aspect-ratio: 0.6862348178137652 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 284px); right: -25px; z-index: 0; }\",\".framer-78UPW.framer-v-ycw9w8 .framer-bz8jkw { bottom: unset; gap: 1px; left: unset; position: relative; width: 100%; }\",\".framer-78UPW.framer-v-ycw9w8 .framer-4nww38 { width: 100%; }\",\".framer-78UPW.framer-v-ycw9w8 .framer-k394hd { justify-content: flex-start; width: 100%; }\",\".framer-78UPW.framer-v-ycw9w8 .framer-xpnm63-container { height: 14px; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-78UPW.framer-v-ycw9w8.framer-1eqjpp5, .framer-78UPW.framer-v-ycw9w8 .framer-bz8jkw { gap: 0px; } .framer-78UPW.framer-v-ycw9w8.framer-1eqjpp5 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-78UPW.framer-v-ycw9w8.framer-1eqjpp5 > :first-child, .framer-78UPW.framer-v-ycw9w8 .framer-bz8jkw > :first-child { margin-top: 0px; } .framer-78UPW.framer-v-ycw9w8.framer-1eqjpp5 > :last-child, .framer-78UPW.framer-v-ycw9w8 .framer-bz8jkw > :last-child { margin-bottom: 0px; } .framer-78UPW.framer-v-ycw9w8 .framer-bz8jkw > * { margin: 0px; margin-bottom: calc(1px / 2); margin-top: calc(1px / 2); } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 410\n * @framerIntrinsicWidth 282\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"qhNpyzRI4\":{\"layout\":[\"fixed\",\"fixed\"]},\"TdfHfZbXG\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"LkjDVDR39\":\"image\",\"y4vW236JD\":\"title\",\"NwAUuCsmG\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerpl7ATvQos=withCSS(Component,css,\"framer-78UPW\");export default Framerpl7ATvQos;Framerpl7ATvQos.displayName=\"Solutions Card Img\";Framerpl7ATvQos.defaultProps={height:410,width:282};addPropertyControls(Framerpl7ATvQos,{variant:{options:[\"zNScdWUBs\",\"qhNpyzRI4\"],optionTitles:[\"Variant 1\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},LkjDVDR39:{__defaultAssetReference:\"data:framer/asset-reference,IVVlTJtDo4CrQ54EyBdgEzOpkbQ.png?originalFilename=image.png&preferredSize=auto\",__vekterDefault:{alt:\"\",assetReference:\"data:framer/asset-reference,IVVlTJtDo4CrQ54EyBdgEzOpkbQ.png?originalFilename=image.png&preferredSize=auto\"},title:\"Image\",type:ControlType.ResponsiveImage},y4vW236JD:{defaultValue:\"For Truck Drivers\",displayTextArea:false,title:\"Title\",type:ControlType.String},NwAUuCsmG:{title:\"Link\",type:ControlType.Link}});addFonts(Framerpl7ATvQos,[{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\"},{family:\"Poppins\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/poppins/v22/pxiEyp8kv8JHgFVrFJXUc1NECPY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerpl7ATvQos\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"410\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"LkjDVDR39\\\":\\\"image\\\",\\\"y4vW236JD\\\":\\\"title\\\",\\\"NwAUuCsmG\\\":\\\"link\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"282\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qhNpyzRI4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"TdfHfZbXG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pl7ATvQos.map", "// Generated by Framer (b0cf16c)\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-9N0KY\";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.2) 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-9N0KY.framer-tulio1, .framer-9N0KY .framer-tulio1 { display: block; }\",\".framer-9N0KY.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-9N0KY .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-9N0KY .framer-1ed9svi { cursor: pointer; flex: 1 0 0px; height: 100%; overflow: visible; position: relative; text-decoration: none; width: 1px; }\",\".framer-9N0KY .framer-1ty43t0 { bottom: 0px; flex: none; left: 0px; position: absolute; right: -1px; top: 0px; z-index: 1; }\",\".framer-9N0KY .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-9N0KY .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-9N0KY .framer-15lt05a { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-9N0KY .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-9N0KY .framer-9fv36o, .framer-9N0KY .framer-832qxj, .framer-9N0KY .framer-kkbwz { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-9N0KY .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-9N0KY.framer-10kna1, .framer-9N0KY .framer-e1y1qh, .framer-9N0KY .framer-wl9p1z, .framer-9N0KY .framer-1i6lhxo, .framer-9N0KY .framer-cy6w7b { gap: 0px; } .framer-9N0KY.framer-10kna1 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-9N0KY.framer-10kna1 > :first-child, .framer-9N0KY .framer-wl9p1z > :first-child { margin-top: 0px; } .framer-9N0KY.framer-10kna1 > :last-child, .framer-9N0KY .framer-wl9p1z > :last-child { margin-bottom: 0px; } .framer-9N0KY .framer-e1y1qh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-9N0KY .framer-e1y1qh > :first-child, .framer-9N0KY .framer-1i6lhxo > :first-child, .framer-9N0KY .framer-cy6w7b > :first-child { margin-left: 0px; } .framer-9N0KY .framer-e1y1qh > :last-child, .framer-9N0KY .framer-1i6lhxo > :last-child, .framer-9N0KY .framer-cy6w7b > :last-child { margin-right: 0px; } .framer-9N0KY .framer-wl9p1z > * { margin: 0px; margin-bottom: calc(9px / 2); margin-top: calc(9px / 2); } .framer-9N0KY .framer-1i6lhxo > *, .framer-9N0KY .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 * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerwGkQjXuJG=withCSS(Component,css,\"framer-9N0KY\");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\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wRF3gLL06\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"QlMwPdRcd\\\":\\\"link\\\",\\\"vufNqw2Cy\\\":\\\"image\\\",\\\"zxEpaSoRD\\\":\\\"title\\\",\\\"vipO_1Q35\\\":\\\"textContent\\\",\\\"sIxxEGYpm\\\":\\\"date\\\"}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"378\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"250\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\"}},\"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 (7d51cf8)\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-trnUg\";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??{pixelHeight:600,pixelWidth:1024,src:\"https://framerusercontent.com/images/t37eICvJnIJ0zakhtx5fvrR7Q.png\",srcSet:\"https://framerusercontent.com/images/t37eICvJnIJ0zakhtx5fvrR7Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/t37eICvJnIJ0zakhtx5fvrR7Q.png 1024w\"},D9m3e1F_F:tab2ImgPhone??props.D9m3e1F_F??{pixelHeight:600,pixelWidth:1024,src:\"https://framerusercontent.com/images/vTtI8I9lH8oIZpBaEdED5yRlXNE.png\",srcSet:\"https://framerusercontent.com/images/vTtI8I9lH8oIZpBaEdED5yRlXNE.png?scale-down-to=512 512w,https://framerusercontent.com/images/vTtI8I9lH8oIZpBaEdED5yRlXNE.png 1024w\"},FINXt1v0h:tab1ImgPhone??props.FINXt1v0h??{pixelHeight:600,pixelWidth:1024,src:\"https://framerusercontent.com/images/aLg4IURH4y4aobCQOObR8NIvfBg.png\",srcSet:\"https://framerusercontent.com/images/aLg4IURH4y4aobCQOObR8NIvfBg.png?scale-down-to=512 512w,https://framerusercontent.com/images/aLg4IURH4y4aobCQOObR8NIvfBg.png 1024w\"},fNTgJJkKm:tab5ImgPhone??props.fNTgJJkKm??{pixelHeight:600,pixelWidth:1024,src:\"https://framerusercontent.com/images/ZYLLkyn2pck6L2mHBEfNVcvoMg.png\",srcSet:\"https://framerusercontent.com/images/ZYLLkyn2pck6L2mHBEfNVcvoMg.png?scale-down-to=512 512w,https://framerusercontent.com/images/ZYLLkyn2pck6L2mHBEfNVcvoMg.png 1024w\"},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??{pixelHeight:600,pixelWidth:1024,src:\"https://framerusercontent.com/images/wsOo3pExgS7BHYONfVkvry0Rzfc.png\",srcSet:\"https://framerusercontent.com/images/wsOo3pExgS7BHYONfVkvry0Rzfc.png?scale-down-to=512 512w,https://framerusercontent.com/images/wsOo3pExgS7BHYONfVkvry0Rzfc.png 1024w\"},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||593)-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||408)-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||408)-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||388)-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||428)-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||428)-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||593)-0-593)/2+0+0)+83.5),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:1074,pixelWidth:2040,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png\",srcSet:\"https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png?scale-down-to=512 512w,https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png 2040w\"},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||593)-0-593)/2+0+0)+0),pixelHeight:1074,pixelWidth:2040,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png\",srcSet:\"https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png?scale-down-to=512 512w,https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/kVIYM69Gl732QGkIFNxynjxkRg.png 2040w\"}}},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:1074,pixelWidth:2040,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png\",srcSet:\"https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png 2040w\"},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||593)-0-593)/2+0+0)+0),pixelHeight:1074,pixelWidth:2040,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png\",srcSet:\"https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png?scale-down-to=512 512w,https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/VdZ3Om1NULQx1FYlTvg7ba7w.png 2040w\"}}},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:1074,pixelWidth:2040,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png\",srcSet:\"https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png 2040w\"},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||593)-0-593)/2+0+0)+0),pixelHeight:1074,pixelWidth:2040,positionX:\"center\",positionY:\"top\",sizes:\"849.6835px\",src:\"https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png\",srcSet:\"https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png?scale-down-to=512 512w,https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/wjLv3EPpGkd5JtfxqmTaXPZSs6s.png 2040w\"}}},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||593)-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||593)-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||593)-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||593)-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||593)-0-593)/2+0+0)+467-341),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||593)-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/OLZdDDA2JkSJcaM0I1FLNjuabY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OLZdDDA2JkSJcaM0I1FLNjuabY.png?scale-down-to=512 512w,https://framerusercontent.com/images/OLZdDDA2JkSJcaM0I1FLNjuabY.png 713w\"},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||593)-0-593)/2+0+0)+467-211),pixelHeight:431,pixelWidth:713,sizes:\"357.3271px\",src:\"https://framerusercontent.com/images/OLZdDDA2JkSJcaM0I1FLNjuabY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/OLZdDDA2JkSJcaM0I1FLNjuabY.png?scale-down-to=512 512w,https://framerusercontent.com/images/OLZdDDA2JkSJcaM0I1FLNjuabY.png 713w\"}}},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||593)-0-593)/2+467+33)+0+0+0+0+0+0+1+0,...addPropertyOverrides({DoO8QviB5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||408)-0-448)/2+246+33)+0+0+0+0+16+0+0+1+0},hBb33m1Mr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||408)-0-448)/2+246+33)+0+0+0+0+16+0+0+1+0},k4qlHjqqV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-448)/2+246+33)+0+0+0+0+16+0+0+1+0},tmp2a_w0R:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||428)-0-448)/2+246+33)+0+0+0+0+16+0+0+1+0},yNbZTGTPc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||428)-0-448)/2+246+33)+0+0+0+0+16+0+0+1+0}},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||593)-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,width:\"22px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||593)-0-593)/2+467+33)+0+0+0+0+0+0+1,...addPropertyOverrides({DoO8QviB5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||408)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},hBb33m1Mr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||408)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},k4qlHjqqV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},tmp2a_w0R:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||428)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},yNbZTGTPc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||428)-0-448)/2+246+33)+0+0+0+0+16+0+0+1}},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||593)-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||593)-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||593)-0-593)/2+467+33)+0+0+0+0+0+0+1,...addPropertyOverrides({DoO8QviB5:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||408)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},hBb33m1Mr:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||408)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},k4qlHjqqV:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||388)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},tmp2a_w0R:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||428)-0-448)/2+246+33)+0+0+0+0+16+0+0+1},yNbZTGTPc:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||428)-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||593)-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||593)-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-trnUg.framer-eb1nop, .framer-trnUg .framer-eb1nop { display: block; }\",\".framer-trnUg.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-trnUg .framer-lur6uo { flex: none; height: 467px; overflow: visible; position: relative; width: 1000px; }\",\".framer-trnUg .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-trnUg .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-trnUg .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-trnUg .framer-14mmygr, .framer-trnUg .framer-1k3tuw8, .framer-trnUg .framer-4xl4zh, .framer-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .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-trnUg .framer-fdnoht, .framer-trnUg .framer-1f2eeru, .framer-trnUg .framer-1bb5y3x, .framer-trnUg .framer-r5t49g, .framer-trnUg .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-trnUg .framer-fqe3cy, .framer-trnUg .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-trnUg .framer-e4u88n-container { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 22px; }\",\".framer-trnUg .framer-1s362so, .framer-trnUg .framer-bajozl, .framer-trnUg .framer-1ounehn, .framer-trnUg .framer-vhqdb3, .framer-trnUg .framer-1uge0a2 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-trnUg .framer-rt4knv-container, .framer-trnUg .framer-1tk4e0y-container, .framer-trnUg .framer-1awf26f-container, .framer-trnUg .framer-1oej2hu-container, .framer-trnUg .framer-1vdsu2t-container { bottom: -1px; flex: none; height: 3px; left: 0px; position: absolute; right: 0px; z-index: 1; }\",\".framer-trnUg .framer-1g5m7nx, .framer-trnUg .framer-1ff98ev, .framer-trnUg .framer-4myufo, .framer-trnUg .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-trnUg .framer-jgqm4-container, .framer-trnUg .framer-o9udwf-container { flex: none; height: 22px; position: relative; width: 22px; }\",\".framer-trnUg .framer-1rzpuoj { flex: none; height: 22px; position: relative; width: 23px; }\",\".framer-trnUg .framer-12twkes { flex: none; height: 20px; position: relative; width: 21px; }\",\".framer-trnUg .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-trnUg .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-trnUg.framer-s7w7pm, .framer-trnUg .framer-1okfsj2, .framer-trnUg .framer-1t1feh9, .framer-trnUg .framer-17x67z1, .framer-trnUg .framer-1qsysao, .framer-trnUg .framer-fdnoht, .framer-trnUg .framer-fqe3cy, .framer-trnUg .framer-1g5m7nx, .framer-trnUg .framer-1f2eeru, .framer-trnUg .framer-1ff98ev, .framer-trnUg .framer-1bb5y3x, .framer-trnUg .framer-4myufo, .framer-trnUg .framer-r5t49g, .framer-trnUg .framer-zarsmh, .framer-trnUg .framer-vn4213, .framer-trnUg .framer-f7g3nx { gap: 0px; } .framer-trnUg.framer-s7w7pm > * { margin: 0px; margin-bottom: calc(33px / 2); margin-top: calc(33px / 2); } .framer-trnUg.framer-s7w7pm > :first-child, .framer-trnUg .framer-1okfsj2 > :first-child, .framer-trnUg .framer-1qsysao > :first-child, .framer-trnUg .framer-1g5m7nx > :first-child, .framer-trnUg .framer-1ff98ev > :first-child, .framer-trnUg .framer-4myufo > :first-child, .framer-trnUg .framer-zarsmh > :first-child { margin-top: 0px; } .framer-trnUg.framer-s7w7pm > :last-child, .framer-trnUg .framer-1okfsj2 > :last-child, .framer-trnUg .framer-1qsysao > :last-child, .framer-trnUg .framer-1g5m7nx > :last-child, .framer-trnUg .framer-1ff98ev > :last-child, .framer-trnUg .framer-4myufo > :last-child, .framer-trnUg .framer-zarsmh > :last-child { margin-bottom: 0px; } .framer-trnUg .framer-1okfsj2 > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-trnUg .framer-1t1feh9 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-trnUg .framer-1t1feh9 > :first-child, .framer-trnUg .framer-17x67z1 > :first-child, .framer-trnUg .framer-fdnoht > :first-child, .framer-trnUg .framer-fqe3cy > :first-child, .framer-trnUg .framer-1f2eeru > :first-child, .framer-trnUg .framer-1bb5y3x > :first-child, .framer-trnUg .framer-r5t49g > :first-child, .framer-trnUg .framer-vn4213 > :first-child, .framer-trnUg .framer-f7g3nx > :first-child { margin-left: 0px; } .framer-trnUg .framer-1t1feh9 > :last-child, .framer-trnUg .framer-17x67z1 > :last-child, .framer-trnUg .framer-fdnoht > :last-child, .framer-trnUg .framer-fqe3cy > :last-child, .framer-trnUg .framer-1f2eeru > :last-child, .framer-trnUg .framer-1bb5y3x > :last-child, .framer-trnUg .framer-r5t49g > :last-child, .framer-trnUg .framer-vn4213 > :last-child, .framer-trnUg .framer-f7g3nx > :last-child { margin-right: 0px; } .framer-trnUg .framer-17x67z1 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-trnUg .framer-1qsysao > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-trnUg .framer-fdnoht > *, .framer-trnUg .framer-1f2eeru > *, .framer-trnUg .framer-1bb5y3x > *, .framer-trnUg .framer-r5t49g > *, .framer-trnUg .framer-vn4213 > * { margin: 0px; margin-left: calc(6px / 2); margin-right: calc(6px / 2); } .framer-trnUg .framer-fqe3cy > *, .framer-trnUg .framer-f7g3nx > * { margin: 0px; margin-left: calc(9.166667938232422px / 2); margin-right: calc(9.166667938232422px / 2); } .framer-trnUg .framer-1g5m7nx > *, .framer-trnUg .framer-1ff98ev > *, .framer-trnUg .framer-4myufo > *, .framer-trnUg .framer-zarsmh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-trnUg.framer-v-19ebpa9 .framer-1ddue27 { height: var(--framer-aspect-ratio-supported, 262px); right: 9px; top: 76px; width: 349px; }\",\".framer-trnUg.framer-v-19ebpa9 .framer-1g5m7nx, .framer-trnUg.framer-v-kclj0n .framer-1g5m7nx, .framer-trnUg.framer-v-kclj0n .framer-1ff98ev, .framer-trnUg.framer-v-kclj0n .framer-4myufo, .framer-trnUg.framer-v-kclj0n .framer-zarsmh, .framer-trnUg.framer-v-8zo8a7 .framer-1g5m7nx, .framer-trnUg.framer-v-41gi75 .framer-1ff98ev, .framer-trnUg.framer-v-yqyedi .framer-4myufo, .framer-trnUg.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-trnUg.framer-v-19ebpa9 .framer-1g5m7nx { gap: 0px; } .framer-trnUg.framer-v-19ebpa9 .framer-1g5m7nx > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-trnUg.framer-v-19ebpa9 .framer-1g5m7nx > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-19ebpa9 .framer-1g5m7nx > :last-child { margin-bottom: 0px; } }\",\".framer-trnUg.framer-v-onbul8 .framer-1ygr3kr { bottom: 34px; height: var(--framer-aspect-ratio-supported, 206px); left: 0px; width: 205px; }\",\".framer-trnUg.framer-v-onbul8 .framer-1qsysao, .framer-trnUg.framer-v-ya87x0 .framer-1qsysao, .framer-trnUg.framer-v-1c3dw9x .framer-1qsysao { order: 0; }\",\".framer-trnUg.framer-v-onbul8 .framer-1g5m7nx { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; order: 1; }\",\".framer-trnUg.framer-v-onbul8 .framer-1ff98ev { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; order: 2; }\",\".framer-trnUg.framer-v-onbul8 .framer-4myufo, .framer-trnUg.framer-v-ya87x0 .framer-4myufo { align-content: flex-start; align-items: flex-start; gap: 14px; justify-content: flex-start; order: 3; }\",\".framer-trnUg.framer-v-onbul8 .framer-zarsmh, .framer-trnUg.framer-v-ya87x0 .framer-zarsmh, .framer-trnUg.framer-v-1c3dw9x .framer-zarsmh { order: 4; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-trnUg.framer-v-onbul8 .framer-1g5m7nx, .framer-trnUg.framer-v-onbul8 .framer-1ff98ev, .framer-trnUg.framer-v-onbul8 .framer-4myufo { gap: 0px; } .framer-trnUg.framer-v-onbul8 .framer-1g5m7nx > *, .framer-trnUg.framer-v-onbul8 .framer-1ff98ev > *, .framer-trnUg.framer-v-onbul8 .framer-4myufo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-trnUg.framer-v-onbul8 .framer-1g5m7nx > :first-child, .framer-trnUg.framer-v-onbul8 .framer-1ff98ev > :first-child, .framer-trnUg.framer-v-onbul8 .framer-4myufo > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-onbul8 .framer-1g5m7nx > :last-child, .framer-trnUg.framer-v-onbul8 .framer-1ff98ev > :last-child, .framer-trnUg.framer-v-onbul8 .framer-4myufo > :last-child { margin-bottom: 0px; } }\",\".framer-trnUg.framer-v-ya87x0 .framer-1g5m7nx, .framer-trnUg.framer-v-1c3dw9x .framer-1g5m7nx { order: 1; }\",\".framer-trnUg.framer-v-ya87x0 .framer-1ff98ev, .framer-trnUg.framer-v-1c3dw9x .framer-1ff98ev { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-trnUg.framer-v-ya87x0 .framer-4myufo { gap: 0px; } .framer-trnUg.framer-v-ya87x0 .framer-4myufo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-trnUg.framer-v-ya87x0 .framer-4myufo > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-ya87x0 .framer-4myufo > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-trnUg.framer-v-kclj0n .framer-1g5m7nx, .framer-trnUg.framer-v-kclj0n .framer-1ff98ev, .framer-trnUg.framer-v-kclj0n .framer-4myufo, .framer-trnUg.framer-v-kclj0n .framer-zarsmh { gap: 0px; } .framer-trnUg.framer-v-kclj0n .framer-1g5m7nx > *, .framer-trnUg.framer-v-kclj0n .framer-1ff98ev > *, .framer-trnUg.framer-v-kclj0n .framer-4myufo > *, .framer-trnUg.framer-v-kclj0n .framer-zarsmh > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-trnUg.framer-v-kclj0n .framer-1g5m7nx > :first-child, .framer-trnUg.framer-v-kclj0n .framer-1ff98ev > :first-child, .framer-trnUg.framer-v-kclj0n .framer-4myufo > :first-child, .framer-trnUg.framer-v-kclj0n .framer-zarsmh > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-kclj0n .framer-1g5m7nx > :last-child, .framer-trnUg.framer-v-kclj0n .framer-1ff98ev > :last-child, .framer-trnUg.framer-v-kclj0n .framer-4myufo > :last-child, .framer-trnUg.framer-v-kclj0n .framer-zarsmh > :last-child { margin-bottom: 0px; } }\",\".framer-trnUg.framer-v-1c3dw9x.framer-s7w7pm, .framer-trnUg.framer-v-8zo8a7.framer-s7w7pm, .framer-trnUg.framer-v-41gi75.framer-s7w7pm, .framer-trnUg.framer-v-yqyedi.framer-s7w7pm, .framer-trnUg.framer-v-q5aztg.framer-s7w7pm { width: 390px; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-lur6uo, .framer-trnUg.framer-v-8zo8a7 .framer-lur6uo, .framer-trnUg.framer-v-41gi75 .framer-lur6uo, .framer-trnUg.framer-v-yqyedi .framer-lur6uo, .framer-trnUg.framer-v-q5aztg .framer-lur6uo { aspect-ratio: 1.5853658536585367 / 1; height: var(--framer-aspect-ratio-supported, 246px); width: 100%; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-19y5krg, .framer-trnUg.framer-v-8zo8a7 .framer-19y5krg, .framer-trnUg.framer-v-41gi75 .framer-19y5krg, .framer-trnUg.framer-v-yqyedi .framer-19y5krg { aspect-ratio: unset; bottom: 0px; height: unset; left: 0px; right: 0px; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-1okfsj2, .framer-trnUg.framer-v-8zo8a7 .framer-1okfsj2, .framer-trnUg.framer-v-41gi75 .framer-1okfsj2, .framer-trnUg.framer-v-yqyedi .framer-1okfsj2, .framer-trnUg.framer-v-q5aztg .framer-1okfsj2 { align-self: unset; width: 100%; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-1t1feh9, .framer-trnUg.framer-v-8zo8a7 .framer-1t1feh9, .framer-trnUg.framer-v-yqyedi .framer-1t1feh9, .framer-trnUg.framer-v-q5aztg .framer-1t1feh9 { align-content: flex-start; align-items: flex-start; flex-direction: column; overflow: auto; width: 100%; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-17x67z1, .framer-trnUg.framer-v-yqyedi .framer-17x67z1 { padding: 16px 70px 0px 16px; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-4myufo { order: 3; }\",\".framer-trnUg.framer-v-1c3dw9x .framer-ammk97, .framer-trnUg.framer-v-8zo8a7 .framer-ammk97, .framer-trnUg.framer-v-41gi75 .framer-ammk97, .framer-trnUg.framer-v-yqyedi .framer-ammk97, .framer-trnUg.framer-v-q5aztg .framer-ammk97 { height: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-trnUg.framer-v-1c3dw9x .framer-1t1feh9 { gap: 0px; } .framer-trnUg.framer-v-1c3dw9x .framer-1t1feh9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-trnUg.framer-v-1c3dw9x .framer-1t1feh9 > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-1c3dw9x .framer-1t1feh9 > :last-child { margin-bottom: 0px; } }\",\".framer-trnUg.framer-v-8zo8a7 .framer-17x67z1 { justify-content: center; padding: 16px 70px 0px 16px; }\",\".framer-trnUg.framer-v-8zo8a7 .framer-1qsysao, .framer-trnUg.framer-v-41gi75 .framer-1qsysao, .framer-trnUg.framer-v-yqyedi .framer-1qsysao, .framer-trnUg.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-trnUg.framer-v-8zo8a7 .framer-1t1feh9, .framer-trnUg.framer-v-8zo8a7 .framer-1qsysao, .framer-trnUg.framer-v-8zo8a7 .framer-1g5m7nx { gap: 0px; } .framer-trnUg.framer-v-8zo8a7 .framer-1t1feh9 > *, .framer-trnUg.framer-v-8zo8a7 .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-trnUg.framer-v-8zo8a7 .framer-1t1feh9 > :first-child, .framer-trnUg.framer-v-8zo8a7 .framer-1qsysao > :first-child, .framer-trnUg.framer-v-8zo8a7 .framer-1g5m7nx > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-8zo8a7 .framer-1t1feh9 > :last-child, .framer-trnUg.framer-v-8zo8a7 .framer-1qsysao > :last-child, .framer-trnUg.framer-v-8zo8a7 .framer-1g5m7nx > :last-child { margin-bottom: 0px; } .framer-trnUg.framer-v-8zo8a7 .framer-1g5m7nx > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-trnUg.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-trnUg.framer-v-41gi75 .framer-17x67z1, .framer-trnUg.framer-v-q5aztg .framer-17x67z1 { padding: 16px 70px 0px 16px; width: 1009px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-trnUg.framer-v-41gi75 .framer-1t1feh9, .framer-trnUg.framer-v-41gi75 .framer-1qsysao, .framer-trnUg.framer-v-41gi75 .framer-1ff98ev { gap: 0px; } .framer-trnUg.framer-v-41gi75 .framer-1t1feh9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-trnUg.framer-v-41gi75 .framer-1t1feh9 > :first-child, .framer-trnUg.framer-v-41gi75 .framer-1qsysao > :first-child, .framer-trnUg.framer-v-41gi75 .framer-1ff98ev > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-41gi75 .framer-1t1feh9 > :last-child, .framer-trnUg.framer-v-41gi75 .framer-1qsysao > :last-child, .framer-trnUg.framer-v-41gi75 .framer-1ff98ev > :last-child { margin-bottom: 0px; } .framer-trnUg.framer-v-41gi75 .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-trnUg.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-trnUg.framer-v-yqyedi .framer-1t1feh9, .framer-trnUg.framer-v-yqyedi .framer-1qsysao, .framer-trnUg.framer-v-yqyedi .framer-4myufo { gap: 0px; } .framer-trnUg.framer-v-yqyedi .framer-1t1feh9 > *, .framer-trnUg.framer-v-yqyedi .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-trnUg.framer-v-yqyedi .framer-1t1feh9 > :first-child, .framer-trnUg.framer-v-yqyedi .framer-1qsysao > :first-child, .framer-trnUg.framer-v-yqyedi .framer-4myufo > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-yqyedi .framer-1t1feh9 > :last-child, .framer-trnUg.framer-v-yqyedi .framer-1qsysao > :last-child, .framer-trnUg.framer-v-yqyedi .framer-4myufo > :last-child { margin-bottom: 0px; } .framer-trnUg.framer-v-yqyedi .framer-4myufo > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",\".framer-trnUg.framer-v-q5aztg .framer-19y5krg { bottom: 0px; height: var(--framer-aspect-ratio-supported, 247px); left: 0px; right: 0px; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-trnUg.framer-v-q5aztg .framer-1t1feh9, .framer-trnUg.framer-v-q5aztg .framer-1qsysao, .framer-trnUg.framer-v-q5aztg .framer-zarsmh { gap: 0px; } .framer-trnUg.framer-v-q5aztg .framer-1t1feh9 > *, .framer-trnUg.framer-v-q5aztg .framer-1qsysao > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-trnUg.framer-v-q5aztg .framer-1t1feh9 > :first-child, .framer-trnUg.framer-v-q5aztg .framer-1qsysao > :first-child, .framer-trnUg.framer-v-q5aztg .framer-zarsmh > :first-child { margin-top: 0px; } .framer-trnUg.framer-v-q5aztg .framer-1t1feh9 > :last-child, .framer-trnUg.framer-v-q5aztg .framer-1qsysao > :last-child, .framer-trnUg.framer-v-q5aztg .framer-zarsmh > :last-child { margin-bottom: 0px; } .framer-trnUg.framer-v-q5aztg .framer-zarsmh > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } }\",...sharedStyle.css,'.framer-trnUg[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-trnUg [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-trnUg[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-trnUg [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-trnUg[data-hide-scrollbars=\"true\"], .framer-trnUg [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }','.framer-trnUg[data-border=\"true\"]::after, .framer-trnUg [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 * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerxbmreDUZ8=withCSS(Component,css,\"framer-trnUg\");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,aLg4IURH4y4aobCQOObR8NIvfBg.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,vTtI8I9lH8oIZpBaEdED5yRlXNE.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,wsOo3pExgS7BHYONfVkvry0Rzfc.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,t37eICvJnIJ0zakhtx5fvrR7Q.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,ZYLLkyn2pck6L2mHBEfNVcvoMg.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\":{\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1000\",\"framerIntrinsicHeight\":\"593\",\"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\\\"]}}}\",\"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\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xbmreDUZ8.map", "// Generated by Framer (ad88b1a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,CycleVariantState,Floating,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useOverlayState,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{AnimatePresence,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/1EjBZ3ts3hnLU2XrH0QX/KF7UbbSfc.js\";import TabItem from\"https://framerusercontent.com/modules/mEcgRj2RSfrdmEsuVbd9/bK7ait96chHRKKXqs5b6/NfS3Exusk.js\";import DownloadBagdgesGroup from\"https://framerusercontent.com/modules/D3MzpGZkJ0xq4IXhWT5Z/WFyOlPyBH6pL4yBR8vSE/OnJMvxVw4.js\";import BadgeNormal from\"https://framerusercontent.com/modules/weITt5RPXotuSWpCVeGf/EWDshV5ieT51Rd7SQVX2/sqcnnD9OB.js\";import SMSDownload from\"https://framerusercontent.com/modules/Pmis511OL0UIZa8yMTBy/n5v0ErVU5jJYtUrLb69h/TrEJOYbC1.js\";const BadgeNormalFonts=getFonts(BadgeNormal);const TabItemFonts=getFonts(TabItem);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ButtonFonts=getFonts(Button);const SMSDownloadFonts=getFonts(SMSDownload);const MotionDivWithFX=withFX(motion.div);const DownloadBagdgesGroupFonts=getFonts(DownloadBagdgesGroup);const ImageWithFX=withFX(Image);const cycleOrder=[\"uUVBHPnqM\",\"rYF9Bg0jx\",\"vOYLaoAGN\",\"hk5gWssrr\",\"vS2ft1h8j\",\"n4VS0B5nY\"];const serializationHash=\"framer-UFdCU\";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 numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation4={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};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 animation7={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??{pixelHeight:1560,pixelWidth:1560,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??{pixelHeight:1560,pixelWidth:1560,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??{pixelHeight:1560,pixelWidth:1560,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 onAppear170ag3w=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"rYF9Bg0jx\",true),15e3);});const onAppear13ichb3=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vOYLaoAGN\",true),15e3);});const onAppearr0nw7c=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"uUVBHPnqM\",true),15e3);});const onAppear1o0e4f6=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"vS2ft1h8j\",true),15e3);});const onAppearm34d0i=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"hk5gWssrr\",true),15e3);});const onAppear1hlxa1b=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(CycleVariantState),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\");});const xqgHFj_DVtxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});useOnVariantChange(baseVariant,{default:onAppear170ag3w,hk5gWssrr:onAppear1o0e4f6,n4VS0B5nY:onAppear1hlxa1b,rYF9Bg0jx:onAppear13ichb3,vOYLaoAGN:onAppearr0nw7c,vS2ft1h8j:onAppearm34d0i});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 ref1=React.useRef(null);const ref2=React.useRef(null);const router=useRouter();const isDisplayed4=()=>{if([\"hk5gWssrr\",\"vS2ft1h8j\",\"n4VS0B5nY\"].includes(baseVariant))return true;return false;};const isDisplayed5=()=>{if([\"rYF9Bg0jx\",\"vOYLaoAGN\"].includes(baseVariant))return false;return true;};const isDisplayed6=()=>{if(baseVariant===\"rYF9Bg0jx\")return true;return false;};const isDisplayed7=()=>{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||600)-0-573)/2)+0+0+0+0,...addPropertyOverrides({hk5gWssrr:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+0+0+0},n4VS0B5nY:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+0+0+0},vS2ft1h8j:{y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/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||600)-0-573)/2)+0+93+0+0,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+0+0},n4VS0B5nY:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+0+0},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+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||987.5)-0-1043)/1*0)+0+105+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||600)-0-573)/2)+0+93+0+134,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+0+524},n4VS0B5nY:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+0+134},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+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||600)-0-573)/2)+0+93+0+268,...addPropertyOverrides({hk5gWssrr:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+0+658},n4VS0B5nY:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+0+268},vS2ft1h8j:{width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+105+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||987.5)-0-1043)/1*0)+0+105+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||987.5)-0-1043)/1*0)+0+105+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:{\"--17r4mxy\":numberToPixelString(JEXJeqc7J)},children:[isDisplayed3()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-573)/2)+0+503+32,children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-dq16vg-container\",id:`${layoutId}-dq16vg`,layoutDependency:layoutDependency,layoutId:\"aiV_ISRIp-container\",nodeId:\"aiV_ISRIp\",ref:ref1,rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:[/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"arrow-right\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",GR68CgLTN:\"SMS Download\",height:\"100%\",id:\"aiV_ISRIp\",layoutId:\"aiV_ISRIp\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,UTVnKbU_2:\"\",variant:overlay.visible?\"Bdl7EED7O\":\"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))\",borderStyle:\"solid\",borderWidth:1},xqgHFj_DV:xqgHFj_DVtxyyif({overlay})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-dq16vg`,offsetX:0,offsetY:4,onDismiss:overlay.hide,placement:\"bottom\",safeArea:false,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation5,className:\"framer-4igg50\",exit:animation4,initial:animation6,layoutDependency:layoutDependency,layoutId:\"dnD2zalnk\",ref:ref2,role:\"dialog\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 10px 20px 0px rgba(0, 0, 0, 0.05)\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"350px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1908uu3-container\",inComponentSlot:true,layoutDependency:layoutDependency,layoutId:\"cJtXQBczk-container\",nodeId:\"cJtXQBczk\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(SMSDownload,{height:\"100%\",id:\"cJtXQBczk\",idnAFfBZu:\"4.8/5 Stars\",irKbqoxo5:\"1.3M+ Truckers' reviews\",layoutId:\"cJtXQBczk\",ML3v0pD92:\"Send me the link to install\",style:{width:\"100%\"},variant:\"A6kPJvpW8\",width:\"100%\",YCd435AcZ:\"TP_OWE\"})})})})})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"AnOf_nnER\"},implicitPathVariables:undefined},{href:{webPageId:\"AnOf_nnER\"},implicitPathVariables:undefined},{href:{webPageId:\"AnOf_nnER\"},implicitPathVariables:undefined},{href:{webPageId:\"AnOf_nnER\"},implicitPathVariables:undefined},{href:{webPageId:\"AnOf_nnER\"},implicitPathVariables:undefined},{href:{webPageId:\"AnOf_nnER\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+(0+((componentViewport?.height||600)-0-573)/2)+0+503+32,...addPropertyOverrides({hk5gWssrr:{width:`max(${componentViewport?.width||\"100vw\"} - ${JEXJeqc7J*0}px, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+921+12},n4VS0B5nY:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+921+12},vS2ft1h8j:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+921+12}},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:resolvedLinks[0],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))\",borderStyle:\"solid\",borderWidth:1},...addPropertyOverrides({hk5gWssrr:{CJwkcCfE5:resolvedLinks[3],variant:\"Bdl7EED7O\"},n4VS0B5nY:{CJwkcCfE5:resolvedLinks[5],variant:\"Bdl7EED7O\"},rYF9Bg0jx:{CJwkcCfE5:resolvedLinks[1]},vOYLaoAGN:{CJwkcCfE5:resolvedLinks[2]},vS2ft1h8j:{CJwkcCfE5:resolvedLinks[4],variant:\"Bdl7EED7O\"}},baseVariant,gestureVariant)})})})})]}),isDisplayed4()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({hk5gWssrr:{height:48,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+995},n4VS0B5nY:{height:48,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+995},vS2ft1h8j:{height:48,y:(componentViewport?.y||0)+0+(0+0+((componentViewport?.height||987.5)-0-1043)/1*0)+0+995}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n64g6v-container\",layoutDependency:layoutDependency,layoutId:\"SRtOrlyLf-container\",nodeId:\"SRtOrlyLf\",rendersWithMotion:true,scopeId:\"ZKgSHIfat\",children:/*#__PURE__*/_jsx(DownloadBagdgesGroup,{height:\"100%\",hHCEsWAEW:\"14px 0px 0px 0px\",id:\"SRtOrlyLf\",layoutId:\"SRtOrlyLf\",QO8lGOMOu:6,variant:\"upp2S22KY\",width:\"100%\",...addPropertyOverrides({hk5gWssrr:{hHCEsWAEW:\"0px 0px 0px 0px\"},n4VS0B5nY:{hHCEsWAEW:\"0px 0px 0px 0px\"},vS2ft1h8j:{hHCEsWAEW:\"0px 0px 0px 0px\"}},baseVariant,gestureVariant)})})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1qsqsb4\",\"data-framer-name\":\"Desktop \\xb7 Img container\",layoutDependency:layoutDependency,layoutId:\"Qkaw1b8vU\",children:[isDisplayed5()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||600)-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}}),isDisplayed6()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__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||600)-0-600)/2)+50),pixelHeight:1560,pixelWidth:1560,sizes:\"500px\",...toResponsiveImage(y8FPN2HJE),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)}),isDisplayed7()&&/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation7,__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||600)-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-UFdCU.framer-15vu78m, .framer-UFdCU .framer-15vu78m { display: block; }\",\".framer-UFdCU.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-UFdCU .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-UFdCU .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-UFdCU .framer-nmhqv8-container, .framer-UFdCU .framer-dq16vg-container, .framer-UFdCU .framer-n64g6v-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-UFdCU .framer-1m8h1dm { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 536px; word-break: break-word; word-wrap: break-word; }\",\".framer-UFdCU .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-UFdCU .framer-nidj9u-container, .framer-UFdCU .framer-1eig32b-container, .framer-UFdCU .framer-vs413i-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-UFdCU .framer-12usrz2, .framer-UFdCU .framer-1gg3zvm, .framer-UFdCU .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-UFdCU .framer-1yrbx1e, .framer-UFdCU .framer-z8sa1k, .framer-UFdCU .framer-11ikeg7 { aspect-ratio: 1 / 1; flex: none; gap: 0px; height: var(--framer-aspect-ratio-supported, 390px); overflow: visible; position: relative; width: 390px; }\",\".framer-UFdCU .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: 32px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-UFdCU .framer-4igg50 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 20px 16px 20px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-UFdCU .framer-1908uu3-container { flex: none; height: auto; position: relative; width: 350px; }\",\".framer-UFdCU .framer-igca2a-container { flex: none; height: auto; position: relative; width: 170px; }\",\".framer-UFdCU .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-UFdCU .framer-19vcjzh, .framer-UFdCU .framer-nj4hxv, .framer-UFdCU .framer-3ad7wm { flex: none; gap: 0px; height: 500px; overflow: visible; position: relative; width: 500px; }\",\".framer-UFdCU.framer-v-1adilro.framer-1jctnah, .framer-UFdCU.framer-v-1fyxm01.framer-1jctnah, .framer-UFdCU.framer-v-1825elz.framer-1jctnah { flex-direction: column; width: 390px; }\",\".framer-UFdCU.framer-v-1adilro .framer-uq3rp1 { align-content: center; align-items: center; gap: 24px; order: 0; width: 100%; }\",\".framer-UFdCU.framer-v-1adilro .framer-iqnhq0, .framer-UFdCU.framer-v-1fyxm01 .framer-iqnhq0, .framer-UFdCU.framer-v-1825elz .framer-iqnhq0 { align-content: center; align-items: center; gap: 10px; }\",\".framer-UFdCU.framer-v-1adilro .framer-1m8h1dm, .framer-UFdCU.framer-v-1fyxm01 .framer-1m8h1dm, .framer-UFdCU.framer-v-1825elz .framer-1m8h1dm { width: 100%; }\",\".framer-UFdCU.framer-v-1adilro .framer-1m5p55s, .framer-UFdCU.framer-v-1fyxm01 .framer-1m5p55s, .framer-UFdCU.framer-v-1825elz .framer-1m5p55s { align-content: center; align-items: center; }\",\".framer-UFdCU.framer-v-1adilro .framer-nidj9u-container, .framer-UFdCU.framer-v-1fyxm01 .framer-nidj9u-container, .framer-UFdCU.framer-v-1825elz .framer-nidj9u-container { order: 0; }\",\".framer-UFdCU.framer-v-1adilro .framer-12usrz2 { order: 1; }\",\".framer-UFdCU.framer-v-1adilro .framer-1eig32b-container, .framer-UFdCU.framer-v-1fyxm01 .framer-1eig32b-container, .framer-UFdCU.framer-v-1825elz .framer-1eig32b-container { order: 2; }\",\".framer-UFdCU.framer-v-1adilro .framer-vs413i-container, .framer-UFdCU.framer-v-1fyxm01 .framer-vs413i-container, .framer-UFdCU.framer-v-1825elz .framer-vs413i-container { order: 4; }\",\".framer-UFdCU.framer-v-1adilro .framer-ijarzp { gap: var(--17r4mxy); padding: 12px 0px 0px 0px; width: 100%; }\",\".framer-UFdCU.framer-v-1adilro .framer-igca2a-container, .framer-UFdCU.framer-v-1fyxm01 .framer-igca2a-container, .framer-UFdCU.framer-v-1825elz .framer-igca2a-container { flex: 1 0 0px; width: 1px; }\",\".framer-UFdCU.framer-v-1fyxm01 .framer-uq3rp1, .framer-UFdCU.framer-v-1825elz .framer-uq3rp1 { align-content: center; align-items: center; gap: 24px; width: 100%; }\",\".framer-UFdCU.framer-v-1fyxm01 .framer-1gg3zvm { order: 3; }\",\".framer-UFdCU.framer-v-1fyxm01 .framer-ijarzp, .framer-UFdCU.framer-v-1825elz .framer-ijarzp { gap: 16px; padding: 12px 0px 0px 0px; width: 100%; }\",\".framer-UFdCU.framer-v-1825elz .framer-1ddvv4a { order: 5; }\",...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 * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerZKgSHIfat=withCSS(Component,css,\"framer-UFdCU\");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,...SMSDownloadFonts,...DownloadBagdgesGroupFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZKgSHIfat\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"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\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"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]}}}\",\"framerIntrinsicHeight\":\"600\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ZKgSHIfat.map"],
  "mappings": "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",
  "names": ["clamp", "t", "e", "n", "calcMaskWidth", "inset", "width", "useIsMouse", "isMouseDevice", "setIsMouseDevice", "ye", "fe", "window", "checkLimit", "progress", "target", "edgeOpacity", "moreItems", "buttonRef", "transition", "animate", "useGUI", "initialMoreItems", "initialAlpha", "pe", "useMotionValue", "fadeOpacity", "useTransform", "buttonOpacity", "v", "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", "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", "Z", "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", "PhosphorFonts", "getFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "LkjDVDR39", "y4vW236JD", "NwAUuCsmG", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "Framerpl7ATvQos", "withCSS", "pl7ATvQos_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", "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", "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", "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", "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", "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", "SMSDownloadFonts", "TrEJOYbC1_default", "MotionDivWithFX", "DownloadBagdgesGroupFonts", "OnJMvxVw4_default", "ImageWithFX", "Image2", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "animation", "transition1", "transition2", "animation1", "transition3", "animation2", "animation3", "toResponsiveImage", "value", "numberToPixelString", "transition4", "animation4", "animation5", "animation6", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation7", "Transition", "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", "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", "onAppear170ag3w", "args", "onAppear13ichb3", "onAppearr0nw7c", "onAppear1o0e4f6", "onAppearm34d0i", "onAppear1hlxa1b", "CycleVariantState", "RDmGAwKxPguu4z9", "RDmGAwKxP1t7amab", "RDmGAwKxP1oibhe", "RDmGAwKxP1815mde", "RDmGAwKxPc4ux2s", "RDmGAwKxP1svgcnr", "xqgHFj_DVtxyyif", "overlay", "loadMore", "useOnVariantChange", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "ref1", "ref2", "router", "useRouter", "isDisplayed4", "isDisplayed5", "isDisplayed6", "isDisplayed7", "LayoutGroup", "u", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText2", "getLoadingLazyAtYPosition", "l", "AnimatePresence", "Floating", "ResolveLinks", "resolvedLinks", "css", "FramerZKgSHIfat", "withCSS", "ZKgSHIfat_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
