{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/4IJ3SuueTZLSBWf4ChRh/AszjQ79OiyBdY4zRwWEM/sgrUrthE4.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (2306ade)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useQueryData,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import PostCard03 from\"#framer/local/canvasComponent/BgBY5Ca87/BgBY5Ca87.js\";import Header from\"#framer/local/canvasComponent/O9LgT36_O/O9LgT36_O.js\";import Divider from\"#framer/local/canvasComponent/R9t2PHuh_/R9t2PHuh_.js\";import Blog,{enumToDisplayNameFunctions}from\"#framer/local/collection/H26m3KzeY/H26m3KzeY.js\";import metadataProvider from\"#framer/local/webPageMetadata/sgrUrthE4/sgrUrthE4.js\";const HeaderFonts=getFonts(Header);const DividerFonts=getFonts(Divider);const DownloadFonts=getFonts(Download);const PostCard03Fonts=getFonts(PostCard03);const breakpoints={GCokEZbGW:\"(min-width: 810px) and (max-width: 1199px)\",U9NBMW9HT:\"(min-width: 1200px)\",ZW5bERyvH:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-auXjR\";const variantClassNames={GCokEZbGW:\"framer-v-7vlknt\",U9NBMW9HT:\"framer-v-7s1fm7\",ZW5bERyvH:\"framer-v-d46jcl\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const toDateString=(value,options={},activeLocale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const display=options.display?options.display:\"date\";const dateOptions={dateStyle:display!==\"time\"?options.dateStyle:undefined,timeStyle:display===\"date\"?undefined:\"short\",timeZone:\"UTC\"};const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;// We add a try block because an invalid language code results in a crash\ntry{return date.toLocaleString(locale,dateOptions);}catch{return date.toLocaleString(fallbackLocale,dateOptions);}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"U9NBMW9HT\",Phone:\"ZW5bERyvH\",Tablet:\"GCokEZbGW\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"U9NBMW9HT\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,gv_4tWH_4W0FNDBD7D,I2ns4HJxAW0FNDBD7D,yy9zuOaBEW0FNDBD7D,WLMYYiqWGW0FNDBD7D,xEFAP6rgiW0FNDBD7D,JXXWstL8SW0FNDBD7D,u1qPqjlCvW0FNDBD7D,idW0FNDBD7D,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const activeLocaleCode=useLocaleCode();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"U9NBMW9HT\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-7s1fm7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-out9hj\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-179ogya-container\",nodeId:\"WAHazOzSN\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{variant:\"FXqg3w89i\"},ZW5bERyvH:{variant:\"BXKhiN2rK\"}},children:/*#__PURE__*/_jsx(Header,{height:\"100%\",id:\"WAHazOzSN\",layoutId:\"WAHazOzSN\",style:{width:\"100%\"},variant:\"OEotS1Bw6\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-7wl0ys-container\",nodeId:\"lCY9iVnFW\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(Divider,{height:\"100%\",id:\"lCY9iVnFW\",layoutId:\"lCY9iVnFW\",style:{width:\"100%\"},variant:\"EARPWZh_K\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1otzllk\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW5bERyvH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Eligible Cars for Membership\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Eligible Cars for Membership\"})}),className:\"framer-15xfd3x\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1he06ep-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"bCcUFTM9b\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(Download,{fontControl:{},height:\"100%\",id:\"bCcUFTM9b\",layoutId:\"bCcUFTM9b\",srcFile:\"https://framerusercontent.com/assets/nEefJpFmy4x4c5Jx4VfYVuwuChg.pdf\",srcType:\"URL\",srcURL:\"https://www.dropbox.com/scl/fi/x2a63qzvc46ann7s1sz0h/Eligible-Cars-for-Membership.pdf?rlkey=nunge237k9wytn6ex0wtavsam&dl=0\",styleOptions:{backgroundColor:\"rgb(17, 17, 17)\",borderRadius:50,color:\"rgb(255, 255, 255)\",gap:5,padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10},text:\"Download\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jeh3oj\",\"data-framer-name\":\"All Post\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7kmdq4\",\"data-framer-name\":\"Inner\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-ps2f7z\",\"data-framer-name\":\"Post List\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-c8c757\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"W0FNDBD7D\",data:Blog,type:\"Collection\"},select:[{collection:\"W0FNDBD7D\",name:\"gv_4tWH_4\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"I2ns4HJxA\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"yy9zuOaBE\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"WLMYYiqWG\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"xEFAP6rgi\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"JXXWstL8S\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"u1qPqjlCv\",type:\"Identifier\"},{collection:\"W0FNDBD7D\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({gv_4tWH_4:gv_4tWH_4W0FNDBD7D,I2ns4HJxA:I2ns4HJxAW0FNDBD7D,id:idW0FNDBD7D,JXXWstL8S:JXXWstL8SW0FNDBD7D,u1qPqjlCv:u1qPqjlCvW0FNDBD7D,WLMYYiqWG:WLMYYiqWGW0FNDBD7D,xEFAP6rgi:xEFAP6rgiW0FNDBD7D,yy9zuOaBE:yy9zuOaBEW0FNDBD7D},index)=>{gv_4tWH_4W0FNDBD7D??=\"\";I2ns4HJxAW0FNDBD7D??=\"\";JXXWstL8SW0FNDBD7D??=\"\";u1qPqjlCvW0FNDBD7D??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`W0FNDBD7D-${idW0FNDBD7D}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D},children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D},webPageId:\"rVvfrYSOu\"},implicitPathVariables:undefined},{href:JXXWstL8SW0FNDBD7D,implicitPathVariables:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D}},{href:{pathVariables:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D},webPageId:\"rVvfrYSOu\"},implicitPathVariables:undefined},{href:JXXWstL8SW0FNDBD7D,implicitPathVariables:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D}},{href:{pathVariables:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D},webPageId:\"rVvfrYSOu\"},implicitPathVariables:undefined},{href:JXXWstL8SW0FNDBD7D,implicitPathVariables:{gv_4tWH_4:gv_4tWH_4W0FNDBD7D}}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b4egpq-container\",nodeId:\"tafTsKTaU\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{lwkU7I23s:resolvedLinks[2],V5n_MSAEv:resolvedLinks[3]},ZW5bERyvH:{lwkU7I23s:resolvedLinks[4],V5n_MSAEv:resolvedLinks[5]}},children:/*#__PURE__*/_jsx(PostCard03,{cAV_kO5eE:I2ns4HJxAW0FNDBD7D,Cnsx5oOVY:toResponsiveImage(yy9zuOaBEW0FNDBD7D),height:\"100%\",id:\"tafTsKTaU\",L_3n5KZLL:u1qPqjlCvW0FNDBD7D,layoutId:\"tafTsKTaU\",lwkU7I23s:resolvedLinks[0],o0KkJQd2b:toDateString(WLMYYiqWGW0FNDBD7D,{dateStyle:\"medium\",locale:\"\"},activeLocaleCode),style:{width:\"100%\"},V5n_MSAEv:resolvedLinks[1],width:\"100%\",yTangQAuM:enumToDisplayNameFunctions[\"xEFAP6rgi\"]?.(xEFAP6rgiW0FNDBD7D,activeLocale)})})})})})})},idW0FNDBD7D);})})})})})})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1ook72a\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ZW5bERyvH:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"44px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Proudly Working With\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.6px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Proudly Working With\"})}),className:\"framer-l5ninu\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\"We strive to provide our members with an ever growing network of trusted partners worldwide.\"}),/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(136, 136, 136)\"},children:\" Providing quality products and services.\"})]}),className:\"framer-1nqu2fo\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13parii\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-17pq78\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"You're next!\"})}),className:\"framer-j6tf1t\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18nvmqp\",\"data-framer-name\":\"Button\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Get in touch!\"})}),className:\"framer-ev4eep\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lq4s99\",\"data-framer-name\":\"Grid 1\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nx1c0o\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9dsu8f\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://werke.site/\",motionChild:true,nodeId:\"zzI59Azmw\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+0+0+0),pixelHeight:960,pixelWidth:960,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg\",srcSet:\"https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg 960w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+0+0+0),pixelHeight:960,pixelWidth:960,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg\",srcSet:\"https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg 960w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+0+0+0),pixelHeight:960,pixelWidth:960,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg\",srcSet:\"https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/SPVUur5pe3RDigCvVkKtQBY9UQU.jpg 960w\"},className:\"framer-fr9e1c framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xnmi8y\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"WERKE\"})}),className:\"framer-8v66rn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Werke is a high quality quarterly publication that celebrates BMW and the culture that surrounds the cars.\"})}),className:\"framer-ni1vbq\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12zeg70\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://autoid.co/\",motionChild:true,nodeId:\"h44fjwNwx\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png\",srcSet:\"https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png 1200w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+408.4+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png\",srcSet:\"https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+0+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png\",srcSet:\"https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png?scale-down-to=512 512w,https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/o9iNnA77KGv9ACa8hGtqiYevjws.png 1200w\"},className:\"framer-whizpi framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lrwwmn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"AUTOID\"})}),className:\"framer-3jvzd7\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Like you, we believe that cars are an extension of our personality. It\u2019s because of this we are building the largest collection of vehicle styling parts in the world.\\xa0\"})}),className:\"framer-twtdip\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yjid62\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://ivality.de\",motionChild:true,nodeId:\"euQWLzx30\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+0+0+0),pixelHeight:781,pixelWidth:3783,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png 3783w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+816.8+0+0),pixelHeight:781,pixelWidth:3783,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png 3783w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+0+0+0),pixelHeight:781,pixelWidth:3783,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=512 512w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/7OTimeDJCTffn8ohOxniakAfqo.png 3783w\"},className:\"framer-ro4hpw framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8a8ep7\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"IVALITY\"})}),className:\"framer-1mi5824\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"As brothers, we've always shared a passion for the automotive world and shared the vision of pursuing entrepreneurial success. So we founded IVALITY. \"})}),className:\"framer-1cwb510\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gf635b\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://larusmiani.com/?utm_source=bmwpcc&utm_medium=web&utm_campaign=bmwpcc&utm_id=022024\",motionChild:true,nodeId:\"GgsFC7j7W\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+408.4+0+0),pixelHeight:960,pixelWidth:960,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png\",srcSet:\"https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png 960w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+1225.2+0+0),pixelHeight:960,pixelWidth:960,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png\",srcSet:\"https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png 960w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:960,intrinsicWidth:960,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+408.4+0+0),pixelHeight:960,pixelWidth:960,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png\",srcSet:\"https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nLLb8NaFBjjO1f74qphdUDgjz8.png 960w\"},className:\"framer-w73mxu framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xl1yob\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"LARUSMIANI\"})}),className:\"framer-1h296qa\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"THE AUTOMOTIVE GALLERY\"})}),/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:[\"Engineering, aerodynamics, creativity, and excellence come together in \",/*#__PURE__*/_jsx(\"strong\",{children:\"Boutique \"}),\"to create an exclusive collection limited edition.\"]})]}),className:\"framer-13hquc9\",fonts:[\"GF;Inter-500\",\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-np053n\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://tyrewallstickers.com/\",motionChild:true,nodeId:\"ZOYt4PeuC\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1405,intrinsicWidth:1405,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+408.4+0+0),pixelHeight:1405,pixelWidth:1405,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg\",srcSet:\"https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg 1405w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1405,intrinsicWidth:1405,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+1656+0+0),pixelHeight:1405,pixelWidth:1405,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg\",srcSet:\"https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg 1405w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1405,intrinsicWidth:1405,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+408.4+0+0),pixelHeight:1405,pixelWidth:1405,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg\",srcSet:\"https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ZRz9cGOnTzOVgUEmJHuojBrDAQ.jpg 1405w\"},className:\"framer-1m72d1q framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11wyjqg\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"TIRE WALL STICKERS\"})}),className:\"framer-1ey4pi2\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Tyre Wall Stickers specialise in premium tyre lettering. All of their decals are custom-made in the UK providing a perfect fit every time.\"})}),className:\"framer-1gmms4l\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ajy7wi\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://arperformance.co.uk/\",motionChild:true,nodeId:\"f62AdNRdY\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1405,intrinsicWidth:1405,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+408.4+0+0),pixelHeight:2062,pixelWidth:11385,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg 11385w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1405,intrinsicWidth:1405,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+2064.4+0+0),pixelHeight:2062,pixelWidth:11385,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg 11385w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1405,intrinsicWidth:1405,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+408.4+0+0),pixelHeight:2062,pixelWidth:11385,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/usdTVghJDULC0LZVGPYyQQbiw.jpg 11385w\"},className:\"framer-1dfk90u framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pnw805\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"AReeve Performance\"})}),className:\"framer-10jd8tb\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"One of the UKs leading BMW, Mini, Porsche & Specialists. Servicing & Repairs, Bespoke tuning.\"})}),className:\"framer-m2ubzr\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7fh43c\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.yourpass.eu\",motionChild:true,nodeId:\"OBk5X6_vn\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+839.2+0+0),pixelHeight:1004,pixelWidth:2279,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png 2279w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+2472.8+0+0),pixelHeight:1004,pixelWidth:2279,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png 2279w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+839.2+0+0),pixelHeight:1004,pixelWidth:2279,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=512 512w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/odCIr7NY5qG6JfUwztOegcujb0.png 2279w\"},className:\"framer-1vy46xj framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ecdb0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"YOUR PASS\"})}),className:\"framer-9oy6sj\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Mobile wallet solution\"})}),className:\"framer-1igu7qi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iiw9yq\",children:[/*#__PURE__*/_jsx(Link,{href:\"http://www.360roadbooks.com/\",motionChild:true,nodeId:\"OidGdHfCe\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+839.2+0+0),pixelHeight:804,pixelWidth:854,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg\",srcSet:\"https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg 854w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+2886.8+0+0),pixelHeight:804,pixelWidth:854,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg\",srcSet:\"https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg 854w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+839.2+0+0),pixelHeight:804,pixelWidth:854,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg\",srcSet:\"https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/KIS7VOFsxPKcdECyu7xpRVSU.jpg 854w\"},className:\"framer-cl4ywo framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-aog4c9\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"360 ROADBOOKS\"})}),className:\"framer-vpsyl5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"360 ROADBOOKS are made especially for people that love being on the road. The kind of people who insist that the best way to discover new places is on 2 or 4 wheels. People who gladly take a detour to drive or ride a particular road just for the sake of it\"})}),className:\"framer-1cpfoa3\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b2rnvg\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://ptrlsm.com/\",motionChild:true,nodeId:\"y_pguUsqz\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:703,intrinsicWidth:1516,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+839.2+0+0),pixelHeight:703,pixelWidth:1516,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png\",srcSet:\"https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png?scale-down-to=512 512w,https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png 1516w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:703,intrinsicWidth:1516,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+3295.2+0+0),pixelHeight:703,pixelWidth:1516,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png\",srcSet:\"https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png?scale-down-to=512 512w,https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png 1516w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:703,intrinsicWidth:1516,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+839.2+0+0),pixelHeight:703,pixelWidth:1516,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png\",srcSet:\"https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png?scale-down-to=512 512w,https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7oJVpbb0EVe9T06afSrSPzIH00.png 1516w\"},className:\"framer-qsolhb framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ap75js\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"PTRLSM\"})}),className:\"framer-efzk7a\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Petrolhead. Hedonism. PTRLSM.\"})}),className:\"framer-160itkk\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xqjvj3\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.racebox.pro/store/\",motionChild:true,nodeId:\"O1x2I9E4Y\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:884,intrinsicWidth:884,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+1253.2+0+0),pixelHeight:884,pixelWidth:884,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png\",srcSet:\"https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png 884w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:884,intrinsicWidth:884,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+3703.6+0+0),pixelHeight:884,pixelWidth:884,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png\",srcSet:\"https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png 884w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:884,intrinsicWidth:884,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+1253.2+0+0),pixelHeight:884,pixelWidth:884,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png\",srcSet:\"https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png?scale-down-to=512 512w,https://framerusercontent.com/images/yIY9FXMcx1iFRbb7QuLBa0ns8.png 884w\"},className:\"framer-13uhhot framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xl44zp\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"RACEBOX.PRO\"})}),className:\"framer-b5ilrc\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"The most modern and precise way to measure the performance stats of your vehicle.\"})}),className:\"framer-zzouij\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2r8z7g\",children:[/*#__PURE__*/_jsx(Link,{href:\"http://www.latitudetents.com/\",motionChild:true,nodeId:\"HdNrwNsg6\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:436,intrinsicWidth:2455,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+1253.2+0+0),pixelHeight:436,pixelWidth:2455,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png\",srcSet:\"https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png 2455w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:436,intrinsicWidth:2455,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+4112+0+0),pixelHeight:436,pixelWidth:2455,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png\",srcSet:\"https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png 2455w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:436,intrinsicWidth:2455,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+1253.2+0+0),pixelHeight:436,pixelWidth:2455,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png\",srcSet:\"https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=512 512w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/NsfaVZamtACZTbf8aIBn4SdhkA.png 2455w\"},className:\"framer-1pf7uo9 framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tyt4h0\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"LATITUDE TENTS\"})}),className:\"framer-1r17t5l\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Adventure starts here\"})}),className:\"framer-19s0bxx\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x9p6e5\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://mhdtuning.com/\",motionChild:true,nodeId:\"jGMoBh2ON\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:693,intrinsicWidth:693,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+1253.2+0+0),pixelHeight:693,pixelWidth:693,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg\",srcSet:\"https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg 693w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:693,intrinsicWidth:693,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+4526+0+0),pixelHeight:693,pixelWidth:693,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg\",srcSet:\"https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg 693w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:693,intrinsicWidth:693,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+1253.2+0+0),pixelHeight:693,pixelWidth:693,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg\",srcSet:\"https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3O9gx079yRNVvcWNqeGMU0N4eQ.jpg 693w\"},className:\"framer-17o4dyy framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wxwdak\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MHD TUNING\"})}),className:\"framer-1nd3ho6\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"MHD Flasher is the first mobile application to bring ECU tuning and monitoring to the BMW N54, N55,S55, B58 and N13 motor, while still retaining the sophistication of the original engine management program.\"})}),className:\"framer-12b7kyi\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-81c6ea\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/streetlegalr.solutions\",motionChild:true,nodeId:\"TQzfBiCGE\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:822,intrinsicWidth:2528,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+1667.2+0+0),pixelHeight:822,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg\",srcSet:\"https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg 2528w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:822,intrinsicWidth:2528,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+4934.4+0+0),pixelHeight:822,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg\",srcSet:\"https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg 2528w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:822,intrinsicWidth:2528,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+1667.2+0+0),pixelHeight:822,pixelWidth:2528,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg\",srcSet:\"https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=512 512w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=1024 1024w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg?scale-down-to=2048 2048w,https://framerusercontent.com/images/GxHEgAKi8nKKcFFApIDgn5aFjuE.jpeg 2528w\"},className:\"framer-w7r4n1 framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y1vmlt\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"STREETLEGALR \"})}),className:\"framer-1397uw5\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Carstyling with a Personal Touch.....\"})}),className:\"framer-1f5wmnl\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ujhnuh\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://detail-driven.com/\",motionChild:true,nodeId:\"FsGXBYcIt\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1679,intrinsicWidth:2531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+1667.2+0+0),pixelHeight:1679,pixelWidth:2531,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg\",srcSet:\"https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg 2531w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1679,intrinsicWidth:2531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+5348.4+0+0),pixelHeight:1679,pixelWidth:2531,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg\",srcSet:\"https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg 2531w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1679,intrinsicWidth:2531,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+1667.2+0+0),pixelHeight:1679,pixelWidth:2531,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg\",srcSet:\"https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/UPs1UlgVhuO0CP7owUK3eYeJNE.jpg 2531w\"},className:\"framer-1vlkkxy framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5u53\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"DETAIL DRIVEN\"})}),className:\"framer-oxh3kv\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Based in Harrisonburg, Virginia. Our team of dedicated auto enthusiasts bring passion as well as years of experience. Bringing your vehicle to Detail Driven means leaving your prized possession in the hands of professionals who truly care about the outcome.\"})}),className:\"framer-iyjpna\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-130krmc\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.facebook.com/perfectshineuk\",motionChild:true,nodeId:\"a2WRo0IxW\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+1667.2+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png\",srcSet:\"https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png 1200w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+5756.8+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png\",srcSet:\"https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png 1200w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1200,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+1667.2+0+0),pixelHeight:1200,pixelWidth:1200,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png\",srcSet:\"https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png?scale-down-to=512 512w,https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1rpxrIoEOphxKG5zjPQSt7KXLY.png 1200w\"},className:\"framer-1uzsk4l framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmuozy\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"PERFECT SHINE\"})}),className:\"framer-1ufox6n\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Perfect Shine UK where we take pride in rejuvenating your vehicle to its showroom glory. Our comprehensive range of car detailing services is designed to cater to all your automotive needs, ensuring your ride not only looks impeccable but also maintains its value\\xa0over\\xa0time.\"})}),className:\"framer-jo1lt7\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19iitcj\",children:[/*#__PURE__*/_jsx(Link,{href:\"http://www.adrianflux.co.uk/\",motionChild:true,nodeId:\"MYpR9EKmI\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1152,intrinsicWidth:2650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2081.2+0+0),pixelHeight:1152,pixelWidth:2650,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg\",srcSet:\"https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg 2650w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1152,intrinsicWidth:2650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+6165.2+0+0),pixelHeight:1152,pixelWidth:2650,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg\",srcSet:\"https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg 2650w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:1152,intrinsicWidth:2650,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2081.2+0+0),pixelHeight:1152,pixelWidth:2650,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg\",srcSet:\"https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/7pCaHE7ziMPHuHAzftVCE16OyQ.jpg 2650w\"},className:\"framer-18eityf framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-luttks\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"ADRIAN FLUX\"})}),className:\"framer-17idnp4\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Adrian Flux is the UK\u2019s largest specialist motor insurance broker, covering everything from classic and vintage cars, right through to heavily modified sports cars.\"})}),className:\"framer-14kd706\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q9aro2\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://munich-garage.com/\",motionChild:true,nodeId:\"hZMcpDCiZ\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666,intrinsicWidth:666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2081.2+0+0),pixelHeight:666,pixelWidth:666,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg\",srcSet:\"https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg 666w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:666,intrinsicWidth:666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+6573.6+0+0),pixelHeight:666,pixelWidth:666,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg\",srcSet:\"https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg 666w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:666,intrinsicWidth:666,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2081.2+0+0),pixelHeight:666,pixelWidth:666,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg\",srcSet:\"https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/h91gBITEuMzIKDrxSVQaYVa490.jpg 666w\"},className:\"framer-k78hmb framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4lx9p4\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"MUNICH GARAGE\"})}),className:\"framer-1vq3xxq\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Bespoke Autoparts and tools\u2026\"})}),className:\"framer-7elfgh\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ppx1jd\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.opieoils.co.uk/\",motionChild:true,nodeId:\"iqJqLCIYt\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2081.2+0+0),pixelHeight:804,pixelWidth:854,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg\",srcSet:\"https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg 854w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+6987.6+0+0),pixelHeight:804,pixelWidth:854,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg\",srcSet:\"https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg 854w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fill\",intrinsicHeight:804,intrinsicWidth:854,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2081.2+0+0),pixelHeight:804,pixelWidth:854,sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg\",srcSet:\"https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/uIZHW0ZerDHopsElCQOrtqhSQ.jpg 854w\"},className:\"framer-1usp9ja framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kfty9l\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"OPIE OILS\"})}),className:\"framer-b1m2s1\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Unmatched Expertise, Unrivaled Choice.\"})}),className:\"framer-1db0l\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rkdald\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://oldenzaal-classics.nl/about-us/\",motionChild:true,nodeId:\"eGweDMI_X\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2495.2+0+0),pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LCXmDDsEQ7PbSx3mcVQOmJUGNKg.png\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+7401.6+0+0),pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LCXmDDsEQ7PbSx3mcVQOmJUGNKg.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2495.2+0+0),pixelHeight:225,pixelWidth:225,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/LCXmDDsEQ7PbSx3mcVQOmJUGNKg.png\"},className:\"framer-6oivpa framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10fjrta\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"OLDENZAAL CLASSICS\"})}),className:\"framer-4hbff2\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Europe's greatest in vintage BMW\"})}),className:\"framer-13wvcwe\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19xtvka\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.biesheuvel.nl/nl/automotive/powerflex/road-series/bmw-1\",motionChild:true,nodeId:\"dy7ZUY_Jp\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2495.2+0+0),pixelHeight:113,pixelWidth:445,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kntta0jTqSQ2imxLbKZypJiXlI.png\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+7815.6+0+0),pixelHeight:113,pixelWidth:445,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kntta0jTqSQ2imxLbKZypJiXlI.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:225,intrinsicWidth:225,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2495.2+0+0),pixelHeight:113,pixelWidth:445,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/kntta0jTqSQ2imxLbKZypJiXlI.png\"},className:\"framer-1nflsnp framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ofed61\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"BIESHEUVEL AUTOSPORT\"})}),className:\"framer-1ewkum3\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"NO.1 Suspension Bushes in Europe\"})}),className:\"framer-tcoggy\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i36679\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.bimmerfest.eu/en/homepage/\",motionChild:true,nodeId:\"cryMQUDW0\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2495.2+0+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XF3n8dVf08qFhQaKoDvfAv2pQ4.png\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+8229.6+0+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XF3n8dVf08qFhQaKoDvfAv2pQ4.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2495.2+0+0),pixelHeight:500,pixelWidth:500,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/XF3n8dVf08qFhQaKoDvfAv2pQ4.png\"},className:\"framer-9bdbjd framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0n0pd\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"BIMMERFEST EU\"})}),className:\"framer-cus4u0\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Gathering of BMW Drivers\"})}),className:\"framer-1ixdvt0\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tmins6\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.simako-bdm.nl/\",motionChild:true,nodeId:\"fCEd5QRbK\",openInNewTab:true,scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GCokEZbGW:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4868+100+0+0+2909.2+0+0),pixelHeight:1599,pixelWidth:1598,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 80px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg 1598w\"}},ZW5bERyvH:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8214+20+0+0+8643.6+0+0),pixelHeight:1599,pixelWidth:1598,positionX:\"center\",positionY:\"center\",sizes:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1000px), 200px)`,src:\"https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg 1598w\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:500,intrinsicWidth:500,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3099+100+0+0+2909.2+0+0),pixelHeight:1599,pixelWidth:1598,positionX:\"center\",positionY:\"center\",sizes:`max((min(${componentViewport?.width||\"100vw\"} - 200px, 1000px) - 120px) / 3, 200px)`,src:\"https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg?scale-down-to=1024 1023w,https://framerusercontent.com/images/lpbsdIzoClcO4hZrP8551XswOI.jpg 1598w\"},className:\"framer-1cmk2i9 framer-1bzet04\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vihpon\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.8px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"SIMAKO-BDM\"})}),className:\"framer-1k00v94\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNTAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.5px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1021654d-251a-4750-952b-de3f7005260e, rgb(136, 136, 136))\"},children:\"Exclusive BMW motorcycle dealer in Elst and Apeldoorn\"})}),className:\"framer-1jvd5mg\",fonts:[\"GF;Inter-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-weikzm\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Trusted by\"})}),className:\"framer-12a4gt2\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cmvrrq\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.bmw-clubs-europa.org/\",motionChild:true,nodeId:\"J5J6H_ukY\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:550,intrinsicWidth:450,pixelHeight:550,pixelWidth:450,positionX:\"center\",positionY:\"center\",sizes:\"312px\",src:\"https://framerusercontent.com/images/pKAMYARKo4KDjKsfSPY2mkhXmxs.png\",srcSet:\"https://framerusercontent.com/images/pKAMYARKo4KDjKsfSPY2mkhXmxs.png 450w\"},className:\"framer-1ycgl10 framer-1bzet04\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(Link,{href:\"https://bmwclubs.nl/\",motionChild:true,nodeId:\"dxfiZ8kvv\",scopeId:\"sgrUrthE4\",children:/*#__PURE__*/_jsx(Image,{as:\"a\",background:{alt:\"\",fit:\"fit\",intrinsicHeight:289,intrinsicWidth:237,pixelHeight:289,pixelWidth:237,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/pMmx03BjPx0rCvKbedkNpO4o4.jpg\"},className:\"framer-1he6wem framer-1bzet04\",\"data-framer-name\":\"Logo\"})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-auXjR.framer-1bzet04, .framer-auXjR .framer-1bzet04 { display: block; }\",\".framer-auXjR.framer-7s1fm7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1200px; }\",\".framer-auXjR .framer-out9hj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-auXjR .framer-179ogya-container { flex: 1 0 0px; height: auto; position: sticky; top: 0px; width: 1px; z-index: 8; }\",\".framer-auXjR .framer-7wl0ys-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-auXjR .framer-1otzllk { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 171px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 98%; }\",\".framer-auXjR .framer-15xfd3x, .framer-auXjR .framer-l5ninu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-auXjR .framer-1he06ep-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-auXjR .framer-jeh3oj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 60px 100px 60px; position: relative; width: 100%; }\",\".framer-auXjR .framer-7kmdq4 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1220px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-auXjR .framer-ps2f7z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-auXjR .framer-c8c757 { display: grid; flex: 1 0 0px; gap: 20px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(100px, 1fr)); height: min-content; justify-content: center; padding: 0px; position: relative; width: 1px; }\",\".framer-auXjR .framer-1b4egpq-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-auXjR .framer-1ook72a { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 254px; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-auXjR .framer-1nqu2fo { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 599px; word-break: break-word; word-wrap: break-word; }\",\".framer-auXjR .framer-13parii { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-auXjR .framer-17pq78 { align-content: center; align-items: center; background-color: #222222; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.15), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.14), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.13), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.1), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-auXjR .framer-j6tf1t { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-auXjR .framer-18nvmqp { align-content: center; align-items: center; background-color: #ebebeb; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 15px; position: relative; width: min-content; }\",\".framer-auXjR .framer-ev4eep { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-auXjR .framer-lq4s99 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 100px; position: relative; width: 100%; }\",\".framer-auXjR .framer-nx1c0o { display: grid; flex: none; gap: 60px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, min-content); height: min-content; justify-content: center; max-width: 1000px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-auXjR .framer-9dsu8f, .framer-auXjR .framer-12zeg70, .framer-auXjR .framer-yjid62, .framer-auXjR .framer-gf635b, .framer-auXjR .framer-np053n, .framer-auXjR .framer-1ajy7wi, .framer-auXjR .framer-7fh43c, .framer-auXjR .framer-1iiw9yq, .framer-auXjR .framer-b2rnvg, .framer-auXjR .framer-1xqjvj3, .framer-auXjR .framer-2r8z7g, .framer-auXjR .framer-1x9p6e5, .framer-auXjR .framer-81c6ea, .framer-auXjR .framer-ujhnuh, .framer-auXjR .framer-130krmc, .framer-auXjR .framer-19iitcj, .framer-auXjR .framer-1q9aro2, .framer-auXjR .framer-ppx1jd, .framer-auXjR .framer-rkdald, .framer-auXjR .framer-19xtvka, .framer-auXjR .framer-i36679, .framer-auXjR .framer-1tmins6 { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-auXjR .framer-fr9e1c, .framer-auXjR .framer-whizpi, .framer-auXjR .framer-ro4hpw, .framer-auXjR .framer-1vy46xj, .framer-auXjR .framer-cl4ywo, .framer-auXjR .framer-qsolhb, .framer-auXjR .framer-13uhhot, .framer-auXjR .framer-1pf7uo9, .framer-auXjR .framer-17o4dyy, .framer-auXjR .framer-18eityf, .framer-auXjR .framer-k78hmb, .framer-auXjR .framer-1usp9ja, .framer-auXjR .framer-6oivpa, .framer-auXjR .framer-1nflsnp, .framer-auXjR .framer-9bdbjd { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 294px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-auXjR .framer-1xnmi8y, .framer-auXjR .framer-lrwwmn, .framer-auXjR .framer-8a8ep7, .framer-auXjR .framer-1xl1yob, .framer-auXjR .framer-11wyjqg, .framer-auXjR .framer-1pnw805, .framer-auXjR .framer-10ecdb0, .framer-auXjR .framer-aog4c9, .framer-auXjR .framer-ap75js, .framer-auXjR .framer-1xl44zp, .framer-auXjR .framer-1tyt4h0, .framer-auXjR .framer-1wxwdak, .framer-auXjR .framer-1y1vmlt, .framer-auXjR .framer-1i5u53, .framer-auXjR .framer-lmuozy, .framer-auXjR .framer-luttks, .framer-auXjR .framer-4lx9p4, .framer-auXjR .framer-kfty9l, .framer-auXjR .framer-10fjrta, .framer-auXjR .framer-1ofed61, .framer-auXjR .framer-1u0n0pd, .framer-auXjR .framer-1vihpon { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-auXjR .framer-8v66rn, .framer-auXjR .framer-3jvzd7, .framer-auXjR .framer-1mi5824, .framer-auXjR .framer-1h296qa, .framer-auXjR .framer-1ey4pi2, .framer-auXjR .framer-10jd8tb, .framer-auXjR .framer-9oy6sj, .framer-auXjR .framer-vpsyl5, .framer-auXjR .framer-efzk7a, .framer-auXjR .framer-b5ilrc, .framer-auXjR .framer-1r17t5l, .framer-auXjR .framer-1nd3ho6, .framer-auXjR .framer-1397uw5, .framer-auXjR .framer-oxh3kv, .framer-auXjR .framer-1ufox6n, .framer-auXjR .framer-17idnp4, .framer-auXjR .framer-1vq3xxq, .framer-auXjR .framer-b1m2s1, .framer-auXjR .framer-4hbff2, .framer-auXjR .framer-1ewkum3, .framer-auXjR .framer-cus4u0, .framer-auXjR .framer-1k00v94 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-auXjR .framer-ni1vbq, .framer-auXjR .framer-twtdip, .framer-auXjR .framer-1cwb510, .framer-auXjR .framer-13hquc9, .framer-auXjR .framer-1gmms4l, .framer-auXjR .framer-m2ubzr, .framer-auXjR .framer-1igu7qi, .framer-auXjR .framer-1cpfoa3, .framer-auXjR .framer-160itkk, .framer-auXjR .framer-zzouij, .framer-auXjR .framer-19s0bxx, .framer-auXjR .framer-12b7kyi, .framer-auXjR .framer-1f5wmnl, .framer-auXjR .framer-iyjpna, .framer-auXjR .framer-jo1lt7, .framer-auXjR .framer-14kd706, .framer-auXjR .framer-7elfgh, .framer-auXjR .framer-1db0l, .framer-auXjR .framer-13wvcwe, .framer-auXjR .framer-tcoggy, .framer-auXjR .framer-1ixdvt0, .framer-auXjR .framer-1jvd5mg { flex: none; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-auXjR .framer-w73mxu, .framer-auXjR .framer-1m72d1q, .framer-auXjR .framer-1dfk90u, .framer-auXjR .framer-w7r4n1, .framer-auXjR .framer-1vlkkxy, .framer-auXjR .framer-1uzsk4l, .framer-auXjR .framer-1cmk2i9 { align-content: center; align-items: center; aspect-ratio: 1 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: var(--framer-aspect-ratio-supported, 293px); justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-auXjR .framer-weikzm { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: 366px; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-auXjR .framer-12a4gt2 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-auXjR .framer-1cmvrrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 60px; height: 127%; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 805px; }\",\".framer-auXjR .framer-1ycgl10, .framer-auXjR .framer-1he6wem { aspect-ratio: 2.9565217391304346 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); overflow: hidden; position: relative; text-decoration: none; width: 312px; }\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-auXjR.framer-7s1fm7 { width: 810px; } .framer-auXjR .framer-1otzllk { height: 202px; width: 89%; } .framer-auXjR .framer-jeh3oj { padding: 40px 28px 80px 28px; } .framer-auXjR .framer-c8c757 { grid-template-columns: repeat(2, minmax(100px, 1fr)); } .framer-auXjR .framer-1ook72a { height: 600px; } .framer-auXjR .framer-lq4s99 { padding: 100px 40px 100px 40px; } .framer-auXjR .framer-fr9e1c, .framer-auXjR .framer-whizpi, .framer-auXjR .framer-ro4hpw, .framer-auXjR .framer-1vy46xj, .framer-auXjR .framer-cl4ywo, .framer-auXjR .framer-qsolhb, .framer-auXjR .framer-13uhhot, .framer-auXjR .framer-1pf7uo9, .framer-auXjR .framer-17o4dyy, .framer-auXjR .framer-18eityf, .framer-auXjR .framer-k78hmb, .framer-auXjR .framer-1usp9ja, .framer-auXjR .framer-6oivpa, .framer-auXjR .framer-1nflsnp, .framer-auXjR .framer-9bdbjd { height: var(--framer-aspect-ratio-supported, 204px); } .framer-auXjR .framer-w73mxu, .framer-auXjR .framer-1m72d1q, .framer-auXjR .framer-1dfk90u, .framer-auXjR .framer-w7r4n1, .framer-auXjR .framer-1vlkkxy, .framer-auXjR .framer-1uzsk4l, .framer-auXjR .framer-1cmk2i9 { height: var(--framer-aspect-ratio-supported, 203px); } .framer-auXjR .framer-weikzm { height: min-content; padding: 80px 40px 80px 40px; }}\",\"@media (max-width: 809px) { .framer-auXjR.framer-7s1fm7 { width: 390px; } .framer-auXjR .framer-1otzllk { height: 260px; padding: 60px; width: 97%; } .framer-auXjR .framer-jeh3oj { padding: 30px 20px 60px 20px; } .framer-auXjR .framer-c8c757 { grid-template-columns: repeat(1, minmax(100px, 1fr)); } .framer-auXjR .framer-1ook72a { height: 600px; padding: 60px; } .framer-auXjR .framer-lq4s99 { padding: 20px; } .framer-auXjR .framer-nx1c0o { grid-template-columns: repeat(1, minmax(200px, 1fr)); } .framer-auXjR .framer-fr9e1c, .framer-auXjR .framer-whizpi, .framer-auXjR .framer-w73mxu, .framer-auXjR .framer-1m72d1q, .framer-auXjR .framer-1dfk90u, .framer-auXjR .framer-1vy46xj, .framer-auXjR .framer-cl4ywo, .framer-auXjR .framer-qsolhb, .framer-auXjR .framer-13uhhot, .framer-auXjR .framer-1pf7uo9, .framer-auXjR .framer-17o4dyy, .framer-auXjR .framer-w7r4n1, .framer-auXjR .framer-1vlkkxy, .framer-auXjR .framer-1uzsk4l, .framer-auXjR .framer-18eityf, .framer-auXjR .framer-k78hmb, .framer-auXjR .framer-1usp9ja, .framer-auXjR .framer-6oivpa, .framer-auXjR .framer-1nflsnp, .framer-auXjR .framer-9bdbjd, .framer-auXjR .framer-1cmk2i9 { height: var(--framer-aspect-ratio-supported, 350px); } .framer-auXjR .framer-ro4hpw { height: var(--framer-aspect-ratio-supported, 200px); } .framer-auXjR .framer-weikzm { height: min-content; padding: 60px 20px 60px 20px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8428\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"GCokEZbGW\":{\"layout\":[\"fixed\",\"auto\"]},\"ZW5bERyvH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramersgrUrthE4=withCSS(Component,css,\"framer-auXjR\");export default FramersgrUrthE4;FramersgrUrthE4.displayName=\"Club\";FramersgrUrthE4.defaultProps={height:8428,width:1200};addFonts(FramersgrUrthE4,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"}]},...HeaderFonts,...DividerFonts,...DownloadFonts,...PostCard03Fonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersgrUrthE4\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerIntrinsicHeight\":\"8428\",\"framerIntrinsicWidth\":\"1200\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GCokEZbGW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZW5bERyvH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "HeaderFonts", "getFonts", "O9LgT36_O_default", "DividerFonts", "R9t2PHuh_default", "DownloadFonts", "Download", "PostCard03Fonts", "BgBY5Ca87_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "toDateString", "options", "activeLocale", "date", "display", "dateOptions", "fallbackLocale", "locale", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "HTMLStyle", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "gv_4tWH_4W0FNDBD7D", "I2ns4HJxAW0FNDBD7D", "yy9zuOaBEW0FNDBD7D", "WLMYYiqWGW0FNDBD7D", "xEFAP6rgiW0FNDBD7D", "JXXWstL8SW0FNDBD7D", "u1qPqjlCvW0FNDBD7D", "idW0FNDBD7D", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "scopingClassNames", "cx", "router", "useRouter", "activeLocaleCode", "useLocaleCode", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "O9LgT36_O_default", "R9t2PHuh_default", "x", "RichText2", "Download", "ChildrenCanSuspend", "H26m3KzeY_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "BgBY5Ca87_default", "enumToDisplayNameFunctions", "Link", "getLoadingLazyAtYPosition", "Image2", "css", "FramersgrUrthE4", "withCSS", "sgrUrthE4_default", "addFonts", "HeaderFonts", "DividerFonts", "DownloadFonts", "PostCard03Fonts", "__FramerMetadata__"]
}
