{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/0WT75425UMQCVjtxFltu/uJDulMJYfQAsHsGmONqZ/SMS_Send_Coupon.js", "ssg:https://framerusercontent.com/modules/WmnOUX5CIFSGiFrznYVJ/aAv3wzDo91K7XcV56CuC/ab74BD7RQ.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n */export default function SMS(props){const[phone,setPhone]=useState(\"\");const[success,setSuccess]=useState(false);const[error,setError]=useState(\"\");const[isSending,setIsSending]=useState(false);// \u683C\u5F0F\u5316\u7535\u8BDD\u53F7\u7801\nconst formatPhone=value=>{const cleaned=value.replace(/\\D/g,\"\");// \u5982\u679C\u662F11\u4F4D\u4E14\u4EE51\u5F00\u5934\uFF0C\u6309\u7167\u56FD\u9645\u683C\u5F0F\u5904\u7406\nif(cleaned.length===11&&cleaned.startsWith(\"1\")){return`+1 (${cleaned.slice(1,4)}) ${cleaned.slice(4,7)}-${cleaned.slice(7)}`;}// \u5982\u679C\u662F10\u4F4D\uFF0C\u6309\u7167\u666E\u901A\u683C\u5F0F\u5904\u7406\nconst match=cleaned.match(/^(\\d{3})(\\d{3})(\\d{4})$/);return match?`(${match[1]}) ${match[2]}-${match[3]}`:value;};const handlePhoneChange=e=>{const value=e.target.value;// \u53EA\u4FDD\u7559\u6570\u5B57\nconst cleaned=value.replace(/\\D/g,\"\");// \u9650\u5236\u6700\u591A\u8F93\u516511\u4F4D\u6570\u5B57\nif(cleaned.length<=11){setPhone(value);if(error)setError(\"\");if(success)setSuccess(false);}};const handlePhoneBlur=e=>{const value=e.target.value;const cleaned=value.replace(/\\D/g,\"\");const formatted=formatPhone(value);setPhone(formatted);// \u9A8C\u8BC1\u7535\u8BDD\u53F7\u7801\nif(!value){setError(\"Phone number is required\");}else if(cleaned.length===11&&!cleaned.startsWith(\"1\")){setError(\"11-digit numbers must start with 1\");}else if(cleaned.length!==10&&cleaned.length!==11){setError(\"Phone number must be 10 or 11 digits\");}else if(cleaned.length===11&&!/^\\+1 \\(\\d{3}\\) \\d{3}-\\d{4}$/.test(formatted)){setError(\"Please enter a valid phone number\");}else if(cleaned.length===10&&!/^\\(\\d{3}\\) \\d{3}-\\d{4}$/.test(formatted)){setError(\"Please enter a valid phone number\");}else{setError(\"\");}};const handlePhoneFocus=e=>{// \u805A\u7126\u65F6\u79FB\u9664\u683C\u5F0F\u5316\nconst cleaned=e.target.value.replace(/\\D/g,\"\");setPhone(cleaned);};const sendSMS=async m=>{const cleaned=m.replace(/\\D/g,\"\");if(!cleaned){setError(\"Phone number is required\");return;}if(cleaned.length===11&&!cleaned.startsWith(\"1\")){setError(\"11-digit numbers must start with 1\");return;}if(cleaned.length!==10&&cleaned.length!==11){setError(\"Phone number must be 10 or 11 digits\");return;}setError(\"\");setIsSending(true);try{const apiEndpoint=props.apiUrl||\"https://api.truckerpath.com/business-order-api/business/order/coupon/get/official/promo/coupon\";const response=await fetch(apiEndpoint,{method:\"POST\",headers:{\"Content-Type\":\"application/json\"},body:JSON.stringify({phone:cleaned,areaCode:\"1\",accept:true})});const data=await response.json();if(data?.message===\"success\"){setSuccess(true);setError(\"\");}else{setError(data?.message||\"Failed to send SMS. Please try again.\");}}catch(err){console.error(\"Error:\",err);setError(\"Failed to send SMS. Please try again.\");}finally{setIsSending(false);}};useEffect(()=>{const style=document.createElement(\"style\");style.textContent=`\n                button.sms-button {\n                    transition: background-color 0.2s ease !important;\n                }\n                button.sms-button:hover {\n                    background-color: #126DA2 !important;\n                }\n                button.sms-button.success {\n                    background-color: #08B86C !important;\n                    cursor: default !important;\n                }\n                button.sms-button.success:hover {\n                    background-color: #08B86C !important;\n                }\n                button.sms-button:disabled:hover {\n                    background-color: #aaa !important;\n                }\n                input {\n                    transition: all 0.2s ease !important;\n                }\n                input::placeholder {\n                    color: #BABFC4 !important;\n                }\n                input.error {\n                    border: 1px solid #EB5200 !important;\n                    transition: all 0.2s ease !important;\n                }\n                input.error:focus {\n                    border: 1.5px solid #EB5200 !important;\n                    outline: none !important;\n                    box-shadow: 0 0 0 1px #EB5200 !important;\n                }\n                input:focus:not(.error) {\n                    border: 1.5px solid #1688CA !important;\n                    outline: none !important;\n                    box-shadow: 0 0 0 1px #1688CA !important;\n                }\n            `;document.head.appendChild(style);return()=>{document.head.removeChild(style);};},[]);return /*#__PURE__*/_jsxs(\"div\",{style:{...containerStyle,fontFamily:\"Poppins, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif\"},children:[/*#__PURE__*/_jsxs(\"div\",{style:inputButtonContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{className:error?\"error\":\"\",style:inputStyle,placeholder:\"Enter your phone number\",value:phone,onChange:handlePhoneChange,onFocus:handlePhoneFocus,onBlur:handlePhoneBlur}),/*#__PURE__*/_jsx(\"button\",{className:`sms-button ${success?\"success\":\"\"}`,style:{...buttonStyle,...isSending?buttonDisabledStyle:{}},onClick:()=>!success&&sendSMS(phone),disabled:isSending,children:isSending?\"Sending...\":success?\"SENT\":\"Get Coupon\"})]}),error&&/*#__PURE__*/_jsx(\"span\",{style:errorStyle,children:error}),success&&/*#__PURE__*/_jsx(\"span\",{style:successStyle,children:\"Check your phone\"})]});}const fontFamily=\"Poppins, Inter, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif\";const containerStyle={height:\"100%\",display:\"flex\",justifyContent:\"flex-start\",alignItems:\"flex-start\",flexDirection:\"column\",gap:\"8px\",fontFamily:fontFamily};const inputButtonContainerStyle={display:\"flex\",alignItems:\"center\",gap:\"8px\",width:\"100%\",fontFamily:fontFamily};const inputStyle={flex:1,border:\"1px solid #E2E6E9\",outline:\"none\",height:\"40px\",padding:\"0 10px\",borderRadius:\"4px\",fontFamily:fontFamily,fontSize:\"14px\"};const buttonStyle={height:\"40px\",padding:\"0 16px\",backgroundColor:\"#1688CA\",color:\"#fff\",border:\"none\",borderRadius:\"4px\",cursor:\"pointer\",fontFamily:fontFamily,fontWeight:600,fontSize:\"14px\"};const buttonDisabledStyle={backgroundColor:\"#aaa\",cursor:\"not-allowed\"};const errorStyle={color:\"#EB5200\",fontFamily:fontFamily,fontSize:\"12px\"};const successStyle={color:\"#08B86C\",fontFamily:fontFamily,fontSize:\"12px\"};// \u7B80\u5316\u540E\u7684\u5C5E\u6027\u63A7\u5236\naddPropertyControls(SMS,{apiUrl:{type:ControlType.String,title:\"API URL\",description:\"The endpoint URL for sending SMS\",defaultValue:\"https://api.truckerpath.com/business-order-api/business/order/coupon/get/official/promo/coupon\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SMS\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutWidth\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SMS_Send_Coupon.map", "// Generated by Framer (99efa6a)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,useSiteRefs,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as ReactDOM from\"react-dom\";import{Youtube as YouTube}from\"https://framerusercontent.com/modules/NEd4VmDdsxM3StIUbddO/DDzyuYPF56TuI0bfUu2z/YouTube.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import DeclarationFuelSavings from\"#framer/local/canvasComponent/BdaZJ0jGi/BdaZJ0jGi.js\";import OneLineWithCheck from\"#framer/local/canvasComponent/EYCxEvbEL/EYCxEvbEL.js\";import Button from\"#framer/local/canvasComponent/KF7UbbSfc/KF7UbbSfc.js\";import Default from\"#framer/local/canvasComponent/nl2N3CEVD/nl2N3CEVD.js\";import CardNoBg from\"#framer/local/canvasComponent/oMnXqAvrY/oMnXqAvrY.js\";import DownloadBagdgesGroup from\"#framer/local/canvasComponent/OnJMvxVw4/OnJMvxVw4.js\";import SMS from\"#framer/local/codeFile/HbP8qmg/SMS_Send_Coupon.js\";import*as sharedStyle4 from\"#framer/local/css/dvxIS3aly/dvxIS3aly.js\";import*as sharedStyle3 from\"#framer/local/css/e8MqUfc3j/e8MqUfc3j.js\";import*as sharedStyle1 from\"#framer/local/css/GiIrC5gDK/GiIrC5gDK.js\";import*as sharedStyle from\"#framer/local/css/Jjj2T4gpQ/Jjj2T4gpQ.js\";import*as sharedStyle5 from\"#framer/local/css/lF9kmblJi/lF9kmblJi.js\";import*as sharedStyle2 from\"#framer/local/css/pP7JHpqrA/pP7JHpqrA.js\";import metadataProvider from\"#framer/local/webPageMetadata/ab74BD7RQ/ab74BD7RQ.js\";const DefaultFonts=getFonts(Default);const YouTubeFonts=getFonts(YouTube);const PhosphorFonts=getFonts(Phosphor);const OneLineWithCheckFonts=getFonts(OneLineWithCheck);const ButtonFonts=getFonts(Button);const MotionDivWithFX=withFX(motion.div);const CardNoBgFonts=getFonts(CardNoBg);const SMSFonts=getFonts(SMS);const DownloadBagdgesGroupFonts=getFonts(DownloadBagdgesGroup);const DeclarationFuelSavingsFonts=getFonts(DeclarationFuelSavings);const breakpoints={ARktpiYTN:\"(max-width: 809px)\",hq3dJOg3n:\"(min-width: 1280px) and (max-width: 1919px)\",L7L5uMKL5:\"(min-width: 810px) and (max-width: 1279px)\",Z9Meu2LBk:\"(min-width: 1920px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-vn7kg\";const variantClassNames={ARktpiYTN:\"framer-v-139288d\",hq3dJOg3n:\"framer-v-xzdquq\",L7L5uMKL5:\"framer-v-1c3qd2w\",Z9Meu2LBk:\"framer-v-1odfep1\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const getContainer=()=>{return document.querySelector(\"#template-overlay\")??document.querySelector(\"#overlay\")??document.body;};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition1={damping:50,delay:.4,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={damping:50,delay:.3,mass:1,stiffness:500,type:\"spring\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-1920\":\"Z9Meu2LBk\",Desktop:\"hq3dJOg3n\",Phone:\"ARktpiYTN\",Tablet:\"L7L5uMKL5\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Z9Meu2LBk\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const NX6uDkvxe3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const onClick1wnntms=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.hide();});const xqgHFj_DV3bnx0g=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const elementId=useRouteElementId(\"HXDJPuK27\");const dynamicRef=useSiteRefs();const elementId1=useRouteElementId(\"MQHXH2xSv\");const ref1=React.useRef(null);const elementId2=useRouteElementId(\"JnU00FjiM\");const ref2=React.useRef(null);const elementId3=useRouteElementId(\"RVjCJbQd9\");const ref3=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"Z9Meu2LBk\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1odfep1\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:800,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-gmhkk9-container\",id:\"gmhkk9\",nodeId:\"PvWQjrcJn\",scopeId:\"ab74BD7RQ\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{cV6qAaW4_:addImageAlt({pixelHeight:3200,pixelWidth:2335,src:\"https://framerusercontent.com/images/9hvbNF5M4VVDk4NNnowS9YlnF4.jpg\",srcSet:\"https://framerusercontent.com/images/9hvbNF5M4VVDk4NNnowS9YlnF4.jpg?scale-down-to=1024 747w,https://framerusercontent.com/images/9hvbNF5M4VVDk4NNnowS9YlnF4.jpg?scale-down-to=2048 1494w,https://framerusercontent.com/images/9hvbNF5M4VVDk4NNnowS9YlnF4.jpg 2335w\"},\"\"),dxoskg_Q6:resolvedLinks[3],iuxZcBW2T:\"column\",style:{width:\"100%\"},variant:\"qwkwQnZte\"},hq3dJOg3n:{dxoskg_Q6:resolvedLinks[1]},L7L5uMKL5:{dxoskg_Q6:resolvedLinks[2],style:{width:\"100%\"},variant:\"ZLGxLV7hA\"}},children:/*#__PURE__*/_jsx(Default,{aOdUAepcg:false,AZs3LeJPJ:\"\",B3aeg6uGy:\"1.3M+ Truckers' reviews\",Bj1t1nRTF:\"4.8/5 Stars\",cV6qAaW4_:addImageAlt({pixelHeight:3200,pixelWidth:7680,src:\"https://framerusercontent.com/images/X7xQ06NR4rxYPpoJ0yNEaGIEY.jpg\",srcSet:\"https://framerusercontent.com/images/X7xQ06NR4rxYPpoJ0yNEaGIEY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X7xQ06NR4rxYPpoJ0yNEaGIEY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X7xQ06NR4rxYPpoJ0yNEaGIEY.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/X7xQ06NR4rxYPpoJ0yNEaGIEY.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/X7xQ06NR4rxYPpoJ0yNEaGIEY.jpg 7680w\"},\"\"),cwVd3oOSj:\"GET $10 FREE FUEL\",dxoskg_Q6:resolvedLinks[0],HALlNA_NJ:\"Big Fuel Savings for Truckers\",height:\"100%\",id:\"PvWQjrcJn\",IOWY5_ogR:\"TP_OWE\",iuxZcBW2T:\"row\",layoutId:\"PvWQjrcJn\",LbEIKokUe:0,NX6uDkvxe:NX6uDkvxe3bnx0g({overlay}),O96B1EpXF:true,OvWGaukAY:\"WATCH VIDEO\",pxw44Vuz8:true,Q64ifYhW4:\"BpXjB53bw\",QJkEfhath:false,sLaLxYoAJ:\"var(--token-26128609-daf2-4d5e-b6a0-f59df8c41c47, rgba(255, 255, 255, 0.7))\",style:{height:\"100%\",width:\"100%\"},variant:\"k9sK3pXlq\",width:\"100%\",xaw_p220f:\"Trucker Path users save $50 \u2013 $70 every time they refuel!*\",yVUCwPYij:false,ZEF6GTsVJ:false})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-dn8yb2\"),\"data-framer-portal-id\":\"gmhkk9\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"YSCZKfb6q\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-1uhm2g4-container\"),\"data-framer-portal-id\":\"gmhkk9\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"w7apr7wKe\",rendersWithMotion:true,scopeId:\"ab74BD7RQ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"w7apr7wKe\",isMixedBorderRadius:false,isRed:true,layoutId:\"w7apr7wKe\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/f8RR5h9NWj8?si=1ojAuSLjfwjGozzT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-ifvxgn\"),\"data-framer-name\":\"X Container\",\"data-framer-portal-id\":\"gmhkk9\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-187wl1u-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"wmg7rkv6o\",rendersWithMotion:true,scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x\",iconSelection:\"House\",id:\"wmg7rkv6o\",layoutId:\"wmg7rkv6o\",mirrored:false,onClick:onClick1wnntms({overlay}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})]})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ruu930\",\"data-framer-name\":\"Section 1\",id:elementId,ref:dynamicRef(elementId),children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jcnt3v\",\"data-framer-name\":\"Inner Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+40+0+0+0),pixelHeight:1650,pixelWidth:1650,src:\"https://framerusercontent.com/images/NETTO1x5MHzIFnvmQj7Pnw7lOx8.png?scale-down-to=1024\"}},L7L5uMKL5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+60+0+0+0),pixelHeight:1650,pixelWidth:1650,src:\"https://framerusercontent.com/images/NETTO1x5MHzIFnvmQj7Pnw7lOx8.png?scale-down-to=1024\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+800+100+0+0),pixelHeight:1650,pixelWidth:1650,src:\"https://framerusercontent.com/images/NETTO1x5MHzIFnvmQj7Pnw7lOx8.png?scale-down-to=1024\"},className:\"framer-m6ftqd\",\"data-framer-name\":\"Imgs\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l3e8zi\",\"data-framer-name\":\"Left Column\",id:elementId1,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12mqxlq\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"You're Going To Love Trucker Path's New Fuel Network!\"})})}),className:\"framer-14rxxy0\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fti3vd\",\"data-framer-name\":\"Frame 427319665\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+90+0+0},L7L5uMKL5:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+800+60+0+0+582+0+90+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"540px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+90+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-fbovlu-container\",nodeId:\"wc_JTDMIZ\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(OneLineWithCheck,{height:\"100%\",id:\"wc_JTDMIZ\",layoutId:\"wc_JTDMIZ\",M1kdVE89m:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",q4yYW3Vn1:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",style:{width:\"100%\"},width:\"100%\",zm_Pfbovo:\"Save real money on fuel\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+90+0+40},L7L5uMKL5:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+800+60+0+0+582+0+90+0+40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"540px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+90+0+40,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vwey3p-container\",nodeId:\"estJRFGap\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(OneLineWithCheck,{height:\"100%\",id:\"estJRFGap\",layoutId:\"estJRFGap\",M1kdVE89m:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",q4yYW3Vn1:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",style:{width:\"100%\"},width:\"100%\",zm_Pfbovo:\"Super easy to use\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+90+0+80},L7L5uMKL5:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+800+60+0+0+582+0+90+0+80}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"540px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+90+0+80,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cidb3o-container\",nodeId:\"tmeufKEI0\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(OneLineWithCheck,{height:\"100%\",id:\"tmeufKEI0\",layoutId:\"tmeufKEI0\",M1kdVE89m:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",q4yYW3Vn1:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",style:{width:\"100%\"},width:\"100%\",zm_Pfbovo:\"No cost to participate\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+90+0+120},L7L5uMKL5:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+800+60+0+0+582+0+90+0+120}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"540px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+90+0+120,children:/*#__PURE__*/_jsx(Container,{className:\"framer-gp1gb3-container\",nodeId:\"nb59nrFYO\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(OneLineWithCheck,{height:\"100%\",id:\"nb59nrFYO\",layoutId:\"nb59nrFYO\",M1kdVE89m:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",q4yYW3Vn1:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",style:{width:\"100%\"},width:\"100%\",zm_Pfbovo:\"No credit checks\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+90+0+160},L7L5uMKL5:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+800+60+0+0+582+0+90+0+160}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"540px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+90+0+160,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ju3wj5-container\",nodeId:\"F2tHUsSaf\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(OneLineWithCheck,{height:\"100%\",id:\"F2tHUsSaf\",layoutId:\"F2tHUsSaf\",M1kdVE89m:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",q4yYW3Vn1:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",style:{width:\"100%\"},width:\"100%\",zm_Pfbovo:\"Earn additional savings the more gallons you purchase\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1200px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+90+0+200},L7L5uMKL5:{width:`min(${componentViewport?.width||\"100vw\"} - 80px, 1200px)`,y:(componentViewport?.y||0)+0+800+60+0+0+582+0+90+0+200}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"540px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+90+0+200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ugewcf-container\",nodeId:\"GcKHexvHM\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(OneLineWithCheck,{height:\"100%\",id:\"GcKHexvHM\",layoutId:\"GcKHexvHM\",M1kdVE89m:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",q4yYW3Vn1:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",style:{width:\"100%\"},width:\"100%\",zm_Pfbovo:\"Refer your friends and save even more\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s9g6mj\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+354+0},L7L5uMKL5:{y:(componentViewport?.y||0)+0+800+60+0+0+582+0+354+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+354+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w5vjak-container\",nodeId:\"vGf9uCqjT\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{CJwkcCfE5:resolvedLinks1[3]},hq3dJOg3n:{CJwkcCfE5:resolvedLinks1[1]},L7L5uMKL5:{CJwkcCfE5:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:resolvedLinks1[0],GR68CgLTN:\"Try for free\",height:\"100%\",id:\"vGf9uCqjT\",layoutId:\"vGf9uCqjT\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+0+800+40+0+0+570+0+354+0},L7L5uMKL5:{y:(componentViewport?.y||0)+0+800+60+0+0+582+0+354+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+800+100+0+79+0+354+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-49pvuj-container\",id:\"49pvuj\",nodeId:\"RFgmeUO3Z\",scopeId:\"ab74BD7RQ\",children:[/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",GR68CgLTN:\"WATCH VIDEO\",height:\"100%\",id:\"RFgmeUO3Z\",layoutId:\"RFgmeUO3Z\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"crBu0Yadm\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1},xqgHFj_DV:xqgHFj_DV3bnx0g({overlay:overlay1})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-88ivus\"),\"data-framer-portal-id\":\"49pvuj\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"aAivNa34X\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-vbglpo-container\"),\"data-framer-portal-id\":\"49pvuj\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"XUWfEP6sa\",rendersWithMotion:true,scopeId:\"ab74BD7RQ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"XUWfEP6sa\",isMixedBorderRadius:false,isRed:true,layoutId:\"XUWfEP6sa\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/f8RR5h9NWj8?si=1ojAuSLjfwjGozzT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-jao17y\"),\"data-framer-name\":\"X Container\",\"data-framer-portal-id\":\"49pvuj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6782ne-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"hRg__R5E3\",rendersWithMotion:true,scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x\",iconSelection:\"House\",id:\"hRg__R5E3\",layoutId:\"hRg__R5E3\",mirrored:false,onClick:onClick1wnntms({overlay:overlay1}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})]})})})})})]})]})]})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-a8uyzh\",\"data-framer-name\":\"Section - Benifts\",id:elementId2,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9wpeqa\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m5m6c5\",\"data-framer-name\":\"Section Header\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"It\u2019s Easy To Get Started!\"})})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(96deg, rgb(62, 77, 92) 0%, rgb(9, 33, 56) 100%)\"},children:\"It\u2019s Easy To Get Started!\"})})}),className:\"framer-1d412iv\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k0aqj3\",\"data-framer-name\":\"Feature List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+1862+60+0+0+82+0+0},L7L5uMKL5:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+1894+60+0+0+90+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1550+100+0+0+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-105ajeg-container\",nodeId:\"hUKE7KlnO\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(CardNoBg,{AqdQ9BMTm:addImageAlt({pixelHeight:828,pixelWidth:1120,src:\"https://framerusercontent.com/images/XX6J61FdBMvOEGIlMtwvJklqwOc.png?scale-down-to=1024\"},\"\"),BaB_Y1RKS:\"Button Default\",dYhDaU7Qp:\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\",DYukqs2vy:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",gnCXqIrCx:\"Along your route, look for truck stops on the Trucker Path app that have the fuel savings icon, then click it to see your fuel discount.\",height:\"100%\",i8CdOyKGR:\"Look for Fuel Discounts\",id:\"hUKE7KlnO\",KClY8cDkA:false,layoutId:\"hUKE7KlnO\",style:{width:\"100%\"},variant:\"bpOb68ymn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+1862+60+0+0+82+0+227},L7L5uMKL5:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+1894+60+0+0+90+0+247}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1550+100+0+0+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-xlpcyu-container\",nodeId:\"c5dABC0XN\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(CardNoBg,{AqdQ9BMTm:addImageAlt({pixelHeight:832,pixelWidth:1120,src:\"https://framerusercontent.com/images/3W0CH2tNjKY9RSM56YH3yqmJxdo.png?scale-down-to=1024\"},\"\"),BaB_Y1RKS:\"Button Default\",dYhDaU7Qp:\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\",DYukqs2vy:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",gnCXqIrCx:\"When you find the deal that\u2019s right for you, just click \u201CReserve Now\u201D and provide your payment information to get set up.\",height:\"100%\",i8CdOyKGR:\"Make a Reservation\",id:\"c5dABC0XN\",KClY8cDkA:false,layoutId:\"c5dABC0XN\",style:{width:\"100%\"},variant:\"bpOb68ymn\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+1862+60+0+0+82+0+454},L7L5uMKL5:{width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1200px), 50px)`,y:(componentViewport?.y||0)+0+1894+60+0+0+90+0+494}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:187,width:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 64px) / 3, 50px)`,y:(componentViewport?.y||0)+0+1550+100+0+0+100+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-17uetx8-container\",nodeId:\"KV7MigODk\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(CardNoBg,{AqdQ9BMTm:addImageAlt({pixelHeight:828,pixelWidth:1120,src:\"https://framerusercontent.com/images/XX6J61FdBMvOEGIlMtwvJklqwOc.png?scale-down-to=1024\"},\"\"),BaB_Y1RKS:\"Button Default\",dYhDaU7Qp:\"var(--token-58160af2-89bb-429c-a9a3-ff2d715c3e7c, rgb(82, 92, 102))\",DYukqs2vy:\"var(--token-ed705807-585b-4e03-8afc-4b5ea6dac55d, rgb(1, 25, 50))\",gnCXqIrCx:\"Make your way to the truck stop, click \u201CRedeem Now\u201D and follow the quick, easy instructions to finish the deal!\",height:\"100%\",i8CdOyKGR:\"Redeem, Fuel & Save Money!\",id:\"KV7MigODk\",KClY8cDkA:false,layoutId:\"KV7MigODk\",style:{width:\"100%\"},variant:\"bpOb68ymn\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xwt05i\",\"data-framer-name\":\"Buttons\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined},{href:{hash:\":RVjCJbQd9\",webPageId:\"ab74BD7RQ\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1862+60+0+0+755+0},L7L5uMKL5:{y:(componentViewport?.y||0)+0+1894+60+0+0+811+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+1550+100+0+0+337+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gwgr88-container\",nodeId:\"aONPSdPuK\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{CJwkcCfE5:resolvedLinks2[3]},hq3dJOg3n:{CJwkcCfE5:resolvedLinks2[1]},L7L5uMKL5:{CJwkcCfE5:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"ArrowRight\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",CJwkcCfE5:resolvedLinks2[0],GR68CgLTN:\"Try for free\",height:\"100%\",id:\"aONPSdPuK\",layoutId:\"aONPSdPuK\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"Bdl7EED7O\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1}})})})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{width:`max((min(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 430px) - 12px) / 2, 1px)`,y:(componentViewport?.y||0)+0+1862+60+0+0+755+0},L7L5uMKL5:{y:(componentViewport?.y||0)+0+1894+60+0+0+811+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:38,width:\"170px\",y:(componentViewport?.y||0)+0+1550+100+0+0+337+0,children:/*#__PURE__*/_jsxs(Container,{className:\"framer-8cmo0q-container\",id:\"8cmo0q\",nodeId:\"ZQJvjFO0J\",scopeId:\"ab74BD7RQ\",children:[/*#__PURE__*/_jsx(Button,{B5PTj2R73:\"calendar-check\",bdq5zfikP:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",GR68CgLTN:\"WATCH VIDEO\",height:\"100%\",id:\"ZQJvjFO0J\",layoutId:\"ZQJvjFO0J\",LG5CSJpvD:false,MUhHRsdpH:false,NX0_QsmPo:\"bold\",ot18wTv79:false,style:{width:\"100%\"},UTVnKbU_2:\"\",variant:\"crBu0Yadm\",w5Hgz19ND:4,width:\"100%\",x4PtZAn5f:\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\",XHHdhexpX:{borderColor:'var(--token-af4acdc5-7737-4b47-adb5-0b448e75a7be, rgb(226, 230, 233)) /* {\"name\":\"Border - 1\"} */',borderStyle:\"solid\",borderWidth:1},xqgHFj_DV:xqgHFj_DV3bnx0g({overlay:overlay2})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:0,ease:[.5,0,.88,.77],type:\"tween\"}},className:cx(scopingClassNames,\"framer-1sum64x\"),\"data-framer-portal-id\":\"8cmo0q\",exit:{opacity:0,transition:{delay:0,duration:0,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay2.hide()},\"AZjB6UJiG\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:cx(scopingClassNames,\"framer-gt4rbj-container\"),\"data-framer-portal-id\":\"8cmo0q\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eyx1ZiYzi\",rendersWithMotion:true,scopeId:\"ab74BD7RQ\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(YouTube,{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,height:\"100%\",id:\"eyx1ZiYzi\",isMixedBorderRadius:false,isRed:true,layoutId:\"eyx1ZiYzi\",play:\"On\",shouldMute:false,style:{height:\"100%\",width:\"100%\"},thumbnail:\"Medium Quality\",topLeftRadius:0,topRightRadius:0,url:\"https://youtu.be/f8RR5h9NWj8?si=1ojAuSLjfwjGozzT\",width:\"100%\"})})}),/*#__PURE__*/_jsx(motion.div,{className:cx(scopingClassNames,\"framer-it6vea\"),\"data-framer-name\":\"X Container\",\"data-framer-portal-id\":\"8cmo0q\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-p05qok-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,nodeId:\"h7hHik4bx\",rendersWithMotion:true,scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-31aa895f-93bc-4169-995a-064a6b802e57, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"x\",iconSelection:\"House\",id:\"h7hHik4bx\",layoutId:\"h7hHik4bx\",mirrored:false,onClick:onClick1wnntms({overlay:overlay2}),selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),getContainer())})})]})})})})})]})]})}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1afjcdd\",\"data-framer-name\":\"Section - Forms\",id:elementId3,ref:ref3,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2775+0),pixelHeight:1258,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png\",srcSet:\"https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png 2880w\"}},L7L5uMKL5:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2863+0),pixelHeight:1258,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png\",srcSet:\"https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png 2880w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2125+0),pixelHeight:1258,pixelWidth:2880,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png\",srcSet:\"https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=512 512w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/v4ugp62jRAZMyLN5tVSJRdtfU.png 2880w\"},className:\"framer-13e5pma\",\"data-framer-name\":\"Bg img\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-umi62s\",\"data-styles-preset\":\"Jjj2T4gpQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(0, 0, 0)\"},children:/*#__PURE__*/_jsx(\"span\",{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(4437deg, rgb(255, 255, 255) 0%, rgba(255, 255, 255, 0.6) 100%)\"},children:\"Start Saving Money on Fuel Today!\"})})}),className:\"framer-1b8qg85\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4txids\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rd5bym\",\"data-framer-name\":\"Main Text Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h4\",{className:\"framer-styles-preset-67v8un\",\"data-styles-preset\":\"GiIrC5gDK\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-a82fa799-1902-4e49-be35-56eabfa16e72, rgb(0, 122, 184))\"},children:\"$10\"}),\" OFF Your Next Fill-Up\"]})}),className:\"framer-1osyp56\",\"data-framer-name\":\"Main Heading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1hmsvbq\",\"data-styles-preset\":\"pP7JHpqrA\",style:{\"--framer-text-alignment\":\"center\"},children:\"Coupon valid for first fuel purchase using the Trucker Path app.\"})}),className:\"framer-1bm1u65\",\"data-framer-name\":\"Main Subheading\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x3hvut\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-pdf7ay\",\"data-framer-name\":\"img\",fill:\"black\",intrinsicHeight:204,intrinsicWidth:292,svg:'<svg width=\"292\" height=\"204\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M40.727 119.576c0-2.011.9-3.915 2.455-5.19l103.576-84.968a11.527 11.527 0 0 1 14.621 0l103.577 84.968a6.713 6.713 0 0 1 2.455 5.19v79.045H40.727v-79.045Z\" fill=\"#464A5B\"/><rect x=\"66.084\" y=\"88.737\" width=\"176.737\" height=\"95.284\" rx=\"3.074\" fill=\"url(#a)\"/><g filter=\"url(#b)\"><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"m87.997 48.414-24.626-2.41a3.074 3.074 0 0 0-3.358 2.76l-8.23 84.125a3.073 3.073 0 0 0 2.76 3.358l24.51 2.398a7.685 7.685 0 0 1 8.284-6.138l.374-3.824a2.305 2.305 0 0 1-2.07-2.519l.374-3.824a2.304 2.304 0 0 1 2.519-2.069l.598-6.119a2.305 2.305 0 0 1-2.07-2.518l.374-3.824a2.305 2.305 0 0 1 2.52-2.07l.598-6.118a2.305 2.305 0 0 1-2.07-2.519l.375-3.824a2.305 2.305 0 0 1 2.518-2.07l.598-6.118a2.305 2.305 0 0 1-2.07-2.519l.375-3.824a2.305 2.305 0 0 1 2.518-2.07l.599-6.117a2.305 2.305 0 0 1-2.07-2.52l.374-3.823a2.305 2.305 0 0 1 2.519-2.07l.374-3.824a7.684 7.684 0 0 1-6.597-9.91Z\" fill=\"#CCE8F5\"/><path d=\"M65.762 120.251a1.929 1.929 0 0 0 .7 1.72c.259.221.585.404.978.548a5.65 5.65 0 0 0 1.345.282c.687.068 1.273.037 1.758-.092.485-.128.865-.357 1.138-.687.274-.336.438-.772.49-1.31a4.887 4.887 0 0 0-.064-1.424c-.09-.466-.207-.937-.352-1.414l2.495.244a6.71 6.71 0 0 1 .317 1.532 8.71 8.71 0 0 1-.015 1.619c-.116 1.185-.445 2.133-.987 2.844a4.252 4.252 0 0 1-2.127 1.474c-.87.271-1.86.353-2.965.245-.826-.081-1.572-.269-2.236-.566a5.16 5.16 0 0 1-1.685-1.197 4.491 4.491 0 0 1-1.01-1.773c-.215-.69-.28-1.46-.197-2.311a8.028 8.028 0 0 1 .35-1.648 7.31 7.31 0 0 1 .75-1.66l2.235 1.13c-.228.38-.427.768-.596 1.164-.17.395-.277.822-.322 1.28Zm4.677-14.977c.842.083 1.599.26 2.27.532.668.266 1.23.638 1.686 1.115.456.477.786 1.064.989 1.763.198.698.251 1.515.16 2.451-.09.916-.3 1.697-.63 2.343a4.31 4.31 0 0 1-1.303 1.539 4.8 4.8 0 0 1-1.88.789c-.712.141-1.494.17-2.346.087-1.135-.111-2.102-.394-2.902-.849a4.206 4.206 0 0 1-1.779-1.939c-.386-.832-.519-1.86-.399-3.085.122-1.245.452-2.233.991-2.964a4.128 4.128 0 0 1 2.125-1.526c.877-.282 1.883-.367 3.018-.256Zm-.735 7.514c.658.064 1.23.045 1.718-.058.487-.104.874-.305 1.16-.603.285-.299.453-.71.505-1.233.053-.542-.032-.985-.255-1.329-.222-.348-.563-.616-1.022-.801-.46-.191-1.017-.318-1.675-.383-.985-.096-1.78-.008-2.385.265-.605.272-.947.809-1.025 1.611-.052.533.035.976.262 1.33.227.349.572.621 1.036.818.464.191 1.024.318 1.681.383Zm-3.608-19.301 6.572.643c.916.09 1.696.342 2.339.756a3.643 3.643 0 0 1 1.407 1.722c.296.732.392 1.624.29 2.674-.148 1.504-.646 2.614-1.495 3.33-.85.716-1.978 1.005-3.388.867l-6.639-.649.29-2.965 6.408.627c.772.075 1.346-.014 1.723-.269s.593-.663.648-1.226c.039-.403-.004-.74-.128-1.008-.13-.269-.353-.477-.67-.623-.317-.152-.735-.253-1.253-.304l-6.393-.625.289-2.95Zm.594-6.072c.135-1.384.538-2.39 1.208-3.019.67-.633 1.56-.895 2.67-.786.498.048.97.167 1.413.357a3.2 3.2 0 0 1 1.157.814c.327.354.57.807.727 1.36.157.549.198 1.211.122 1.988l-.081.829 3.622.354-.289 2.95-10.919-1.068.37-3.779Zm2.376.3-.075.762 2.51.245.057-.582a1.962 1.962 0 0 0-.058-.722 1.132 1.132 0 0 0-.374-.564c-.186-.154-.444-.247-.772-.28-.344-.033-.633.042-.867.225-.239.183-.38.488-.421.916Zm4.644-15.87c.841.083 1.598.26 2.27.532.668.266 1.23.638 1.686 1.115.456.477.785 1.064.988 1.763.198.698.252 1.515.16 2.45-.09.917-.3 1.698-.629 2.345a4.31 4.31 0 0 1-1.304 1.538 4.813 4.813 0 0 1-1.88.79c-.712.14-1.494.17-2.345.086-1.135-.11-2.103-.394-2.903-.85a4.205 4.205 0 0 1-1.778-1.938c-.386-.832-.52-1.86-.4-3.085.122-1.244.453-2.232.992-2.964a4.133 4.133 0 0 1 2.125-1.526c.877-.281 1.883-.366 3.018-.255Zm-.735 7.514c.657.064 1.23.045 1.717-.058.488-.103.874-.304 1.16-.603.285-.299.454-.71.505-1.232.053-.543-.032-.986-.254-1.33-.223-.348-.564-.615-1.023-.801-.459-.19-1.017-.318-1.674-.382-.986-.097-1.781-.009-2.386.264-.605.272-.946.81-1.025 1.611-.052.533.035.976.262 1.33.227.349.573.622 1.036.818.464.19 1.025.319 1.682.383Zm7.42-19.346-.38 3.87-8.082 3.235-.007.067c.237-.002.52.003.85.015.332.013.67.028 1.014.047.34.018.647.04.921.067l4.922.482-.256 2.613-10.919-1.068.377-3.853 7.977-3.231.004-.045a58.56 58.56 0 0 1-.833-.036l-.968-.05a28.63 28.63 0 0 1-.86-.069l-4.937-.483.257-2.629 10.92 1.068Z\" fill=\"#007FBA\"/><path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M94.595 58.315a8.07 8.07 0 0 0 8.464-8.428L253.8 64.634a3.073 3.073 0 0 1 2.759 3.358l-8.23 84.125a3.073 3.073 0 0 1-3.358 2.76L94.231 140.13a8.07 8.07 0 0 0-6.895-7.614l.375-3.833a1.93 1.93 0 0 0 2.109-1.733l.447-4.571a1.93 1.93 0 0 0-1.733-2.109l.598-6.118a1.93 1.93 0 0 0 2.11-1.733l.447-4.57a1.93 1.93 0 0 0-1.733-2.109l.598-6.119a1.93 1.93 0 0 0 2.11-1.733l.446-4.57a1.93 1.93 0 0 0-1.733-2.11l.599-6.117a1.93 1.93 0 0 0 2.109-1.733l.447-4.57a1.93 1.93 0 0 0-1.733-2.11l.598-6.118a1.93 1.93 0 0 0 2.11-1.733l.446-4.57a1.93 1.93 0 0 0-1.733-2.11l.375-3.832Z\" fill=\"url(#c)\"/><path d=\"m114.989 114.519 2.174-3.419 1.996.196-3.42 5.052-.333 3.399-1.84-.18.327-3.34-2.37-5.678 2.007.196 1.459 3.774Zm12.771 2.015a6.323 6.323 0 0 1-.431 1.816 3.912 3.912 0 0 1-.903 1.347c-.378.365-.838.63-1.381.794-.542.16-1.17.205-1.883.136-.713-.07-1.32-.236-1.821-.498a3.39 3.39 0 0 1-1.207-1.047 3.957 3.957 0 0 1-.619-1.502 6.38 6.38 0 0 1-.07-1.871c.088-.904.313-1.677.673-2.317a3.385 3.385 0 0 1 1.527-1.431c.654-.31 1.457-.418 2.408-.325.948.092 1.709.354 2.282.784.577.43.98.997 1.209 1.699.233.702.305 1.507.216 2.415Zm-6.375-.623c-.059.609-.035 1.142.073 1.599.113.454.32.816.624 1.087.303.267.714.425 1.232.476.526.052.963-.024 1.313-.227.35-.207.62-.523.81-.946.195-.428.322-.946.382-1.556.089-.916-.012-1.653-.303-2.213-.291-.559-.829-.877-1.613-.954-.522-.051-.96.027-1.314.234-.35.203-.624.518-.822.945-.195.423-.322.941-.382 1.555Zm15.722-2.86-.553 5.653a3.356 3.356 0 0 1-.56 1.592c-.31.456-.748.799-1.313 1.029-.562.231-1.249.306-2.061.227-1.155-.113-2.007-.494-2.554-1.143-.548-.649-.775-1.459-.679-2.431l.55-5.628 1.846.181-.523 5.347c-.07.721.028 1.241.294 1.561.266.32.688.508 1.266.564.406.04.741.002 1.006-.113a1.25 1.25 0 0 0 .625-.59c.148-.279.244-.644.288-1.094l.522-5.335 1.846.18Zm4.684.459c.793.077 1.437.237 1.932.478.499.242.855.568 1.068.979.213.411.291.912.233 1.501a2.29 2.29 0 0 1-.329 1.023 2.406 2.406 0 0 1-.672.701c-.267.183-.55.326-.85.429l2.197 4.058-2.056-.202-1.757-3.555-.986-.097-.328 3.352-1.852-.181.855-8.735 2.545.249Zm-.28 1.504-.561-.055-.231 2.361.597.058c.614.06 1.062.001 1.344-.176.288-.181.451-.471.49-.869.04-.414-.074-.723-.344-.926-.266-.203-.697-.334-1.295-.393Zm15.886 8.841-2.354-.23-3.154-6.98-.053-.005c-.011.276-.024.554-.04.834l-.046.84-.045.834-.402 4.111-1.655-.162.854-8.735 2.336.228 3.154 6.914.042.004c.019-.272.035-.541.049-.809l.043-.805.054-.802.405-4.135 1.667.163-.855 8.735Zm7.235.708-5.03-.492.854-8.735 5.031.492-.148 1.517-3.179-.31-.188 1.917 2.958.29-.149 1.517-2.957-.289-.22 2.253 3.178.31-.15 1.53Zm8.891.87-2.115-.207-1.708-3.503-2.355 3.105-1.984-.194 3.339-4.221-2.299-4.496 2.044.2 1.574 3.327 2.154-2.962 1.995.195-3.166 4.064 2.521 4.692Zm4.469.437-1.852-.181.704-7.194-2.372-.232.15-1.541 6.597.645-.151 1.541-2.372-.232-.704 7.194Zm8.717.853-1.822-.178.854-8.736 5.007.49-.148 1.518-3.185-.312-.22 2.253 2.963.29-.147 1.511-2.964-.29-.338 3.454Zm4.894.478.854-8.735 1.852.182-.854 8.735-1.852-.182Zm4.05.397.855-8.735 1.852.181-.705 7.205 3.543.347-.149 1.53-5.396-.528Zm6.919.677.855-8.735 1.852.181-.705 7.205 3.543.347-.15 1.529-5.395-.527Zm6.432-1.929.146-1.493 3.209.314-.147 1.493-3.208-.314Zm12.395-5.048-.553 5.652a3.356 3.356 0 0 1-.56 1.592c-.31.456-.748.799-1.313 1.03-.562.23-1.249.306-2.061.226-1.155-.113-2.007-.494-2.554-1.142-.548-.649-.775-1.46-.679-2.431l.55-5.629 1.846.181-.523 5.347c-.07.721.028 1.242.294 1.561.266.32.688.508 1.266.564.406.04.741.003 1.006-.112.269-.115.477-.312.625-.591.148-.279.244-.643.288-1.093l.522-5.336 1.846.181Zm4.929.482c1.127.11 1.926.434 2.396.97.471.533.665 1.223.582 2.072a3.516 3.516 0 0 1-.281 1.082 2.416 2.416 0 0 1-.658.871c-.286.245-.653.427-1.103.543-.449.113-.993.139-1.63.076l-.795-.078-.304 3.107-1.852-.181.855-8.735 2.79.273Zm-.244 1.508-.842-.082-.254 2.593.609.059c.347.034.652.018.916-.049.264-.066.475-.19.634-.372.158-.182.252-.426.282-.732.042-.431-.046-.761-.265-.991-.218-.235-.578-.377-1.08-.426Z\" fill=\"#646566\"/><path d=\"m118.354 100.188.353-3.603c-1.586-.191-2.994-.48-4.223-.865a18.164 18.164 0 0 1-3.298-1.427l.463-4.732c.967.59 2.137 1.156 3.507 1.7 1.371.533 2.692.903 3.963 1.112l.543-5.557c-1.815-.925-3.257-1.79-4.324-2.594-1.054-.815-1.791-1.671-2.21-2.569-.406-.908-.55-1.96-.433-3.155.119-1.219.545-2.239 1.276-3.06.745-.832 1.724-1.46 2.935-1.884 1.212-.424 2.583-.628 4.113-.611l.269-2.742 2.455.24-.261 2.67c1.382.184 2.656.471 3.824.863a18.45 18.45 0 0 1 3.435 1.513l-2.095 4.029a18.584 18.584 0 0 0-2.864-1.24 19.475 19.475 0 0 0-2.735-.72l-.517 5.288a44.145 44.145 0 0 1 3.626 1.966c1.139.69 2.041 1.514 2.708 2.472.666.958.929 2.154.789 3.588-.174 1.78-.972 3.21-2.392 4.29-1.409 1.08-3.44 1.612-6.092 1.594l-.359 3.674-2.456-.24Zm3.233-7.7c.85-.062 1.489-.247 1.918-.555.429-.32.671-.76.726-1.322a1.555 1.555 0 0 0-.181-.922c-.154-.28-.404-.553-.753-.816a9.134 9.134 0 0 0-1.274-.849l-.436 4.464ZM120.173 81.6l.412-4.212a4.353 4.353 0 0 0-1.29.236c-.362.121-.645.299-.848.532a1.508 1.508 0 0 0-.357.87c-.034.347.014.659.144.937.141.28.368.549.681.809.324.26.743.537 1.258.828Zm25.276 19.085-5.538-.542 1.483-15.164a110.017 110.017 0 0 1 .408-3.434c.089-.655.17-1.244.246-1.767-.147.142-.442.384-.886.727-.43.332-.833.63-1.209.895l-3.248 2.125-2.345-3.595 9.1-5.896 4.553.446-2.564 26.205Zm26.77-10.609c-.206 2.115-.558 3.987-1.056 5.615-.485 1.63-1.148 2.988-1.991 4.076-.83 1.089-1.861 1.881-3.091 2.376-1.231.495-2.683.66-4.356.496-2.103-.205-3.778-.906-5.024-2.102-1.245-1.207-2.092-2.846-2.541-4.917-.447-2.083-.534-4.528-.259-7.336.277-2.832.806-5.223 1.588-7.173.795-1.962 1.915-3.414 3.358-4.359 1.444-.944 3.283-1.307 5.517-1.089 2.092.205 3.76.911 5.005 2.119 1.258 1.196 2.117 2.837 2.577 4.92.46 2.072.552 4.53.273 7.374Zm-12.815-1.254c-.196 1.996-.251 3.673-.167 5.033.097 1.348.376 2.383.836 3.104.461.72 1.157 1.126 2.089 1.217.92.09 1.675-.168 2.265-.773.603-.617 1.083-1.577 1.44-2.882.358-1.316.635-2.978.832-4.985.195-1.996.245-3.674.148-5.034-.096-1.36-.38-2.402-.852-3.124-.459-.732-1.149-1.144-2.069-1.234-.932-.09-1.694.178-2.287.808-.591.618-1.066 1.585-1.424 2.901-.346 1.317-.616 2.974-.811 4.97Z\" fill=\"#007FBA\"/><path d=\"M203.355 96.366c-.152 1.546-.483 2.936-.993 4.169-.51 1.225-1.206 2.256-2.087 3.093-.871.838-1.934 1.445-3.188 1.821-1.252.367-2.702.47-4.349.309-1.647-.161-3.05-.543-4.208-1.146-1.157-.612-2.087-1.414-2.788-2.406-.693-.991-1.17-2.141-1.432-3.45-.263-1.31-.317-2.742-.165-4.297.203-2.076.72-3.85 1.551-5.32.842-1.478 2.017-2.572 3.526-3.283 1.51-.712 3.364-.96 5.563-.744 2.19.214 3.948.815 5.272 1.804 1.334.989 2.266 2.29 2.795 3.902.539 1.613.707 3.463.503 5.548Zm-14.727-1.44c-.137 1.399-.081 2.623.17 3.673.26 1.041.741 1.873 1.442 2.496.701.613 1.65.978 2.847 1.095 1.214.119 2.225-.054 3.032-.52.809-.475 1.432-1.199 1.871-2.172.449-.98.742-2.171.879-3.57.206-2.104-.028-3.799-.701-5.083-.673-1.285-1.916-2.016-3.729-2.194-1.205-.117-2.217.06-3.034.535-.808.465-1.44 1.188-1.898 2.169-.449.972-.742 2.162-.879 3.57Zm22.135 12.318-4.21-.412 1.962-20.059 11.567 1.132-.341 3.485-7.357-.72-.506 5.173 6.846.67-.34 3.47-6.846-.67-.775 7.931Zm15.513 1.518-4.209-.412 1.962-20.059 11.566 1.132-.341 3.485-7.356-.72-.506 5.172 6.846.67-.34 3.471-6.846-.669-.776 7.93Z\" fill=\"#262B2F\"/></g><path d=\"m40.727 127.926 226.684 70.695H40.727v-70.695Z\" fill=\"url(#d)\"/><g filter=\"url(#e)\"><path d=\"M267.41 127.926 40.726 198.621H267.41v-70.695Z\" fill=\"url(#f)\"/></g><g filter=\"url(#g)\"><path d=\"M120.706 156.689a23.043 23.043 0 0 1 10.704-2.636h45.318c3.728 0 7.401.904 10.704 2.636l79.979 41.932H40.727l79.979-41.932Z\" fill=\"url(#h)\"/></g><path d=\"M292 183.637c-2.69-.769-4.226-5.379-3.842-7.3-7.992 0-13.063 6.916-14.6 10.374 1.152.768 3.458 3.688 3.458 9.221.384-3.074 6.531-8.837 14.984-12.295ZM47.642 56.463c-2.69.769-4.226 5.38-3.842 7.3-7.991 0-13.063-6.916-14.6-10.373 1.153-.769 3.458-3.689 3.458-9.222.384 3.074 6.532 8.837 14.984 12.295Z\" fill=\"#92BEFF\"/><path d=\"m282.779 42.632-6.147-9.221c0 9.835-6.148 14.856-9.222 16.136 1.409.513 5.226 2.229 9.222 4.995 3.995-1.23 5.763-8.453 6.147-11.91ZM15.368 91.426l-6.147 9.221c0-9.836-6.147-14.856-9.221-16.137 1.409-.512 5.225-2.228 9.221-4.994 3.996 1.23 5.763 8.452 6.147 11.91Z\" fill=\"#FFB44A\"/><path d=\"m136.395 0-7.3 8.837 9.221 8.837A335.826 335.826 0 0 1 146 11.91c-3.688-.615-7.94-8.197-9.605-11.911ZM28.048 197.084l-7.3-8.837 9.22-8.837a336.66 336.66 0 0 0 7.685 5.764c-3.689.614-7.94 8.196-9.605 11.91Z\" fill=\"#84E1FC\"/><defs><linearGradient id=\"a\" x1=\"154.453\" y1=\"88.737\" x2=\"154.453\" y2=\"184.021\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#E8E8E8\"/></linearGradient><linearGradient id=\"c\" x1=\"95.342\" y1=\"50.676\" x2=\"255.029\" y2=\"157.809\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#fff\"/><stop offset=\"1\" stop-color=\"#F8F8F8\"/></linearGradient><linearGradient id=\"d\" x1=\"154.069\" y1=\"127.926\" x2=\"154.069\" y2=\"198.621\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".203\" stop-color=\"#008DCE\"/><stop offset=\".619\" stop-color=\"#007FBA\"/></linearGradient><linearGradient id=\"f\" x1=\"154.068\" y1=\"127.926\" x2=\"154.068\" y2=\"198.621\" gradientUnits=\"userSpaceOnUse\"><stop offset=\".203\" stop-color=\"#008DCE\"/><stop offset=\".619\" stop-color=\"#007FBA\"/></linearGradient><linearGradient id=\"h\" x1=\"154.069\" y1=\"154.053\" x2=\"154.069\" y2=\"198.621\" gradientUnits=\"userSpaceOnUse\"><stop stop-color=\"#0094D9\"/><stop offset=\".776\" stop-color=\"#0079B2\"/><stop offset=\"1\" stop-color=\"#0086C5\"/></linearGradient><filter id=\"b\" x=\"44.084\" y=\"41.379\" width=\"220.174\" height=\"124.27\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"3.074\"/><feGaussianBlur stdDeviation=\"3.842\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/><feBlend in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3767_31377\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_3767_31377\" result=\"shape\"/></filter><filter id=\"e\" x=\"35.347\" y=\"120.242\" width=\"237.442\" height=\"81.453\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"-2.305\"/><feGaussianBlur stdDeviation=\"2.689\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0\"/><feBlend mode=\"overlay\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3767_31377\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_3767_31377\" result=\"shape\"/></filter><filter id=\"g\" x=\"33.811\" y=\"144.832\" width=\"240.516\" height=\"58.4\" filterUnits=\"userSpaceOnUse\" color-interpolation-filters=\"sRGB\"><feFlood flood-opacity=\"0\" result=\"BackgroundImageFix\"/><feColorMatrix in=\"SourceAlpha\" values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0\" result=\"hardAlpha\"/><feOffset dy=\"-2.305\"/><feGaussianBlur stdDeviation=\"3.458\"/><feComposite in2=\"hardAlpha\" operator=\"out\"/><feColorMatrix values=\"0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.49 0\"/><feBlend mode=\"overlay\" in2=\"BackgroundImageFix\" result=\"effect1_dropShadow_3767_31377\"/><feBlend in=\"SourceGraphic\" in2=\"effect1_dropShadow_3767_31377\" result=\"shape\"/></filter></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8nvdb7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1po14y4\",\"data-styles-preset\":\"e8MqUfc3j\",children:\"Send me the link\"})}),className:\"framer-17ex5pv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-rjti0t-container\",isAuthoredByUser:true,nodeId:\"FsiyHTlUt\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(SMS,{apiUrl:\"https://api.truckerpath.com/business-order-api/business/order/coupon/get/official/promo/coupon\",height:\"100%\",id:\"FsiyHTlUt\",layoutId:\"FsiyHTlUt\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-apsi1r\",\"data-styles-preset\":\"dvxIS3aly\",children:[\"By providing your phone number, you agree to our \",/*#__PURE__*/_jsx(Link,{href:\"https://www.truckerpath.com/terms-of-service/\",motionChild:true,nodeId:\"gKsbzigm_\",openInNewTab:true,scopeId:\"ab74BD7RQ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dq1qtr\",\"data-styles-preset\":\"lF9kmblJi\",children:\"Terms\"})}),\" & \",/*#__PURE__*/_jsx(Link,{href:\"https://www.truckerpath.com/privacy-policy/\",motionChild:true,nodeId:\"gKsbzigm_\",openInNewTab:true,scopeId:\"ab74BD7RQ\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1dq1qtr\",\"data-styles-preset\":\"lF9kmblJi\",children:\"Privacy Policy.\"})})]})}),className:\"framer-z8tqhs\",\"data-framer-name\":\"Terms Text\",fonts:[\"Inter\"],verticalAlignment:\"center\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{y:(componentViewport?.y||0)+0+2775+60+807},L7L5uMKL5:{y:(componentViewport?.y||0)+0+2863+60+698.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+2125+100+742.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1smbvi1-container\",nodeId:\"rJWWW6kcP\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(DownloadBagdgesGroup,{height:\"100%\",hHCEsWAEW:\"0px\",id:\"rJWWW6kcP\",layoutId:\"rJWWW6kcP\",QO8lGOMOu:16,variant:\"upp2S22KY\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{y:(componentViewport?.y||0)+0+3750},L7L5uMKL5:{y:(componentViewport?.y||0)+0+3729.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3095.5,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3clrrf-container\",nodeId:\"ShtiHRJKf\",scopeId:\"ab74BD7RQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ARktpiYTN:{variant:\"Tupd4QPAz\"},hq3dJOg3n:{variant:\"bs7C5EElh\"},L7L5uMKL5:{variant:\"gCkJBx_cq\"}},children:/*#__PURE__*/_jsx(DeclarationFuelSavings,{height:\"100%\",id:\"ShtiHRJKf\",layoutId:\"ShtiHRJKf\",SF1DhqbPf:\"*Savings vary based upon Trucker Path Fuel Network stops utilized and overall market conditions. The savings cited are calculated utilizing the average retail price across the Trucker Path Fuel Network over the preceding months minus the actual average discounted price paid by drivers for the same time period multiplied by the average number of gallons purchased by driver per fill-up.\",style:{width:\"100%\"},variant:\"E27l6202f\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vn7kg.framer-gf6v2s, .framer-vn7kg .framer-gf6v2s { display: block; }\",\".framer-vn7kg.framer-1odfep1 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1920px; }\",\".framer-vn7kg .framer-gmhkk9-container { flex: none; height: 800px; position: relative; width: 100%; }\",\".framer-vn7kg.framer-dn8yb2, .framer-vn7kg.framer-88ivus, .framer-vn7kg.framer-1sum64x { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-vn7kg.framer-1uhm2g4-container, .framer-vn7kg.framer-vbglpo-container, .framer-vn7kg.framer-gt4rbj-container { aspect-ratio: 1.7790178571428572 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 112px); left: 50%; position: fixed; top: 50%; transform: translate(-50%, -50%); width: 80%; z-index: 10; }\",\".framer-vn7kg.framer-ifvxgn, .framer-vn7kg.framer-jao17y, .framer-vn7kg.framer-it6vea { 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: fixed; right: 14px; top: 24px; width: min-content; z-index: 10; }\",\".framer-vn7kg .framer-187wl1u-container, .framer-vn7kg .framer-6782ne-container, .framer-vn7kg .framer-p05qok-container { cursor: pointer; flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-vn7kg .framer-ruu930 { align-content: center; align-items: center; background-color: var(--token-f185e619-7ab0-4648-8fea-7397aa0c9ce6, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-jcnt3v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-m6ftqd { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 550px); overflow: hidden; position: relative; width: 550px; }\",\".framer-vn7kg .framer-1l3e8zi { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 540px; }\",\".framer-vn7kg .framer-12mqxlq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; max-width: 800px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-14rxxy0, .framer-vn7kg .framer-1osyp56, .framer-vn7kg .framer-1bm1u65, .framer-vn7kg .framer-z8tqhs { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vn7kg .framer-fti3vd { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-fbovlu-container, .framer-vn7kg .framer-1vwey3p-container, .framer-vn7kg .framer-1cidb3o-container, .framer-vn7kg .framer-gp1gb3-container, .framer-vn7kg .framer-1ju3wj5-container, .framer-vn7kg .framer-ugewcf-container, .framer-vn7kg .framer-rjti0t-container, .framer-vn7kg .framer-3clrrf-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-vn7kg .framer-1s9g6mj, .framer-vn7kg .framer-xwt05i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vn7kg .framer-w5vjak-container, .framer-vn7kg .framer-49pvuj-container, .framer-vn7kg .framer-1gwgr88-container, .framer-vn7kg .framer-8cmo0q-container { flex: none; height: auto; position: relative; width: 170px; }\",\".framer-vn7kg .framer-a8uyzh { align-content: center; align-items: center; background-color: var(--token-62c1f5e9-89be-4736-adeb-1587e16b8dc0, #f9fafb); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-9wpeqa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 50px; height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-vn7kg .framer-1m5m6c5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-vn7kg .framer-1d412iv, .framer-vn7kg .framer-17ex5pv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vn7kg .framer-1k0aqj3 { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-105ajeg-container, .framer-vn7kg .framer-xlpcyu-container, .framer-vn7kg .framer-17uetx8-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-vn7kg .framer-1afjcdd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-13e5pma { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-vn7kg .framer-1b8qg85 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1000px; word-break: break-word; word-wrap: break-word; z-index: 1; }\",\".framer-vn7kg .framer-4txids { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 820px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-vn7kg .framer-1rd5bym { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: 65px; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-1x3hvut { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-vn7kg .framer-pdf7ay { aspect-ratio: 1.4313725490196079 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 187px); position: relative; width: 40%; }\",\".framer-vn7kg .framer-8nvdb7 { align-content: flex-start; align-items: flex-start; background-color: var(--token-d80b3190-c49e-4e8e-9d12-137cee80c406, #f7fcff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 14px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vn7kg .framer-1smbvi1-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vn7kg.framer-1odfep1, .framer-vn7kg.framer-ifvxgn, .framer-vn7kg .framer-ruu930, .framer-vn7kg .framer-1l3e8zi, .framer-vn7kg .framer-12mqxlq, .framer-vn7kg .framer-fti3vd, .framer-vn7kg .framer-1s9g6mj, .framer-vn7kg.framer-jao17y, .framer-vn7kg .framer-a8uyzh, .framer-vn7kg .framer-9wpeqa, .framer-vn7kg .framer-1m5m6c5, .framer-vn7kg .framer-xwt05i, .framer-vn7kg.framer-it6vea, .framer-vn7kg .framer-1afjcdd, .framer-vn7kg .framer-4txids, .framer-vn7kg .framer-1rd5bym, .framer-vn7kg .framer-1x3hvut, .framer-vn7kg .framer-8nvdb7 { gap: 0px; } .framer-vn7kg.framer-1odfep1 > *, .framer-vn7kg .framer-ruu930 > *, .framer-vn7kg .framer-a8uyzh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-vn7kg.framer-1odfep1 > :first-child, .framer-vn7kg .framer-ruu930 > :first-child, .framer-vn7kg .framer-1l3e8zi > :first-child, .framer-vn7kg .framer-12mqxlq > :first-child, .framer-vn7kg .framer-fti3vd > :first-child, .framer-vn7kg .framer-a8uyzh > :first-child, .framer-vn7kg .framer-9wpeqa > :first-child, .framer-vn7kg .framer-1m5m6c5 > :first-child, .framer-vn7kg .framer-1afjcdd > :first-child, .framer-vn7kg .framer-4txids > :first-child, .framer-vn7kg .framer-1rd5bym > :first-child, .framer-vn7kg .framer-8nvdb7 > :first-child { margin-top: 0px; } .framer-vn7kg.framer-1odfep1 > :last-child, .framer-vn7kg .framer-ruu930 > :last-child, .framer-vn7kg .framer-1l3e8zi > :last-child, .framer-vn7kg .framer-12mqxlq > :last-child, .framer-vn7kg .framer-fti3vd > :last-child, .framer-vn7kg .framer-a8uyzh > :last-child, .framer-vn7kg .framer-9wpeqa > :last-child, .framer-vn7kg .framer-1m5m6c5 > :last-child, .framer-vn7kg .framer-1afjcdd > :last-child, .framer-vn7kg .framer-4txids > :last-child, .framer-vn7kg .framer-1rd5bym > :last-child, .framer-vn7kg .framer-8nvdb7 > :last-child { margin-bottom: 0px; } .framer-vn7kg.framer-ifvxgn > *, .framer-vn7kg.framer-jao17y > *, .framer-vn7kg.framer-it6vea > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vn7kg.framer-ifvxgn > :first-child, .framer-vn7kg .framer-1s9g6mj > :first-child, .framer-vn7kg.framer-jao17y > :first-child, .framer-vn7kg .framer-xwt05i > :first-child, .framer-vn7kg.framer-it6vea > :first-child, .framer-vn7kg .framer-1x3hvut > :first-child { margin-left: 0px; } .framer-vn7kg.framer-ifvxgn > :last-child, .framer-vn7kg .framer-1s9g6mj > :last-child, .framer-vn7kg.framer-jao17y > :last-child, .framer-vn7kg .framer-xwt05i > :last-child, .framer-vn7kg.framer-it6vea > :last-child, .framer-vn7kg .framer-1x3hvut > :last-child { margin-right: 0px; } .framer-vn7kg .framer-1l3e8zi > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vn7kg .framer-12mqxlq > *, .framer-vn7kg .framer-1rd5bym > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-vn7kg .framer-fti3vd > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-vn7kg .framer-1s9g6mj > *, .framer-vn7kg .framer-xwt05i > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-vn7kg .framer-9wpeqa > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-vn7kg .framer-1m5m6c5 > *, .framer-vn7kg .framer-8nvdb7 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-vn7kg .framer-1afjcdd > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-vn7kg .framer-4txids > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-vn7kg .framer-1x3hvut > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,\"@media (min-width: 1280px) and (max-width: 1919px) { .framer-vn7kg.framer-1odfep1 { width: 1280px; } .framer-vn7kg .framer-gmhkk9-container { order: 0; } .framer-vn7kg .framer-ruu930 { order: 1; } .framer-vn7kg .framer-a8uyzh { order: 2; } .framer-vn7kg .framer-1m5m6c5 { width: 100%; } .framer-vn7kg .framer-1afjcdd { order: 3; } .framer-vn7kg .framer-3clrrf-container { order: 4; }}\",\"@media (min-width: 810px) and (max-width: 1279px) { .framer-vn7kg.framer-1odfep1 { width: 810px; } .framer-vn7kg .framer-gmhkk9-container { height: auto; order: 0; } .framer-vn7kg .framer-ruu930 { order: 1; padding: 60px 40px 60px 40px; } .framer-vn7kg .framer-jcnt3v { flex-direction: column; gap: 32px; justify-content: flex-start; } .framer-vn7kg .framer-1l3e8zi, .framer-vn7kg .framer-1m5m6c5, .framer-vn7kg .framer-1b8qg85 { width: 100%; } .framer-vn7kg .framer-a8uyzh { order: 2; padding: 60px 40px 60px 40px; } .framer-vn7kg .framer-9wpeqa { gap: 40px; } .framer-vn7kg .framer-1k0aqj3 { gap: 60px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-vn7kg .framer-1afjcdd { gap: 40px; order: 3; padding: 60px 40px 60px 40px; } .framer-vn7kg .framer-4txids { gap: 24px; width: 100%; } .framer-vn7kg .framer-3clrrf-container { order: 4; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vn7kg .framer-jcnt3v, .framer-vn7kg .framer-9wpeqa, .framer-vn7kg .framer-1k0aqj3, .framer-vn7kg .framer-1afjcdd, .framer-vn7kg .framer-4txids { gap: 0px; } .framer-vn7kg .framer-jcnt3v > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vn7kg .framer-jcnt3v > :first-child, .framer-vn7kg .framer-9wpeqa > :first-child, .framer-vn7kg .framer-1afjcdd > :first-child, .framer-vn7kg .framer-4txids > :first-child { margin-top: 0px; } .framer-vn7kg .framer-jcnt3v > :last-child, .framer-vn7kg .framer-9wpeqa > :last-child, .framer-vn7kg .framer-1afjcdd > :last-child, .framer-vn7kg .framer-4txids > :last-child { margin-bottom: 0px; } .framer-vn7kg .framer-9wpeqa > *, .framer-vn7kg .framer-1afjcdd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vn7kg .framer-1k0aqj3 > *, .framer-vn7kg .framer-1k0aqj3 > :first-child, .framer-vn7kg .framer-1k0aqj3 > :last-child { margin: 0px; } .framer-vn7kg .framer-4txids > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }}\",\"@media (max-width: 809px) { .framer-vn7kg.framer-1odfep1 { width: 390px; } .framer-vn7kg .framer-gmhkk9-container { height: auto; } .framer-vn7kg .framer-ruu930 { padding: 40px 20px 60px 20px; } .framer-vn7kg .framer-jcnt3v { flex-direction: column; gap: 20px; justify-content: flex-start; } .framer-vn7kg .framer-m6ftqd { height: var(--framer-aspect-ratio-supported, 350px); width: 100%; } .framer-vn7kg .framer-1l3e8zi, .framer-vn7kg .framer-1b8qg85 { width: 100%; } .framer-vn7kg .framer-1s9g6mj { gap: 12px; max-width: 430px; width: 100%; } .framer-vn7kg .framer-w5vjak-container { flex: 1 0 0px; order: 0; width: 1px; } .framer-vn7kg .framer-49pvuj-container { flex: 1 0 0px; order: 1; width: 1px; } .framer-vn7kg .framer-a8uyzh { padding: 60px 20px 60px 20px; } .framer-vn7kg .framer-9wpeqa { gap: 32px; } .framer-vn7kg .framer-1m5m6c5 { order: 0; width: 100%; } .framer-vn7kg .framer-1d412iv { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-vn7kg .framer-1k0aqj3 { gap: 40px; grid-template-columns: repeat(1, minmax(50px, 1fr)); order: 1; } .framer-vn7kg .framer-xwt05i { gap: 12px; max-width: 430px; order: 2; width: 100%; } .framer-vn7kg .framer-1gwgr88-container, .framer-vn7kg .framer-8cmo0q-container { flex: 1 0 0px; width: 1px; } .framer-vn7kg .framer-1afjcdd { gap: 40px; padding: 60px 20px 60px 20px; } .framer-vn7kg .framer-4txids { padding: 20px; width: 100%; } .framer-vn7kg .framer-1x3hvut { flex-direction: column; } .framer-vn7kg .framer-pdf7ay { height: var(--framer-aspect-ratio-supported, 177px); width: 253px; } .framer-vn7kg .framer-8nvdb7 { background-color: unset; flex: none; gap: 12px; padding: 0px; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-vn7kg .framer-jcnt3v, .framer-vn7kg .framer-1s9g6mj, .framer-vn7kg .framer-9wpeqa, .framer-vn7kg .framer-1k0aqj3, .framer-vn7kg .framer-xwt05i, .framer-vn7kg .framer-1afjcdd, .framer-vn7kg .framer-1x3hvut, .framer-vn7kg .framer-8nvdb7 { gap: 0px; } .framer-vn7kg .framer-jcnt3v > *, .framer-vn7kg .framer-1x3hvut > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vn7kg .framer-jcnt3v > :first-child, .framer-vn7kg .framer-9wpeqa > :first-child, .framer-vn7kg .framer-1afjcdd > :first-child, .framer-vn7kg .framer-1x3hvut > :first-child, .framer-vn7kg .framer-8nvdb7 > :first-child { margin-top: 0px; } .framer-vn7kg .framer-jcnt3v > :last-child, .framer-vn7kg .framer-9wpeqa > :last-child, .framer-vn7kg .framer-1afjcdd > :last-child, .framer-vn7kg .framer-1x3hvut > :last-child, .framer-vn7kg .framer-8nvdb7 > :last-child { margin-bottom: 0px; } .framer-vn7kg .framer-1s9g6mj > *, .framer-vn7kg .framer-xwt05i > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-vn7kg .framer-1s9g6mj > :first-child, .framer-vn7kg .framer-xwt05i > :first-child { margin-left: 0px; } .framer-vn7kg .framer-1s9g6mj > :last-child, .framer-vn7kg .framer-xwt05i > :last-child { margin-right: 0px; } .framer-vn7kg .framer-9wpeqa > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vn7kg .framer-1k0aqj3 > *, .framer-vn7kg .framer-1k0aqj3 > :first-child, .framer-vn7kg .framer-1k0aqj3 > :last-child { margin: 0px; } .framer-vn7kg .framer-1afjcdd > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-vn7kg .framer-8nvdb7 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 3664\n * @framerIntrinsicWidth 1920\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hq3dJOg3n\":{\"layout\":[\"fixed\",\"auto\"]},\"L7L5uMKL5\":{\"layout\":[\"fixed\",\"auto\"]},\"ARktpiYTN\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"HXDJPuK27\":{\"pattern\":\":HXDJPuK27\",\"name\":\"s-1\"},\"MQHXH2xSv\":{\"pattern\":\":MQHXH2xSv\",\"name\":\"3pl\"},\"JnU00FjiM\":{\"pattern\":\":JnU00FjiM\",\"name\":\"benifits\"},\"RVjCJbQd9\":{\"pattern\":\":RVjCJbQd9\",\"name\":\"form-get-coupon\"}}\n * @framerResponsiveScreen\n */const Framerab74BD7RQ=withCSS(Component,css,\"framer-vn7kg\");export default Framerab74BD7RQ;Framerab74BD7RQ.displayName=\"Fuel Network\";Framerab74BD7RQ.defaultProps={height:3664,width:1920};addFonts(Framerab74BD7RQ,[{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\"}]},...DefaultFonts,...YouTubeFonts,...PhosphorFonts,...OneLineWithCheckFonts,...ButtonFonts,...CardNoBgFonts,...SMSFonts,...DownloadBagdgesGroupFonts,...DeclarationFuelSavingsFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerab74BD7RQ\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"3664\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"1920\",\"framerScrollSections\":\"{\\\"HXDJPuK27\\\":{\\\"pattern\\\":\\\":HXDJPuK27\\\",\\\"name\\\":\\\"s-1\\\"},\\\"MQHXH2xSv\\\":{\\\"pattern\\\":\\\":MQHXH2xSv\\\",\\\"name\\\":\\\"3pl\\\"},\\\"JnU00FjiM\\\":{\\\"pattern\\\":\\\":JnU00FjiM\\\",\\\"name\\\":\\\"benifits\\\"},\\\"RVjCJbQd9\\\":{\\\"pattern\\\":\\\":RVjCJbQd9\\\",\\\"name\\\":\\\"form-get-coupon\\\"}}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hq3dJOg3n\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L7L5uMKL5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ARktpiYTN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["SMS", "props", "phone", "setPhone", "ye", "success", "setSuccess", "error", "setError", "isSending", "setIsSending", "formatPhone", "value", "cleaned", "match", "handlePhoneChange", "e", "handlePhoneBlur", "formatted", "handlePhoneFocus", "sendSMS", "m", "apiEndpoint", "data", "err", "ue", "style", "u", "containerStyle", "inputButtonContainerStyle", "p", "inputStyle", "buttonStyle", "buttonDisabledStyle", "errorStyle", "successStyle", "fontFamily", "addPropertyControls", "ControlType", "DefaultFonts", "getFonts", "nl2N3CEVD_default", "YouTubeFonts", "Youtube", "PhosphorFonts", "Icon", "OneLineWithCheckFonts", "EYCxEvbEL_default", "ButtonFonts", "KF7UbbSfc_default", "MotionDivWithFX", "withFX", "motion", "CardNoBgFonts", "oMnXqAvrY_default", "SMSFonts", "SMS", "DownloadBagdgesGroupFonts", "OnJMvxVw4_default", "DeclarationFuelSavingsFonts", "BdaZJ0jGi_default", "breakpoints", "serializationHash", "variantClassNames", "addImageAlt", "image", "alt", "transformTemplate1", "_", "t", "getContainer", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "animation", "transition1", "transition2", "animation1", "transition3", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "NX6uDkvxe3bnx0g", "overlay", "loadMore", "args", "onClick1wnntms", "xqgHFj_DV3bnx0g", "scopingClassNames", "cx", "router", "useRouter", "elementId", "useRouteElementId", "dynamicRef", "useSiteRefs", "elementId1", "ref1", "elementId2", "ref2", "elementId3", "ref3", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "l", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "nl2N3CEVD_default", "AnimatePresence", "Ga", "x", "Youtube", "Icon", "MotionDivWithFX", "getLoadingLazyAtYPosition", "Image2", "RichText2", "EYCxEvbEL_default", "resolvedLinks1", "KF7UbbSfc_default", "overlay1", "oMnXqAvrY_default", "resolvedLinks2", "overlay2", "SVG", "SMS", "Link", "OnJMvxVw4_default", "BdaZJ0jGi_default", "css", "Framerab74BD7RQ", "withCSS", "ab74BD7RQ_default", "addFonts", "DefaultFonts", "YouTubeFonts", "PhosphorFonts", "OneLineWithCheckFonts", "ButtonFonts", "CardNoBgFonts", "SMSFonts", "DownloadBagdgesGroupFonts", "DeclarationFuelSavingsFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
