{
  "version": 3,
  "sources": ["ssg:https://framer.com/m/framer/store.js@^1.0.0", "ssg:https://framer.com/m/framer/utils.js@^0.9.0", "ssg:https://framerusercontent.com/modules/228G8XlfE1IILUw70OxC/BQJm7eNMYEaCZ7lTna9v/Examples.js", "ssg:https://framerusercontent.com/modules/A8JhmbKxkgIFTWXC9MtC/p6HXRrP27CDRkzfHZr9J/BJ6D0kXkF.js", "ssg:https://framerusercontent.com/modules/1KAq6kKIu74x39vquwzZ/Yb7SOQbVWRodXMzTeEVe/sJ2QEITYH.js", "ssg:https://framerusercontent.com/modules/dKa5JoYrGK232tDdi4Rj/bh9qAt9hxCLCppsMipdY/cAEWa2QjR.js", "ssg:https://framerusercontent.com/modules/LrVfnYvwYXJCkZlGviIt/Lsj0lLzweZJX0QDsCWLk/fE79Ic729.js", "ssg:https://framerusercontent.com/modules/qGgBVSZeBP5WjwzAcQoX/jIHNlnZHPUkhitiCSuH4/PmhrIaB_j.js", "ssg:https://framerusercontent.com/modules/fDbbSNhM4Xnhs2kNzexx/wBbnS6Qnjd0x9MPgEPAC/WithColourHover.js", "ssg:https://framerusercontent.com/modules/me8HToL8D0oPbalwHO6A/n8Yg7IE4qfa6DMresTY2/OxdnL2CUx.js", "ssg:https://framerusercontent.com/modules/72Kppsw6xwbmtiYfkAUW/khf1iQLj3PdbyT6Krqc7/wYVPNdzFZ.js"],
  "sourcesContent": ["import{useState,useEffect}from\"react\";import{Data,useObserveData}from\"framer\";export function createStore(state1){// Use Data so that a Preview reload resets the state\nconst dataStore=Data({state:Object.freeze({...state1})});// Create a set function that updates the state\nconst setDataStore=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(dataStore.state);}dataStore.state=Object.freeze({...dataStore.state,...newState});};// Store the initial state, copy the object if it's an object\nlet storeState=typeof state1===\"object\"?Object.freeze({...state1}):state1;// Keep a list of all the listeners, in the form of React hook setters\nconst storeSetters=new Set();// Create a set function that updates all the listeners / setters\nconst setStoreState=newState=>{// If the state is an object, make sure we copy it\nif(typeof newState===\"function\"){newState=newState(storeState);}storeState=typeof newState===\"object\"?Object.freeze({...storeState,...newState}):newState;// Update all the listeners / setters with the new value\nstoreSetters.forEach(setter=>setter(storeState));};// Create the actual hook based on everything above\nfunction useStore(){// Create the hook we are going to use as a listener\nconst[state,setState]=useState(storeState);// If we unmount the component using this hook, we need to remove the listener\n// @ts-ignore\nuseEffect(()=>{// But right now, we need to add the listener\nstoreSetters.add(setState);return()=>storeSetters.delete(setState);},[]);// If Data context exists, use Data, otherwise use vanilla React state\nif(useObserveData()===true){useObserveData();return[dataStore.state,setDataStore];}else{// Return the state and a function to update the central store\nreturn[state,setStoreState];}}return useStore;}\nexport const __FramerMetadata__ = {\"exports\":{\"createStore\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./createStore.map", "export const centerContent = {\n    display: \"flex\",\n    justifyContent: \"center\",\n    alignItems: \"center\"\n};\nexport const autoSizingText = {\n    width: \"max-content\",\n    wordBreak: \"break-word\",\n    overflowWrap: \"break-word\",\n    overflow: \"hidden\",\n    whiteSpace: \"pre-wrap\",\n    flexShrink: 0\n};\nexport const defaultContainerStyles = {\n    ...centerContent,\n    overflow: \"hidden\"\n};\nexport const containerStyles = defaultContainerStyles;\nexport const randomColor = ()=>\"#\" + Math.floor(Math.random() * 16777215).toString(16)\n;\n\nexport const __FramerMetadata__ = {\"exports\":{\"centerContent\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"autoSizingText\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultContainerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"randomColor\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}}}}\n//# sourceMappingURL=./Utils.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";import{useState}from\"react\";/*#__PURE__*/_jsx(\"link\",{href:\"https://fonts.googleapis.com/css2?family=poppins&display=swap\",rel:\"stylesheet\"});const useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export default function Form(props){const[isHovered,setIsHovered]=useState(false);const[placeholder,setPlaceholder]=useState(\"Enter your email\")//for placeholder to vanish when start typing\n;const[email,setEmail]=useState(\"\")// Stores email input\n;const[isChecked,setIsChecked]=useState(false)// Stores toggle state\n;const[successMessage,setSuccessMessage]=useState(\"\")// Stores success message\n;const handleEmailChange=event=>{setEmail(event.target.value)// Update email state\n;};const handleSubmit=event=>{event.preventDefault();if(!isChecked){alert(\"You must agree to receive promotional updates.\");return;}console.log(\"Stored Email:\",email)// Log email (replace with API call if needed)\n;console.log(\"Agreed to Promotions:\",isChecked);// Send data to backend\nsetSuccessMessage(\"Thank you! Nav has got your email now!\");setEmail(\"\")// Clear input field\n;setIsChecked(false)// Reset toggle\n;setPlaceholder(\"Enter your email\")// Reset placeholder\n;// Remove success message after 5 seconds\nsetTimeout(()=>{setSuccessMessage(\"\");},3e3);};return /*#__PURE__*/_jsxs(\"div\",{children:[/*#__PURE__*/_jsxs(\"form\",{form:true,onSubmit:handleSubmit,method:\"post\",style:containerStyle,children:[/*#__PURE__*/_jsxs(\"div\",{style:inputToggleContainer,children:[/*#__PURE__*/_jsx(\"div\",{style:inputContainerStyle,children:/*#__PURE__*/_jsx(\"input\",{type:\"text\",required:true,name:\"email\",style:inputFieldStyle,placeholder:placeholder,value:email,onChange:handleEmailChange,onFocus:()=>{setPlaceholder(\"\")// clear placeholder when typing\n;},onBlur:()=>{setPlaceholder(\"Enter your email\")// placeholder if no input\n;}})}),/*#__PURE__*/_jsxs(\"label\",{style:toggleContainerStyle,children:[/*#__PURE__*/_jsx(\"input\",{type:\"checkbox\",checked:isChecked,onChange:e=>setIsChecked(e.target.checked),required:true}),/*#__PURE__*/_jsx(\"span\",{style:toggleTextStyle,children:\"I agree to receive promotional updates from Claims Compass about potential claims via email and SMS. We care about protecting your data\u2014read our Privacy Policy for more details.\"})]})]}),/*#__PURE__*/_jsx(\"input\",{type:\"submit\",value:\"Subscribe\",style:isHovered?buttonHoverStyle:buttonStyle,onMouseEnter:()=>setIsHovered(true),onMouseLeave:()=>setIsHovered(false)})]}),successMessage&&/*#__PURE__*/_jsx(\"div\",{style:modalOverlayStyle,children:/*#__PURE__*/_jsx(\"div\",{style:modalStyle,children:/*#__PURE__*/_jsx(\"p\",{children:successMessage})})})]});}const modalOverlayStyle={position:\"fixed\",top:0,left:0,width:\"100vw\",height:\"100vh\",backgroundColor:\"rgba(0, 0, 0, 0.3)\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",zIndex:1e3};const modalStyle={backgroundColor:\"#F3F4F6\",padding:\"20px\",borderRadius:\"8px\",boxShadow:\"0 4px 8px rgba(0, 0, 0, 0.2)\",textAlign:\"center\",fontSize:\"16px\",color:\"#111827\",animation:\"fadeIn 0.3s ease\"};const successMessageStyle={marginTop:\"10px\",color:\"#4CAF50\",fontSize:\"16px\",fontWeight:\"bold\"};const containerStyle={height:\"48px\",width:\"calc(498px + 10px)\",gap:\"16px\",display:\"flex\",flexDirection:\"row\",alignItems:\"flex-start\"};const inputToggleContainer={display:\"flex\",flexDirection:\"column\",gap:\"8px\"};const inputFieldStyle={flex:1,border:\"none\",outline:\"none\",background:\"transparent\",fontSize:\"18px\",color:\"#98A2B3\",fontWeight:\"regular\",textAlign:\"left\"};const inputContainerStyle={height:\"48px\",width:\"360px\",borderStyle:\"solid\",borderWidth:\"1px\",borderColor:\"#98A2B3\",backgroundColor:\"#F9F9F9\",borderRadius:\"8px\",display:\"flex\",alignItems:\"center\",paddingLeft:\"14px\"};const toggleContainerStyle={display:\"flex\",alignItems:\"flex-start\",width:\"360px\",gap:\"8px\",fontSize:\"14px\",color:\"#98A2B3\"};const toggleTextStyle={lineHeight:\"1.5\"};const buttonStyle={height:\"48px\",width:\"122px\",borderWidth:\"2px\",borderStyle:\"solid\",borderColor:\"#121212\",borderRadius:\"8px\",backgroundColor:\"#121212\",color:\"#f5f5f5\",fontSize:\"18px\",fontFamily:\"poppins, sans-serif\",fontWeight:\"bold\",display:\"flex\",alignItems:\"center\",justifyContent:\"center\",gap:\"8px\",cursor:\"pointer\",transition:\"transform 0.3s ease, background-color 0.3s ease\"};const buttonHoverStyle={...buttonStyle,transform:\"translateX(10px)\",backgroundColor:\"#2970FF\",borderColor:\"#2970FF\"};export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{x:10}});};}export function ButtonRedirectOverride(Component){return props=>{const destinationBaseUrl=\"https://claimsgate.co.uk/form/AFYTNYLKo1cVdnVuVEFB\";const getQueryParams=()=>{const params=new URLSearchParams(window.location.search);const queryObject={};params.forEach((value,key)=>{queryObject[key]=value;});return queryObject;};// return the url + something like \"?fbclid={djajdaj}\"\nconst constructRedirectUrl=()=>{const currentParams=getQueryParams();const finalParams=new URLSearchParams({...currentParams,wref:\"BuOytWGa2AYDuZ8yaef1\"});return`${destinationBaseUrl}?${finalParams.toString()}`;};// click and open new window\nconst handleRedirect=()=>{const redirectUrl=constructRedirectUrl();window.open(redirectUrl,\"_blank\");};return /*#__PURE__*/_jsx(Component,{...props,onClick:handleRedirect,whileHover:{x:10},whilePressed:{x:10}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"ButtonRedirectOverride\":{\"type\":\"reactHoc\",\"name\":\"ButtonRedirectOverride\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Form\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Examples.map", "// Generated by Framer (74b1a33)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withHover}from\"https://framerusercontent.com/modules/228G8XlfE1IILUw70OxC/BQJm7eNMYEaCZ7lTna9v/Examples.js\";const MotionAWithHover=withHover(motion.a);const enabledGestures={AbAD28KIB:{hover:true,pressed:true},CszMJdW80:{hover:true,pressed:true},e5v5UovXN:{hover:true,pressed:true},g2soukjkQ:{hover:true,pressed:true},hnrBCalVk:{hover:true,pressed:true},knZEYP_lD:{hover:true,pressed:true},Lf5kuJnmo:{hover:true,pressed:true},pLJFmyAzP:{hover:true,pressed:true},qzhAAxlcj:{hover:true,pressed:true},uyqKBAJPE:{hover:true,pressed:true}};const cycleOrder=[\"hnrBCalVk\",\"AbAD28KIB\",\"e5v5UovXN\",\"knZEYP_lD\",\"g2soukjkQ\",\"Lf5kuJnmo\",\"qzhAAxlcj\",\"CszMJdW80\",\"pLJFmyAzP\",\"uyqKBAJPE\"];const serializationHash=\"framer-C9VN4\";const variantClassNames={AbAD28KIB:\"framer-v-sgfwkr\",CszMJdW80:\"framer-v-1hgzuqe\",e5v5UovXN:\"framer-v-slknxb\",g2soukjkQ:\"framer-v-3wxk15\",hnrBCalVk:\"framer-v-wfrqf4\",knZEYP_lD:\"framer-v-jvcuak\",Lf5kuJnmo:\"framer-v-1tmvb9v\",pLJFmyAzP:\"framer-v-18ocsj1\",qzhAAxlcj:\"framer-v-1s2izdt\",uyqKBAJPE:\"framer-v-m5gya1\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"hnrBCalVk\",\"Variant 10\":\"pLJFmyAzP\",\"Variant 11\":\"uyqKBAJPE\",\"Variant 2\":\"AbAD28KIB\",\"Variant 4\":\"e5v5UovXN\",\"Variant 5\":\"knZEYP_lD\",\"Variant 6\":\"Lf5kuJnmo\",\"Variant 7\":\"g2soukjkQ\",\"Variant 8\":\"qzhAAxlcj\",\"Variant 9\":\"CszMJdW80\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"hnrBCalVk\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"hnrBCalVk\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:{hash:\":f3ErySuyq\",webPageId:\"ruReLAo1E\"},nodeId:\"hnrBCalVk\",openInNewTab:false,smoothScroll:true,...addPropertyOverrides({\"g2soukjkQ-hover\":{openInNewTab:true},\"g2soukjkQ-pressed\":{openInNewTab:true},CszMJdW80:{href:{webPageId:\"CkQlfHXdg\"}},e5v5UovXN:{href:{webPageId:\"CkQlfHXdg\"}},g2soukjkQ:{href:{webPageId:\"CkQlfHXdg\"}},Lf5kuJnmo:{href:{webPageId:\"fsHolG7ae\"}},pLJFmyAzP:{href:{webPageId:\"CkQlfHXdg\"}},qzhAAxlcj:{href:{webPageId:\"CkQlfHXdg\"}}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithHover,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-wfrqf4\",className,classNames)} framer-cqxrfr`,\"data-border\":true,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"hnrBCalVk\",ref:ref??ref1,style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(18, 18, 18)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(18, 18, 18)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"AbAD28KIB-hover\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(254, 200, 75)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(254, 200, 75)\"},\"AbAD28KIB-pressed\":{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(254, 200, 75)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(254, 200, 75)\"},\"CszMJdW80-hover\":{\"--border-color\":\"rgb(18, 18, 18)\",backgroundColor:\"rgb(18, 18, 18)\"},\"CszMJdW80-pressed\":{\"--border-color\":\"rgb(18, 18, 18)\",backgroundColor:\"rgb(18, 18, 18)\"},\"e5v5UovXN-hover\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"e5v5UovXN-pressed\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"g2soukjkQ-hover\":{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},\"g2soukjkQ-pressed\":{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},\"hnrBCalVk-hover\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"hnrBCalVk-pressed\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"knZEYP_lD-hover\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"knZEYP_lD-pressed\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"Lf5kuJnmo-hover\":{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},\"Lf5kuJnmo-pressed\":{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},\"pLJFmyAzP-hover\":{\"--border-color\":\"rgb(18, 18, 18)\",backgroundColor:\"rgb(18, 18, 18)\"},\"pLJFmyAzP-pressed\":{\"--border-color\":\"rgb(18, 18, 18)\",backgroundColor:\"rgb(18, 18, 18)\"},\"qzhAAxlcj-hover\":{\"--border-color\":\"rgb(18, 18, 18)\",backgroundColor:\"rgb(18, 18, 18)\"},\"qzhAAxlcj-pressed\":{\"--border-color\":\"rgb(18, 18, 18)\",backgroundColor:\"rgb(18, 18, 18)\"},\"uyqKBAJPE-hover\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},\"uyqKBAJPE-pressed\":{\"--border-color\":\"rgb(254, 200, 75)\",backgroundColor:\"rgb(254, 200, 75)\"},AbAD28KIB:{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},CszMJdW80:{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},e5v5UovXN:{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},g2soukjkQ:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},knZEYP_lD:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},Lf5kuJnmo:{borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9},pLJFmyAzP:{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},qzhAAxlcj:{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\"},uyqKBAJPE:{\"--border-color\":\"rgb(41, 112, 255)\",backgroundColor:\"rgb(41, 112, 255)\",borderBottomLeftRadius:9,borderBottomRightRadius:9,borderTopLeftRadius:9,borderTopRightRadius:9}},...addPropertyOverrides({\"AbAD28KIB-hover\":{\"data-framer-name\":undefined},\"AbAD28KIB-pressed\":{\"data-framer-name\":undefined},\"CszMJdW80-hover\":{\"data-framer-name\":undefined},\"CszMJdW80-pressed\":{\"data-framer-name\":undefined},\"e5v5UovXN-hover\":{\"data-framer-name\":undefined},\"e5v5UovXN-pressed\":{\"data-framer-name\":undefined},\"g2soukjkQ-hover\":{\"data-framer-name\":undefined},\"g2soukjkQ-pressed\":{\"data-framer-name\":undefined},\"hnrBCalVk-hover\":{\"data-framer-name\":undefined},\"hnrBCalVk-pressed\":{\"data-framer-name\":undefined},\"knZEYP_lD-hover\":{\"data-framer-name\":undefined},\"knZEYP_lD-pressed\":{\"data-framer-name\":undefined},\"Lf5kuJnmo-hover\":{\"data-framer-name\":undefined},\"Lf5kuJnmo-pressed\":{\"data-framer-name\":undefined},\"pLJFmyAzP-hover\":{\"data-framer-name\":undefined},\"pLJFmyAzP-pressed\":{\"data-framer-name\":undefined},\"qzhAAxlcj-hover\":{\"data-framer-name\":undefined},\"qzhAAxlcj-pressed\":{\"data-framer-name\":undefined},\"uyqKBAJPE-hover\":{\"data-framer-name\":undefined},\"uyqKBAJPE-pressed\":{\"data-framer-name\":undefined},AbAD28KIB:{\"data-framer-name\":\"Variant 2\"},CszMJdW80:{\"data-framer-name\":\"Variant 9\"},e5v5UovXN:{\"data-framer-name\":\"Variant 4\"},g2soukjkQ:{\"data-framer-name\":\"Variant 7\"},knZEYP_lD:{\"data-framer-name\":\"Variant 5\"},Lf5kuJnmo:{\"data-framer-name\":\"Variant 6\"},pLJFmyAzP:{\"data-framer-name\":\"Variant 10\"},qzhAAxlcj:{\"data-framer-name\":\"Variant 8\"},uyqKBAJPE:{\"data-framer-name\":\"Variant 11\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Check my vehicle\"})}),className:\"framer-yuvb15\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"ThMSQmZm2\",style:{\"--extracted-r6o4lv\":\"rgb(245, 245, 245)\",\"--framer-paragraph-spacing\":\"16px\"},variants:{\"AbAD28KIB-hover\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"AbAD28KIB-pressed\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"e5v5UovXN-hover\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"e5v5UovXN-pressed\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"hnrBCalVk-hover\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"hnrBCalVk-pressed\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"knZEYP_lD-hover\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"knZEYP_lD-pressed\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"uyqKBAJPE-hover\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"},\"uyqKBAJPE-pressed\":{\"--extracted-r6o4lv\":\"rgb(18, 18, 18)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"AbAD28KIB-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"AbAD28KIB-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"e5v5UovXN-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Discover Claims\"})})},\"e5v5UovXN-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Discover Claims\"})})},\"hnrBCalVk-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"hnrBCalVk-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"knZEYP_lD-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"knZEYP_lD-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"uyqKBAJPE-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},\"uyqKBAJPE-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(18, 18, 18))\"},children:\"Check my vehicle\"})})},CszMJdW80:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Discover Claims\"})})},e5v5UovXN:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Discover Claims\"})})},g2soukjkQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Discover Claims\"})})},knZEYP_lD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Check my vehicle\"})})},Lf5kuJnmo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"View All Posts\"})})},pLJFmyAzP:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Discover Claims\"})})},qzhAAxlcj:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"28px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Discover Claims\"})})},uyqKBAJPE:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(245, 245, 245))\"},children:\"Check my vehicle\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-C9VN4.framer-cqxrfr, .framer-C9VN4 .framer-cqxrfr { display: block; }\",\".framer-C9VN4.framer-wfrqf4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 28px 16px 28px; position: relative; text-decoration: none; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-C9VN4 .framer-yuvb15 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-C9VN4.framer-wfrqf4 { gap: 0px; } .framer-C9VN4.framer-wfrqf4 > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-C9VN4.framer-wfrqf4 > :first-child { margin-left: 0px; } .framer-C9VN4.framer-wfrqf4 > :last-child { margin-right: 0px; } }\",\".framer-C9VN4.framer-v-slknxb.framer-wfrqf4, .framer-C9VN4.framer-v-jvcuak.framer-wfrqf4, .framer-C9VN4.framer-v-3wxk15.framer-wfrqf4, .framer-C9VN4.framer-v-1tmvb9v.framer-wfrqf4, .framer-C9VN4.framer-v-m5gya1.framer-wfrqf4 { padding: 10px 18px 10px 18px; }\",\".framer-C9VN4.framer-v-1hgzuqe.framer-wfrqf4 { width: 552px; }\",\".framer-C9VN4.framer-v-18ocsj1.framer-wfrqf4 { width: 358px; }\",'.framer-C9VN4[data-border=\"true\"]::after, .framer-C9VN4 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 60\n * @framerIntrinsicWidth 213\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"AbAD28KIB\":{\"layout\":[\"auto\",\"auto\"]},\"e5v5UovXN\":{\"layout\":[\"auto\",\"auto\"]},\"knZEYP_lD\":{\"layout\":[\"auto\",\"auto\"]},\"g2soukjkQ\":{\"layout\":[\"auto\",\"auto\"]},\"Lf5kuJnmo\":{\"layout\":[\"auto\",\"auto\"]},\"qzhAAxlcj\":{\"layout\":[\"auto\",\"auto\"]},\"CszMJdW80\":{\"layout\":[\"fixed\",\"auto\"]},\"pLJFmyAzP\":{\"layout\":[\"fixed\",\"auto\"]},\"uyqKBAJPE\":{\"layout\":[\"auto\",\"auto\"]},\"J0RB0sOmT\":{\"layout\":[\"auto\",\"auto\"]},\"dZoxzjYTR\":{\"layout\":[\"auto\",\"auto\"]},\"Kv1J3qr5X\":{\"layout\":[\"auto\",\"auto\"]},\"zvSo404Mg\":{\"layout\":[\"auto\",\"auto\"]},\"T4_Vo8dJh\":{\"layout\":[\"auto\",\"auto\"]},\"wTQlXKa3A\":{\"layout\":[\"auto\",\"auto\"]},\"uzIAT7UMP\":{\"layout\":[\"auto\",\"auto\"]},\"m9znLWy1L\":{\"layout\":[\"auto\",\"auto\"]},\"Dpq8IRq1B\":{\"layout\":[\"auto\",\"auto\"]},\"nFoOJmse2\":{\"layout\":[\"auto\",\"auto\"]},\"MhqdpWKK3\":{\"layout\":[\"auto\",\"auto\"]},\"nilvoIsWT\":{\"layout\":[\"auto\",\"auto\"]},\"SyDn9wdka\":{\"layout\":[\"auto\",\"auto\"]},\"HJmTcfZAD\":{\"layout\":[\"auto\",\"auto\"]},\"f9bEUAQ90\":{\"layout\":[\"fixed\",\"auto\"]},\"Vdy4TqHbW\":{\"layout\":[\"fixed\",\"auto\"]},\"tWFLO5xsd\":{\"layout\":[\"fixed\",\"auto\"]},\"tYw2X4w6B\":{\"layout\":[\"fixed\",\"auto\"]},\"cnHiR9ESB\":{\"layout\":[\"auto\",\"auto\"]},\"DIPryQmY5\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBJ6D0kXkF=withCSS(Component,css,\"framer-C9VN4\");export default FramerBJ6D0kXkF;FramerBJ6D0kXkF.displayName=\"Button (no link)\";FramerBJ6D0kXkF.defaultProps={height:60,width:213};addPropertyControls(FramerBJ6D0kXkF,{variant:{options:[\"hnrBCalVk\",\"AbAD28KIB\",\"e5v5UovXN\",\"knZEYP_lD\",\"g2soukjkQ\",\"Lf5kuJnmo\",\"qzhAAxlcj\",\"CszMJdW80\",\"pLJFmyAzP\",\"uyqKBAJPE\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 4\",\"Variant 5\",\"Variant 7\",\"Variant 6\",\"Variant 8\",\"Variant 9\",\"Variant 10\",\"Variant 11\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerBJ6D0kXkF,[{explicitInter:true,fonts:[{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VET5UWA4MEKQA4WBV5EGM57GLZ6RJ3WC/S45ZC4DS7EIJMXUV6L2BAG5ELV3HN4S3/YDPYKQPH3JEREPOH5AQV4HHIWBADML7M.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBJ6D0kXkF\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"213\",\"framerIntrinsicHeight\":\"60\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"AbAD28KIB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"e5v5UovXN\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"knZEYP_lD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g2soukjkQ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Lf5kuJnmo\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qzhAAxlcj\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"CszMJdW80\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"pLJFmyAzP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"uyqKBAJPE\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"J0RB0sOmT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dZoxzjYTR\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Kv1J3qr5X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zvSo404Mg\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"T4_Vo8dJh\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wTQlXKa3A\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uzIAT7UMP\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"m9znLWy1L\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Dpq8IRq1B\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nFoOJmse2\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"MhqdpWKK3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"nilvoIsWT\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"SyDn9wdka\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"HJmTcfZAD\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"f9bEUAQ90\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Vdy4TqHbW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tWFLO5xsd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tYw2X4w6B\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cnHiR9ESB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"DIPryQmY5\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BJ6D0kXkF.map", "// Generated by Framer (5bbf1f3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-oy8gP .framer-styles-preset-1x5q87:not(.rich-text-wrapper), .framer-oy8gP .framer-styles-preset-1x5q87.rich-text-wrapper a { --framer-link-current-text-color: #111; --framer-link-hover-text-color: #0086c9; --framer-link-text-color: #333333; --framer-link-text-decoration: none; }\"];export const className=\"framer-oy8gP\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5bbf1f3)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-2ZIxy .framer-styles-preset-19hqpo8:not(.rich-text-wrapper), .framer-2ZIxy .framer-styles-preset-19hqpo8.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0086c9; --framer-link-hover-text-decoration: underline; --framer-link-text-decoration: none; }\"];export const className=\"framer-2ZIxy\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1b7c4bf)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-8cbOe .framer-styles-preset-rlvmtr:not(.rich-text-wrapper), .framer-8cbOe .framer-styles-preset-rlvmtr.rich-text-wrapper a { --framer-link-current-text-color: #111111; --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: #0086c9; --framer-link-hover-text-decoration: underline; --framer-link-text-color: #1d2939; --framer-link-text-decoration: none; }\"];export const className=\"framer-8cbOe\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (114832d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/dKa5JoYrGK232tDdi4Rj/bh9qAt9hxCLCppsMipdY/cAEWa2QjR.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/LrVfnYvwYXJCkZlGviIt/Lsj0lLzweZJX0QDsCWLk/fE79Ic729.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/1KAq6kKIu74x39vquwzZ/Yb7SOQbVWRodXMzTeEVe/sJ2QEITYH.js\";const cycleOrder=[\"KVbJxyus4\",\"QwIS45xQv\",\"GxhHZcERQ\"];const serializationHash=\"framer-DZaUB\";const variantClassNames={GxhHZcERQ:\"framer-v-1rt3dr1\",KVbJxyus4:\"framer-v-1llocyl\",QwIS45xQv:\"framer-v-uu6u16\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={desktop:\"QwIS45xQv\",phone:\"GxhHZcERQ\",tablet:\"KVbJxyus4\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KVbJxyus4\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KVbJxyus4\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1llocyl\",className,classNames),\"data-framer-name\":\"tablet\",layoutDependency:layoutDependency,layoutId:\"KVbJxyus4\",ref:ref??ref1,style:{backgroundColor:\"rgb(254, 222, 136)\",...style},...addPropertyOverrides({GxhHZcERQ:{\"data-framer-name\":\"phone\"},QwIS45xQv:{\"data-framer-name\":\"desktop\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l7xl01\",\"data-framer-name\":\"Frame 213\",layoutDependency:layoutDependency,layoutId:\"OBqTXaVkk\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qfbcvr\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"mVsIV_SCY\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-rf4427\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"BNm8OKPo_\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1j5b29x\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"HB7sr9I8_\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x897je\",\"data-framer-name\":\"Logo and supporting text\",layoutDependency:layoutDependency,layoutId:\"CSjOtrqhJ\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"j3K_UaitA\",openInNewTab:true,...addPropertyOverrides({QwIS45xQv:{openInNewTab:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1e0bhg5 framer-vjkgkp\",\"data-framer-name\":\"Frame 256\",layoutDependency:layoutDependency,layoutId:\"j3K_UaitA\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||600)-128-628)/2)+0+0+0+0+0+0+0+0+0+0+-2.558139534883722),src:\"https://framerusercontent.com/images/DARELwc9Aon7Pze5sNQo171Vlk.png\"},className:\"framer-ar7gfg\",\"data-framer-name\":\"Group 93 1\",layoutDependency:layoutDependency,layoutId:\"Z0dAOXubl\",...addPropertyOverrides({GxhHZcERQ:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||704)-128-728)/2)+0+0+0+0+0+0+0+0+0+0+0),src:\"https://framerusercontent.com/images/DARELwc9Aon7Pze5sNQo171Vlk.png\"}},QwIS45xQv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(64+((componentViewport?.height||404)-128-412)/2)+0+0+0+0+0+0+0+0+0+-2.558139534883722),src:\"https://framerusercontent.com/images/DARELwc9Aon7Pze5sNQo171Vlk.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zd2flh\",\"data-framer-name\":\"Frame 271\",layoutDependency:layoutDependency,layoutId:\"Qe8zR8ZEs\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-2ve6jr\",\"data-framer-name\":\"Frame 201\",layoutDependency:layoutDependency,layoutId:\"VpQomxmaV\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:[\"Claims\",/*#__PURE__*/_jsx(motion.br,{}),\"Navigator\"]})}),className:\"framer-1pok6pp\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"Q7lNYSyrD\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"center\",withExternalLayout:true})})})]})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(71, 84, 102))\"},children:\"Claims Navigator is a registered trading name of Claims Gate Marketing Ltd. Claims Gate Marketing Ltd is registered under license number 16201553 with its registered office located at 53-64 Chancery Lane, London, England, WC2A 1QS\"})}),className:\"framer-mvjmxu\",\"data-framer-name\":\"Supporting text\",fonts:[\"FS;Epilogue-regular\"],layoutDependency:layoutDependency,layoutId:\"Xlz6RRfKm\",style:{\"--extracted-r6o4lv\":\"rgb(71, 84, 102)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1unjh12\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"xQ6lNEqFO\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16zl4i\",\"data-framer-name\":\"_Footer links column\",layoutDependency:layoutDependency,layoutId:\"wcOdBJRRI\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 40, 56))\"},children:\"Social\"})}),className:\"framer-1brhdsh\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"I11896:87218;3288:571013\",style:{\"--extracted-r6o4lv\":\"rgb(29, 40, 56)\",\"--framer-paragraph-spacing\":\"14px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-jcteha\",\"data-framer-name\":\"Footer links\",layoutDependency:layoutDependency,layoutId:\"NBUbNFuY1\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1aoda5a\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"LBvqHZvjn\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-alfu3s\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"k5OPtqhcN\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(71, 84, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"http://x.com/claimsnav\",nodeId:\"i45SrPasK\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Twitter\"})})})}),className:\"framer-nwthj9\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"i45SrPasK\",style:{\"--extracted-r6o4lv\":\"rgb(71, 84, 102)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3ny4h3\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"O4F8VYXAM\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-16bqj8k\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Jtg1DiuMX\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(71, 84, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/claimsnavigator/\",nodeId:\"g69sAGyGV\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rlvmtr\",\"data-styles-preset\":\"fE79Ic729\",children:\"Instagram\"})})})}),className:\"framer-ggtvhr\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"g69sAGyGV\",style:{\"--extracted-r6o4lv\":\"rgb(71, 84, 102)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(71, 84, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/claims-navigator\",nodeId:\"wPSD8sPC6\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-rlvmtr\",\"data-styles-preset\":\"fE79Ic729\",children:\"LinkedIn\"})})})}),className:\"framer-tohy2o\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"wPSD8sPC6\",style:{\"--extracted-r6o4lv\":\"rgb(71, 84, 102)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1a0avgp\",\"data-framer-name\":\"_Footer links column\",layoutDependency:layoutDependency,layoutId:\"buUkCIO_c\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 40, 56))\"},children:\"Legal\"})}),className:\"framer-12vdj5k\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571013\",style:{\"--extracted-r6o4lv\":\"rgb(29, 40, 56)\",\"--framer-paragraph-spacing\":\"14px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ri7wtx\",\"data-framer-name\":\"Footer links\",layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571014\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-m1a81k\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571016\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1karula\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571016;3288:570936\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(71, 84, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dqGJI44YD\"},nodeId:\"I11896:87219;3288:571016;3288:570936;3287:433317\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Privacy Policy\"})})})}),className:\"framer-7z5p9c\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571016;3288:570936;3287:433317\",style:{\"--extracted-r6o4lv\":\"rgb(71, 84, 102)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-iy6exv\",\"data-framer-name\":\"_Footer link\",layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571017\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-h8irpf\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571017;3288:570936\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(71, 84, 102))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"DU0UfQtu3\"},nodeId:\"I11896:87219;3288:571017;3288:570936;3287:433317\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1x5q87\",\"data-styles-preset\":\"sJ2QEITYH\",children:\"Cookies Policy\"})})})}),className:\"framer-1dqa5le\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"I11896:87219;3288:571017;3288:570936;3287:433317\",style:{\"--extracted-r6o4lv\":\"rgb(71, 84, 102)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]})]})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-llqp45\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"iF2EzRAMY\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2p2b9\",\"data-border\":true,\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"NC9OiMgko\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgb(254, 239, 198)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtcmVndWxhcg==\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(15, 23, 40))\"},children:[\"\\xa9 2025 \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"zhmuuzyDH\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-19hqpo8\",\"data-styles-preset\":\"cAEWa2QjR\",children:\"Claims Navigator\"})}),\". All rights reserved.\"]})}),className:\"framer-ekmei\",\"data-framer-name\":\"Footer text\",fonts:[\"FS;Epilogue-regular\"],layoutDependency:layoutDependency,layoutId:\"zhmuuzyDH\",style:{\"--extracted-r6o4lv\":\"rgb(15, 23, 40)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-18uqsr7\",\"data-framer-name\":\"Social icons\",layoutDependency:layoutDependency,layoutId:\"uc5tuoKjY\",children:[/*#__PURE__*/_jsx(Link,{href:\"http://x.com/claimsnav\",nodeId:\"u6cxspQgg\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-v7yj8c framer-vjkgkp\",\"data-framer-name\":\"Social icon\",layoutDependency:layoutDependency,layoutId:\"u6cxspQgg\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-67z8c3\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"taWebTdrB\",svg:'<svg width=\"24\" height=\"20\" viewBox=\"0 0 24 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M7.55016 19.75C16.6045 19.75 21.5583 12.2467 21.5583 5.74186C21.5583 5.53092 21.5536 5.3153 21.5442 5.10436C22.5079 4.40746 23.3395 3.54425 24 2.5553C23.1025 2.9546 22.1496 3.21538 21.1739 3.32874C22.2013 2.71291 22.9705 1.74547 23.3391 0.605767C22.3726 1.17856 21.3156 1.58261 20.2134 1.80061C19.4708 1.01156 18.489 0.489116 17.4197 0.314051C16.3504 0.138986 15.2532 0.32105 14.2977 0.832096C13.3423 1.34314 12.5818 2.15471 12.1338 3.14131C11.6859 4.12792 11.5754 5.23462 11.8195 6.2903C9.86249 6.19209 7.94794 5.6837 6.19998 4.7981C4.45203 3.91249 2.90969 2.66944 1.67297 1.14952C1.0444 2.23324 0.852057 3.51565 1.13503 4.73609C1.418 5.95654 2.15506 7.02345 3.19641 7.71999C2.41463 7.69517 1.64998 7.48468 0.965625 7.10592V7.16686C0.964925 8.30415 1.3581 9.40659 2.07831 10.2868C2.79852 11.167 3.80132 11.7706 4.91625 11.995C4.19206 12.1931 3.43198 12.222 2.69484 12.0794C3.00945 13.0574 3.62157 13.9129 4.44577 14.5263C5.26997 15.1398 6.26512 15.4806 7.29234 15.5012C5.54842 16.8711 3.39417 17.6141 1.17656 17.6106C0.783287 17.61 0.390399 17.5859 0 17.5384C2.25286 18.9837 4.87353 19.7514 7.55016 19.75Z\" fill=\"#1D2939\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/claimsnavigator/\",nodeId:\"ZupBl_ZUp\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-73lonl framer-vjkgkp\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"ZupBl_ZUp\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M12.0027 5.8467C8.59744 5.8467 5.85075 8.594 5.85075 12C5.85075 15.406 8.59744 18.1533 12.0027 18.1533C15.4079 18.1533 18.1546 15.406 18.1546 12C18.1546 8.594 15.4079 5.8467 12.0027 5.8467ZM12.0027 16.0004C9.80212 16.0004 8.00312 14.2064 8.00312 12C8.00312 9.7936 9.79677 7.99955 12.0027 7.99955C14.2086 7.99955 16.0022 9.7936 16.0022 12C16.0022 14.2064 14.2032 16.0004 12.0027 16.0004ZM19.8412 5.595C19.8412 6.39295 19.1987 7.03024 18.4062 7.03024C17.6085 7.03024 16.9713 6.38759 16.9713 5.595C16.9713 4.80241 17.6138 4.15977 18.4062 4.15977C19.1987 4.15977 19.8412 4.80241 19.8412 5.595ZM23.9157 7.05166C23.8247 5.12909 23.3856 3.42609 21.9775 2.02298C20.5747 0.619882 18.8721 0.180743 16.9499 0.0843468C14.9689 -0.0281156 9.03112 -0.0281156 7.05008 0.0843468C5.1333 0.175388 3.43068 0.614526 2.02253 2.01763C0.614389 3.42073 0.180703 5.12373 0.0843279 7.0463C-0.0281093 9.02778 -0.0281093 14.9669 0.0843279 16.9483C0.175349 18.8709 0.614389 20.5739 2.02253 21.977C3.43068 23.3801 5.12794 23.8193 7.05008 23.9157C9.03112 24.0281 14.9689 24.0281 16.9499 23.9157C18.8721 23.8246 20.5747 23.3855 21.9775 21.977C23.3803 20.5739 23.8193 18.8709 23.9157 16.9483C24.0281 14.9669 24.0281 9.03314 23.9157 7.05166ZM21.3564 19.0744C20.9388 20.1241 20.1303 20.9327 19.0755 21.3558C17.496 21.9824 13.7481 21.8378 12.0027 21.8378C10.2572 21.8378 6.50396 21.977 4.92984 21.3558C3.88042 20.9381 3.07195 20.1294 2.64897 19.0744C2.02253 17.4946 2.16709 13.7458 2.16709 12C2.16709 10.2542 2.02789 6.50006 2.64897 4.92558C3.06659 3.87593 3.87507 3.06728 4.92984 2.6442C6.50931 2.01763 10.2572 2.16222 12.0027 2.16222C13.7481 2.16222 17.5014 2.02298 19.0755 2.6442C20.1249 3.06192 20.9334 3.87058 21.3564 4.92558C21.9828 6.50541 21.8383 10.2542 21.8383 12C21.8383 13.7458 21.9828 17.4999 21.3564 19.0744Z\" fill=\"#1D2939\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/company/claims-navigator\",nodeId:\"QO2s42Qn0\",openInNewTab:true,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-idu31a framer-vjkgkp\",\"data-framer-name\":\"Group\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:24,intrinsicWidth:24,layoutDependency:layoutDependency,layoutId:\"QO2s42Qn0\",svg:'<svg width=\"24\" height=\"24\" viewBox=\"0 0 24 24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M22.2234 0H1.77187C0.792187 0 0 0.773438 0 1.72969V22.2656C0 23.2219 0.792187 24 1.77187 24H22.2234C23.2031 24 24 23.2219 24 22.2703V1.72969C24 0.773438 23.2031 0 22.2234 0ZM7.12031 20.4516H3.55781V8.99531H7.12031V20.4516ZM5.33906 7.43438C4.19531 7.43438 3.27188 6.51094 3.27188 5.37187C3.27188 4.23281 4.19531 3.30937 5.33906 3.30937C6.47813 3.30937 7.40156 4.23281 7.40156 5.37187C7.40156 6.50625 6.47813 7.43438 5.33906 7.43438ZM20.4516 20.4516H16.8937V14.8828C16.8937 13.5562 16.8703 11.8453 15.0422 11.8453C13.1906 11.8453 12.9094 13.2937 12.9094 14.7891V20.4516H9.35625V8.99531H12.7687V10.5609H12.8156C13.2891 9.66094 14.4516 8.70938 16.1813 8.70938C19.7859 8.70938 20.4516 11.0813 20.4516 14.1656V20.4516Z\" fill=\"#1D2939\"/>\\n</svg>\\n',withExternalLayout:true})})]})]})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-DZaUB.framer-vjkgkp, .framer-DZaUB .framer-vjkgkp { display: block; }\",\".framer-DZaUB.framer-1llocyl { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 148px; height: min-content; justify-content: center; overflow: visible; padding: 64px 128px 64px 128px; position: relative; width: 810px; }\",\".framer-DZaUB .framer-1l7xl01 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 554px; }\",\".framer-DZaUB .framer-1qfbcvr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DZaUB .framer-rf4427 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DZaUB .framer-1j5b29x { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 554px; }\",\".framer-DZaUB .framer-x897je { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 477px; }\",\".framer-DZaUB .framer-1e0bhg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 26%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-DZaUB .framer-ar7gfg { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-DZaUB .framer-zd2flh { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DZaUB .framer-2ve6jr { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DZaUB .framer-1pok6pp, .framer-DZaUB .framer-nwthj9, .framer-DZaUB .framer-ggtvhr, .framer-DZaUB .framer-tohy2o, .framer-DZaUB .framer-7z5p9c, .framer-DZaUB .framer-1dqa5le { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-DZaUB .framer-mvjmxu { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 477px; word-break: break-word; word-wrap: break-word; }\",\".framer-DZaUB .framer-1unjh12 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DZaUB .framer-16zl4i, .framer-DZaUB .framer-1a0avgp { 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: 200px; }\",\".framer-DZaUB .framer-1brhdsh, .framer-DZaUB .framer-12vdj5k { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 200px; word-break: break-word; word-wrap: break-word; }\",\".framer-DZaUB .framer-jcteha { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 46%; }\",\".framer-DZaUB .framer-1aoda5a, .framer-DZaUB .framer-3ny4h3, .framer-DZaUB .framer-m1a81k, .framer-DZaUB .framer-iy6exv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DZaUB .framer-alfu3s, .framer-DZaUB .framer-16bqj8k, .framer-DZaUB .framer-1karula, .framer-DZaUB .framer-h8irpf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-DZaUB .framer-1ri7wtx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DZaUB .framer-llqp45 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-DZaUB .framer-2p2b9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 32px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-DZaUB .framer-ekmei { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-DZaUB .framer-18uqsr7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-DZaUB .framer-v7yj8c { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: hidden; position: relative; text-decoration: none; width: 24px; }\",\".framer-DZaUB .framer-67z8c3 { bottom: 2px; flex: none; left: 0px; position: absolute; right: 0px; top: 2px; }\",\".framer-DZaUB .framer-73lonl, .framer-DZaUB .framer-idu31a { flex: none; height: 24px; position: relative; text-decoration: none; width: 24px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DZaUB.framer-1llocyl, .framer-DZaUB .framer-1l7xl01, .framer-DZaUB .framer-1qfbcvr, .framer-DZaUB .framer-rf4427, .framer-DZaUB .framer-1j5b29x, .framer-DZaUB .framer-x897je, .framer-DZaUB .framer-1e0bhg5, .framer-DZaUB .framer-zd2flh, .framer-DZaUB .framer-2ve6jr, .framer-DZaUB .framer-16zl4i, .framer-DZaUB .framer-jcteha, .framer-DZaUB .framer-1aoda5a, .framer-DZaUB .framer-alfu3s, .framer-DZaUB .framer-3ny4h3, .framer-DZaUB .framer-16bqj8k, .framer-DZaUB .framer-1a0avgp, .framer-DZaUB .framer-1ri7wtx, .framer-DZaUB .framer-m1a81k, .framer-DZaUB .framer-1karula, .framer-DZaUB .framer-iy6exv, .framer-DZaUB .framer-h8irpf, .framer-DZaUB .framer-llqp45, .framer-DZaUB .framer-2p2b9, .framer-DZaUB .framer-18uqsr7 { gap: 0px; } .framer-DZaUB.framer-1llocyl > * { margin: 0px; margin-left: calc(148px / 2); margin-right: calc(148px / 2); } .framer-DZaUB.framer-1llocyl > :first-child, .framer-DZaUB .framer-1e0bhg5 > :first-child, .framer-DZaUB .framer-2ve6jr > :first-child, .framer-DZaUB .framer-1aoda5a > :first-child, .framer-DZaUB .framer-alfu3s > :first-child, .framer-DZaUB .framer-3ny4h3 > :first-child, .framer-DZaUB .framer-16bqj8k > :first-child, .framer-DZaUB .framer-m1a81k > :first-child, .framer-DZaUB .framer-1karula > :first-child, .framer-DZaUB .framer-iy6exv > :first-child, .framer-DZaUB .framer-h8irpf > :first-child, .framer-DZaUB .framer-2p2b9 > :first-child, .framer-DZaUB .framer-18uqsr7 > :first-child { margin-left: 0px; } .framer-DZaUB.framer-1llocyl > :last-child, .framer-DZaUB .framer-1e0bhg5 > :last-child, .framer-DZaUB .framer-2ve6jr > :last-child, .framer-DZaUB .framer-1aoda5a > :last-child, .framer-DZaUB .framer-alfu3s > :last-child, .framer-DZaUB .framer-3ny4h3 > :last-child, .framer-DZaUB .framer-16bqj8k > :last-child, .framer-DZaUB .framer-m1a81k > :last-child, .framer-DZaUB .framer-1karula > :last-child, .framer-DZaUB .framer-iy6exv > :last-child, .framer-DZaUB .framer-h8irpf > :last-child, .framer-DZaUB .framer-2p2b9 > :last-child, .framer-DZaUB .framer-18uqsr7 > :last-child { margin-right: 0px; } .framer-DZaUB .framer-1l7xl01 > *, .framer-DZaUB .framer-1qfbcvr > *, .framer-DZaUB .framer-rf4427 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-DZaUB .framer-1l7xl01 > :first-child, .framer-DZaUB .framer-1qfbcvr > :first-child, .framer-DZaUB .framer-rf4427 > :first-child, .framer-DZaUB .framer-1j5b29x > :first-child, .framer-DZaUB .framer-x897je > :first-child, .framer-DZaUB .framer-zd2flh > :first-child, .framer-DZaUB .framer-16zl4i > :first-child, .framer-DZaUB .framer-jcteha > :first-child, .framer-DZaUB .framer-1a0avgp > :first-child, .framer-DZaUB .framer-1ri7wtx > :first-child, .framer-DZaUB .framer-llqp45 > :first-child { margin-top: 0px; } .framer-DZaUB .framer-1l7xl01 > :last-child, .framer-DZaUB .framer-1qfbcvr > :last-child, .framer-DZaUB .framer-rf4427 > :last-child, .framer-DZaUB .framer-1j5b29x > :last-child, .framer-DZaUB .framer-x897je > :last-child, .framer-DZaUB .framer-zd2flh > :last-child, .framer-DZaUB .framer-16zl4i > :last-child, .framer-DZaUB .framer-jcteha > :last-child, .framer-DZaUB .framer-1a0avgp > :last-child, .framer-DZaUB .framer-1ri7wtx > :last-child, .framer-DZaUB .framer-llqp45 > :last-child { margin-bottom: 0px; } .framer-DZaUB .framer-1j5b29x > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-DZaUB .framer-x897je > *, .framer-DZaUB .framer-llqp45 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DZaUB .framer-1e0bhg5 > *, .framer-DZaUB .framer-2ve6jr > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-DZaUB .framer-zd2flh > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-DZaUB .framer-16zl4i > *, .framer-DZaUB .framer-1a0avgp > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-DZaUB .framer-jcteha > *, .framer-DZaUB .framer-1ri7wtx > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-DZaUB .framer-1aoda5a > *, .framer-DZaUB .framer-alfu3s > *, .framer-DZaUB .framer-3ny4h3 > *, .framer-DZaUB .framer-16bqj8k > *, .framer-DZaUB .framer-m1a81k > *, .framer-DZaUB .framer-1karula > *, .framer-DZaUB .framer-iy6exv > *, .framer-DZaUB .framer-h8irpf > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-DZaUB .framer-2p2b9 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-DZaUB .framer-18uqsr7 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-DZaUB.framer-v-uu6u16.framer-1llocyl { width: 1440px; }\",\".framer-DZaUB.framer-v-uu6u16 .framer-1l7xl01 { width: 1184px; }\",\".framer-DZaUB.framer-v-uu6u16 .framer-1j5b29x { flex-direction: row; gap: unset; justify-content: space-between; width: 100%; }\",\".framer-DZaUB.framer-v-uu6u16 .framer-1unjh12 { gap: 0px; justify-content: center; width: min-content; }\",\".framer-DZaUB.framer-v-uu6u16 .framer-v7yj8c, .framer-DZaUB.framer-v-1rt3dr1 .framer-18uqsr7 { order: 0; }\",\".framer-DZaUB.framer-v-uu6u16 .framer-73lonl { order: 1; }\",\".framer-DZaUB.framer-v-uu6u16 .framer-idu31a { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DZaUB.framer-v-uu6u16 .framer-1j5b29x, .framer-DZaUB.framer-v-uu6u16 .framer-1unjh12 { gap: 0px; } .framer-DZaUB.framer-v-uu6u16 .framer-1j5b29x > *, .framer-DZaUB.framer-v-uu6u16 .framer-1j5b29x > :first-child, .framer-DZaUB.framer-v-uu6u16 .framer-1j5b29x > :last-child { margin: 0px; } .framer-DZaUB.framer-v-uu6u16 .framer-1unjh12 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-DZaUB.framer-v-uu6u16 .framer-1unjh12 > :first-child { margin-left: 0px; } .framer-DZaUB.framer-v-uu6u16 .framer-1unjh12 > :last-child { margin-right: 0px; } }\",\".framer-DZaUB.framer-v-1rt3dr1.framer-1llocyl { padding: 64px 16px 64px 16px; width: 390px; }\",\".framer-DZaUB.framer-v-1rt3dr1 .framer-1l7xl01 { width: 358px; }\",\".framer-DZaUB.framer-v-1rt3dr1 .framer-1j5b29x, .framer-DZaUB.framer-v-1rt3dr1 .framer-x897je, .framer-DZaUB.framer-v-1rt3dr1 .framer-mvjmxu, .framer-DZaUB.framer-v-1rt3dr1 .framer-12vdj5k { width: 100%; }\",\".framer-DZaUB.framer-v-1rt3dr1 .framer-1e0bhg5 { height: 44px; }\",\".framer-DZaUB.framer-v-1rt3dr1 .framer-1a0avgp { flex: 1 0 0px; width: 1px; }\",\".framer-DZaUB.framer-v-1rt3dr1 .framer-2p2b9 { flex-direction: column; }\",\".framer-DZaUB.framer-v-1rt3dr1 .framer-ekmei { flex: none; order: 1; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-DZaUB.framer-v-1rt3dr1 .framer-2p2b9 { gap: 0px; } .framer-DZaUB.framer-v-1rt3dr1 .framer-2p2b9 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-DZaUB.framer-v-1rt3dr1 .framer-2p2b9 > :first-child { margin-top: 0px; } .framer-DZaUB.framer-v-1rt3dr1 .framer-2p2b9 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,'.framer-DZaUB[data-border=\"true\"]::after, .framer-DZaUB [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 600\n * @framerIntrinsicWidth 810\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"QwIS45xQv\":{\"layout\":[\"fixed\",\"auto\"]},\"GxhHZcERQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerPmhrIaB_j=withCSS(Component,css,\"framer-DZaUB\");export default FramerPmhrIaB_j;FramerPmhrIaB_j.displayName=\"Frame 212\";FramerPmhrIaB_j.defaultProps={height:600,width:810};addPropertyControls(FramerPmhrIaB_j,{variant:{options:[\"KVbJxyus4\",\"QwIS45xQv\",\"GxhHZcERQ\"],optionTitles:[\"tablet\",\"desktop\",\"phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerPmhrIaB_j,[{explicitInter:true,fonts:[{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VET5UWA4MEKQA4WBV5EGM57GLZ6RJ3WC/S45ZC4DS7EIJMXUV6L2BAG5ELV3HN4S3/YDPYKQPH3JEREPOH5AQV4HHIWBADML7M.woff2\",weight:\"600\"},{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/TBAM3F2B3Q62J3EFZZOFBKD7FY2D2ABJ/UXFRFNKWVYOJXQY4ZT3GUSK23QFKNFJY/FXFHMD66ZLUDCPUIIIVS5BUZ2MFAWPYU.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerPmhrIaB_j\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"600\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"810\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QwIS45xQv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GxhHZcERQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./PmhrIaB_j.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{createStore}from\"https://framer.com/m/framer/store.js@^1.0.0\";import{randomColor}from\"https://framer.com/m/framer/utils.js@^0.9.0\";// Learn more: https://www.framer.com/developers/overrides/\nconst useStore=createStore({background:\"#0099FF\"});export function withRotate(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,animate:{rotate:90},transition:{duration:2}});};}export function withHover(Component){return props=>{return /*#__PURE__*/_jsx(Component,{...props,whileHover:{backgroundColor:\"#FFECB3\"}});};}export function withRandomColor(Component){return props=>{const[store,setStore]=useStore();return /*#__PURE__*/_jsx(Component,{...props,animate:{background:store.background},onClick:()=>{setStore({background:randomColor()});}});};}\nexport const __FramerMetadata__ = {\"exports\":{\"withHover\":{\"type\":\"reactHoc\",\"name\":\"withHover\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRotate\":{\"type\":\"reactHoc\",\"name\":\"withRotate\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"withRandomColor\":{\"type\":\"reactHoc\",\"name\":\"withRandomColor\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./WithColourHover.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{withHover}from\"https://framerusercontent.com/modules/fDbbSNhM4Xnhs2kNzexx/wBbnS6Qnjd0x9MPgEPAC/WithColourHover.js\";const MotionAWithHover=withHover(motion.a);const enabledGestures={Bm2qyYqcq:{hover:true},FRCD_0AAt:{hover:true},hvfqRHFFn:{hover:true},Jd79cyMBP:{hover:true},XwWg_7Apm:{hover:true}};const cycleOrder=[\"Jd79cyMBP\",\"hvfqRHFFn\",\"Bm2qyYqcq\",\"XwWg_7Apm\",\"FRCD_0AAt\"];const serializationHash=\"framer-Ev4O4\";const variantClassNames={Bm2qyYqcq:\"framer-v-7brv2h\",FRCD_0AAt:\"framer-v-r8saqk\",hvfqRHFFn:\"framer-v-1vpdeiy\",Jd79cyMBP:\"framer-v-17qi6ff\",XwWg_7Apm:\"framer-v-11xgex3\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={duration:0,type:\"tween\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Jd79cyMBP\",\"Variant 2\":\"hvfqRHFFn\",\"Variant 3\":\"Bm2qyYqcq\",\"Variant 4\":\"XwWg_7Apm\",\"Variant 5\":\"FRCD_0AAt\"};const getProps=({facebook,height,id,insta,instagram,link2,link5,link6,link7,linkedin,twitter,width,...props})=>{return{...props,Bm6ye52lk:link7??props.Bm6ye52lk,DeKgJpnAL:facebook??props.DeKgJpnAL,fdAqRt1HO:link5??props.fdAqRt1HO,hjj_pPDhN:instagram??props.hjj_pPDhN??\"Instagram\",kEjKyaER4:linkedin??props.kEjKyaER4,LKA75dLNc:twitter??props.LKA75dLNc,MF7lu8Tqt:insta??props.MF7lu8Tqt,NtfBXANwC:link2??props.NtfBXANwC,variant:humanReadableVariantMap[props.variant]??props.variant??\"Jd79cyMBP\",WEibe2Py8:link6??props.WEibe2Py8};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,hjj_pPDhN,NtfBXANwC,fdAqRt1HO,WEibe2Py8,MF7lu8Tqt,LKA75dLNc,DeKgJpnAL,kEjKyaER4,Bm6ye52lk,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Jd79cyMBP\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1uf2zdj=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"Bm2qyYqcq\");});const onMouseLeaveqdo6a5=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"hvfqRHFFn\");});const onTap1vjo7bn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"FRCD_0AAt\");});const onMouseLeave1kter0d=activeVariantCallback(async(...args)=>{setGestureState({isHovered:false});setVariant(\"XwWg_7Apm\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"Bm2qyYqcq-hover\",\"FRCD_0AAt-hover\"].includes(gestureVariant))return true;if([\"Bm2qyYqcq\",\"FRCD_0AAt\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(gestureVariant===\"Bm2qyYqcq-hover\")return true;if(baseVariant===\"Bm2qyYqcq\")return true;return false;};const isDisplayed2=()=>{if([\"Bm2qyYqcq-hover\",\"FRCD_0AAt-hover\"].includes(gestureVariant))return false;if([\"Bm2qyYqcq\",\"FRCD_0AAt\"].includes(baseVariant))return false;return true;};const isDisplayed3=()=>{if(gestureVariant===\"FRCD_0AAt-hover\")return false;if(baseVariant===\"FRCD_0AAt\")return false;return true;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:fdAqRt1HO,nodeId:\"Jd79cyMBP\",...addPropertyOverrides({\"Bm2qyYqcq-hover\":{href:undefined},\"FRCD_0AAt-hover\":{href:undefined},\"hvfqRHFFn-hover\":{href:undefined},\"Jd79cyMBP-hover\":{href:WEibe2Py8,openInNewTab:true},\"XwWg_7Apm-hover\":{href:undefined},Bm2qyYqcq:{href:undefined},FRCD_0AAt:{href:undefined},hvfqRHFFn:{href:undefined},XwWg_7Apm:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-17qi6ff\",className,classNames)} framer-18flcm3`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"Jd79cyMBP\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},variants:{\"hvfqRHFFn-hover\":{backgroundColor:\"rgb(255, 236, 179)\"},\"Jd79cyMBP-hover\":{backgroundColor:\"rgb(255, 236, 179)\"},\"XwWg_7Apm-hover\":{backgroundColor:\"rgb(255, 236, 179)\"},Bm2qyYqcq:{backgroundColor:\"rgba(0, 0, 0, 0)\"},FRCD_0AAt:{backgroundColor:\"rgba(0, 0, 0, 0)\"}},...addPropertyOverrides({\"Bm2qyYqcq-hover\":{\"data-framer-name\":undefined},\"FRCD_0AAt-hover\":{\"data-framer-name\":undefined},\"hvfqRHFFn-hover\":{\"data-framer-name\":undefined},\"Jd79cyMBP-hover\":{\"data-framer-name\":undefined},\"XwWg_7Apm-hover\":{\"data-framer-name\":undefined},Bm2qyYqcq:{\"data-framer-name\":\"Variant 3\",\"data-highlight\":true,onMouseLeave:onMouseLeaveqdo6a5},FRCD_0AAt:{\"data-framer-name\":\"Variant 5\",\"data-highlight\":true,onMouseLeave:onMouseLeave1kter0d},hvfqRHFFn:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onTap:onTap1uf2zdj},XwWg_7Apm:{\"data-framer-name\":\"Variant 4\",\"data-highlight\":true,onTap:onTap1vjo7bn}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19qrhe4\",layoutDependency:layoutDependency,layoutId:\"sCDrpJZOb\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{\"hvfqRHFFn-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},\"Jd79cyMBP-hover\":{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},Bm2qyYqcq:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},FRCD_0AAt:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},XwWg_7Apm:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Instagram\"})}),className:\"framer-1tbqtn4\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"kBQrXpUSt\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\"},text:hjj_pPDhN,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-4viifp\",layoutDependency:layoutDependency,layoutId:\"Car0MAcC2\",children:[isDisplayed1()&&/*#__PURE__*/_jsx(Link,{href:MF7lu8Tqt,nodeId:\"McgVPvwH_\",openInNewTab:true,children:/*#__PURE__*/_jsx(MotionAWithHover,{className:\"framer-qxkeqm framer-18flcm3\",layoutDependency:layoutDependency,layoutId:\"McgVPvwH_\",style:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Instagram\"})}),className:\"framer-83qwxk\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"iINFkaDSJ\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:NtfBXANwC,nodeId:\"VTA5vefwq\",openInNewTab:true,...addPropertyOverrides({Bm2qyYqcq:{href:LKA75dLNc},FRCD_0AAt:{href:Bm6ye52lk,openInNewTab:false,smoothScroll:false}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(MotionAWithHover,{className:\"framer-1cj0t3h framer-18flcm3\",layoutDependency:layoutDependency,layoutId:\"VTA5vefwq\",style:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Instagram\"})}),className:\"framer-1m5ekpp\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"szaHbnX0v\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Bm2qyYqcq:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Twitter\"})})},FRCD_0AAt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Diesel Particulate Emissions Claim\"})})}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:DeKgJpnAL,nodeId:\"KtUeJ5_7i\",openInNewTab:true,smoothScroll:true,children:/*#__PURE__*/_jsx(MotionAWithHover,{className:\"framer-130jie9 framer-18flcm3\",layoutDependency:layoutDependency,layoutId:\"KtUeJ5_7i\",style:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Facebook\"})}),className:\"framer-kvx5ez\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"BdzjE9lP0\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:kEjKyaER4,nodeId:\"eYRcYeoKx\",openInNewTab:true,children:/*#__PURE__*/_jsx(MotionAWithHover,{className:\"framer-x7saka framer-18flcm3\",layoutDependency:layoutDependency,layoutId:\"eYRcYeoKx\",style:{backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"LinkedIn\"})}),className:\"framer-1b93f6m\",fonts:[\"Inter-SemiBold\"],layoutDependency:layoutDependency,layoutId:\"MjBo2h7Hn\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Ev4O4.framer-18flcm3, .framer-Ev4O4 .framer-18flcm3 { display: block; }\",\".framer-Ev4O4.framer-17qi6ff { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: min-content; }\",\".framer-Ev4O4 .framer-19qrhe4 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-Ev4O4 .framer-1tbqtn4, .framer-Ev4O4 .framer-83qwxk, .framer-Ev4O4 .framer-1m5ekpp, .framer-Ev4O4 .framer-kvx5ez, .framer-Ev4O4 .framer-1b93f6m { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Ev4O4 .framer-4viifp { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 200px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-Ev4O4 .framer-qxkeqm, .framer-Ev4O4 .framer-130jie9, .framer-Ev4O4 .framer-x7saka { 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: 16px; position: relative; text-decoration: none; width: 100%; }\",\".framer-Ev4O4 .framer-1cj0t3h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 21px; overflow: visible; padding: 16px; position: relative; text-decoration: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ev4O4.framer-17qi6ff, .framer-Ev4O4 .framer-19qrhe4, .framer-Ev4O4 .framer-4viifp, .framer-Ev4O4 .framer-qxkeqm, .framer-Ev4O4 .framer-1cj0t3h, .framer-Ev4O4 .framer-130jie9, .framer-Ev4O4 .framer-x7saka { gap: 0px; } .framer-Ev4O4.framer-17qi6ff > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-Ev4O4.framer-17qi6ff > :first-child, .framer-Ev4O4 .framer-4viifp > :first-child { margin-top: 0px; } .framer-Ev4O4.framer-17qi6ff > :last-child, .framer-Ev4O4 .framer-4viifp > :last-child { margin-bottom: 0px; } .framer-Ev4O4 .framer-19qrhe4 > *, .framer-Ev4O4 .framer-qxkeqm > *, .framer-Ev4O4 .framer-1cj0t3h > *, .framer-Ev4O4 .framer-130jie9 > *, .framer-Ev4O4 .framer-x7saka > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Ev4O4 .framer-19qrhe4 > :first-child, .framer-Ev4O4 .framer-qxkeqm > :first-child, .framer-Ev4O4 .framer-1cj0t3h > :first-child, .framer-Ev4O4 .framer-130jie9 > :first-child, .framer-Ev4O4 .framer-x7saka > :first-child { margin-left: 0px; } .framer-Ev4O4 .framer-19qrhe4 > :last-child, .framer-Ev4O4 .framer-qxkeqm > :last-child, .framer-Ev4O4 .framer-1cj0t3h > :last-child, .framer-Ev4O4 .framer-130jie9 > :last-child, .framer-Ev4O4 .framer-x7saka > :last-child { margin-right: 0px; } .framer-Ev4O4 .framer-4viifp > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\".framer-Ev4O4.framer-v-7brv2h.framer-17qi6ff { gap: 8px; padding: 0px; width: 116px; }\",\".framer-Ev4O4.framer-v-7brv2h .framer-19qrhe4 { align-self: unset; order: 0; padding: 16px; width: min-content; }\",\".framer-Ev4O4.framer-v-7brv2h .framer-1tbqtn4, .framer-Ev4O4.framer-v-r8saqk .framer-1tbqtn4 { order: 0; }\",\".framer-Ev4O4.framer-v-7brv2h .framer-4viifp { align-self: unset; height: min-content; order: 1; width: 100%; }\",\".framer-Ev4O4.framer-v-7brv2h .framer-1cj0t3h, .framer-Ev4O4.framer-v-7brv2h.hover .framer-1cj0t3h, .framer-Ev4O4.framer-v-r8saqk.hover .framer-1cj0t3h { min-height: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ev4O4.framer-v-7brv2h.framer-17qi6ff { gap: 0px; } .framer-Ev4O4.framer-v-7brv2h.framer-17qi6ff > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Ev4O4.framer-v-7brv2h.framer-17qi6ff > :first-child { margin-top: 0px; } .framer-Ev4O4.framer-v-7brv2h.framer-17qi6ff > :last-child { margin-bottom: 0px; } }\",\".framer-Ev4O4.framer-v-11xgex3.framer-17qi6ff { width: 298px; }\",\".framer-Ev4O4.framer-v-11xgex3 .framer-19qrhe4 { align-self: unset; width: 100%; }\",\".framer-Ev4O4.framer-v-r8saqk.framer-17qi6ff { gap: 8px; padding: 0px; width: 298px; }\",\".framer-Ev4O4.framer-v-r8saqk .framer-19qrhe4 { align-self: unset; order: 0; padding: 16px; width: 100%; }\",\".framer-Ev4O4.framer-v-r8saqk .framer-4viifp { align-self: unset; height: min-content; order: 1; width: min-content; }\",\".framer-Ev4O4.framer-v-r8saqk .framer-1cj0t3h { min-height: unset; width: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Ev4O4.framer-v-r8saqk.framer-17qi6ff { gap: 0px; } .framer-Ev4O4.framer-v-r8saqk.framer-17qi6ff > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-Ev4O4.framer-v-r8saqk.framer-17qi6ff > :first-child { margin-top: 0px; } .framer-Ev4O4.framer-v-r8saqk.framer-17qi6ff > :last-child { margin-bottom: 0px; } }\",\".framer-Ev4O4.framer-v-7brv2h.hover .framer-19qrhe4, .framer-Ev4O4.framer-v-7brv2h.hover .framer-4viifp, .framer-Ev4O4.framer-v-11xgex3.hover .framer-19qrhe4, .framer-Ev4O4.framer-v-r8saqk.hover .framer-19qrhe4, .framer-Ev4O4.framer-v-r8saqk.hover .framer-4viifp { align-self: unset; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 51\n * @framerIntrinsicWidth 114\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hvfqRHFFn\":{\"layout\":[\"auto\",\"auto\"]},\"Bm2qyYqcq\":{\"layout\":[\"fixed\",\"auto\"]},\"XwWg_7Apm\":{\"layout\":[\"fixed\",\"auto\"]},\"FRCD_0AAt\":{\"layout\":[\"fixed\",\"auto\"]},\"aKCBVo0MB\":{\"layout\":[\"auto\",\"auto\"]},\"ppRkCkbii\":{\"layout\":[\"auto\",\"auto\"]},\"Dsi6K38by\":{\"layout\":[\"fixed\",\"auto\"]},\"Jps7ynRUf\":{\"layout\":[\"fixed\",\"auto\"]},\"mYxHyPUjQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hjj_pPDhN\":\"instagram\",\"NtfBXANwC\":\"link2\",\"fdAqRt1HO\":\"link5\",\"WEibe2Py8\":\"link6\",\"MF7lu8Tqt\":\"insta\",\"LKA75dLNc\":\"twitter\",\"DeKgJpnAL\":\"facebook\",\"kEjKyaER4\":\"linkedin\",\"Bm6ye52lk\":\"link7\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOxdnL2CUx=withCSS(Component,css,\"framer-Ev4O4\");export default FramerOxdnL2CUx;FramerOxdnL2CUx.displayName=\"menu\";FramerOxdnL2CUx.defaultProps={height:51,width:114};addPropertyControls(FramerOxdnL2CUx,{variant:{options:[\"Jd79cyMBP\",\"hvfqRHFFn\",\"Bm2qyYqcq\",\"XwWg_7Apm\",\"FRCD_0AAt\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Variant 4\",\"Variant 5\"],title:\"Variant\",type:ControlType.Enum},hjj_pPDhN:{defaultValue:\"Instagram\",displayTextArea:false,title:\"instagram\",type:ControlType.String},NtfBXANwC:{title:\"Link 2\",type:ControlType.Link},fdAqRt1HO:{title:\"Link 5\",type:ControlType.Link},WEibe2Py8:{title:\"Link 6\",type:ControlType.Link},MF7lu8Tqt:{title:\"insta\",type:ControlType.Link},LKA75dLNc:{title:\"twitter\",type:ControlType.Link},DeKgJpnAL:{title:\"facebook\",type:ControlType.Link},kEjKyaER4:{title:\"linkedin\",type:ControlType.Link},Bm6ye52lk:{title:\"Link 7\",type:ControlType.Link}});addFonts(FramerOxdnL2CUx,[{explicitInter:true,fonts:[{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VET5UWA4MEKQA4WBV5EGM57GLZ6RJ3WC/S45ZC4DS7EIJMXUV6L2BAG5ELV3HN4S3/YDPYKQPH3JEREPOH5AQV4HHIWBADML7M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{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/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{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/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{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/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{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/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOxdnL2CUx\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"114\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"51\",\"framerVariables\":\"{\\\"hjj_pPDhN\\\":\\\"instagram\\\",\\\"NtfBXANwC\\\":\\\"link2\\\",\\\"fdAqRt1HO\\\":\\\"link5\\\",\\\"WEibe2Py8\\\":\\\"link6\\\",\\\"MF7lu8Tqt\\\":\\\"insta\\\",\\\"LKA75dLNc\\\":\\\"twitter\\\",\\\"DeKgJpnAL\\\":\\\"facebook\\\",\\\"kEjKyaER4\\\":\\\"linkedin\\\",\\\"Bm6ye52lk\\\":\\\"link7\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hvfqRHFFn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Bm2qyYqcq\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XwWg_7Apm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FRCD_0AAt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aKCBVo0MB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ppRkCkbii\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Dsi6K38by\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Jps7ynRUf\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mYxHyPUjQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OxdnL2CUx.map", "// Generated by Framer (ff6f0b6)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getLoadingLazyAtYPosition,Image,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import ButtonNoLink from\"https://framerusercontent.com/modules/A8JhmbKxkgIFTWXC9MtC/p6HXRrP27CDRkzfHZr9J/BJ6D0kXkF.js\";import Menu from\"https://framerusercontent.com/modules/me8HToL8D0oPbalwHO6A/n8Yg7IE4qfa6DMresTY2/OxdnL2CUx.js\";const MenuFonts=getFonts(Menu);const ButtonNoLinkFonts=getFonts(ButtonNoLink);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"J9MrdoqL1\",\"ESqjd2Djb\",\"M5OfiGq7E\"];const serializationHash=\"framer-f1c5r\";const variantClassNames={ESqjd2Djb:\"framer-v-2me4v3\",J9MrdoqL1:\"framer-v-1db7f2p\",M5OfiGq7E:\"framer-v-8vmzzp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateY(-50%) ${t}`;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 Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"J9MrdoqL1\",Phone:\"M5OfiGq7E\",Tablet:\"ESqjd2Djb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"J9MrdoqL1\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"J9MrdoqL1\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaptxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const onMouseEntertxyyif=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"ESqjd2Djb\",\"M5OfiGq7E\"].includes(baseVariant))return true;return false;};const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"ESqjd2Djb\")return true;return false;};const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"ESqjd2Djb\")return false;return true;};const isDisplayed3=()=>{if([\"ESqjd2Djb\",\"M5OfiGq7E\"].includes(baseVariant))return false;return true;};const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const ref7=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1db7f2p\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"J9MrdoqL1\",ref:ref??ref1,style:{backgroundColor:\"rgb(255, 250, 235)\",...style},...addPropertyOverrides({ESqjd2Djb:{\"data-framer-name\":\"Tablet\"},M5OfiGq7E:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gy7qoz\",layoutDependency:layoutDependency,layoutId:\"bmzuJxRKS\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},nodeId:\"EV49XsttH\",openInNewTab:false,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1uih622 framer-1ghy8p6\",\"data-framer-name\":\"Frame 256\",layoutDependency:layoutDependency,layoutId:\"EV49XsttH\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+13.333333333333336+4.666666666666664),src:\"https://framerusercontent.com/images/DARELwc9Aon7Pze5sNQo171Vlk.png\"},className:\"framer-dbyorf\",\"data-framer-name\":\"Group 93 1\",layoutDependency:layoutDependency,layoutId:\"DOeOnpfEw\"}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1uvtwv1\",\"data-framer-name\":\"Frame 271\",layoutDependency:layoutDependency,layoutId:\"ynK9BbQqH\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n5l0er\",\"data-framer-name\":\"Frame 201\",layoutDependency:layoutDependency,layoutId:\"ZWzAH4tlh\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"17px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:[\"Claims\",/*#__PURE__*/_jsx(motion.br,{}),\"Navigator\"]})}),className:\"framer-hshwe5\",\"data-framer-name\":\"Heading\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"PWjdUMKIa\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-paragraph-spacing\":\"20px\"},verticalAlignment:\"center\",withExternalLayout:true})})})]})}),isDisplayed()&&/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-c66i4x\",\"data-highlight\":true,id:`${layoutId}-c66i4x`,layoutDependency:layoutDependency,layoutId:\"AX4kfWiqq\",onTap:onTaptxyyif({overlay}),ref:ref2,children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1eo95gx\",\"data-framer-name\":\"Icon\",fill:\"rgb(0, 134, 201)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"JxEndpy98\",svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"32\" height=\"32\" viewBox=\"0 0 256 256\"><path d=\"M224 128a8 8 0 0 1-8 8H40a8 8 0 0 1 0-16h176a8 8 0 0 1 8 8ZM40 72h176a8 8 0 0 0 0-16H40a8 8 0 0 0 0 16Zm176 112H40a8 8 0 0 0 0 16h176a8 8 0 0 0 0-16Z\"/></svg>',withExternalLayout:true,...addPropertyOverrides({ESqjd2Djb:{fill:\"rgb(29, 41, 57)\"},M5OfiGq7E:{fill:\"rgb(29, 41, 57)\"}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref2,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-c66i4x`,offsetX:0,offsetY:10,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({ESqjd2Djb:{alignment:\"end\",collisionDetection:false,collisionDetectionPadding:undefined,offsetX:-28118491172790527e-21,offsetY:33.00000754650682,zIndex:1},M5OfiGq7E:{alignment:\"end\",offsetY:248,placement:\"top\",zIndex:1}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-az9o6s\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"BQMAoTen4\",ref:ref3,role:\"dialog\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},variants:{ESqjd2Djb:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"8px 8px 0px 0px rgba(0,0,0,0.05)\"},M5OfiGq7E:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"8px 8px 0px 0px rgba(0, 0, 0, 0.25)\"}},...addPropertyOverrides({ESqjd2Djb:{\"data-border\":true,animate:undefined,exit:undefined,initial:undefined},M5OfiGq7E:{\"data-border\":true,animate:undefined,exit:undefined,initial:undefined}},baseVariant,gestureVariant),children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1s23tfr\",layoutDependency:layoutDependency,layoutId:\"AQ19Hv5ep\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({ESqjd2Djb:{width:\"298px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19un8tx-container\",layoutDependency:layoutDependency,layoutId:\"Y9bnoddV5-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Instagram\",id:\"Y9bnoddV5\",layoutId:\"Y9bnoddV5\",style:{width:\"100%\"},variant:\"Jd79cyMBP\",width:\"100%\",...addPropertyOverrides({ESqjd2Djb:{hjj_pPDhN:\"Social Media\",kEjKyaER4:\"https://www.linkedin.com/company/claims-navigator\",LKA75dLNc:\"http://x.com/claimsnav\",MF7lu8Tqt:\"https://www.instagram.com/claimsnavigator/\",variant:\"hvfqRHFFn\"}},baseVariant,gestureVariant)})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ruReLAo1E\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-lhmbl1-container\",layoutDependency:layoutDependency,layoutId:\"mAhT2SVZy-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Social Media\",id:\"mAhT2SVZy\",layoutId:\"mAhT2SVZy\",style:{width:\"100%\"},variant:\"hvfqRHFFn\",width:\"100%\",...addPropertyOverrides({ESqjd2Djb:{Bm6ye52lk:resolvedLinks[0],hjj_pPDhN:\"Our Claims\",variant:\"XwWg_7Apm\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbhavy-container\",layoutDependency:layoutDependency,layoutId:\"jATWwlI8t-container\",transformTemplate:transformTemplate1,...addPropertyOverrides({ESqjd2Djb:{transformTemplate:undefined},M5OfiGq7E:{transformTemplate:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ButtonNoLink,{ahchre67f:false,height:\"100%\",id:\"jATWwlI8t\",layoutId:\"jATWwlI8t\",variant:\"knZEYP_lD\",width:\"100%\",...addPropertyOverrides({ESqjd2Djb:{variant:\"g2soukjkQ\"},M5OfiGq7E:{variant:\"g2soukjkQ\"}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-kgsd5l\",layoutDependency:layoutDependency,layoutId:\"r9n2LC5Tc\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"298px\",...addPropertyOverrides({M5OfiGq7E:{width:\"326px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-261g3f-container\",layoutDependency:layoutDependency,layoutId:\"Lld2p52K1-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Social Media\",id:\"Lld2p52K1\",layoutId:\"Lld2p52K1\",style:{width:\"100%\"},variant:\"hvfqRHFFn\",width:\"100%\",...addPropertyOverrides({M5OfiGq7E:{kEjKyaER4:\"https://www.linkedin.com/company/claims-navigator\",LKA75dLNc:\"http://x.com/claimsnav\",MF7lu8Tqt:\"https://www.instagram.com/claimsnavigator/\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ruReLAo1E\"},implicitPathVariables:undefined},{href:{webPageId:\"ruReLAo1E\"},implicitPathVariables:undefined},{href:{webPageId:\"ruReLAo1E\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({M5OfiGq7E:{width:\"326px\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w6lea4-container\",layoutDependency:layoutDependency,layoutId:\"Qfbbd472Y-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Our Claims\",id:\"Qfbbd472Y\",layoutId:\"Qfbbd472Y\",NtfBXANwC:resolvedLinks1[0],style:{width:\"100%\"},variant:\"XwWg_7Apm\",width:\"100%\",...addPropertyOverrides({M5OfiGq7E:{Bm6ye52lk:resolvedLinks1[2],NtfBXANwC:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})})]})]})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6rtwff\",\"data-framer-name\":\"Navigation\",layoutDependency:layoutDependency,layoutId:\"cKVRlAZl5\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-9i4u03\",\"data-framer-name\":\"Button\",\"data-highlight\":true,id:`${layoutId}-9i4u03`,layoutDependency:layoutDependency,layoutId:\"KIdekjVoO\",onMouseEnter:onMouseEntertxyyif({overlay:overlay1}),ref:ref4,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Social Media\"})}),className:\"framer-ev342m\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"rzW1iCK9N\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-upft76\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ULGWJbsi2-shape\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9 6\"><path d=\"M 8.315 1.526 L 4.752 5.089 C 4.685 5.156 4.595 5.193 4.5 5.193 C 4.405 5.193 4.315 5.156 4.248 5.089 L 0.685 1.526 C 0.546 1.387 0.546 1.162 0.685 1.022 C 0.825 0.883 1.05 0.883 1.19 1.022 L 4.5 4.333 L 7.81 1.022 C 7.95 0.883 8.175 0.883 8.315 1.022 C 8.454 1.162 8.454 1.387 8.315 1.526 Z\" fill=\"rgb(29, 41, 57)\" stroke-width=\"0.96\" stroke=\"rgb(29, 41, 57)\" stroke-miterlimit=\"5.9375\"></path></svg>',svgContentId:12308718154,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref4,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-9i4u03`,offsetX:80.70311731375114,offsetY:23.000000684522092,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1jxwf92\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"t6Sg1a02u\",ref:ref5,role:\"dialog\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"8px 8px 0px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-gf9f6b\",layoutDependency:layoutDependency,layoutId:\"CGLfrN4QX\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-bqy0fd\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"zp6PAaWMa\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 236, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"262px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-acc5b3-container\",layoutDependency:layoutDependency,layoutId:\"UEEDlJc1b-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Instagram\",id:\"UEEDlJc1b\",layoutId:\"UEEDlJc1b\",style:{width:\"100%\"},variant:\"Jd79cyMBP\",WEibe2Py8:\"https://www.instagram.com/claimsnavigator/\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1tprith\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"e46o6tXrG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 236, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"262px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d87041-container\",layoutDependency:layoutDependency,layoutId:\"bA94jc778-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Twitter\",id:\"bA94jc778\",layoutId:\"bA94jc778\",style:{width:\"100%\"},variant:\"Jd79cyMBP\",WEibe2Py8:\"http://x.com/claimsnav\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-uojfo4\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"TqnsFe6UG\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 236, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"262px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1onywsg-container\",layoutDependency:layoutDependency,layoutId:\"vKRJkanTV-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Linkedin\",id:\"vKRJkanTV\",layoutId:\"vKRJkanTV\",style:{width:\"100%\"},variant:\"Jd79cyMBP\",WEibe2Py8:\"https://www.linkedin.com/company/claims-navigator\",width:\"100%\"})})})})]})})})})]})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12mgzdt\",\"data-framer-name\":\"Button\",\"data-highlight\":true,id:`${layoutId}-12mgzdt`,layoutDependency:layoutDependency,layoutId:\"epks61hbh\",onMouseEnter:onMouseEntertxyyif({overlay:overlay2}),ref:ref6,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7RXBpbG9ndWUtc2VtaWJvbGQ=\",\"--framer-font-family\":'\"Epilogue\", \"Epilogue Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(29, 41, 57))\"},children:\"Our Claims\"})}),className:\"framer-16pz1yo\",\"data-framer-name\":\"Text\",fonts:[\"FS;Epilogue-semibold\"],layoutDependency:layoutDependency,layoutId:\"kCh2fuxfx\",style:{\"--extracted-r6o4lv\":\"rgb(29, 41, 57)\",\"--framer-paragraph-spacing\":\"16px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jl9upo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"EQmYBsb3A\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9 6\"><path d=\"M 8.315 1.526 L 4.752 5.089 C 4.685 5.156 4.595 5.193 4.5 5.193 C 4.405 5.193 4.315 5.156 4.248 5.089 L 0.685 1.526 C 0.546 1.387 0.546 1.162 0.685 1.022 C 0.825 0.883 1.05 0.883 1.19 1.022 L 4.5 4.333 L 7.81 1.022 C 7.95 0.883 8.175 0.883 8.315 1.022 C 8.454 1.162 8.454 1.387 8.315 1.526 Z\" fill=\"rgb(29, 41, 57)\" stroke-width=\"0.96\" stroke=\"rgb(29, 41, 57)\" stroke-miterlimit=\"5.9375\"></path></svg>',svgContentId:12308718154,withExternalLayout:true}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"center\",anchorRef:ref6,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-12mgzdt`,offsetX:-62.54688327731856,offsetY:22.99999902451964,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1rxo7oi\",\"data-border\":true,exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"gzNJYKR8u\",ref:ref7,role:\"dialog\",style:{\"--border-bottom-width\":\"2px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"2px\",\"--border-right-width\":\"2px\",\"--border-style\":\"solid\",\"--border-top-width\":\"2px\",backgroundColor:\"rgb(255, 250, 235)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,boxShadow:\"8px 8px 0px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yoy03a\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"JwXtdBHYm\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(234, 236, 240)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ruReLAo1E\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"262px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1jlwusz-container\",layoutDependency:layoutDependency,layoutId:\"nNz9zBa4C-container\",children:/*#__PURE__*/_jsx(Menu,{height:\"100%\",hjj_pPDhN:\"Diesel Particulate Filter Claim\",id:\"nNz9zBa4C\",layoutId:\"nNz9zBa4C\",style:{width:\"100%\"},variant:\"Jd79cyMBP\",WEibe2Py8:resolvedLinks2[0],width:\"100%\"})})})})})})})})]})})})]}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:60,y:(componentViewport?.y||0)+(0+((componentViewport?.height||80)-0-80)/2)+10,children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kb0dpm-container\",layoutDependency:layoutDependency,layoutId:\"HzA3BTCql-container\",children:/*#__PURE__*/_jsx(ButtonNoLink,{ahchre67f:false,height:\"100%\",id:\"HzA3BTCql\",layoutId:\"HzA3BTCql\",variant:\"g2soukjkQ\",width:\"100%\"})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-f1c5r.framer-1ghy8p6, .framer-f1c5r .framer-1ghy8p6 { display: block; }\",\".framer-f1c5r.framer-1db7f2p { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-f1c5r .framer-1gy7qoz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 80px; justify-content: space-between; overflow: hidden; padding: 0px 128px 0px 128px; position: relative; width: 1440px; }\",\".framer-f1c5r .framer-1uih622 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 67%; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-f1c5r .framer-dbyorf { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 44px); position: relative; width: 44px; }\",\".framer-f1c5r .framer-1uvtwv1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f1c5r .framer-1n5l0er { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f1c5r .framer-hshwe5, .framer-f1c5r .framer-ev342m, .framer-f1c5r .framer-16pz1yo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-f1c5r .framer-c66i4x { cursor: pointer; flex: none; height: 32px; overflow: hidden; position: relative; width: 32px; }\",\".framer-f1c5r .framer-1eo95gx { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-f1c5r .framer-az9o6s { height: 150px; overflow: hidden; position: relative; width: 200px; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1c5r .framer-1s23tfr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: -25px; width: 100%; }\",\".framer-f1c5r .framer-19un8tx-container, .framer-f1c5r .framer-lhmbl1-container, .framer-f1c5r .framer-1w6lea4-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-f1c5r .framer-1dbhavy-container { flex: none; height: auto; position: absolute; right: 0px; top: 50%; width: auto; }\",\".framer-f1c5r .framer-kgsd5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; top: 16px; width: 1fr; }\",\".framer-f1c5r .framer-261g3f-container { flex: none; height: auto; position: relative; width: 298px; }\",\".framer-f1c5r .framer-6rtwff { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f1c5r .framer-9i4u03, .framer-f1c5r .framer-12mgzdt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-f1c5r .framer-upft76, .framer-f1c5r .framer-1jl9upo { flex: none; height: 6px; position: relative; width: 9px; }\",\".framer-f1c5r .framer-1jxwf92 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1c5r .framer-gf9f6b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-f1c5r .framer-bqy0fd, .framer-f1c5r .framer-1tprith, .framer-f1c5r .framer-yoy03a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 294px; }\",\".framer-f1c5r .framer-acc5b3-container, .framer-f1c5r .framer-1d87041-container, .framer-f1c5r .framer-1onywsg-container, .framer-f1c5r .framer-1jlwusz-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-f1c5r .framer-uojfo4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px 16px 24px 16px; position: relative; width: 294px; }\",\".framer-f1c5r .framer-1rxo7oi { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-f1c5r .framer-1kb0dpm-container { flex: none; height: auto; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f1c5r.framer-1db7f2p, .framer-f1c5r .framer-1uih622, .framer-f1c5r .framer-1uvtwv1, .framer-f1c5r .framer-1n5l0er, .framer-f1c5r .framer-1s23tfr, .framer-f1c5r .framer-kgsd5l, .framer-f1c5r .framer-6rtwff, .framer-f1c5r .framer-9i4u03, .framer-f1c5r .framer-1jxwf92, .framer-f1c5r .framer-gf9f6b, .framer-f1c5r .framer-bqy0fd, .framer-f1c5r .framer-1tprith, .framer-f1c5r .framer-uojfo4, .framer-f1c5r .framer-12mgzdt, .framer-f1c5r .framer-1rxo7oi, .framer-f1c5r .framer-yoy03a { gap: 0px; } .framer-f1c5r.framer-1db7f2p > *, .framer-f1c5r .framer-1jxwf92 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-f1c5r.framer-1db7f2p > :first-child, .framer-f1c5r .framer-1uih622 > :first-child, .framer-f1c5r .framer-1n5l0er > :first-child, .framer-f1c5r .framer-6rtwff > :first-child, .framer-f1c5r .framer-9i4u03 > :first-child, .framer-f1c5r .framer-1jxwf92 > :first-child, .framer-f1c5r .framer-bqy0fd > :first-child, .framer-f1c5r .framer-1tprith > :first-child, .framer-f1c5r .framer-uojfo4 > :first-child, .framer-f1c5r .framer-12mgzdt > :first-child, .framer-f1c5r .framer-yoy03a > :first-child { margin-left: 0px; } .framer-f1c5r.framer-1db7f2p > :last-child, .framer-f1c5r .framer-1uih622 > :last-child, .framer-f1c5r .framer-1n5l0er > :last-child, .framer-f1c5r .framer-6rtwff > :last-child, .framer-f1c5r .framer-9i4u03 > :last-child, .framer-f1c5r .framer-1jxwf92 > :last-child, .framer-f1c5r .framer-bqy0fd > :last-child, .framer-f1c5r .framer-1tprith > :last-child, .framer-f1c5r .framer-uojfo4 > :last-child, .framer-f1c5r .framer-12mgzdt > :last-child, .framer-f1c5r .framer-yoy03a > :last-child { margin-right: 0px; } .framer-f1c5r .framer-1uih622 > *, .framer-f1c5r .framer-1n5l0er > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-f1c5r .framer-1uvtwv1 > *, .framer-f1c5r .framer-kgsd5l > *, .framer-f1c5r .framer-gf9f6b > *, .framer-f1c5r .framer-1rxo7oi > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-f1c5r .framer-1uvtwv1 > :first-child, .framer-f1c5r .framer-1s23tfr > :first-child, .framer-f1c5r .framer-kgsd5l > :first-child, .framer-f1c5r .framer-gf9f6b > :first-child, .framer-f1c5r .framer-1rxo7oi > :first-child { margin-top: 0px; } .framer-f1c5r .framer-1uvtwv1 > :last-child, .framer-f1c5r .framer-1s23tfr > :last-child, .framer-f1c5r .framer-kgsd5l > :last-child, .framer-f1c5r .framer-gf9f6b > :last-child, .framer-f1c5r .framer-1rxo7oi > :last-child { margin-bottom: 0px; } .framer-f1c5r .framer-1s23tfr > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-f1c5r .framer-6rtwff > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-f1c5r .framer-9i4u03 > *, .framer-f1c5r .framer-12mgzdt > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-f1c5r .framer-bqy0fd > *, .framer-f1c5r .framer-1tprith > *, .framer-f1c5r .framer-uojfo4 > *, .framer-f1c5r .framer-yoy03a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-f1c5r.framer-v-2me4v3.framer-1db7f2p { width: 810px; }\",\".framer-f1c5r.framer-v-2me4v3 .framer-1gy7qoz { order: 0; width: 810px; }\",\".framer-f1c5r.framer-v-2me4v3 .framer-az9o6s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 16px; width: min-content; }\",\".framer-f1c5r.framer-v-2me4v3 .framer-1s23tfr { align-self: stretch; gap: 0px; left: unset; order: 0; position: relative; top: unset; width: auto; }\",\".framer-f1c5r.framer-v-2me4v3 .framer-19un8tx-container { width: 298px; }\",\".framer-f1c5r.framer-v-2me4v3 .framer-1dbhavy-container { order: 1; position: relative; right: unset; top: unset; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f1c5r.framer-v-2me4v3 .framer-az9o6s, .framer-f1c5r.framer-v-2me4v3 .framer-1s23tfr { gap: 0px; } .framer-f1c5r.framer-v-2me4v3 .framer-az9o6s > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-f1c5r.framer-v-2me4v3 .framer-az9o6s > :first-child, .framer-f1c5r.framer-v-2me4v3 .framer-1s23tfr > :first-child { margin-top: 0px; } .framer-f1c5r.framer-v-2me4v3 .framer-az9o6s > :last-child, .framer-f1c5r.framer-v-2me4v3 .framer-1s23tfr > :last-child { margin-bottom: 0px; } .framer-f1c5r.framer-v-2me4v3 .framer-1s23tfr > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } }\",\".framer-f1c5r.framer-v-8vmzzp.framer-1db7f2p { padding: 0px 16px 0px 16px; width: 390px; }\",\".framer-f1c5r.framer-v-8vmzzp .framer-1gy7qoz { padding: 0px; width: 358px; }\",\".framer-f1c5r.framer-v-8vmzzp .framer-az9o6s { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; padding: 16px; width: 358px; }\",\".framer-f1c5r.framer-v-8vmzzp .framer-1dbhavy-container { order: 4; position: relative; right: unset; top: unset; }\",\".framer-f1c5r.framer-v-8vmzzp .framer-kgsd5l { left: unset; order: 0; position: relative; top: unset; width: 100%; }\",\".framer-f1c5r.framer-v-8vmzzp .framer-261g3f-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-f1c5r.framer-v-8vmzzp .framer-az9o6s { gap: 0px; } .framer-f1c5r.framer-v-8vmzzp .framer-az9o6s > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-f1c5r.framer-v-8vmzzp .framer-az9o6s > :first-child { margin-top: 0px; } .framer-f1c5r.framer-v-8vmzzp .framer-az9o6s > :last-child { margin-bottom: 0px; } }\",'.framer-f1c5r[data-border=\"true\"]::after, .framer-f1c5r [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 80\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"ESqjd2Djb\":{\"layout\":[\"fixed\",\"auto\"]},\"M5OfiGq7E\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwYVPNdzFZ=withCSS(Component,css,\"framer-f1c5r\");export default FramerwYVPNdzFZ;FramerwYVPNdzFZ.displayName=\"header home desktop\";FramerwYVPNdzFZ.defaultProps={height:80,width:1440};addPropertyControls(FramerwYVPNdzFZ,{variant:{options:[\"J9MrdoqL1\",\"ESqjd2Djb\",\"M5OfiGq7E\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerwYVPNdzFZ,[{explicitInter:true,fonts:[{family:\"Epilogue\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/VET5UWA4MEKQA4WBV5EGM57GLZ6RJ3WC/S45ZC4DS7EIJMXUV6L2BAG5ELV3HN4S3/YDPYKQPH3JEREPOH5AQV4HHIWBADML7M.woff2\",weight:\"600\"}]},...MenuFonts,...ButtonNoLinkFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwYVPNdzFZ\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"80\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ESqjd2Djb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M5OfiGq7E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["createStore", "state1", "dataStore", "Data", "setDataStore", "newState", "storeState", "storeSetters", "setStoreState", "setter", "useStore", "state", "setState", "ye", "ue", "useObserveData", "centerContent", "defaultContainerStyles", "centerContent", "useStore", "createStore", "Form", "props", "isHovered", "setIsHovered", "ye", "placeholder", "setPlaceholder", "email", "setEmail", "isChecked", "setIsChecked", "successMessage", "setSuccessMessage", "u", "event", "containerStyle", "inputToggleContainer", "p", "inputContainerStyle", "inputFieldStyle", "toggleContainerStyle", "e", "toggleTextStyle", "buttonHoverStyle", "buttonStyle", "modalOverlayStyle", "modalStyle", "containerStyle", "inputToggleContainer", "inputFieldStyle", "inputContainerStyle", "toggleContainerStyle", "toggleTextStyle", "buttonStyle", "buttonHoverStyle", "withHover", "Component", "props", "p", "MotionAWithHover", "withHover", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "RichText2", "css", "FramerBJ6D0kXkF", "withCSS", "BJ6D0kXkF_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "css", "FramerPmhrIaB_j", "withCSS", "PmhrIaB_j_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "useStore", "createStore", "withHover", "Component", "props", "p", "MotionAWithHover", "withHover", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "facebook", "height", "id", "insta", "instagram", "link2", "link5", "link6", "link7", "linkedin", "twitter", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hjj_pPDhN", "NtfBXANwC", "fdAqRt1HO", "WEibe2Py8", "MF7lu8Tqt", "LKA75dLNc", "DeKgJpnAL", "kEjKyaER4", "Bm6ye52lk", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1uf2zdj", "args", "onMouseLeaveqdo6a5", "onTap1vjo7bn", "onMouseLeave1kter0d", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "Link", "u", "RichText2", "css", "FramerOxdnL2CUx", "withCSS", "OxdnL2CUx_default", "addPropertyControls", "ControlType", "addFonts", "MenuFonts", "getFonts", "OxdnL2CUx_default", "ButtonNoLinkFonts", "BJ6D0kXkF_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "animation1", "animation2", "transformTemplate1", "_", "t", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaptxyyif", "overlay", "loadMore", "args", "onMouseEntertxyyif", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "ref2", "ref3", "isDisplayed1", "router", "useRouter", "isDisplayed2", "isDisplayed3", "ref4", "ref5", "ref6", "ref7", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "Link", "Image2", "getLoadingLazyAtYPosition", "RichText2", "l", "SVG", "AnimatePresence", "Floating", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "overlay1", "overlay2", "resolvedLinks2", "css", "FramerwYVPNdzFZ", "withCSS", "wYVPNdzFZ_default", "addPropertyControls", "ControlType", "addFonts"]
}
