{"version":3,"file":"sJLgPjHAc19iNt7Wzv9N20NqBT8TjuVHbh7Xf73geMk.Bhtnf7hb.mjs","names":["size","PhosphorFonts","Phosphor","TickerFonts","serializationHash","variantClassNames","transition1","Transition","Variants","getProps","createLayoutDependency","Component","className","Image","css","PhosphorFonts","Phosphor","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","Image","css","Component","iconKeys","lowercaseIconKeyPairs","Icon","React","fonts","css","className","Button","Offers","Phosphor","Ticker","Phosphor1","Logo","CardTestimonial","TickerBG","SectionPricing","metadata","className","PropertyOverrides","Image","css"],"sources":["https:/framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js","https:/framerusercontent.com/modules/6d2BqaYEhEQZdb37ixwe/H1laGl2lAyoyty3OpUVT/dxxiVUE2R.js","https:/framerusercontent.com/modules/YZWpqqKg2fJApA2rx8QQ/1Hvr1g2Whpfu1hesVNN7/KsK3ZLUul.js","https:/framer.com/m/phosphor-icons/House.js@0.0.53","https:/framer.com/m/utils-MaUy.js@OSpwWF91FHPVFyQJjMHt","https:/framerusercontent.com/modules/YKqzjZNnoc4fF2aer9Io/rJ6ot3Sin6M9NGKe1nT8/Phosphor.js","https:/framerusercontent.com/modules/VBL875iL0pwwNuBXsXqP/sqGEL2QhWoeEokkVRX1u/n6UYVQ_En.js","https:/framerusercontent.com/modules/na30RHaqvymRrYe3Ngga/WfYAiBFtluINjEAkNdxa/jZStaBNBa.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const directionTransformers={left:offset=>`translateX(-${offset}px)`,right:offset=>`translateX(${offset}px)`,top:offset=>`translateY(-${offset}px)`,bottom:offset=>`translateY(${offset}px)`};/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots=[],gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const currentTarget=RenderTarget.current();const isCanvas=currentTarget===RenderTarget.canvas||currentTarget===RenderTarget.export;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const transformer=directionTransformers[direction];const transform=useTransform(offset,transformer);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[{current:null},{current:null}];},[]);const[size,setSize]=useState({parent:null,children:null});/* Arrays */let clonedChildren=null;let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[1].current?isHorizontal?childrenRef[1].current.offsetLeft+childrenRef[1].current.offsetWidth:childrenRef[1].current.offsetTop+childrenRef[1].current.offsetHeight:0;const childrenLength=end-start+gap;setSize({parent:parentLength,children:childrenLength});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useLayoutEffect(()=>{frame.read(measure,false,true);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure,false,true);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...child.props?.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},child.props?.children)})});});}const isInView=isCanvas?true:useInView(parentRef);if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=dupedChildren.concat(Children.map(filteredSlots,(child,childIndex)=>{const size={width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",willChange:!isInView?undefined:\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...child.props?.style,width:widthType?child.props?.width:\"100%\",height:heightType?child.props?.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},child.props?.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);}));}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed){return;}animationRef.current=listRef.current.animate({transform:[transformer(0),transformer(animateToValue)]},{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed]);const playOrPause=useCallback(()=>{if(!animationRef.current)return;const hidden=document.hidden;if(isInView&&!hidden&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if((!isInView||hidden)&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);useEffect(()=>{playOrPause();},[isInView,hoverFactor,animateToValue,speed]);useEffect(()=>{document.addEventListener(\"visibilitychange\",playOrPause);return()=>{document.removeEventListener(\"visibilitychange\",playOrPause);};},[playOrPause]);}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"✨\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||!isInView?\"auto\":\"transform\",transform:transformer(0)},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map","// Generated by Framer (ee1e8a0)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,cx,getFonts,Image,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/bSG2fUXcc43766cbIglD/Ticker.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const TickerFonts=getFonts(Ticker);const serializationHash=\"framer-8U8tw\";const variantClassNames={eAvTZN5Be:\"framer-v-175dqlh\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"eAvTZN5Be\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-175dqlh\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"eAvTZN5Be\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-10142ys-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"sCwtyq5Xt-container\",nodeId:\"sCwtyq5Xt\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"sCwtyq5Xt\",layoutId:\"sCwtyq5Xt\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pzzpc6\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"WZCQdjfbk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5px rgba(0, 0, 0, 0.21), 0px 2.288533303243457px 2.288533303243457px -3px rgba(0, 0, 0, 0.18), 0px 10px 10px -4.5px rgba(0, 0, 0, 0.02)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9gp8t\",layoutDependency:layoutDependency,layoutId:\"jOloiMlvH\",style:{backgroundColor:\"rgb(250, 250, 250)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/CIiila271IxESsZZsnkexxpgo.png\"},className:\"framer-125hj88\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"N7XipmnpD\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-116bed2\",layoutDependency:layoutDependency,layoutId:\"Z7M62bEyt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a1hzza\",layoutDependency:layoutDependency,layoutId:\"jwcNdeBUV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40)))\"},children:\"White sneaker\"})}),className:\"framer-1wzlizn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Gwp2xwX1n\",style:{\"--extracted-r6o4lv\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\"yourstore.com\"})}),className:\"framer-12brq91\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jlwLYue25\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-165aow4\",layoutDependency:layoutDependency,layoutId:\"h9T7fdaGw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed1641e7-7f33-4445-9ab1-a87896553156, rgb(0, 130, 54)))\"},children:\"$196.00\"})}),className:\"framer-1lxpmqd\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"KeqrERdUh\",style:{\"--extracted-r6o4lv\":\"var(--token-ed1641e7-7f33-4445-9ab1-a87896553156, rgb(0, 130, 54))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175)))\",\"--framer-text-decoration\":\"line-through\"},children:\"$239.00\"})}),className:\"framer-5g3yvu\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rXkHHzaVf\",style:{\"--extracted-r6o4lv\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3srd3i\",layoutDependency:layoutDependency,layoutId:\"o22HSFn7f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18pw6ve-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BZDE0Z0gy-container\",nodeId:\"BZDE0Z0gy\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"BZDE0Z0gy\",layoutId:\"BZDE0Z0gy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13jite2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mD10dMYUG-container\",nodeId:\"mD10dMYUG\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"mD10dMYUG\",layoutId:\"mD10dMYUG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15nczz2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uQ4J9pKuV-container\",nodeId:\"uQ4J9pKuV\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"uQ4J9pKuV\",layoutId:\"uQ4J9pKuV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ytempg-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hhxUwiob1-container\",nodeId:\"hhxUwiob1\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"hhxUwiob1\",layoutId:\"hhxUwiob1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eyy55h-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wJn3nJ2K1-container\",nodeId:\"wJn3nJ2K1\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"wJn3nJ2K1\",layoutId:\"wJn3nJ2K1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\" (72)\"})}),className:\"framer-1jshvyn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iUHoMp0yi\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4fcee1-container\",isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"PWtll5GfQ-container\",nodeId:\"PWtll5GfQ\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:10,height:\"100%\",hoverFactor:1,id:\"PWtll5GfQ\",layoutId:\"PWtll5GfQ\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pzzpc6\",\"data-border\":true,\"data-framer-name\":\"Card\",layoutDependency:layoutDependency,layoutId:\"WZCQdjfbk\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.6021873017743928px 0.6021873017743928px -1.5px rgba(0, 0, 0, 0.21), 0px 2.288533303243457px 2.288533303243457px -3px rgba(0, 0, 0, 0.18), 0px 10px 10px -4.5px rgba(0, 0, 0, 0.02)\"},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-k9gp8t\",layoutDependency:layoutDependency,layoutId:\"jOloiMlvH\",style:{backgroundColor:\"rgb(250, 250, 250)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,pixelHeight:296,pixelWidth:296,src:\"https://framerusercontent.com/images/CIiila271IxESsZZsnkexxpgo.png\"},className:\"framer-125hj88\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"N7XipmnpD\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-116bed2\",layoutDependency:layoutDependency,layoutId:\"Z7M62bEyt\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a1hzza\",layoutDependency:layoutDependency,layoutId:\"jwcNdeBUV\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40)))\"},children:\"White sneaker\"})}),className:\"framer-1wzlizn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Gwp2xwX1n\",style:{\"--extracted-r6o4lv\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\"yourstore.com\"})}),className:\"framer-12brq91\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"jlwLYue25\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-165aow4\",layoutDependency:layoutDependency,layoutId:\"h9T7fdaGw\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ed1641e7-7f33-4445-9ab1-a87896553156, rgb(0, 130, 54)))\"},children:\"$196.00\"})}),className:\"framer-1lxpmqd\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"KeqrERdUh\",style:{\"--extracted-r6o4lv\":\"var(--token-ed1641e7-7f33-4445-9ab1-a87896553156, rgb(0, 130, 54))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175)))\",\"--framer-text-decoration\":\"line-through\"},children:\"$239.00\"})}),className:\"framer-5g3yvu\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"rXkHHzaVf\",style:{\"--extracted-r6o4lv\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3srd3i\",layoutDependency:layoutDependency,layoutId:\"o22HSFn7f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18pw6ve-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"BZDE0Z0gy-container\",nodeId:\"BZDE0Z0gy\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"BZDE0Z0gy\",layoutId:\"BZDE0Z0gy\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-13jite2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"mD10dMYUG-container\",nodeId:\"mD10dMYUG\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"mD10dMYUG\",layoutId:\"mD10dMYUG\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-15nczz2-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uQ4J9pKuV-container\",nodeId:\"uQ4J9pKuV\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"uQ4J9pKuV\",layoutId:\"uQ4J9pKuV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ytempg-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"hhxUwiob1-container\",nodeId:\"hhxUwiob1\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"hhxUwiob1\",layoutId:\"hhxUwiob1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eyy55h-container\",inComponentSlot:true,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"wJn3nJ2K1-container\",nodeId:\"wJn3nJ2K1\",rendersWithMotion:true,scopeId:\"dxxiVUE2R\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"wJn3nJ2K1\",layoutId:\"wJn3nJ2K1\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\" (72)\"})}),className:\"framer-1jshvyn\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iUHoMp0yi\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]})]})]})],speed:20,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8U8tw.framer-1megawv, .framer-8U8tw .framer-1megawv { display: block; }\",\".framer-8U8tw.framer-175dqlh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-8U8tw .framer-10142ys-container, .framer-8U8tw .framer-4fcee1-container { flex: none; height: 240px; position: relative; width: 100%; }\",\".framer-8U8tw .framer-1pzzpc6 { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 150px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8U8tw .framer-k9gp8t { 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: 15px; position: relative; width: 100%; }\",\".framer-8U8tw .framer-125hj88 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 80px); overflow: visible; position: relative; width: 80px; }\",\".framer-8U8tw .framer-116bed2 { 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; overflow: hidden; padding: 15px 10px 20px 10px; position: relative; width: 100%; }\",\".framer-8U8tw .framer-a1hzza { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8U8tw .framer-1wzlizn, .framer-8U8tw .framer-12brq91 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8U8tw .framer-165aow4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8U8tw .framer-1lxpmqd, .framer-8U8tw .framer-5g3yvu { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8U8tw .framer-3srd3i { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8U8tw .framer-18pw6ve-container, .framer-8U8tw .framer-13jite2-container, .framer-8U8tw .framer-15nczz2-container, .framer-8U8tw .framer-1ytempg-container, .framer-8U8tw .framer-eyy55h-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-8U8tw .framer-1jshvyn { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",'.framer-8U8tw[data-border=\"true\"]::after, .framer-8U8tw [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 490\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerdxxiVUE2R=withCSS(Component,css,\"framer-8U8tw\");export default FramerdxxiVUE2R;FramerdxxiVUE2R.displayName=\"Ticker BG\";FramerdxxiVUE2R.defaultProps={height:490,width:1200};addFonts(FramerdxxiVUE2R,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts,...TickerFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerdxxiVUE2R\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"490\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./dxxiVUE2R.map","// Generated by Framer (6d96db3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getLoadingLazyAtYPosition,Image,RichText,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOnVariantChange,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"Mksa2knOC\",\"p31_6z_ML\",\"TCwny0hRM\"];const serializationHash=\"framer-zorcW\";const variantClassNames={Mksa2knOC:\"framer-v-1jl20x5\",p31_6z_ML:\"framer-v-1i0xk6i\",TCwny0hRM:\"framer-v-17usw31\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 1\":\"Mksa2knOC\",\"Variant 2\":\"p31_6z_ML\",\"Variant 3\":\"TCwny0hRM\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"Mksa2knOC\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Mksa2knOC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onAppeareecudj=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"p31_6z_ML\",true),4e3);});const onAppear1x0g9ju=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"TCwny0hRM\",true),4e3);});const onAppear1oiq6n4=activeVariantCallback(async(...args)=>{await delay(()=>setVariant(\"Mksa2knOC\",true),4e3);});useOnVariantChange(baseVariant,{default:onAppeareecudj,p31_6z_ML:onAppear1x0g9ju,TCwny0hRM:onAppear1oiq6n4});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1jl20x5\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"Mksa2knOC\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-7cbcf719-4161-4ba2-af8b-639bf8e11413, rgb(249, 250, 251))\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"3px 20px 22px 0px rgba(0, 0, 0, 0.04)\",...style},...addPropertyOverrides({p31_6z_ML:{\"data-framer-name\":\"Variant 2\"},TCwny0hRM:{\"data-framer-name\":\"Variant 3\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vg0is2\",layoutDependency:layoutDependency,layoutId:\"C3cr7WIih\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1jkamyv-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"j33_gAL28-container\",nodeId:\"j33_gAL28\",rendersWithMotion:true,scopeId:\"KsK3ZLUul\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Info\",id:\"j33_gAL28\",layoutId:\"j33_gAL28\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175)))\",\"--framer-text-transform\":\"uppercase\"},children:\"What we offer\"})}),className:\"framer-kq84m8\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"enzbBJaKr\",style:{\"--extracted-r6o4lv\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-hcsddf\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"VzFv1FFI9\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12,boxShadow:\"0px 0.6021873017743928px 0.48174984141951427px -1.3333333333333333px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 1.8308266425947657px -2.6666666666666665px rgba(0, 0, 0, 0.17), 0px 10px 8px -4px rgba(0, 0, 0, 0.05)\"},children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14d865z\",layoutDependency:layoutDependency,layoutId:\"caLgtjHsv\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:243,intrinsicWidth:1637,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||143)-0-202+38+0)+16+0+0+0),pixelHeight:486,pixelWidth:3274,sizes:\"161.5px\",src:\"https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png 3274w\"},className:\"framer-xw0i0v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xAgOR9IVe\",...addPropertyOverrides({p31_6z_ML:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:243,intrinsicWidth:1637,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||143)-0-202+38+0)+16+0+0+-26),pixelHeight:486,pixelWidth:3274,sizes:\"161.5px\",src:\"https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png 3274w\"}},TCwny0hRM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:243,intrinsicWidth:1637,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||143)-0-202+38+0)+16+0+0+-52),pixelHeight:486,pixelWidth:3274,sizes:\"161.5px\",src:\"https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=512 512w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/uE5npDofIwDbgGYQSThywQAkFXw.png 3274w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kcygrv\",layoutDependency:layoutDependency,layoutId:\"n9jkqS6S6\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-7yt9re\",layoutDependency:layoutDependency,layoutId:\"ZPgxmKTuZ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87.119 24\" overflow=\"visible\"><path d=\"M 27.399 11.538 C 27.399 15.462 29.919 18.198 33.411 18.198 C 36.903 18.198 39.423 15.462 39.423 11.538 C 39.423 7.614 36.903 4.878 33.411 4.878 C 29.919 4.878 27.399 7.614 27.399 11.538 Z M 37.119 11.538 C 37.119 14.346 35.589 16.164 33.411 16.164 C 31.233 16.164 29.703 14.346 29.703 11.538 C 29.703 8.73 31.233 6.912 33.411 6.912 C 35.589 6.912 37.119 8.73 37.119 11.538 Z M 45.911 18.198 C 48.558 18.198 50.07 15.966 50.07 13.284 C 50.07 10.602 48.558 8.37 45.911 8.37 C 44.687 8.37 43.787 8.856 43.193 9.558 L 43.193 8.55 L 41.033 8.55 L 41.033 21.241 L 43.193 21.241 L 43.193 17.01 C 43.787 17.712 44.687 18.198 45.911 18.198 Z M 43.139 13.014 C 43.139 11.232 44.147 10.26 45.479 10.26 C 47.046 10.26 47.892 11.484 47.892 13.284 C 47.892 15.084 47.046 16.308 45.479 16.308 C 44.147 16.308 43.139 15.318 43.139 13.572 Z M 55.915 18.198 C 57.805 18.198 59.299 17.208 59.965 15.552 L 58.111 14.85 C 57.823 15.822 56.977 16.362 55.915 16.362 C 54.529 16.362 53.557 15.372 53.395 13.752 L 60.019 13.752 L 60.019 13.032 C 60.019 10.44 58.561 8.37 55.825 8.37 C 53.089 8.37 51.325 10.512 51.325 13.284 C 51.325 16.2 53.215 18.198 55.915 18.198 Z M 55.807 10.188 C 57.175 10.188 57.823 11.088 57.841 12.132 L 53.503 12.132 C 53.827 10.854 54.691 10.188 55.807 10.188 Z M 61.64 18 L 63.8 18 L 63.8 12.456 C 63.8 11.106 64.79 10.386 65.762 10.386 C 66.95 10.386 67.418 11.232 67.418 12.402 L 67.418 18 L 69.578 18 L 69.578 11.772 C 69.578 9.738 68.39 8.37 66.41 8.37 C 65.186 8.37 64.34 8.928 63.8 9.558 L 63.8 8.55 L 61.64 8.55 Z M 75.905 5.076 L 71.009 18 L 73.295 18 L 74.393 15.048 L 79.973 15.048 L 81.089 18 L 83.411 18 L 78.515 5.076 Z M 77.165 7.632 L 79.217 13.032 L 75.149 13.032 Z M 87.119 5.114 L 84.815 5.114 L 84.815 18.038 L 87.119 18.038 Z M 22.12 9.823 C 22.665 8.188 22.477 6.399 21.606 4.912 C 20.297 2.632 17.664 1.459 15.093 2.011 C 13.95 0.722 12.306 -0.01 10.583 0 C 7.955 -0.006 5.624 1.686 4.815 4.187 C 3.127 4.532 1.67 5.589 0.817 7.087 C -0.502 9.361 -0.202 12.228 1.561 14.178 C 1.016 15.812 1.204 17.602 2.075 19.089 C 3.384 21.369 6.017 22.542 8.588 21.99 C 9.731 23.279 11.375 24.011 13.098 24 C 15.727 24.007 18.06 22.313 18.868 19.81 C 20.557 19.465 22.014 18.408 22.867 16.91 C 24.184 14.636 23.883 11.772 22.121 9.822 Z M 13.099 22.432 C 12.047 22.433 11.028 22.065 10.22 21.391 C 10.256 21.371 10.32 21.336 10.361 21.31 L 15.141 18.55 C 15.385 18.411 15.535 18.151 15.534 17.87 L 15.534 11.133 L 17.553 12.299 C 17.575 12.309 17.589 12.33 17.592 12.354 L 17.592 17.934 C 17.589 20.415 15.58 22.426 13.099 22.432 Z M 3.436 18.304 C 2.909 17.394 2.719 16.327 2.9 15.291 C 2.935 15.312 2.997 15.35 3.041 15.375 L 7.82 18.135 C 8.063 18.277 8.363 18.277 8.606 18.135 L 14.44 14.766 L 14.44 17.099 C 14.442 17.123 14.43 17.146 14.412 17.161 L 9.581 19.951 C 7.429 21.19 4.681 20.453 3.437 18.304 Z M 2.178 7.872 C 2.703 6.96 3.532 6.263 4.519 5.9 C 4.519 5.942 4.517 6.014 4.517 6.065 L 4.517 11.586 C 4.515 11.867 4.665 12.127 4.909 12.266 L 10.743 15.634 L 8.723 16.8 C 8.703 16.814 8.678 16.816 8.655 16.806 L 3.824 14.015 C 1.676 12.771 0.94 10.024 2.177 7.873 Z M 18.773 11.734 L 12.939 8.365 L 14.958 7.2 C 14.979 7.186 15.004 7.184 15.027 7.194 L 19.858 9.983 C 22.009 11.226 22.746 13.977 21.504 16.128 C 20.978 17.039 20.15 17.736 19.164 18.099 L 19.164 12.414 C 19.166 12.133 19.017 11.874 18.774 11.734 Z M 20.783 8.709 C 20.748 8.687 20.685 8.649 20.641 8.624 L 15.862 5.864 C 15.62 5.722 15.319 5.722 15.077 5.864 L 9.242 9.233 L 9.242 6.9 C 9.241 6.876 9.252 6.853 9.271 6.838 L 14.102 4.051 C 16.254 2.81 19.005 3.548 20.245 5.701 C 20.769 6.61 20.959 7.674 20.781 8.709 Z M 8.144 12.866 L 6.124 11.7 C 6.102 11.689 6.088 11.668 6.085 11.644 L 6.085 6.065 C 6.086 3.581 8.102 1.568 10.586 1.569 C 11.637 1.569 12.654 1.938 13.461 2.61 C 13.425 2.63 13.362 2.665 13.32 2.69 L 8.54 5.45 C 8.296 5.589 8.146 5.849 8.147 6.13 L 8.144 12.864 Z M 9.242 10.5 L 11.841 9 L 14.439 10.5 L 14.439 13.5 L 11.841 15 L 9.242 13.5 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-v0er3t\",layoutDependency:layoutDependency,layoutId:\"Mjtx6q7U1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.024 13.32\" overflow=\"visible\"><path d=\"M 0 6.66 C 0 10.584 2.52 13.32 6.012 13.32 C 9.504 13.32 12.024 10.584 12.024 6.66 C 12.024 2.736 9.504 0 6.012 0 C 2.52 0 0 2.736 0 6.66 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1myy6qf\",layoutDependency:layoutDependency,layoutId:\"qo8h0CJNk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.416 9.252\" overflow=\"visible\"><path d=\"M 7.416 4.626 C 7.416 7.434 5.886 9.252 3.708 9.252 C 1.53 9.252 0 7.434 0 4.626 C 0 1.818 1.53 0 3.708 0 C 5.886 0 7.416 1.818 7.416 4.626 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1krhop4\",layoutDependency:layoutDependency,layoutId:\"hICSxJ2Bp\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.036 12.87\" overflow=\"visible\"><path d=\"M 4.878 9.828 C 7.524 9.828 9.036 7.596 9.036 4.914 C 9.036 2.232 7.524 0 4.878 0 C 3.654 0 2.754 0.486 2.16 1.188 L 2.16 0.18 L 0 0.18 L 0 12.87 L 2.16 12.87 L 2.16 8.64 C 2.754 9.342 3.654 9.828 4.878 9.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-iywfw9\",layoutDependency:layoutDependency,layoutId:\"aUPEvfdnB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.752 6.048\" overflow=\"visible\"><path d=\"M 0 2.754 C 0 0.972 1.008 0 2.34 0 C 3.906 0 4.752 1.224 4.752 3.024 C 4.752 4.824 3.906 6.048 2.34 6.048 C 1.008 6.048 0 5.058 0 3.312 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-aqyzpq\",layoutDependency:layoutDependency,layoutId:\"ePvC2L6vt\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.694 9.828\" overflow=\"visible\"><path d=\"M 4.59 9.828 C 6.48 9.828 7.974 8.838 8.64 7.182 L 6.786 6.48 C 6.498 7.452 5.652 7.992 4.59 7.992 C 3.204 7.992 2.232 7.002 2.07 5.382 L 8.694 5.382 L 8.694 4.662 C 8.694 2.07 7.236 0 4.5 0 C 1.764 0 0 2.142 0 4.914 C 0 7.83 1.89 9.828 4.59 9.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-7c5hrb\",layoutDependency:layoutDependency,layoutId:\"o6gGQNVsO\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.338 1.944\" overflow=\"visible\"><path d=\"M 2.304 0 C 3.672 0 4.32 0.9 4.338 1.944 L 0 1.944 C 0.324 0.666 1.188 0 2.304 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-yd6x8k\",layoutDependency:layoutDependency,layoutId:\"d5YcWdwAS\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.938 9.63\" overflow=\"visible\"><path d=\"M 0 9.63 L 2.16 9.63 L 2.16 4.086 C 2.16 2.736 3.15 2.016 4.122 2.016 C 5.31 2.016 5.778 2.862 5.778 4.032 L 5.778 9.63 L 7.938 9.63 L 7.938 3.402 C 7.938 1.368 6.75 0 4.77 0 C 3.546 0 2.7 0.558 2.16 1.188 L 2.16 0.18 L 0 0.18 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hsovpb\",layoutDependency:layoutDependency,layoutId:\"Q3FUVEWnm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.402 12.924\" overflow=\"visible\"><path d=\"M 4.896 0 L 0 12.924 L 2.286 12.924 L 3.384 9.972 L 8.964 9.972 L 10.08 12.924 L 12.402 12.924 L 7.506 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14vfnsh\",layoutDependency:layoutDependency,layoutId:\"NoHFUW7i4\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.068 5.4\" overflow=\"visible\"><path d=\"M 2.016 0 L 4.068 5.4 L 0 5.4 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-mek9me\",layoutDependency:layoutDependency,layoutId:\"tQxXXTaRV\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.304 12.924\" overflow=\"visible\"><path d=\"M 2.304 0 L 0 0 L 0 12.924 L 2.304 12.924 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-19wn4sl\",layoutDependency:layoutDependency,layoutId:\"JeLlG1yuB\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.682 24\" overflow=\"visible\"><path d=\"M 22.12 9.823 C 22.665 8.188 22.477 6.399 21.606 4.912 C 20.297 2.632 17.664 1.459 15.093 2.011 C 13.95 0.722 12.306 -0.01 10.583 0 C 7.955 -0.006 5.624 1.686 4.815 4.187 C 3.127 4.532 1.67 5.589 0.817 7.087 C -0.502 9.361 -0.202 12.228 1.561 14.178 C 1.016 15.812 1.204 17.602 2.075 19.089 C 3.384 21.369 6.017 22.542 8.588 21.99 C 9.731 23.279 11.375 24.011 13.098 24 C 15.727 24.007 18.06 22.313 18.868 19.81 C 20.557 19.465 22.014 18.408 22.867 16.91 C 24.184 14.636 23.883 11.772 22.121 9.822 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-nwph5d\",layoutDependency:layoutDependency,layoutId:\"O6sZh1xVQ\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.373 11.299\" overflow=\"visible\"><path d=\"M 2.879 11.299 C 1.827 11.301 0.808 10.932 0 10.258 C 0.037 10.238 0.101 10.203 0.142 10.178 L 4.921 7.418 C 5.165 7.279 5.316 7.019 5.314 6.737 L 5.314 0 L 7.334 1.166 C 7.355 1.177 7.37 1.198 7.373 1.222 L 7.373 6.801 C 7.37 9.282 5.36 11.294 2.879 11.299 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vuxodr\",layoutDependency:layoutDependency,layoutId:\"ZmyirBJY7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.607 5.786\" overflow=\"visible\"><path d=\"M 0.603 3.538 C 0.076 2.627 -0.114 1.561 0.067 0.524 C 0.102 0.545 0.164 0.584 0.208 0.609 L 4.987 3.369 C 5.23 3.511 5.53 3.511 5.773 3.369 L 11.607 0 L 11.607 2.333 C 11.609 2.357 11.597 2.38 11.579 2.395 L 6.748 5.184 C 4.596 6.423 1.848 5.687 0.604 3.538 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1h4gxbd\",layoutDependency:layoutDependency,layoutId:\"asGNYNI5U\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.166 10.912\" overflow=\"visible\"><path d=\"M 0.601 1.972 C 1.126 1.06 1.955 0.362 2.942 0 C 2.942 0.041 2.94 0.114 2.94 0.165 L 2.94 5.686 C 2.938 5.966 3.088 6.227 3.332 6.365 L 9.166 9.734 L 7.147 10.9 C 7.126 10.913 7.101 10.916 7.078 10.906 L 2.247 8.114 C 0.099 6.871 -0.637 4.124 0.6 1.973 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18x5jnf\",layoutDependency:layoutDependency,layoutId:\"u0tpDgMNg\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.169 10.912\" overflow=\"visible\"><path d=\"M 5.834 4.547 L 0 1.178 L 2.02 0.012 C 2.04 -0.002 2.066 -0.004 2.088 0.006 L 6.92 2.795 C 9.071 4.038 9.808 6.79 8.565 8.941 C 8.04 9.851 7.212 10.549 6.225 10.912 L 6.225 5.226 C 6.227 4.946 6.078 4.686 5.835 4.547 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15jssmo\",layoutDependency:layoutDependency,layoutId:\"IDoXOBBfa\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.604 5.784\" overflow=\"visible\"><path d=\"M 11.541 5.26 C 11.505 5.238 11.443 5.201 11.399 5.175 L 6.62 2.415 C 6.377 2.273 6.077 2.273 5.835 2.415 L 0 5.784 L 0 3.452 C -0.001 3.428 0.01 3.404 0.029 3.389 L 4.859 0.602 C 7.011 -0.639 9.762 0.1 11.003 2.252 C 11.527 3.162 11.717 4.226 11.539 5.26 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1l4z7l3\",layoutDependency:layoutDependency,layoutId:\"HALTyzfEH\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.376 11.297\" overflow=\"visible\"><path d=\"M 2.06 11.297 L 0.039 10.13 C 0.017 10.12 0.003 10.099 0 10.075 L 0 4.496 C 0.002 2.012 2.017 -0.001 4.501 0 C 5.552 0 6.569 0.369 7.376 1.041 C 7.34 1.061 7.277 1.096 7.235 1.121 L 2.456 3.881 C 2.211 4.02 2.061 4.28 2.063 4.561 L 2.06 11.295 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-h063vb\",layoutDependency:layoutDependency,layoutId:\"fqeiGpFd_\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.198 6.001\" overflow=\"visible\"><path d=\"M 0 1.501 L 2.599 0 L 5.198 1.5 L 5.198 4.501 L 2.599 6.001 L 0 4.501 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-gcdob7\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"j4Refkus5\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\",\"--framer-text-transform\":\"uppercase\"},children:\"coming soon\"})}),className:\"framer-cfejx6\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"FI4Bf17kK\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bd6pnu\",layoutDependency:layoutDependency,layoutId:\"K4fxtRFBe\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||143)-0-202+38+0)+16+0+0+52+0),pixelHeight:64,pixelWidth:502,src:\"https://framerusercontent.com/images/ou0lrg3QpOfNODqTleeVBv7S11M.png\"},className:\"framer-16sq7k\",\"data-framer-name\":\"Google-vehicleads-horizontal\",layoutDependency:layoutDependency,layoutId:\"WhVQlEmgX\",...addPropertyOverrides({p31_6z_ML:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||143)-0-202+38+0)+16+0+0+26+0),pixelHeight:64,pixelWidth:502,src:\"https://framerusercontent.com/images/ou0lrg3QpOfNODqTleeVBv7S11M.png\"}},TCwny0hRM:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+((componentViewport?.height||143)-0-202+38+0)+16+0+0+0+0),pixelHeight:64,pixelWidth:502,src:\"https://framerusercontent.com/images/ou0lrg3QpOfNODqTleeVBv7S11M.png\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wxjvi1\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"OXhbAb8ty\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, rgb(229, 231, 235))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\",\"--framer-text-transform\":\"uppercase\"},children:\"Beta\"})}),className:\"framer-1mw5flh\",fonts:[\"Inter-Medium\"],layoutDependency:layoutDependency,layoutId:\"R10jgnBla\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\"As a Google Premium CSS partner, Cobiro CSS offers you a 20% discount on your Google Shopping ads CPC.\"})}),className:\"framer-1kzvcbt\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"NAXpQ_NC1\",style:{\"--extracted-r6o4lv\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({p31_6z_ML:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\"Set up and manage product feeds for ChatGPT Search, with automatic syncing and optimization.\"})})},TCwny0hRM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130)))\"},children:\"Setup and syncing of vehicle inventories for Google Vehicle Ads, with automatic feed management and updates.\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zorcW.framer-13rfwu8, .framer-zorcW .framer-13rfwu8 { display: block; }\",\".framer-zorcW.framer-1jl20x5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 470px; }\",\".framer-zorcW .framer-1vg0is2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 100%; }\",\".framer-zorcW .framer-1jkamyv-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-zorcW .framer-kq84m8, .framer-zorcW .framer-cfejx6, .framer-zorcW .framer-1mw5flh { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zorcW .framer-hcsddf { 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; overflow: hidden; padding: 16px 12px 16px 12px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zorcW .framer-14d865z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: 24px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zorcW .framer-xw0i0v { flex: none; height: 24px; overflow: visible; position: relative; width: 162px; }\",\".framer-zorcW .framer-1kcygrv { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zorcW .framer-7yt9re { height: 24px; position: relative; width: 87px; }\",\".framer-zorcW .framer-v0er3t { height: 14px; left: 28px; position: absolute; top: 5px; width: 12px; }\",\".framer-zorcW .framer-1myy6qf { height: 10px; left: 30px; position: absolute; top: 7px; width: 8px; }\",\".framer-zorcW .framer-1krhop4 { height: 13px; left: 41px; position: absolute; top: 9px; width: 9px; }\",\".framer-zorcW .framer-iywfw9 { height: 6px; left: 43px; position: absolute; top: 11px; width: 5px; }\",\".framer-zorcW .framer-aqyzpq { height: 10px; left: 52px; position: absolute; top: 9px; width: 9px; }\",\".framer-zorcW .framer-7c5hrb { height: 2px; left: 54px; position: absolute; top: 10px; width: 5px; }\",\".framer-zorcW .framer-yd6x8k { height: 10px; left: 62px; position: absolute; top: 9px; width: 8px; }\",\".framer-zorcW .framer-hsovpb { height: 13px; left: 71px; position: absolute; top: 5px; width: 13px; }\",\".framer-zorcW .framer-14vfnsh { height: 6px; left: 75px; position: absolute; top: 8px; width: 4px; }\",\".framer-zorcW .framer-mek9me { height: 13px; left: 85px; position: absolute; top: 5px; width: 3px; }\",\".framer-zorcW .framer-19wn4sl { height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-zorcW .framer-nwph5d { height: 12px; left: 10px; position: absolute; top: 11px; width: 8px; }\",\".framer-zorcW .framer-1vuxodr { height: 6px; left: 3px; position: absolute; top: 15px; width: 12px; }\",\".framer-zorcW .framer-1h4gxbd { height: 11px; left: 2px; position: absolute; top: 6px; width: 9px; }\",\".framer-zorcW .framer-18x5jnf { height: 11px; left: 13px; position: absolute; top: 7px; width: 9px; }\",\".framer-zorcW .framer-15jssmo { height: 6px; left: 9px; position: absolute; top: 4px; width: 12px; }\",\".framer-zorcW .framer-1l4z7l3 { height: 12px; left: 6px; position: absolute; top: 2px; width: 8px; }\",\".framer-zorcW .framer-h063vb { height: 6px; left: 9px; position: absolute; top: 9px; width: 5px; }\",\".framer-zorcW .framer-gcdob7, .framer-zorcW .framer-1wxjvi1 { 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: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zorcW .framer-bd6pnu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zorcW .framer-16sq7k { aspect-ratio: 7.84375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 189px; }\",\".framer-zorcW .framer-1kzvcbt { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-zorcW.framer-v-1i0xk6i .framer-14d865z { justify-content: center; }\",\".framer-zorcW.framer-v-1i0xk6i .framer-1kcygrv { gap: 12px; }\",\".framer-zorcW.framer-v-17usw31 .framer-14d865z { justify-content: flex-end; }\",'.framer-zorcW[data-border=\"true\"]::after, .framer-zorcW [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 143\n * @framerIntrinsicWidth 470\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"p31_6z_ML\":{\"layout\":[\"fixed\",\"auto\"]},\"TCwny0hRM\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerKsK3ZLUul=withCSS(Component,css,\"framer-zorcW\");export default FramerKsK3ZLUul;FramerKsK3ZLUul.displayName=\"Offers\";FramerKsK3ZLUul.defaultProps={height:143,width:470};addPropertyControls(FramerKsK3ZLUul,{variant:{options:[\"Mksa2knOC\",\"p31_6z_ML\",\"TCwny0hRM\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerKsK3ZLUul,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerKsK3ZLUul\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"470\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"143\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"p31_6z_ML\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TCwny0hRM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./KsK3ZLUul.map","let Component;\nvar House_default = (React) => {\n  if (!Component) {\n    const weights = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M221.56,100.85,141.61,25.38l-.16-.15a19.93,19.93,0,0,0-26.91,0l-.17.15L34.44,100.85A20.07,20.07,0,0,0,28,115.55V208a20,20,0,0,0,20,20H96a20,20,0,0,0,20-20V164h24v44a20,20,0,0,0,20,20h48a20,20,0,0,0,20-20V115.55A20.07,20.07,0,0,0,221.56,100.85ZM204,204H164V160a20,20,0,0,0-20-20H112a20,20,0,0,0-20,20v44H52V117.28l76-71.75,76,71.75Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,115.54V208a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V160a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v48a8,8,0,0,1-8,8H48a8,8,0,0,1-8-8V115.54a8,8,0,0,1,2.62-5.92l80-75.54a8,8,0,0,1,10.77,0l80,75.54A8,8,0,0,1,216,115.54Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,115.55V208a16,16,0,0,1-16,16H168a16,16,0,0,1-16-16V168a8,8,0,0,0-8-8H112a8,8,0,0,0-8,8v40a16,16,0,0,1-16,16H48a16,16,0,0,1-16-16V115.55a16,16,0,0,1,5.17-11.78l80-75.48.11-.11a16,16,0,0,1,21.53,0,1.14,1.14,0,0,0,.11.11l80,75.48A16,16,0,0,1,224,115.55Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.47,105.24l-80-75.5-.09-.08a13.94,13.94,0,0,0-18.83,0l-.09.08-80,75.5A14,14,0,0,0,34,115.55V208a14,14,0,0,0,14,14H96a14,14,0,0,0,14-14V160a2,2,0,0,1,2-2h32a2,2,0,0,1,2,2v48a14,14,0,0,0,14,14h48a14,14,0,0,0,14-14V115.55A14,14,0,0,0,217.47,105.24ZM210,208a2,2,0,0,1-2,2H160a2,2,0,0,1-2-2V160a14,14,0,0,0-14-14H112a14,14,0,0,0-14,14v48a2,2,0,0,1-2,2H48a2,2,0,0,1-2-2V115.55a2,2,0,0,1,.65-1.48l.09-.08,79.94-75.48a2,2,0,0,1,2.63,0L209.26,114l.08.08a2,2,0,0,1,.66,1.48Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M218.83,103.77l-80-75.48a1.14,1.14,0,0,1-.11-.11,16,16,0,0,0-21.53,0l-.11.11L37.17,103.77A16,16,0,0,0,32,115.55V208a16,16,0,0,0,16,16H96a16,16,0,0,0,16-16V160h32v48a16,16,0,0,0,16,16h48a16,16,0,0,0,16-16V115.55A16,16,0,0,0,218.83,103.77ZM208,208H160V160a16,16,0,0,0-16-16H112a16,16,0,0,0-16,16v48H48V115.55l.11-.1L128,40l79.9,75.43.11.1Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.13,106.72,136.07,31.13a12,12,0,0,0-16.2.05L39.93,106.67A12,12,0,0,0,36,115.54V208a12,12,0,0,0,12,12H96a12,12,0,0,0,12-12V160a4,4,0,0,1,4-4h32a4,4,0,0,1,4,4v48a12,12,0,0,0,12,12h48a12,12,0,0,0,12-12V115.54A12,12,0,0,0,216.13,106.72ZM212,208a4,4,0,0,1-4,4H160a4,4,0,0,1-4-4V160a12,12,0,0,0-12-12H112a12,12,0,0,0-12,12v48a4,4,0,0,1-4,4H48a4,4,0,0,1-4-4V115.54a4.09,4.09,0,0,1,1.36-3L125.3,37.05a4,4,0,0,1,5.33,0l80.06,75.58a4,4,0,0,1,1.31,3Z\" }))\n      ]\n    ]);\n    const House = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, weights.get(props.weight)));\n    House.displayName = \"House\";\n    Component = House;\n  }\n  return Component;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n","import{useMemo}from\"react\";import{ControlType}from\"framer\";/*\n ** ICON UTILS\n ** Pull as much re-usable logic into here as possible\n ** This will make it easier to replace in all icon components\n */ export const containerStyles={width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};export const defaultEvents={onClick:{type:ControlType.EventHandler},onMouseDown:{type:ControlType.EventHandler},onMouseUp:{type:ControlType.EventHandler},onMouseEnter:{type:ControlType.EventHandler},onMouseLeave:{type:ControlType.EventHandler}};const findByArray=(arr,search)=>arr.find(a=>a.toLowerCase().includes(search));export function getIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// gotta get the exact match first THEN find\n// have a set and try to access ?\nif(selectByList)return iconSelection;if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;}export function useIconSelection(iconKeys,selectByList,iconSearch=\"\",iconSelection,lowercaseIconKeyPairs){// Clean search term\nconst iconSearchResult=useMemo(()=>{if(iconSearch==null||(iconSearch===null||iconSearch===void 0?void 0:iconSearch.length)===0)return null;const iconSearchTerm=iconSearch.toLowerCase().replace(/-|\\s/g,\"\");var _iconSearchTerm;// check for exact match, otherwise use .find\nconst searchResult=(_iconSearchTerm=lowercaseIconKeyPairs[iconSearchTerm])!==null&&_iconSearchTerm!==void 0?_iconSearchTerm:findByArray(iconKeys,iconSearchTerm);return searchResult;},[iconSelection,iconSearch]);const name=selectByList?iconSelection:iconSearchResult;return name;}\nexport const __FramerMetadata__ = {\"exports\":{\"getIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"containerStyles\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"useIconSelection\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"defaultEvents\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./utils.map","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.53\";import{defaultEvents,useIconSelection}from\"https://framer.com/m/utils-MaUy.js@OSpwWF91FHPVFyQJjMHt\";const iconKeys=[\"AddressBook\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Baby\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"BezierCurve\",\"Bicycle\",\"Binoculars\",\"Bird\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"BoundingBox\",\"BowlFood\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Buildings\",\"Bus\",\"Butterfly\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarPlus\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleText\",\"ChatDots\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checks\",\"Church\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCounterClockwise\",\"ClockCountdown\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"Command\",\"Compass\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"Cpu\",\"CreditCard\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSpeaker\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"DribbbleLogo\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"Fan\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileCloud\",\"FileCode\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"Footprints\",\"ForkKnife\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeStand\",\"Goggles\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GridFour\",\"GridNine\",\"Guitar\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandCoins\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"Hash\",\"HashStraight\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighHeel\",\"HighlighterCircle\",\"Hoodie\",\"Horse\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Jeep\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"Laptop\",\"Layout\",\"Leaf\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"MapPin\",\"MapPinLine\",\"MapTrifold\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MathOperations\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MessengerLogo\",\"MetaLogo\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"Monitor\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Newspaper\",\"NewspaperClipping\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Option\",\"OrangeSlice\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleRun\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneOutgoing\",\"PhonePlus\",\"PhoneSlash\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PinterestLogo\",\"Pinwheel\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"Queue\",\"Quotes\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Scales\",\"Scan\",\"Scissors\",\"Scooter\",\"Screencast\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealQuestion\",\"SealWarning\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Spinner\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackOverflowLogo\",\"StackSimple\",\"Stairs\",\"Stamp\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"Subtitles\",\"Subtract\",\"SubtractSquare\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextT\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Timer\",\"Tipi\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tote\",\"ToteSimple\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"Trophy\",\"Truck\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCircle\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XSquare\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.53\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box…\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicWidth\":\"24\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\"}},\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map","// Generated by Framer (45df69f)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Medium\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-MediumItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/khkJkwSL66WFg8SX6Wa726c.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/0E7IMbDzcGABpBwwqNEt60wU0w.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/NTJ0nQgIF0gcDelS14zQ9NR9Q.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/QrcNhgEPfRl0LS8qz5Ln8olanl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JEXmejW8mXOYMtt0hyRg811kHac.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/ksvR4VsLksjpSwnC2fPgHRNMw.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/uy9s0iWuxiNnVt8EpTI3gzohpwo.woff2\",weight:\"500\"}]}];export const css=['.framer-cPKsw .framer-styles-preset-39la0z:not(.rich-text-wrapper), .framer-cPKsw .framer-styles-preset-39la0z.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, #101828); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-cPKsw .framer-styles-preset-39la0z:not(.rich-text-wrapper), .framer-cPKsw .framer-styles-preset-39la0z.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, #101828); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-cPKsw .framer-styles-preset-39la0z:not(.rich-text-wrapper), .framer-cPKsw .framer-styles-preset-39la0z.rich-text-wrapper h3 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: 0em; --framer-line-height: 1.1em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, #101828); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-cPKsw\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (18b201b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useMetadata,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import Logo from\"#framer/local/canvasComponent/cy2luUMy9/cy2luUMy9.js\";import TickerBG from\"#framer/local/canvasComponent/dxxiVUE2R/dxxiVUE2R.js\";import SectionPricing from\"#framer/local/canvasComponent/IhIvrJHI2/IhIvrJHI2.js\";import Offers from\"#framer/local/canvasComponent/KsK3ZLUul/KsK3ZLUul.js\";import Ticker from\"#framer/local/canvasComponent/t3whaegNU/t3whaegNU.js\";import CardTestimonial from\"#framer/local/canvasComponent/Tl654mnXY/Tl654mnXY.js\";import Button from\"#framer/local/canvasComponent/wX7KVbWON/wX7KVbWON.js\";import{Icon as Phosphor1}from\"#framer/local/codeFile/QGnGGya/Phosphor.js\";import*as sharedStyle1 from\"#framer/local/css/Ca1Ilnmdg/Ca1Ilnmdg.js\";import*as sharedStyle5 from\"#framer/local/css/EWK96ifoc/EWK96ifoc.js\";import*as sharedStyle3 from\"#framer/local/css/n6UYVQ_En/n6UYVQ_En.js\";import*as sharedStyle from\"#framer/local/css/wxf33dl6Q/wxf33dl6Q.js\";import*as sharedStyle2 from\"#framer/local/css/x9a4zkevd/x9a4zkevd.js\";import*as sharedStyle4 from\"#framer/local/css/YLggwIq8d/YLggwIq8d.js\";import metadataProvider from\"#framer/local/webPageMetadata/jZStaBNBa/jZStaBNBa.js\";const ButtonFonts=getFonts(Button);const OffersFonts=getFonts(Offers);const PhosphorFonts=getFonts(Phosphor);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TickerFonts=getFonts(Ticker);const MotionDivWithFX=withFX(motion.div);const Phosphor1Fonts=getFonts(Phosphor1);const LogoFonts=getFonts(Logo);const CardTestimonialFonts=getFonts(CardTestimonial);const TickerBGFonts=getFonts(TickerBG);const SectionPricingFonts=getFonts(SectionPricing);const breakpoints={BTnhmb2K1:\"(min-width: 810px) and (max-width: 1299px)\",mWpbhUq_N:\"(min-width: 1300px)\",TL7FTXdm2:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-dQPQ9\";const variantClassNames={BTnhmb2K1:\"framer-v-5xqvpi\",mWpbhUq_N:\"framer-v-1m1di90\",TL7FTXdm2:\"framer-v-1apqpl5\"};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transition1={bounce:.2,delay:0,duration:.7,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:-20,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:30,scale:1.2,skewX:0,skewY:0,transformPerspective:1200,x:-30,y:0};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:-20,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const transition2={bounce:.2,delay:.2,duration:.7,type:\"spring\"};const animation3={opacity:1,rotate:0,rotateX:0,rotateY:-20,scale:1.1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation4={opacity:.001,rotate:0,rotateX:0,rotateY:30,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:-30,y:0};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:-20,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const transition3={bounce:.2,delay:.4,duration:.7,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:-20,scale:.9,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:30,scale:.8,skewX:0,skewY:0,transformPerspective:1200,x:-30,y:0};const animation8={opacity:1,rotate:0,rotateX:0,rotateY:-20,scale:.8,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const transition4={bounce:.3,delay:.6,duration:1.2,type:\"spring\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation10={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-150};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:110};const transition5={bounce:.2,delay:0,duration:1,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"mWpbhUq_N\",Phone:\"TL7FTXdm2\",Tablet:\"BTnhmb2K1\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"mWpbhUq_N\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"U674TUJEK\");const ref1=React.useRef(null);const router=useRouter();const elementId1=useRouteElementId(\"VXM_st_ov\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"spTO7Xmnm\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"fkBJ_23Jz\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"fygJRiwhx\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"CdGjLTxzo\");const ref6=React.useRef(null);const elementId6=useRouteElementId(\"iGn3gKRHm\");const ref7=React.useRef(null);const elementId7=useRouteElementId(\"FlRyjjUIX\");const ref8=React.useRef(null);const elementId8=useRouteElementId(\"uP_lGrxys\");const ref9=React.useRef(null);const elementId9=useRouteElementId(\"jcOsQLcfz\");const ref10=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"mWpbhUq_N\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-7cebef55-9e65-4de1-a982-bf37a8137312, rgb(255, 255, 255)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1m1di90\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4kzavl\",\"data-border\":true,\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+-60),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+70),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"},className:\"framer-17bdr10\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-xp8k03\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uc0lbq\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oq03j\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16s97pr\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-w6qi9u\",\"data-styles-preset\":\"wxf33dl6Q\",children:\"#1 Google CSS Partner for Agencies, Marketers & Online Stores\"})}),className:\"framer-12p77y2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Save 20% on Google Shopping Ads and get free product listings on Google and ChatGPT - with full branding for agencies and direct value for merchants.\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"A must-have for any serious online store.\"})]}),className:\"framer-1hsjhtd\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-13bt3ql\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{y:(componentViewport?.y||0)+0+0+0+500+30+0+0+0+0+419.4+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+0+0+40+-40+0+0+0+442.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15sonfd-container\",nodeId:\"C19orjNqq\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"C19orjNqq\",layoutId:\"C19orjNqq\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px, 440px)`,y:(componentViewport?.y||0)+0+0+0+500+30+0+0+501.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:143,width:`min(max(min(${componentViewport?.width||\"100vw\"}, 1300px) / 2, 1px) - 80px, 440px)`,y:(componentViewport?.y||0)+0+0+0+40+-40+0+497,children:/*#__PURE__*/_jsx(Container,{className:\"framer-zuk8hk-container\",nodeId:\"fMrLAqhGv\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Offers,{height:\"100%\",id:\"fMrLAqhGv\",layoutId:\"fMrLAqhGv\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"Mksa2knOC\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-de7d6\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1s1g0dw\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{animate:animation2,style:{rotateY:-20,transformPerspective:1200}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1q0giww\",\"data-border\":true,\"data-framer-appear-id\":\"1q0giww\",\"data-framer-name\":\"Card1\",initial:animation1,optimized:true,style:{rotateY:-20,scale:1.2,transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11pv2w6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ot5831\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+40+-34.2+4+0+0+4),pixelHeight:1516,pixelWidth:1522,sizes:\"142px\",src:\"https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png 1522w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+55.8+4+0+0+4),pixelHeight:1516,pixelWidth:1522,sizes:\"142px\",src:\"https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png?scale-down-to=512 512w,https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/PwJdQlLjZFjZlaBii2MywLB7gM.png 1522w\"},className:\"framer-1wugzh7\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-1m20qhu\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 20 19.986\" overflow=\"visible\"><g><path d=\"M 11.647 0 C 11.155 0 10.687 0.192 10.339 0.54 L 5.957 4.917 L 7.684 6.645 L 10.495 5.941 L 13.222 6.581 L 14.974 4.83 C 14.506 4.262 14.546 3.43 15.066 2.911 C 15.586 2.391 16.417 2.351 16.985 2.819 L 19.36 0.448 C 19.021 0.16 18.589 0 18.145 0 L 11.647 0 Z\" fill=\"rgb(234,67,53)\"></path><path d=\"M 19.356 0.46 L 16.985 2.831 C 17.453 3.214 17.629 3.85 17.421 4.418 C 17.213 4.985 16.673 5.365 16.069 5.361 C 15.637 5.361 15.238 5.177 14.97 4.842 C 14.974 4.846 14.966 4.838 14.97 4.842 L 12.263 7.58 L 10.335 6.649 L 8.164 7.8 L 7.536 9.811 L 8.164 12.07 L 10.335 13.041 L 13.594 12.574 L 15.078 14.057 L 19.452 9.679 C 19.804 9.335 20.004 8.863 20 8.372 L 20 1.867 C 20 1.327 19.764 0.816 19.356 0.46 Z\" fill=\"rgb(66,133,244)\"></path><path d=\"M 5.95 4.917 L 0.548 10.319 C 0.196 10.667 0 11.142 0 11.638 C -0.004 12.13 0.196 12.602 0.548 12.945 L 3.703 16.1 L 7.286 12.518 L 6.662 9.799 L 7.678 6.649 Z\" fill=\"rgb(251,188,5)\"></path><path d=\"M 3.698 16.096 L 7.041 19.438 C 7.389 19.786 7.857 19.986 8.349 19.986 C 8.844 19.982 9.316 19.786 9.668 19.438 L 15.066 14.037 L 13.583 12.553 L 10.48 13.453 L 7.273 12.514 Z\" fill=\"rgb(52,168,83)\"></path><path d=\"M 14.334 9.027 L 10.475 9.027 L 10.475 10.682 L 12.695 10.682 C 12.487 11.734 11.623 12.338 10.475 12.338 C 9.076 12.29 7.98 11.118 8.028 9.719 C 8.072 8.388 9.144 7.32 10.475 7.272 C 11.035 7.272 11.575 7.472 11.999 7.836 L 13.202 6.589 C 12.459 5.901 11.487 5.521 10.475 5.517 C 8.18 5.517 6.337 7.424 6.337 9.799 C 6.337 12.174 8.18 14.081 10.475 14.081 C 12.547 14.081 14.426 12.522 14.426 9.799 C 14.422 9.543 14.39 9.283 14.334 9.027 Z\" fill=\"rgb(255,255,255)\"></path></g></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18pve8c\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 13.403 6.645\" overflow=\"visible\"><path d=\"M 5.69 0 C 5.198 0 4.73 0.192 4.383 0.54 L 0 4.917 L 1.727 6.645 L 4.538 5.941 L 7.266 6.581 L 9.017 4.83 C 8.549 4.262 8.589 3.43 9.109 2.911 C 9.629 2.391 10.46 2.351 11.028 2.819 L 13.403 0.448 C 13.064 0.16 12.632 0 12.188 0 L 5.69 0 Z\" fill=\"rgb(234,67,53)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y7ling\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.464 13.597\" overflow=\"visible\"><path d=\"M 11.82 0 L 9.449 2.371 C 9.917 2.755 10.093 3.39 9.885 3.958 C 9.677 4.526 9.137 4.905 8.533 4.901 C 8.101 4.901 7.701 4.718 7.434 4.382 C 7.438 4.386 7.43 4.378 7.434 4.382 L 4.726 7.12 L 2.799 6.189 L 0.628 7.34 L 0 9.351 L 0.628 11.61 L 2.799 12.582 L 6.058 12.114 L 7.541 13.597 L 11.916 9.219 C 12.268 8.875 12.468 8.404 12.464 7.912 L 12.464 1.407 C 12.464 0.868 12.228 0.356 11.82 0 Z\" fill=\"rgb(66,133,244)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-16h5tsx\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.678 11.182\" overflow=\"visible\"><path d=\"M 5.95 0 L 0.548 5.401 C 0.196 5.749 0 6.225 0 6.721 C -0.004 7.212 0.196 7.684 0.548 8.028 L 3.703 11.182 L 7.286 7.6 L 6.662 4.882 L 7.678 1.731 Z\" fill=\"rgb(251,188,5)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ikrxco\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.368 7.472\" overflow=\"visible\"><path d=\"M 0 3.582 L 3.343 6.924 C 3.691 7.272 4.159 7.472 4.65 7.472 C 5.146 7.468 5.618 7.272 5.97 6.924 L 11.368 1.523 L 9.885 0.04 L 6.782 0.94 L 3.575 0 Z\" fill=\"rgb(52,168,83)\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-101xy4m\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.089 8.564\" overflow=\"visible\"><path d=\"M 7.997 3.51 L 4.139 3.51 L 4.139 5.165 L 6.358 5.165 C 6.15 6.217 5.286 6.821 4.139 6.821 C 2.739 6.773 1.643 5.601 1.691 4.202 C 1.735 2.871 2.807 1.803 4.139 1.755 C 4.698 1.755 5.238 1.955 5.662 2.319 L 6.866 1.071 C 6.122 0.384 5.15 0.004 4.139 0 C 1.843 0 0 1.907 0 4.282 C 0 6.657 1.843 8.564 4.139 8.564 C 6.21 8.564 8.089 7.004 8.089 4.282 C 8.085 4.026 8.053 3.766 7.997 3.51 Z\" fill=\"rgb(255,255,255)\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kj3jwt\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7d1gl8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"ARKK Sneaker Waste Zero\"})}),className:\"framer-h0atcy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"ARKK Official\"})}),className:\"framer-y47mu8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gdq88d\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g1rkji-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"f0HmG7wAf\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"f0HmG7wAf\",layoutId:\"f0HmG7wAf\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wzqmsq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"T9gWDdTH8\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"T9gWDdTH8\",layoutId:\"T9gWDdTH8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1der295-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"IclRclWZP\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"IclRclWZP\",layoutId:\"IclRclWZP\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t2dean-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"A_XFER3AI\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"A_XFER3AI\",layoutId:\"A_XFER3AI\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vj8gyi-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RjnAttQFA\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-ac3a7035-d2da-424b-8b91-c29d55b1fddc, rgb(255, 185, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"RjnAttQFA\",layoutId:\"RjnAttQFA\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"12px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\" (72)\"})}),className:\"framer-tiyu8b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-ed1641e7-7f33-4445-9ab1-a87896553156, rgb(0, 130, 54))\"},children:\"€135.99\"})}),className:\"framer-17hsuu0\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-8264d78e-37c4-478a-8f8b-063fddd7172e, rgb(43, 127, 255))\"},children:\"By Cobiro\"})}),className:\"framer-10uhswv\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{animate:animation5,style:{rotateY:-20,transformPerspective:1200}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation3,className:\"framer-1bl9fld\",\"data-border\":true,\"data-framer-appear-id\":\"1bl9fld\",\"data-framer-name\":\"Card2\",initial:animation4,optimized:true,style:{rotateY:-20,scale:1.1,transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-klzcsn\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e7f8df\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+40+-32.25+4+0+0+16),pixelHeight:448,pixelWidth:296,src:\"https://framerusercontent.com/images/Fo6F2WEBUbcHagRoiMWByLMa4.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+57.75+4+0+0+16),pixelHeight:448,pixelWidth:296,src:\"https://framerusercontent.com/images/Fo6F2WEBUbcHagRoiMWByLMa4.png\"},className:\"framer-uzv2ha\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsxs(SVG,{className:\"framer-ne3rbe\",opacity:.7,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 15.857\" overflow=\"visible\"><path d=\"M 6.137 5.772 L 6.137 4.266 C 6.137 4.139 6.184 4.044 6.295 3.98 L 9.324 2.236 C 9.736 1.998 10.228 1.887 10.735 1.887 C 12.638 1.887 13.843 3.362 13.843 4.932 C 13.843 5.043 13.843 5.169 13.827 5.296 L 10.688 3.457 C 10.497 3.346 10.307 3.346 10.117 3.457 Z M 13.209 11.639 L 13.209 8.04 C 13.209 7.818 13.114 7.659 12.924 7.548 L 8.943 5.233 L 10.244 4.487 C 10.355 4.424 10.45 4.424 10.561 4.487 L 13.59 6.232 C 14.462 6.739 15.048 7.817 15.048 8.864 C 15.048 10.069 14.335 11.179 13.209 11.639 Z M 5.201 8.468 L 3.901 7.707 C 3.79 7.643 3.742 7.548 3.742 7.421 L 3.742 3.933 C 3.742 2.236 5.043 0.951 6.803 0.951 C 7.469 0.951 8.087 1.174 8.611 1.57 L 5.487 3.378 C 5.297 3.489 5.201 3.647 5.201 3.869 L 5.201 8.468 Z M 8 10.085 L 6.137 9.039 L 6.137 6.819 L 8 5.772 L 9.863 6.819 L 9.863 9.039 L 8 10.085 Z M 9.197 14.906 C 8.531 14.906 7.913 14.684 7.389 14.287 L 10.513 12.479 C 10.703 12.369 10.799 12.21 10.799 11.988 L 10.799 7.389 L 12.115 8.151 C 12.226 8.214 12.273 8.309 12.273 8.436 L 12.273 11.925 C 12.273 13.621 10.957 14.906 9.197 14.906 L 9.197 14.906 Z M 5.439 11.37 L 2.41 9.625 C 1.538 9.118 0.951 8.04 0.951 6.993 C 0.951 5.772 1.681 4.678 2.807 4.218 L 2.807 7.834 C 2.807 8.056 2.902 8.214 3.092 8.325 L 7.056 10.624 L 5.756 11.37 C 5.645 11.433 5.55 11.433 5.439 11.37 Z M 5.265 13.97 C 3.473 13.97 2.157 12.622 2.157 10.957 C 2.157 10.831 2.172 10.704 2.188 10.577 L 5.312 12.385 C 5.502 12.495 5.693 12.495 5.883 12.385 L 9.863 10.085 L 9.863 11.592 C 9.863 11.719 9.815 11.814 9.705 11.877 L 6.676 13.622 C 6.263 13.859 5.772 13.97 5.265 13.97 Z M 9.197 15.857 C 11.116 15.857 12.717 14.493 13.082 12.686 C 14.858 12.226 16 10.561 16 8.864 C 16 7.754 15.524 6.676 14.668 5.899 C 14.747 5.566 14.795 5.233 14.795 4.9 C 14.795 2.632 12.955 0.936 10.831 0.936 C 10.402 0.936 9.99 0.999 9.578 1.142 C 8.864 0.444 7.881 0 6.803 0 C 4.884 0 3.282 1.364 2.918 3.172 C 1.142 3.631 0 5.296 0 6.993 C 0 8.103 0.476 9.181 1.332 9.958 C 1.253 10.291 1.205 10.624 1.205 10.957 C 1.205 13.225 3.045 14.921 5.169 14.921 C 5.598 14.921 6.01 14.858 6.422 14.715 C 7.136 15.413 8.119 15.857 9.197 15.857 Z\" fill=\"rgb(0,0,0)\" opacity=\"0.7\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-17q32nd\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.707 3.885\" overflow=\"visible\"><path d=\"M 0 3.885 L 0 2.378 C 0 2.252 0.048 2.156 0.159 2.093 L 3.187 0.349 C 3.6 0.111 4.091 0 4.599 0 C 6.501 0 7.707 1.475 7.707 3.044 C 7.707 3.155 7.707 3.282 7.691 3.409 L 4.551 1.57 C 4.361 1.459 4.17 1.459 3.98 1.57 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tfhue9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.105 7.199\" overflow=\"visible\"><path d=\"M 4.266 7.199 L 4.266 3.6 C 4.266 3.378 4.17 3.219 3.98 3.108 L 0 0.793 L 1.3 0.048 C 1.411 -0.016 1.506 -0.016 1.617 0.048 L 4.646 1.792 C 5.518 2.299 6.105 3.378 6.105 4.424 C 6.105 5.629 5.392 6.739 4.266 7.199 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pbknee\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.868 7.516\" overflow=\"visible\"><path d=\"M 1.459 7.516 L 0.159 6.755 C 0.048 6.692 0 6.597 0 6.47 L 0 2.981 C 0 1.285 1.3 0 3.06 0 C 3.727 0 4.345 0.222 4.868 0.618 L 1.744 2.426 C 1.554 2.537 1.459 2.696 1.459 2.918 L 1.459 7.516 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-zdneo1\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 3.726 4.313\" overflow=\"visible\"><path d=\"M 1.863 4.313 L 0 3.267 L 0 1.046 L 1.863 0 L 3.726 1.046 L 3.726 3.267 L 1.863 4.313 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ktahqr\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.884 7.516\" overflow=\"visible\"><path d=\"M 1.808 7.516 C 1.142 7.516 0.524 7.294 0 6.898 L 3.124 5.09 C 3.314 4.979 3.409 4.821 3.409 4.599 L 3.409 0 L 4.726 0.761 C 4.836 0.824 4.884 0.92 4.884 1.046 L 4.884 4.535 C 4.884 6.232 3.568 7.516 1.808 7.516 L 1.808 7.516 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-191q4yq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 6.105 7.199\" overflow=\"visible\"><path d=\"M 4.488 7.152 L 1.459 5.407 C 0.587 4.9 0 3.822 0 2.775 C 0 1.554 0.729 0.46 1.855 0 L 1.855 3.615 C 1.855 3.837 1.95 3.996 2.141 4.107 L 6.105 6.406 L 4.805 7.152 C 4.694 7.215 4.599 7.215 4.488 7.152 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-15dgryn\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.706 3.885\" overflow=\"visible\"><path d=\"M 3.108 3.885 C 1.316 3.885 0 2.537 0 0.872 C 0 0.745 0.016 0.618 0.032 0.491 L 3.156 2.299 C 3.346 2.41 3.536 2.41 3.726 2.299 L 7.706 0 L 7.706 1.506 C 7.706 1.633 7.659 1.728 7.548 1.792 L 4.519 3.536 C 4.107 3.774 3.615 3.885 3.108 3.885 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1jom8u0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 15.857\" overflow=\"visible\"><path d=\"M 9.197 15.857 C 11.116 15.857 12.717 14.493 13.082 12.686 C 14.858 12.226 16 10.561 16 8.864 C 16 7.754 15.524 6.676 14.668 5.899 C 14.747 5.566 14.795 5.233 14.795 4.9 C 14.795 2.632 12.955 0.936 10.831 0.936 C 10.402 0.936 9.99 0.999 9.578 1.142 C 8.864 0.444 7.881 0 6.803 0 C 4.884 0 3.282 1.364 2.918 3.172 C 1.142 3.631 0 5.296 0 6.993 C 0 8.103 0.476 9.181 1.332 9.958 C 1.253 10.291 1.205 10.624 1.205 10.957 C 1.205 13.225 3.045 14.921 5.169 14.921 C 5.598 14.921 6.01 14.858 6.422 14.715 C 7.136 15.413 8.119 15.857 9.197 15.857 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7nnclj\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"DeLonghi ECP 35.31 Espresso\"})}),className:\"framer-lsy1j9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-362pul\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"$149.00\"})}),className:\"framer-6e014r\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"13px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Cobiro\"})}),className:\"framer-1hgkdc7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Luxury Coffee\"})}),className:\"framer-3l1q7x\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{animate:animation8,style:{rotateY:-20,scale:.8,transformPerspective:1200}}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,className:\"framer-8n8qw\",\"data-border\":true,\"data-framer-appear-id\":\"8n8qw\",\"data-framer-name\":\"Card3\",initial:animation7,optimized:true,style:{rotateY:-20,scale:.9,transformPerspective:1200},transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a9s5zz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15ddn20\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+40+-4.2+4+0+0+15+29),pixelHeight:1386,pixelWidth:2100,sizes:\"135px\",src:\"https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png 2100w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:148,intrinsicWidth:148,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+85.8+4+0+0+15+29),pixelHeight:1386,pixelWidth:2100,sizes:\"135px\",src:\"https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=512 512w,https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/JwEG4NcgypE7oJml4HeApy3n3oI.png 2100w\"},className:\"framer-8yfnvi\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88.5,intrinsicWidth:170.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+40+-4.2+4+0+0+8),pixelHeight:177,pixelWidth:341,src:\"https://framerusercontent.com/images/A579GPbvG9qLcO4xP62IM2ClUE.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:88.5,intrinsicWidth:170.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+0+85.8+4+0+0+8),pixelHeight:177,pixelWidth:341,src:\"https://framerusercontent.com/images/A579GPbvG9qLcO4xP62IM2ClUE.png\"},className:\"framer-8wk5lo\",\"data-framer-name\":\"Google-vehicleads\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1byschp\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t33y4l\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Polestar 4 - Nordic Edition Dual Motor\"})}),className:\"framer-l2qh5d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"New\"})}),className:\"framer-toxn38\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hclzx1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-ed1641e7-7f33-4445-9ab1-a87896553156, rgb(0, 130, 54))\"},children:\"€65.000\"})}),className:\"framer-9ngfcm\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-decoration\":\"line-through\"},children:\"€70.000\"})}),className:\"framer-1edzxqw\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-8264d78e-37c4-478a-8f8b-063fddd7172e, rgb(43, 127, 255))\"},children:\"By Polestar\"})}),className:\"framer-63y3pa\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation9,className:\"framer-uohg1m\",\"data-border\":true,\"data-framer-appear-id\":\"uohg1m\",initial:animation10,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\",\"--framer-text-transform\":\"uppercase\"},children:\"Leading product listing solution\"})}),className:\"framer-iv3w5w\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10ht226\",\"data-border\":true,\"data-framer-name\":\"Leading agencies trust Cobiro\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10kkg81\",\"data-framer-name\":\"Using Cobiro\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Leading companies trust Cobiro\"})}),className:\"framer-hpxrcv\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{y:(componentViewport?.y||0)+0+1214.4+40+0+0+185}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,y:(componentViewport?.y||0)+0+640+60+0+0+205,children:/*#__PURE__*/_jsx(Container,{className:\"framer-z6qgc6-container\",nodeId:\"ZAu88kqwN\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Ticker,{height:\"100%\",id:\"ZAu88kqwN\",layoutId:\"ZAu88kqwN\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qxfeue\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q5hkx6\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-w6qi9u\",\"data-styles-preset\":\"wxf33dl6Q\",style:{\"--framer-text-alignment\":\"center\"},children:\"+160M\"})}),className:\"framer-k3dwm2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Products listed\"})}),className:\"framer-1026kg3\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bq74cg\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-w6qi9u\",\"data-styles-preset\":\"wxf33dl6Q\",style:{\"--framer-text-alignment\":\"center\"},children:\"+€350M\"})}),className:\"framer-1yfn0yt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Yearly ad spend\"})}),className:\"framer-1pk8c9p\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iccypo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-w6qi9u\",\"data-styles-preset\":\"wxf33dl6Q\",style:{\"--framer-text-alignment\":\"center\"},children:\"+3,000\"})}),className:\"framer-fn3mhe\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Advertisers & partners\"})}),className:\"framer-18czva8\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ha2n75\",\"data-border\":true,\"data-framer-name\":\"CSS Ads\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-wsw1jw\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-owlc5i\",\"data-border\":true,\"data-framer-name\":\"Card1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1235.4+1+1315-1215+4),pixelHeight:1962,pixelWidth:1284,positionX:\"left\",positionY:\"top\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) * 0.9499 - 8px, 1px)`,src:\"https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png\",srcSet:\"https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png?scale-down-to=1024 670w,https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png 1284w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2226.6+1+696.6+40+4),pixelHeight:1962,pixelWidth:1284,positionX:\"right\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 82px) * 1.1981 - 8px, 1px)`,src:\"https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png\",srcSet:\"https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png?scale-down-to=1024 670w,https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png 1284w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1235.4+1+1315-1215+4),pixelHeight:1962,pixelWidth:1284,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) * 0.9499 - 8px, 1px)`,src:\"https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png\",srcSet:\"https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png?scale-down-to=1024 670w,https://framerusercontent.com/images/Jv9ItAb3BDetxVmktvCrba0Uqc.png 1284w\"},className:\"framer-1x8t77\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o8o46\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u0ifl5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lamu37\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2226.6+1+0+100+0+0+0+0),pixelHeight:800,pixelWidth:2364,positionX:\"left\",positionY:\"center\",sizes:\"71.1579px\",src:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png 2364w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1235.4+1+300+0+0+0+0),pixelHeight:800,pixelWidth:2364,positionX:\"left\",positionY:\"center\",sizes:\"71.1579px\",src:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png 2364w\"},className:\"framer-n29y8\",\"data-framer-name\":\"Google-vehicleads-horizontal\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p7ymb3\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"EEA, UK & CH\"})})}),className:\"framer-mgcbja\",fonts:[\"Inter-Medium\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9gh58z\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",children:\"Cut Google Shopping Ads Costs by 20%\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Cut Google Shopping Ads Costs by 20%\"})}),className:\"framer-lhrrqn\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Benefit from Google's CSS unique program. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Cut Google Shopping ad costs by 20%, get free listings + reach customers across EEA, UK & Switzerland – for less.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"A must-have for any serious online store.\"})]}),className:\"framer-1yf2pf4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vthgnm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{y:(componentViewport?.y||0)+0+2226.6+1+0+100+0+0+514.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+1235.4+1+300+0+0+673+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lvkt0b-container\",nodeId:\"Nab_Sot6B\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"Nab_Sot6B\",layoutId:\"Nab_Sot6B\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wDrZ3sLZi\"},implicitPathVariables:undefined},{href:{webPageId:\"wDrZ3sLZi\"},implicitPathVariables:undefined},{href:{webPageId:\"wDrZ3sLZi\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{y:(componentViewport?.y||0)+0+2226.6+1+0+100+0+0+514.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+1235.4+1+300+0+0+673+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-2n9buy-container\",nodeId:\"CrEL9CJiZ\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{x3VJCjot0:resolvedLinks[1]},TL7FTXdm2:{x3VJCjot0:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Learn more\",height:\"100%\",id:\"CrEL9CJiZ\",layoutId:\"CrEL9CJiZ\",MW1yzDpfo:false,variant:\"xKSSSfohv\",width:\"100%\",x3VJCjot0:resolvedLinks[0]})})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15m3pk6\",\"data-border\":true,\"data-framer-name\":\"CSS Whitelabel Ads\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1c01z4q\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11qr3e6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xaoi76\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3435.2+1+0+100+0+0+0+0),pixelHeight:800,pixelWidth:2364,positionX:\"left\",positionY:\"center\",sizes:\"71.1579px\",src:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png 2364w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2552.4+1+300+0+0+0+0),pixelHeight:800,pixelWidth:2364,positionX:\"left\",positionY:\"center\",sizes:\"71.1579px\",src:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=512 512w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nAJj0MT8SnGTxeAVwc3MJPde6Q8.png 2364w\"},className:\"framer-12azk4e\",\"data-framer-name\":\"Google-vehicleads-horizontal\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q6b86q\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"whitelabel css\"})}),className:\"framer-18j0dpd\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1l129ty\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",style:{\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Google CSS Whitelabel - Your brand on all your Client's Shopping Ads\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Google CSS Whitelabel - Your brand on all your Client's Shopping Ads\"})}),className:\"framer-1kjzh8g\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:[\"Every Google Shopping impression displays \",/*#__PURE__*/_jsx(\"strong\",{children:\"your\"}),\" agency name. \"]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Get the 20% discounts for your clients + get free listings across Google & ChatGPT. \"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:[\"Your clients credit \",/*#__PURE__*/_jsx(\"strong\",{children:\"you\"}),\" for their success.\"]})]}),className:\"framer-yoeqq6\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t5c0j\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{y:(componentViewport?.y||0)+0+3435.2+1+0+100+0+0+514.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+2552.4+1+300+0+0+673+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-d2b28a-container\",nodeId:\"dSnyEHQ5N\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"dSnyEHQ5N\",layoutId:\"dSnyEHQ5N\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QLsbGQ4C8\"},implicitPathVariables:undefined},{href:{webPageId:\"QLsbGQ4C8\"},implicitPathVariables:undefined},{href:{webPageId:\"QLsbGQ4C8\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{y:(componentViewport?.y||0)+0+3435.2+1+0+100+0+0+514.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+2552.4+1+300+0+0+673+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5hnjf7-container\",nodeId:\"UpPZig1Pg\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{x3VJCjot0:resolvedLinks1[1]},TL7FTXdm2:{x3VJCjot0:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Learn more\",height:\"100%\",id:\"UpPZig1Pg\",layoutId:\"UpPZig1Pg\",MW1yzDpfo:false,variant:\"xKSSSfohv\",width:\"100%\",x3VJCjot0:resolvedLinks1[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p344uj\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-qz5xoa\",\"data-border\":true,\"data-framer-name\":\"Card1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2552.4+1+1315-1214.5+4),pixelHeight:2042,pixelWidth:1328,positionX:\"left\",positionY:\"top\",sizes:\"406px\",src:\"https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png\",srcSet:\"https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png?scale-down-to=1024 665w,https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png 1328w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3435.2+1+696.6+40+4),pixelHeight:2042,pixelWidth:1328,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 82px) * 1.1981 - 8px, 1px)`,src:\"https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png\",srcSet:\"https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png?scale-down-to=1024 665w,https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png 1328w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2552.4+1+1315-1214.5+4),pixelHeight:2042,pixelWidth:1328,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) - 28px, 1px)`,src:\"https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png\",srcSet:\"https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png?scale-down-to=1024 665w,https://framerusercontent.com/images/aG0aw4gMhUzuCt7k63q6cTNshA.png 1328w\"},className:\"framer-1at39a7\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-puvxkx\",\"data-border\":true,\"data-framer-name\":\"CSS Private Label Solution\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rz1p32\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17l3gr2\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12wtl1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ojn7t9\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2l3tr-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"t3cJhYre2\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Tag\",id:\"t3cJhYre2\",layoutId:\"t3cJhYre2\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"whitelabel css\"})}),className:\"framer-g2z8hm\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",children:\"Your own Branded Google CSS Platform\"})}),className:\"framer-cu1s0g\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Build your own Google CSS platform with custom design and styling. Complete branding control, your visual identity, your client success - entirely under your name.\"})}),className:\"framer-1kjftxt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-122wkx6\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+3869.4+160+0+0+0+0+233.6+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+4643.8+100+0+0+0+0+233.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+3869.4+200+0+0+0+0+233.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1yzxy4t-container\",nodeId:\"fu40lAEUR\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"fu40lAEUR\",layoutId:\"fu40lAEUR\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QLsbGQ4C8\"},implicitPathVariables:undefined},{href:{webPageId:\"QLsbGQ4C8\"},implicitPathVariables:undefined},{href:{webPageId:\"QLsbGQ4C8\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+3869.4+160+0+0+0+0+233.6+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+4643.8+100+0+0+0+0+233.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+3869.4+200+0+0+0+0+233.6+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-du4huv-container\",nodeId:\"AqQ6WXGUN\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{x3VJCjot0:resolvedLinks2[1]},TL7FTXdm2:{x3VJCjot0:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Learn more\",height:\"100%\",id:\"AqQ6WXGUN\",layoutId:\"AqQ6WXGUN\",MW1yzDpfo:false,variant:\"xKSSSfohv\",width:\"100%\",x3VJCjot0:resolvedLinks2[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dmb7hy\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1djqcvc\",\"data-border\":true,\"data-framer-name\":\"Card1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3869.4+160+355.6+0+4),pixelHeight:2002,pixelWidth:2988,positionX:\"center\",positionY:\"top\",sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 80px, 1px) - 8px, 1px)`,src:\"https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png\",srcSet:\"https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png 2988w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4643.8+100+315.6+0+4),pixelHeight:2002,pixelWidth:2988,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px) * 1.2 - 8px, 1px)`,src:\"https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png\",srcSet:\"https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png 2988w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3869.4+200+355.6+0+4),pixelHeight:2002,pixelWidth:2988,positionX:\"center\",positionY:\"top\",sizes:`max(max(min(${componentViewport?.width||\"100vw\"}, 1300px) - 80px, 1px) - 8px, 1px)`,src:\"https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png\",srcSet:\"https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=512 512w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/ROuYb9iNwnoJAOLzWc9PtlijzuU.png 2988w\"},className:\"framer-lhpo3s\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fclrl5\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-azneke\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t4wffy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"b0C9olfNo\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Swatches\",id:\"b0C9olfNo\",layoutId:\"b0C9olfNo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Your Brand, your CSS Platform\"})}),className:\"framer-i5k9vt\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Complete whitelabel solution with your logo, colors, and domain - clients see only your brand, never Cobiro.\"})}),className:\"framer-1jfi6p7\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eckx40\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-14o23gp-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"GhZH_NDW9\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Percent\",id:\"GhZH_NDW9\",layoutId:\"GhZH_NDW9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Enjoy Google CPC discounts\"})}),className:\"framer-kwk6uu\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Permanent 20% reduction on every click through CSS advantage - same quality traffic at consistently lower costs.\"})}),className:\"framer-3o4sif\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cw7w97\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15vhlv5-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"AD8FVaykN\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ChartLineUp\",id:\"AD8FVaykN\",layoutId:\"AD8FVaykN\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Drive free organic traffic\"})}),className:\"framer-gv7611\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Your brand appears on every shopping ad impression - building recognition and trust without paying for brand campaigns.\"})}),className:\"framer-1h76omn\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tostv8\",\"data-border\":true,\"data-framer-name\":\"OpenAI\",id:elementId3,ref:ref4,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ascba\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kvgwuz\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b7zkkp\",children:[/*#__PURE__*/_jsxs(SVG,{className:\"framer-rsdesq\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 87.119 24\" overflow=\"visible\"><path d=\"M 27.399 11.538 C 27.399 15.462 29.919 18.198 33.411 18.198 C 36.903 18.198 39.423 15.462 39.423 11.538 C 39.423 7.614 36.903 4.878 33.411 4.878 C 29.919 4.878 27.399 7.614 27.399 11.538 Z M 37.119 11.538 C 37.119 14.346 35.589 16.164 33.411 16.164 C 31.233 16.164 29.703 14.346 29.703 11.538 C 29.703 8.73 31.233 6.912 33.411 6.912 C 35.589 6.912 37.119 8.73 37.119 11.538 Z M 45.911 18.198 C 48.558 18.198 50.07 15.966 50.07 13.284 C 50.07 10.602 48.558 8.37 45.911 8.37 C 44.687 8.37 43.787 8.856 43.193 9.558 L 43.193 8.55 L 41.033 8.55 L 41.033 21.241 L 43.193 21.241 L 43.193 17.01 C 43.787 17.712 44.687 18.198 45.911 18.198 Z M 43.139 13.014 C 43.139 11.232 44.147 10.26 45.479 10.26 C 47.046 10.26 47.892 11.484 47.892 13.284 C 47.892 15.084 47.046 16.308 45.479 16.308 C 44.147 16.308 43.139 15.318 43.139 13.572 Z M 55.915 18.198 C 57.805 18.198 59.299 17.208 59.965 15.552 L 58.111 14.85 C 57.823 15.822 56.977 16.362 55.915 16.362 C 54.529 16.362 53.557 15.372 53.395 13.752 L 60.019 13.752 L 60.019 13.032 C 60.019 10.44 58.561 8.37 55.825 8.37 C 53.089 8.37 51.325 10.512 51.325 13.284 C 51.325 16.2 53.215 18.198 55.915 18.198 Z M 55.807 10.188 C 57.175 10.188 57.823 11.088 57.841 12.132 L 53.503 12.132 C 53.827 10.854 54.691 10.188 55.807 10.188 Z M 61.64 18 L 63.8 18 L 63.8 12.456 C 63.8 11.106 64.79 10.386 65.762 10.386 C 66.95 10.386 67.418 11.232 67.418 12.402 L 67.418 18 L 69.578 18 L 69.578 11.772 C 69.578 9.738 68.39 8.37 66.41 8.37 C 65.186 8.37 64.34 8.928 63.8 9.558 L 63.8 8.55 L 61.64 8.55 Z M 75.905 5.076 L 71.009 18 L 73.295 18 L 74.393 15.048 L 79.973 15.048 L 81.089 18 L 83.411 18 L 78.515 5.076 Z M 77.165 7.632 L 79.217 13.032 L 75.149 13.032 Z M 87.119 5.114 L 84.815 5.114 L 84.815 18.038 L 87.119 18.038 Z M 22.12 9.823 C 22.665 8.188 22.477 6.399 21.606 4.912 C 20.297 2.632 17.664 1.459 15.093 2.011 C 13.95 0.722 12.306 -0.01 10.583 0 C 7.955 -0.006 5.624 1.686 4.815 4.187 C 3.127 4.532 1.67 5.589 0.817 7.087 C -0.502 9.361 -0.202 12.228 1.561 14.178 C 1.016 15.812 1.204 17.602 2.075 19.089 C 3.384 21.369 6.017 22.542 8.588 21.99 C 9.731 23.279 11.375 24.011 13.098 24 C 15.727 24.007 18.06 22.313 18.868 19.81 C 20.557 19.465 22.014 18.408 22.867 16.91 C 24.184 14.636 23.883 11.772 22.121 9.822 Z M 13.099 22.432 C 12.047 22.433 11.028 22.065 10.22 21.391 C 10.256 21.371 10.32 21.336 10.361 21.31 L 15.141 18.55 C 15.385 18.411 15.535 18.151 15.534 17.87 L 15.534 11.133 L 17.553 12.299 C 17.575 12.309 17.589 12.33 17.592 12.354 L 17.592 17.934 C 17.589 20.415 15.58 22.426 13.099 22.432 Z M 3.436 18.304 C 2.909 17.394 2.719 16.327 2.9 15.291 C 2.935 15.312 2.997 15.35 3.041 15.375 L 7.82 18.135 C 8.063 18.277 8.363 18.277 8.606 18.135 L 14.44 14.766 L 14.44 17.099 C 14.442 17.123 14.43 17.146 14.412 17.161 L 9.581 19.951 C 7.429 21.19 4.681 20.453 3.437 18.304 Z M 2.178 7.872 C 2.703 6.96 3.532 6.263 4.519 5.9 C 4.519 5.942 4.517 6.014 4.517 6.065 L 4.517 11.586 C 4.515 11.867 4.665 12.127 4.909 12.266 L 10.743 15.634 L 8.723 16.8 C 8.703 16.814 8.678 16.816 8.655 16.806 L 3.824 14.015 C 1.676 12.771 0.94 10.024 2.177 7.873 Z M 18.773 11.734 L 12.939 8.365 L 14.958 7.2 C 14.979 7.186 15.004 7.184 15.027 7.194 L 19.858 9.983 C 22.009 11.226 22.746 13.977 21.504 16.128 C 20.978 17.039 20.15 17.736 19.164 18.099 L 19.164 12.414 C 19.166 12.133 19.017 11.874 18.774 11.734 Z M 20.783 8.709 C 20.748 8.687 20.685 8.649 20.641 8.624 L 15.862 5.864 C 15.62 5.722 15.319 5.722 15.077 5.864 L 9.242 9.233 L 9.242 6.9 C 9.241 6.876 9.252 6.853 9.271 6.838 L 14.102 4.051 C 16.254 2.81 19.005 3.548 20.245 5.701 C 20.769 6.61 20.959 7.674 20.781 8.709 Z M 8.144 12.866 L 6.124 11.7 C 6.102 11.689 6.088 11.668 6.085 11.644 L 6.085 6.065 C 6.086 3.581 8.102 1.568 10.586 1.569 C 11.637 1.569 12.654 1.938 13.461 2.61 C 13.425 2.63 13.362 2.665 13.32 2.69 L 8.54 5.45 C 8.296 5.589 8.146 5.849 8.147 6.13 L 8.144 12.864 Z M 9.242 10.5 L 11.841 9 L 14.439 10.5 L 14.439 13.5 L 11.841 15 L 9.242 13.5 Z\" fill=\"rgb(0,0,0)\"></path></svg>',withExternalLayout:true,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18d8ax0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.024 13.32\" overflow=\"visible\"><path d=\"M 0 6.66 C 0 10.584 2.52 13.32 6.012 13.32 C 9.504 13.32 12.024 10.584 12.024 6.66 C 12.024 2.736 9.504 0 6.012 0 C 2.52 0 0 2.736 0 6.66 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ke8dv9\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.416 9.252\" overflow=\"visible\"><path d=\"M 7.416 4.626 C 7.416 7.434 5.886 9.252 3.708 9.252 C 1.53 9.252 0 7.434 0 4.626 C 0 1.818 1.53 0 3.708 0 C 5.886 0 7.416 1.818 7.416 4.626 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-155q2rk\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.036 12.87\" overflow=\"visible\"><path d=\"M 4.878 9.828 C 7.524 9.828 9.036 7.596 9.036 4.914 C 9.036 2.232 7.524 0 4.878 0 C 3.654 0 2.754 0.486 2.16 1.188 L 2.16 0.18 L 0 0.18 L 0 12.87 L 2.16 12.87 L 2.16 8.64 C 2.754 9.342 3.654 9.828 4.878 9.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-75ylzh\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.752 6.048\" overflow=\"visible\"><path d=\"M 0 2.754 C 0 0.972 1.008 0 2.34 0 C 3.906 0 4.752 1.224 4.752 3.024 C 4.752 4.824 3.906 6.048 2.34 6.048 C 1.008 6.048 0 5.058 0 3.312 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-ikcwad\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 8.694 9.828\" overflow=\"visible\"><path d=\"M 4.59 9.828 C 6.48 9.828 7.974 8.838 8.64 7.182 L 6.786 6.48 C 6.498 7.452 5.652 7.992 4.59 7.992 C 3.204 7.992 2.232 7.002 2.07 5.382 L 8.694 5.382 L 8.694 4.662 C 8.694 2.07 7.236 0 4.5 0 C 1.764 0 0 2.142 0 4.914 C 0 7.83 1.89 9.828 4.59 9.828 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1s9fskc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.338 1.944\" overflow=\"visible\"><path d=\"M 2.304 0 C 3.672 0 4.32 0.9 4.338 1.944 L 0 1.944 C 0.324 0.666 1.188 0 2.304 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1kn303s\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.938 9.63\" overflow=\"visible\"><path d=\"M 0 9.63 L 2.16 9.63 L 2.16 4.086 C 2.16 2.736 3.15 2.016 4.122 2.016 C 5.31 2.016 5.778 2.862 5.778 4.032 L 5.778 9.63 L 7.938 9.63 L 7.938 3.402 C 7.938 1.368 6.75 0 4.77 0 C 3.546 0 2.7 0.558 2.16 1.188 L 2.16 0.18 L 0 0.18 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1gyhll0\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12.402 12.924\" overflow=\"visible\"><path d=\"M 4.896 0 L 0 12.924 L 2.286 12.924 L 3.384 9.972 L 8.964 9.972 L 10.08 12.924 L 12.402 12.924 L 7.506 0 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1sxbdph\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 4.068 5.4\" overflow=\"visible\"><path d=\"M 2.016 0 L 4.068 5.4 L 0 5.4 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ev0a40\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2.304 12.924\" overflow=\"visible\"><path d=\"M 2.304 0 L 0 0 L 0 12.924 L 2.304 12.924 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-18t8ohc\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 23.682 24\" overflow=\"visible\"><path d=\"M 22.12 9.823 C 22.665 8.188 22.477 6.399 21.606 4.912 C 20.297 2.632 17.664 1.459 15.093 2.011 C 13.95 0.722 12.306 -0.01 10.583 0 C 7.955 -0.006 5.624 1.686 4.815 4.187 C 3.127 4.532 1.67 5.589 0.817 7.087 C -0.502 9.361 -0.202 12.228 1.561 14.178 C 1.016 15.812 1.204 17.602 2.075 19.089 C 3.384 21.369 6.017 22.542 8.588 21.99 C 9.731 23.279 11.375 24.011 13.098 24 C 15.727 24.007 18.06 22.313 18.868 19.81 C 20.557 19.465 22.014 18.408 22.867 16.91 C 24.184 14.636 23.883 11.772 22.121 9.822 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-u4iti7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.373 11.299\" overflow=\"visible\"><path d=\"M 2.879 11.299 C 1.827 11.301 0.808 10.932 0 10.258 C 0.037 10.238 0.101 10.203 0.142 10.178 L 4.921 7.418 C 5.165 7.279 5.316 7.019 5.314 6.737 L 5.314 0 L 7.334 1.166 C 7.355 1.177 7.37 1.198 7.373 1.222 L 7.373 6.801 C 7.37 9.282 5.36 11.294 2.879 11.299 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-pf3r7e\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.607 5.786\" overflow=\"visible\"><path d=\"M 0.603 3.538 C 0.076 2.627 -0.114 1.561 0.067 0.524 C 0.102 0.545 0.164 0.584 0.208 0.609 L 4.987 3.369 C 5.23 3.511 5.53 3.511 5.773 3.369 L 11.607 0 L 11.607 2.333 C 11.609 2.357 11.597 2.38 11.579 2.395 L 6.748 5.184 C 4.596 6.423 1.848 5.687 0.604 3.538 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-10v42cm\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.166 10.912\" overflow=\"visible\"><path d=\"M 0.601 1.972 C 1.126 1.06 1.955 0.362 2.942 0 C 2.942 0.041 2.94 0.114 2.94 0.165 L 2.94 5.686 C 2.938 5.966 3.088 6.227 3.332 6.365 L 9.166 9.734 L 7.147 10.9 C 7.126 10.913 7.101 10.916 7.078 10.906 L 2.247 8.114 C 0.099 6.871 -0.637 4.124 0.6 1.973 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1yzbqy7\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 9.169 10.912\" overflow=\"visible\"><path d=\"M 5.834 4.547 L 0 1.178 L 2.02 0.012 C 2.04 -0.002 2.066 -0.004 2.088 0.006 L 6.92 2.795 C 9.071 4.038 9.808 6.79 8.565 8.941 C 8.04 9.851 7.212 10.549 6.225 10.912 L 6.225 5.226 C 6.227 4.946 6.078 4.686 5.835 4.547 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1898pwz\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 11.604 5.784\" overflow=\"visible\"><path d=\"M 11.541 5.26 C 11.505 5.238 11.443 5.201 11.399 5.175 L 6.62 2.415 C 6.377 2.273 6.077 2.273 5.835 2.415 L 0 5.784 L 0 3.452 C -0.001 3.428 0.01 3.404 0.029 3.389 L 4.859 0.602 C 7.011 -0.639 9.762 0.1 11.003 2.252 C 11.527 3.162 11.717 4.226 11.539 5.26 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1bdwbib\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 7.376 11.297\" overflow=\"visible\"><path d=\"M 2.06 11.297 L 0.039 10.13 C 0.017 10.12 0.003 10.099 0 10.075 L 0 4.496 C 0.002 2.012 2.017 -0.001 4.501 0 C 5.552 0 6.569 0.369 7.376 1.041 C 7.34 1.061 7.277 1.096 7.235 1.121 L 2.456 3.881 C 2.211 4.02 2.061 4.28 2.063 4.561 L 2.06 11.295 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ds8k7u\",opacity:1,requiresOverflowVisible:false,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 5.198 6.001\" overflow=\"visible\"><path d=\"M 0 1.501 L 2.599 0 L 5.198 1.5 L 5.198 4.501 L 2.599 6.001 L 0 4.501 Z\" fill=\"transparent\"></path></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18j8qz\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"Launching soon\"})}),className:\"framer-6tlyi7\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1umu6hs\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",children:\"ChatGPT Integration – AI That Works for You\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"ChatGPT Integration – AI That Works for You\"})}),className:\"framer-1mhyo0d\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Launch your own Comparison Shopping Service with full branding and full control. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Grow your business, increase visibility, and offer direct value to clients - under your brand.\"})]}),className:\"framer-849pau\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qzxwri\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+5261+1+140+-9.5+0+537+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+6420.4+1+0+100+0+0+378.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+5572+1+300+0+0+537+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11mhjy7-container\",nodeId:\"zi1EEpHyh\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"zi1EEpHyh\",layoutId:\"zi1EEpHyh\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WJRt2DHJi\"},implicitPathVariables:undefined},{href:{webPageId:\"WJRt2DHJi\"},implicitPathVariables:undefined},{href:{webPageId:\"WJRt2DHJi\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+5261+1+140+-9.5+0+537+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+6420.4+1+0+100+0+0+378.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+5572+1+300+0+0+537+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nm1dyz-container\",nodeId:\"dajhlWBs4\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{x3VJCjot0:resolvedLinks3[1]},TL7FTXdm2:{x3VJCjot0:resolvedLinks3[2]}},children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Learn more\",height:\"100%\",id:\"dajhlWBs4\",layoutId:\"dajhlWBs4\",MW1yzDpfo:false,variant:\"xKSSSfohv\",width:\"100%\",x3VJCjot0:resolvedLinks3[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1h63ddc\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1is7kfa\",\"data-border\":true,\"data-framer-name\":\"Card1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5261+1+120+4),pixelHeight:2156,pixelWidth:1448,positionX:\"left\",positionY:\"top\",sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) - 80px) * 1.4 - 8px, 1px)`,src:\"https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png\",srcSet:\"https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png?scale-down-to=1024 687w,https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png?scale-down-to=2048 1375w,https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png 1448w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6420.4+1+560.6+40+4),pixelHeight:2156,pixelWidth:1448,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 62px) * 1.2 - 8px, 1px)`,src:\"https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png\",srcSet:\"https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png?scale-down-to=1024 687w,https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png?scale-down-to=2048 1375w,https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png 1448w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5572+1+1179-1079+4),pixelHeight:2156,pixelWidth:1448,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) - 8px, 1px)`,src:\"https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png\",srcSet:\"https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png?scale-down-to=1024 687w,https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png?scale-down-to=2048 1375w,https://framerusercontent.com/images/atdccwcDogJw1JLxlMId69gRmk.png 1448w\"},className:\"framer-xjpr7x\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fiesnb\",\"data-border\":true,\"data-framer-name\":\"Vehicle Ads\",id:elementId4,ref:ref5,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nhil4s\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rgkdc4\",\"data-border\":true,\"data-framer-name\":\"Card1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6103+0+1051-951+4),pixelHeight:2088,pixelWidth:1364,positionX:\"left\",positionY:\"top\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) * 0.9499 - 8px, 1px)`,src:\"https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png\",srcSet:\"https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png?scale-down-to=1024 668w,https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png?scale-down-to=2048 1337w,https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png 1364w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7423+0+432.6+40+4),pixelHeight:2088,pixelWidth:1364,positionX:\"right\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 82px) * 1.1981 - 8px, 1px)`,src:\"https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png\",srcSet:\"https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png?scale-down-to=1024 668w,https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png?scale-down-to=2048 1337w,https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png 1364w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6753+0+1051-951+4),pixelHeight:2088,pixelWidth:1364,positionX:\"center\",positionY:\"top\",sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) * 0.9499 - 8px, 1px)`,src:\"https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png\",srcSet:\"https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png?scale-down-to=1024 668w,https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png?scale-down-to=2048 1337w,https://framerusercontent.com/images/oiXwiIIhVw9x6L0QEDrQb8AIPBA.png 1364w\"},className:\"framer-1moscau\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18856tm\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hcycch\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w5mqwm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6103+0+300+0+0+0+0),pixelHeight:64,pixelWidth:502,src:\"https://framerusercontent.com/images/ou0lrg3QpOfNODqTleeVBv7S11M.png\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7423+0+0+100+0+0+0+0),pixelHeight:64,pixelWidth:502,src:\"https://framerusercontent.com/images/ou0lrg3QpOfNODqTleeVBv7S11M.png\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:32,intrinsicWidth:251,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6753+0+300+0+0+0+0),pixelHeight:64,pixelWidth:502,src:\"https://framerusercontent.com/images/ou0lrg3QpOfNODqTleeVBv7S11M.png\"},className:\"framer-gu0102\",\"data-framer-name\":\"Google-vehicleads-horizontal\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5xv6by\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"Beta\"})}),className:\"framer-1vbgcc\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-khguof\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",children:\"Google Vehicle Ads – Sell More Cars, Automatically\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Google Vehicle Ads – Sell More Cars, Automatically\"})}),className:\"framer-2p5oyt\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"With Google Vehicle Ads, your car inventory appears directly in Google Search—matched with buyers ready to act.\"})}),className:\"framer-e957ym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15gjg4c\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+6103+0+300+0+0+409+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+7423+0+0+100+0+0+250.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+6753+0+300+0+0+409+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ldxa8f-container\",nodeId:\"rxesHWDFM\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"rxesHWDFM\",layoutId:\"rxesHWDFM\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"NbNyosAmR\"},implicitPathVariables:undefined},{href:{webPageId:\"NbNyosAmR\"},implicitPathVariables:undefined},{href:{webPageId:\"NbNyosAmR\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+6103+0+300+0+0+409+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+7423+0+0+100+0+0+250.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+6753+0+300+0+0+409+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1olqnj9-container\",nodeId:\"uIK5PmOSs\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{x3VJCjot0:resolvedLinks4[1]},TL7FTXdm2:{x3VJCjot0:resolvedLinks4[2]}},children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Learn more\",height:\"100%\",id:\"uIK5PmOSs\",layoutId:\"uIK5PmOSs\",MW1yzDpfo:false,variant:\"xKSSSfohv\",width:\"100%\",x3VJCjot0:resolvedLinks4[0]})})})})})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-189pgk9\",\"data-border\":true,\"data-framer-name\":\"AI Benefits\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zh2p4i\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-zb7uzw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LiX8QR1KH\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Rocket\",id:\"LiX8QR1KH\",layoutId:\"LiX8QR1KH\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"Leading platform\"})}),className:\"framer-vhznn1\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-39la0z\",\"data-styles-preset\":\"n6UYVQ_En\",children:\"Leading product listing solution\"})}),className:\"framer-a253sy\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q4ork7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-q2xfet\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-9ib85q-container\",isAuthoredByUser:true,nodeId:\"zkXxPvX_M\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Stack\",id:\"zkXxPvX_M\",layoutId:\"zkXxPvX_M\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Manage with ease\"})}),className:\"framer-3h8244\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Handle multiple clients and marketplaces with ease. Streamline your product listings from one powerful dashboard.\"})}),className:\"framer-19pwt50\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-adyei3\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-120gkdg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"gOksX2XGw\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Chat\",id:\"gOksX2XGw\",layoutId:\"gOksX2XGw\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Expert level support\"})}),className:\"framer-1scl5at\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Access professional guidance and personalized support to maximize your product visibility and sales performance across all channels\"})}),className:\"framer-16a2xqp\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j79gwz\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-15bfdaw-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"KqnusvEj8\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Percent\",id:\"KqnusvEj8\",layoutId:\"KqnusvEj8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Increase conversions\"})}),className:\"framer-wl1cqz\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Drive better results and higher conversions through our powerful platform. Unlock greater value from every listing and campaign.\"})}),className:\"framer-ergcvt\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-79breq\",\"data-border\":true,\"data-framer-name\":\"Workspaces\",id:elementId5,ref:ref6,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-h16j37\",\"data-border\":true,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hl4wg6\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lvhvy3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+7677.8+1+140+-11.5+0+0+0+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+9529.4+1+0+100+0+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,width:\"77.4194px\",y:(componentViewport?.y||0)+0+8455.8+1+300+0+0+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-40vv4n-container\",nodeId:\"oAY38Bcb0\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"oAY38Bcb0\",layoutId:\"oAY38Bcb0\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ctvhtb\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"workspaces\"})}),className:\"framer-iupq40\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1p3yil4\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",children:\"Get full control in your agency setup\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Get full control in your agency setup\"})}),className:\"framer-5qau0u\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Easily manage your clients with dedicated workspaces - each with separate stores, billing, and user access. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",children:\"Take full control of the setup, or let clients onboard themselves with ease.\"})]}),className:\"framer-1wvjyhk\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mew1v1\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+7677.8+1+140+-11.5+0+541+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+9529.4+1+0+100+0+0+382.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+8455.8+1+300+0+0+541+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ln6vq3-container\",nodeId:\"a4kK9qfB7\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started\",height:\"100%\",id:\"a4kK9qfB7\",layoutId:\"a4kK9qfB7\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"L6lS71A3g\"},implicitPathVariables:undefined},{href:{webPageId:\"L6lS71A3g\"},implicitPathVariables:undefined},{href:{webPageId:\"L6lS71A3g\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+7677.8+1+140+-11.5+0+541+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+9529.4+1+0+100+0+0+382.6+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+8455.8+1+300+0+0+541+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-3u1dbz-container\",nodeId:\"QwEO4VyoN\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{x3VJCjot0:resolvedLinks5[1]},TL7FTXdm2:{x3VJCjot0:resolvedLinks5[2]}},children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Learn more\",height:\"100%\",id:\"QwEO4VyoN\",layoutId:\"QwEO4VyoN\",MW1yzDpfo:false,variant:\"xKSSSfohv\",width:\"100%\",x3VJCjot0:resolvedLinks5[0]})})})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11slej9\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-xogyxh\",\"data-border\":true,\"data-framer-name\":\"Card1\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7677.8+1+120+4),pixelHeight:1104,pixelWidth:1182,positionX:\"left\",positionY:\"top\",sizes:`max((max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) - 80px) * 1.4 - 8px, 1px)`,src:\"https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg\",srcSet:\"https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg 1182w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9529.4+1+564.6+40+4),pixelHeight:1104,pixelWidth:1182,positionX:\"left\",positionY:\"top\",sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 62px) * 1.2 - 8px, 1px)`,src:\"https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg\",srcSet:\"https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg 1182w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8455.8+1+1183-735+4),pixelHeight:1104,pixelWidth:1182,sizes:`max(max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 2px) / 2, 1px) - 8px, 1px)`,src:\"https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg\",srcSet:\"https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/X4jyB7GdxdocFrEdMElf6kodkNY.jpg 1182w\"},className:\"framer-1du9026\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z5ii7m\",\"data-border\":true,\"data-framer-name\":\"Benefits\",id:elementId6,ref:ref7,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dbjzp0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hvte7p\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xd18b1\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tjrr6n-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"xc8xkzO2n\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Question\",id:\"xc8xkzO2n\",layoutId:\"xc8xkzO2n\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"who is it for?\"})}),className:\"framer-x9v7k0\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Who Can Benefit From Cobiro?\"})}),className:\"framer-14oslr9\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Cobiro empowers digital agencies, freelance marketers, e-commerce businesses, and online retailers who need to efficiently manage Google CSS ads and product listings across multiple clients, stores, or marketplaces.\"})}),className:\"framer-n8d9zf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+8519.8+200+0+0+233.6},TL7FTXdm2:{y:(componentViewport?.y||0)+0+10536+100+0+0+223.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,y:(componentViewport?.y||0)+0+9640.8+200+0+0+233.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-as7fp9-container\",nodeId:\"eEJPm31q1\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started today\",height:\"100%\",id:\"eEJPm31q1\",layoutId:\"eEJPm31q1\",MW1yzDpfo:true,variant:\"V39l05Ou3\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2trs69\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vq385f\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i5y15v\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ystmrw-container\",isAuthoredByUser:true,nodeId:\"vNbS8Dl0K\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ShoppingBag\",id:\"vNbS8Dl0K\",layoutId:\"vNbS8Dl0K\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"Online stores\"})}),className:\"framer-2g89hf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Save 20% on Google Shopping Ads and get free listings on major comparison sites through our certified CSS partnership. More visibility, lower costs, better ROI for your online store.\"})}),className:\"framer-16eoudm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vq6etg\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1pnclwt-container\",isAuthoredByUser:true,nodeId:\"EHuPmy8YO\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"MegaphoneSimple\",id:\"EHuPmy8YO\",layoutId:\"EHuPmy8YO\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"Marketing agencies\"})}),className:\"framer-1bgnd4e\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Give clients 20% Google Shopping Ads savings and free product listings with no additional effort. Our CSS partnership delivers immediate value that sets your agency apart from competitors.\"})}),className:\"framer-3klvux\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1o7040e\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-l70qik-container\",isAuthoredByUser:true,nodeId:\"sE0JGMDkQ\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Globe\",id:\"sE0JGMDkQ\",layoutId:\"sE0JGMDkQ\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"Web agencies\"})}),className:\"framer-1dd1ga1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Add marketing services to your web offerings effortlessly. Provide clients with 20% Google Shopping Ads savings and free listings while generating additional revenue with zero extra overhead or learning curve.\"})}),className:\"framer-jxj64q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ox0un3\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lkgy7c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1rqnm6f\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1l2dinu-container\",isAuthoredByUser:true,nodeId:\"zZ1M7A7Oe\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"ReadCvLogo\",id:\"zZ1M7A7Oe\",layoutId:\"zZ1M7A7Oe\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"Marketers\"})}),className:\"framer-10q4t0d\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Elevate your marketing services with guaranteed client savings. Provide 20% reduced Google Shopping Ads costs and free product listings effortlessly. Our CSS solution adds instant credibility and results to your professional toolkit.\"})}),className:\"framer-1kn0k6k\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tuy77v\",\"data-border\":true,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-x14zlj-container\",isAuthoredByUser:true,nodeId:\"YDdrv_Zrb\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Users\",id:\"YDdrv_Zrb\",layoutId:\"YDdrv_Zrb\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"Freelancers\"})}),className:\"framer-1vxew76\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Scale your freelance business by delivering 20% Google Shopping Ads savings and free product listings to clients. Our CSS partnership requires no extra effort while boosting your value proposition and client retention.\"})}),className:\"framer-1dg1zl8\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rh0yuh\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12pfyvv-container\",isAuthoredByUser:true,nodeId:\"udtzumPdp\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Car\",id:\"udtzumPdp\",layoutId:\"udtzumPdp\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"light\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"Car dealers\"})}),className:\"framer-r9tdj5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"Put your inventory in front of serious car buyers with Google Vehicle Ads. Get premium exposure across Google Search and Maps while accessing new sales channels that convert browsers into customers.\"})}),className:\"framer-j2sgoi\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8519.8+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}},TL7FTXdm2:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+10536+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9640.8+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"},className:\"framer-1w7eiv1\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ifzl4\",\"data-border\":true,\"data-framer-name\":\"Success Stories\",id:elementId7,ref:ref8,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xjypmb\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-475ktw\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufvmqb\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-162xsz8-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ZtDpiblGX\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Heart\",id:\"ZtDpiblGX\",layoutId:\"ZtDpiblGX\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"testimonials\"})}),className:\"framer-152ve7e\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",style:{\"--framer-text-alignment\":\"center\"},children:\"Customer success stories\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"Customer success stories\"})}),className:\"framer-1q9ib5n\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"At Cobiro, we've helped thousands of businesses achieve measurable results through simplified Google Shopping and advertising campaign management.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"At Cobiro, we've helped thousands of businesses achieve measurable results through simplified Google Shopping and advertising campaign management.\"})}),className:\"framer-ksqjqw\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+0+0+378},TL7FTXdm2:{y:(componentViewport?.y||0)+0+12609.4+100+0+0+233.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,y:(componentViewport?.y||0)+0+11069+200+0+0+378,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4sebcx-container\",nodeId:\"QprsR16FQ\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Ticker,{height:\"100%\",id:\"QprsR16FQ\",layoutId:\"QprsR16FQ\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7tc56v\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1euy4ba\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+0},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-umbouc-container\",nodeId:\"b2NF3IfHu\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"b2NF3IfHu\",layoutId:\"b2NF3IfHu\",NCNETRBz1:\"Steeve Belair\",p8N7EsbC8:'\"For a reasonable cost, it allows them to benefit from the 20% discount on clicks. The majority of e-commerce clients are interested and this brings therefore an additional service to my clients that they would not have had normally because they are often reserved for the biggest advertisers.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:808,pixelWidth:776,src:\"https://framerusercontent.com/images/ppjOPvTOQxLE4BIVZNPo3dt8Vhw.png\",srcSet:\"https://framerusercontent.com/images/ppjOPvTOQxLE4BIVZNPo3dt8Vhw.png 776w\"},\"\"),width:\"100%\",zP5dT1MY1:\"Freelance Google Ads Consultant\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+254},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+0+0+254}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+254,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10hz3il-container\",nodeId:\"ePhtGni5O\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"ePhtGni5O\",layoutId:\"ePhtGni5O\",NCNETRBz1:\"Bj\\xf8rn Stoklund\",p8N7EsbC8:'\"After working with various competitors in the CSS industry, we were recommended Cobiro Whitelabel CSS solution – and have not looked back since. With increasing competitiveness in the online advertising landscape, reliability in your tech stack is at the essence. Working with Cobiro, our CSS solution has become a competitive edge, giving us an advantage in volatile markets. The Whitelabel solution is a straightforward and easy-to-use plug-and-play platform. Any concerns or questions are taken care of with first-class support.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:296,pixelWidth:292,src:\"https://framerusercontent.com/images/GfLDIoaSEBeJJLOlq2ilUkord1o.png\"},\"\"),width:\"100%\",zP5dT1MY1:\"Fremgang.nu\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+508},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+0+0+508}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+508,children:/*#__PURE__*/_jsx(Container,{className:\"framer-103mh0m-container\",nodeId:\"gRhTMgjyi\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"gRhTMgjyi\",layoutId:\"gRhTMgjyi\",NCNETRBz1:\"Nicola Lampitelli\",p8N7EsbC8:'\"I took full advantage of the solution’s features, significantly improving performance, lowering costs, and increasing the return on investment. It gave me the opportunity to be much more efficient and quicker in managing campaigns.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:690,pixelWidth:754,src:\"https://framerusercontent.com/images/QhtKEUjxgW9ldrWFhLZyMamKhoE.png\",srcSet:\"https://framerusercontent.com/images/QhtKEUjxgW9ldrWFhLZyMamKhoE.png?scale-down-to=512 512w,https://framerusercontent.com/images/QhtKEUjxgW9ldrWFhLZyMamKhoE.png 754w\"},\"\"),width:\"100%\",zP5dT1MY1:\"Grow Marketing\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6ejbm\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+0},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+762+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1pb4p-container\",nodeId:\"gGHPFgBvS\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"gGHPFgBvS\",layoutId:\"gGHPFgBvS\",NCNETRBz1:\"Christian Sigersted\",p8N7EsbC8:'\"I can highly recommend Cobiro’s Whitelabel solution to others, though, to be honest, we almost feel like keeping it to ourselves! We’re extremely happy with them, and their solution, approach, and service give us a real competitive advantage in an ultra-competitive marketing industry.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:750,pixelWidth:750,src:\"https://framerusercontent.com/images/23B2w9A1rGWGmdkvU7J35cSkHjc.png\",srcSet:\"https://framerusercontent.com/images/23B2w9A1rGWGmdkvU7J35cSkHjc.png?scale-down-to=512 512w,https://framerusercontent.com/images/23B2w9A1rGWGmdkvU7J35cSkHjc.png 750w\"},\"\"),width:\"100%\",zP5dT1MY1:\"Nordic Ad Partner\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+254},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+762+0+254}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+254,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m8l8au-container\",nodeId:\"Tj88Zy4KJ\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"Tj88Zy4KJ\",layoutId:\"Tj88Zy4KJ\",NCNETRBz1:\"Tiegan Wright\",p8N7EsbC8:'\"The solution is easy to use. When there were challenges with setup, the team were responsive and helpful. We have been able to implement new clients on our own since with the guidance received.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:614,pixelWidth:610,src:\"https://framerusercontent.com/images/GjUtP2W2d4jdWHWxpCUYL2xPC8.png\",srcSet:\"https://framerusercontent.com/images/GjUtP2W2d4jdWHWxpCUYL2xPC8.png 610w\"},\"\"),width:\"100%\",zP5dT1MY1:\"ProfitSpring\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+508},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+762+0+508}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+508,children:/*#__PURE__*/_jsx(Container,{className:\"framer-p5pgi-container\",nodeId:\"NEfXRxKTl\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"NEfXRxKTl\",layoutId:\"NEfXRxKTl\",NCNETRBz1:\"Daniel Woltersdorf\",p8N7EsbC8:'\"Cobiro is easy to work with, onboarding new clients is super simple and their support is fast and reliable. With the benefit of 20% discount on Google Shopping Ads, Cobiro CSS Shopping campaigns are highly efficient, which is why Cobiro is ultimately our most used Comparison Shopping Partner.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/llciBNa4bnm71wzpOy7QMLvhg.png\",srcSet:\"https://framerusercontent.com/images/llciBNa4bnm71wzpOy7QMLvhg.png?scale-down-to=512 512w,https://framerusercontent.com/images/llciBNa4bnm71wzpOy7QMLvhg.png 800w\"},\"\"),width:\"100%\",zP5dT1MY1:\"Eprofessional\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+9932+200+470+0+0+762},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+12609.4+100+325.6+0+762+0+762}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:234,width:`max((min(${componentViewport?.width||\"100vw\"}, 1300px) - 100px) / 2, 1px)`,y:(componentViewport?.y||0)+0+11069+200+470+0+0+762,children:/*#__PURE__*/_jsx(Container,{className:\"framer-168u4mn-container\",nodeId:\"WvxYjzvWP\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(CardTestimonial,{height:\"100%\",id:\"WvxYjzvWP\",layoutId:\"WvxYjzvWP\",NCNETRBz1:\"Krzysztof Czyżykiewicz\",p8N7EsbC8:'\"This solution actually generates either budget savings or an increase in the market share of the advertised product, and sometimes both simultaneously.\"',style:{width:\"100%\"},vcU4RmiWu:addImageAlt({pixelHeight:800,pixelWidth:799,src:\"https://framerusercontent.com/images/aS5ycZBddxg7Y11AaTj1BfE1W0.png\",srcSet:\"https://framerusercontent.com/images/aS5ycZBddxg7Y11AaTj1BfE1W0.png 799w\"},\"\"),width:\"100%\",zP5dT1MY1:\"Orange Juice\"})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+9932+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}},TL7FTXdm2:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12609.4+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11069+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"},className:\"framer-1bkbu0u\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-blve7h\",\"data-border\":true,\"data-framer-name\":\"Voucher\",id:elementId8,ref:ref9,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xa33kq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mt3s2a\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-87h09j\",\"data-border\":true,\"data-framer-name\":\"Variant 1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hopefz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RNJqtsi1L\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gift\",id:\"RNJqtsi1L\",layoutId:\"RNJqtsi1L\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--token-83cef9d4-3c46-419d-8669-b6d8eb0ddd23, rgb(153, 161, 175))\",\"--framer-text-transform\":\"uppercase\"},children:\"Google Ads GIFT\"})}),className:\"framer-1ckbadz\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-1nfmpk8\",\"data-styles-preset\":\"x9a4zkevd\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Get up to €3,600 Google Ads Credits\",/*#__PURE__*/_jsx(\"br\",{}),\"on new setup\"]})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:[\"Get up to €3,600 Google Ads Credits\",/*#__PURE__*/_jsx(\"br\",{}),\"on new setup\"]})}),className:\"framer-n6938q\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1udz3im\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-178pq8d\",\"data-border\":true,\"data-framer-name\":\"Reward\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-mq4i2z\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c6d650a6-99b3-4a58-a6c6-64f816a45779, rgb(30, 41, 57))\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Cobiro is an \"}),\"official Google Partner\"]})}),className:\"framer-1vcowey\",fonts:[\"Inter-SemiBold\",\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d574hy\",\"data-border\":true,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",backgroundSize:.9,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11798+200+290+0+0+2+122+-1),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}},TL7FTXdm2:{background:{alt:\"\",backgroundSize:.9,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14893+100+131.6+0+0+2+122+0),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.9,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12935+200+290+0+0+2+122+-1),pixelHeight:126,pixelWidth:126,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"},className:\"framer-mut2ps\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qpxv2y\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgkmrk\",\"data-framer-name\":\"Google Partner Logo\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:872,intrinsicWidth:911,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11798+200+290+0+0+2+122+32+0+0+0+1+0),pixelHeight:1744,pixelWidth:1822,sizes:\"120px\",src:\"https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png 1822w\"}},TL7FTXdm2:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:872,intrinsicWidth:911,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14893+100+131.6+0+0+2+122+32+0+0+0+1+0),pixelHeight:1744,pixelWidth:1822,sizes:\"120px\",src:\"https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png 1822w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:872,intrinsicWidth:911,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12935+200+290+0+0+2+122+32+0+0+0+1+0),pixelHeight:1744,pixelWidth:1822,sizes:\"120px\",src:\"https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=1024\",srcSet:\"https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=512 512w,https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Bk1lKlobPY74V0fxGOI8ukQPfw.png 1822w\"},className:\"framer-152nvev\",\"data-framer-name\":\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pojxfy\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-aw6o80\",\"data-styles-preset\":\"YLggwIq8d\",children:\"How to claim your coupon\"})}),className:\"framer-18qbh6h\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\"},children:\"It's super easy to get started with Cobiro. Simply create a new Google CSS Ads account with Cobiro and redeem your coupon.\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"It's super easy to get started with Cobiro. Simply create a new Google CSS Ads account with Cobiro and redeem your coupon.\"})}),className:\"framer-171p9ue\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vs116s\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15quwyp\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"1. Create Google CSS Ads account\"})}),className:\"framer-19k2so9\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-iyfxfg-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zOpJxJNbV\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{weight:\"light\"}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Link\",id:\"zOpJxJNbV\",layoutId:\"zOpJxJNbV\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qq2fc1\",\"data-border\":true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\"},children:\"2. Redeem your €3,600 coupon\"})}),className:\"framer-cfe7iw\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y5tzxu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"myqPj1RQo\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{weight:\"light\"}},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-f4ca4c68-f1d8-4304-a37a-addc920bec02, rgb(16, 24, 40))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Gift\",id:\"myqPj1RQo\",layoutId:\"myqPj1RQo\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+11798+200+290+0+0+2+122+32+0+0+292.3+0+222},TL7FTXdm2:{width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px, 400px) - 68px)`,y:(componentViewport?.y||0)+0+14893+100+131.6+0+0+2+122+32+0+0+306.3+0+222}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:42,width:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1300px), 400px) - 68px)`,y:(componentViewport?.y||0)+0+12935+200+290+0+0+2+122+32+0+0+292.3+0+222,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1f0g9gd-container\",nodeId:\"fHVkSb5qL\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(Button,{C8ZEriYnp:false,fe4GJnYsL:\"Get started today\",height:\"100%\",id:\"fHVkSb5qL\",layoutId:\"fHVkSb5qL\",MW1yzDpfo:true,style:{width:\"100%\"},variant:\"gSCloSumB\",width:\"100%\",x3VJCjot0:\"https://app.cobiro.com/\"})})})})]})]})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+11798+200+290+127.0642},TL7FTXdm2:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1300px) - 40px)`,y:(componentViewport?.y||0)+0+14893+100+131.6+134.0438}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:490,width:`min(${componentViewport?.width||\"100vw\"}, 1300px)`,y:(componentViewport?.y||0)+0+12935+200+290+127.0642,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ba14v6-container\",nodeId:\"f2t1lEdYV\",scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(TickerBG,{height:\"100%\",id:\"f2t1lEdYV\",layoutId:\"f2t1lEdYV\",style:{width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+11798+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}},TL7FTXdm2:{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+14893+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.91,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+12935+0),pixelHeight:126,pixelWidth:126,positionX:\"center\",positionY:\"top\",src:\"https://framerusercontent.com/images/9c47fOR3CNoSsEtr6IEYJoKM.svg\"},className:\"framer-7o772\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{TL7FTXdm2:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:[\"Cobiro has a total of $10M monthly Google Ads credits allocated. Amount depends on your country and ad spend level - from €360 credit (€360 spend) to €3.6K credit (€7.2K spend).\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Google Credits are only available for advertisers who have not used Google Ads before.\"}),/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-1ycvgd5\",\"data-styles-preset\":\"Ca1Ilnmdg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:[\"Click \",/*#__PURE__*/_jsx(Link,{href:\"https://ads.google.com/home/terms-and-conditions/incentives/\",motionChild:true,nodeId:\"ouEVx9le5\",openInNewTab:true,relValues:[],scopeId:\"jZStaBNBa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4x5vnl\",\"data-styles-preset\":\"EWK96ifoc\",children:\"here\"})}),\" for full terms and conditions.\"]})]}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:[\"Cobiro has a total of $10M monthly Google Ads credits allocated. Amount depends on your country and ad spend level - from €360 credit (€360 spend) to €3.6K credit (€7.2K spend).\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{className:\"trailing-break\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:\"Google Credits are only available for advertisers who have not used Google Ads before.\"}),/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlERTBMQ0FpZDJkb2RDSWdORFV3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-variation-axes\":'\"opsz\" 14, \"wght\" 450',\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4606d0df-97cc-41da-899a-acbe1d7fb22c, rgb(106, 114, 130))\"},children:[\"Click \",/*#__PURE__*/_jsx(Link,{href:\"https://ads.google.com/home/terms-and-conditions/incentives/\",motionChild:true,nodeId:\"ouEVx9le5\",openInNewTab:true,relValues:[],scopeId:\"jZStaBNBa\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-4x5vnl\",\"data-styles-preset\":\"EWK96ifoc\",children:\"here\"})}),\" for full terms and conditions.\"]})]}),className:\"framer-1w55fo6\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pi6jp1\",\"data-framer-name\":\"Pricing\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{y:(componentViewport?.y||0)+0+13588.3+0},TL7FTXdm2:{y:(componentViewport?.y||0)+0+16420.9+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:1232,width:`min(max(${componentViewport?.width||\"100vw\"}, 1px), 1300px)`,y:(componentViewport?.y||0)+0+14725.3+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18rdf0w-container\",id:elementId9,nodeId:\"jcOsQLcfz\",ref:ref10,scopeId:\"jZStaBNBa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BTnhmb2K1:{variant:\"M4nPNyo3k\"},TL7FTXdm2:{variant:\"BetBqo06t\"}},children:/*#__PURE__*/_jsx(SectionPricing,{height:\"100%\",id:\"jcOsQLcfz\",layoutId:\"jcOsQLcfz\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"FDyvRTNql\",width:\"100%\"})})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-dQPQ9.framer-1nymtju, .framer-dQPQ9 .framer-1nymtju { display: block; }\",\".framer-dQPQ9.framer-1m1di90 { align-content: center; align-items: center; background-color: var(--token-7cebef55-9e65-4de1-a982-bf37a8137312, #ffffff); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1300px; }\",\".framer-dQPQ9 .framer-4kzavl { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-17bdr10 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 28.000000000000004%, rgba(0, 0, 0, 0.2) 50.02111486486487%, rgba(0,0,0,1) 100%) add; flex: none; height: 40%; mask: linear-gradient(0deg, rgba(0,0,0,0) 28.000000000000004%, rgba(0, 0, 0, 0.2) 50.02111486486487%, rgba(0,0,0,1) 100%) add; opacity: 0.04; overflow: hidden; position: absolute; right: 0px; top: 70px; width: 100%; z-index: 0; }\",\".framer-dQPQ9 .framer-xp8k03 { --border-bottom-width: 0px; --border-color: #f0f1f3; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: auto; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-dQPQ9 .framer-1uc0lbq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: 640px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-oq03j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 1px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dQPQ9 .framer-16s97pr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-12p77y2, .framer-dQPQ9 .framer-1hsjhtd, .framer-dQPQ9 .framer-1yf2pf4, .framer-dQPQ9 .framer-yoeqq6, .framer-dQPQ9 .framer-cu1s0g, .framer-dQPQ9 .framer-1kjftxt, .framer-dQPQ9 .framer-849pau, .framer-dQPQ9 .framer-e957ym, .framer-dQPQ9 .framer-a253sy, .framer-dQPQ9 .framer-1wvjyhk, .framer-dQPQ9 .framer-14oslr9, .framer-dQPQ9 .framer-18qbh6h { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-13bt3ql, .framer-dQPQ9 .framer-vthgnm, .framer-dQPQ9 .framer-1t5c0j, .framer-dQPQ9 .framer-122wkx6, .framer-dQPQ9 .framer-qzxwri, .framer-dQPQ9 .framer-15gjg4c, .framer-dQPQ9 .framer-mew1v1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-15sonfd-container, .framer-dQPQ9 .framer-1lvkt0b-container, .framer-dQPQ9 .framer-2n9buy-container, .framer-dQPQ9 .framer-d2b28a-container, .framer-dQPQ9 .framer-5hnjf7-container, .framer-dQPQ9 .framer-1yzxy4t-container, .framer-dQPQ9 .framer-du4huv-container, .framer-dQPQ9 .framer-11mhjy7-container, .framer-dQPQ9 .framer-nm1dyz-container, .framer-dQPQ9 .framer-ldxa8f-container, .framer-dQPQ9 .framer-1olqnj9-container, .framer-dQPQ9 .framer-1ln6vq3-container, .framer-dQPQ9 .framer-3u1dbz-container, .framer-dQPQ9 .framer-as7fp9-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-dQPQ9 .framer-zuk8hk-container { flex: none; height: auto; max-width: 440px; position: relative; width: 100%; z-index: 1; }\",\".framer-dQPQ9 .framer-de7d6 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-dQPQ9 .framer-1s1g0dw { --border-bottom-width: 1px; --border-color: rgba(229, 231, 235, 0.5); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: rgba(249, 250, 251, 0.5); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 640px; justify-content: flex-end; overflow: hidden; padding: 10px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-dQPQ9 .framer-1q0giww { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 27%; overflow: visible; padding: 4px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 3; }\",\".framer-dQPQ9 .framer-11pv2w6, .framer-dQPQ9 .framer-klzcsn, .framer-dQPQ9 .framer-1a9s5zz { align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-1ot5831 { align-content: center; align-items: center; background-color: #f3f5f7; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 150px; }\",\".framer-dQPQ9 .framer-1wugzh7 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 142px); overflow: visible; position: relative; width: 142px; }\",\".framer-dQPQ9 .framer-1m20qhu { height: 20px; left: 120px; position: absolute; top: 10px; width: 20px; }\",\".framer-dQPQ9 .framer-18pve8c { height: 7px; left: 6px; position: absolute; top: 0px; width: 14px; }\",\".framer-dQPQ9 .framer-y7ling { height: 14px; left: 8px; position: absolute; top: 1px; width: 13px; }\",\".framer-dQPQ9 .framer-16h5tsx { height: 11px; left: 0px; position: absolute; top: 5px; width: 8px; }\",\".framer-dQPQ9 .framer-1ikrxco { height: 8px; left: 4px; position: absolute; top: 13px; width: 12px; }\",\".framer-dQPQ9 .framer-101xy4m { height: 9px; left: 7px; position: absolute; top: 6px; width: 8px; }\",\".framer-dQPQ9 .framer-1kj3jwt { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 15px 10px 15px 10px; position: relative; width: auto; }\",\".framer-dQPQ9 .framer-7d1gl8, .framer-dQPQ9 .framer-362pul, .framer-dQPQ9 .framer-t33y4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-h0atcy, .framer-dQPQ9 .framer-y47mu8, .framer-dQPQ9 .framer-10uhswv, .framer-dQPQ9 .framer-lsy1j9, .framer-dQPQ9 .framer-6e014r, .framer-dQPQ9 .framer-1hgkdc7, .framer-dQPQ9 .framer-3l1q7x, .framer-dQPQ9 .framer-l2qh5d, .framer-dQPQ9 .framer-toxn38, .framer-dQPQ9 .framer-63y3pa, .framer-dQPQ9 .framer-hpxrcv, .framer-dQPQ9 .framer-k3dwm2, .framer-dQPQ9 .framer-1yfn0yt, .framer-dQPQ9 .framer-fn3mhe, .framer-dQPQ9 .framer-i5k9vt, .framer-dQPQ9 .framer-kwk6uu, .framer-dQPQ9 .framer-gv7611, .framer-dQPQ9 .framer-3h8244, .framer-dQPQ9 .framer-1scl5at, .framer-dQPQ9 .framer-wl1cqz, .framer-dQPQ9 .framer-2g89hf, .framer-dQPQ9 .framer-1bgnd4e, .framer-dQPQ9 .framer-1dd1ga1, .framer-dQPQ9 .framer-10q4t0d, .framer-dQPQ9 .framer-1vxew76, .framer-dQPQ9 .framer-r9tdj5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dQPQ9 .framer-gdq88d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1g1rkji-container, .framer-dQPQ9 .framer-1wzqmsq-container, .framer-dQPQ9 .framer-1der295-container, .framer-dQPQ9 .framer-t2dean-container, .framer-dQPQ9 .framer-1vj8gyi-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-dQPQ9 .framer-tiyu8b, .framer-dQPQ9 .framer-19k2so9, .framer-dQPQ9 .framer-cfe7iw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-dQPQ9 .framer-17hsuu0, .framer-dQPQ9 .framer-9ngfcm, .framer-dQPQ9 .framer-1edzxqw, .framer-dQPQ9 .framer-iv3w5w, .framer-dQPQ9 .framer-mgcbja, .framer-dQPQ9 .framer-18j0dpd, .framer-dQPQ9 .framer-g2z8hm, .framer-dQPQ9 .framer-6tlyi7, .framer-dQPQ9 .framer-1vbgcc, .framer-dQPQ9 .framer-vhznn1, .framer-dQPQ9 .framer-iupq40, .framer-dQPQ9 .framer-x9v7k0, .framer-dQPQ9 .framer-152ve7e, .framer-dQPQ9 .framer-1ckbadz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-dQPQ9 .framer-1bl9fld { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 54%; overflow: visible; padding: 4px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 2; }\",\".framer-dQPQ9 .framer-e7f8df { align-content: center; align-items: center; background-color: #fafafa; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 150px; }\",\".framer-dQPQ9 .framer-uzv2ha { flex: none; height: 118px; overflow: visible; position: relative; width: 86px; }\",\".framer-dQPQ9 .framer-ne3rbe { height: 16px; left: 127px; opacity: 0.7; position: absolute; top: 7px; width: 16px; }\",\".framer-dQPQ9 .framer-17q32nd { height: 4px; left: 6px; position: absolute; top: 2px; width: 8px; }\",\".framer-dQPQ9 .framer-1tfhue9 { height: 7px; left: 9px; position: absolute; top: 5px; width: 6px; }\",\".framer-dQPQ9 .framer-pbknee { height: 8px; left: 4px; position: absolute; top: 1px; width: 5px; }\",\".framer-dQPQ9 .framer-zdneo1 { height: 5px; left: 6px; position: absolute; top: 6px; width: 4px; }\",\".framer-dQPQ9 .framer-ktahqr { height: 8px; left: 8px; position: absolute; top: 8px; width: 5px; }\",\".framer-dQPQ9 .framer-191q4yq { height: 7px; left: 1px; position: absolute; top: 4px; width: 6px; }\",\".framer-dQPQ9 .framer-15dgryn { height: 4px; left: 2px; position: absolute; top: 10px; width: 8px; }\",\".framer-dQPQ9 .framer-1jom8u0 { height: 16px; left: 0px; position: absolute; top: 0px; width: 16px; }\",\".framer-dQPQ9 .framer-7nnclj, .framer-dQPQ9 .framer-1byschp { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 20px 10px 20px 10px; position: relative; width: auto; }\",\".framer-dQPQ9 .framer-8n8qw { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 79%; overflow: visible; padding: 4px; position: absolute; top: 50%; transform: translate(-50%, -50%); width: min-content; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-dQPQ9 .framer-15ddn20 { align-content: flex-end; align-items: flex-end; background-color: #f3f5f7; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 150px; justify-content: center; overflow: hidden; padding: 15px; position: relative; width: 150px; }\",\".framer-dQPQ9 .framer-8yfnvi { flex: none; height: 91px; overflow: visible; position: relative; width: 135px; }\",\".framer-dQPQ9 .framer-8wk5lo { aspect-ratio: 1.926553672316384 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 29px); left: 86px; overflow: visible; position: absolute; top: 8px; width: 56px; z-index: 1; }\",\".framer-dQPQ9 .framer-hclzx1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-uohg1m { --border-bottom-width: 1px; --border-color: var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 0.6021873017743928px 0.84306222248415px -1.25px rgba(0, 0, 0, 0.18), 0px 2.288533303243457px 3.20394662454084px -2.5px rgba(0, 0, 0, 0.16), 0px 10px 14px -3.75px rgba(0, 0, 0, 0.06); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 6px 8px 6px 8px; position: relative; width: min-content; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-dQPQ9 .framer-10ht226 { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-10kkg81, .framer-dQPQ9 .framer-dbjzp0, .framer-dQPQ9 .framer-xjypmb, .framer-dQPQ9 .framer-1xa33kq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-z6qgc6-container, .framer-dQPQ9 .framer-4sebcx-container, .framer-dQPQ9 .framer-umbouc-container, .framer-dQPQ9 .framer-10hz3il-container, .framer-dQPQ9 .framer-103mh0m-container, .framer-dQPQ9 .framer-1d1pb4p-container, .framer-dQPQ9 .framer-1m8l8au-container, .framer-dQPQ9 .framer-p5pgi-container, .framer-dQPQ9 .framer-168u4mn-container, .framer-dQPQ9 .framer-1f0g9gd-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-qxfeue, .framer-dQPQ9 .framer-fclrl5, .framer-dQPQ9 .framer-q4ork7, .framer-dQPQ9 .framer-1vq385f, .framer-dQPQ9 .framer-lkgy7c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1q5hkx6, .framer-dQPQ9 .framer-1iccypo, .framer-dQPQ9 .framer-azneke, .framer-dQPQ9 .framer-cw7w97, .framer-dQPQ9 .framer-q2xfet, .framer-dQPQ9 .framer-j79gwz { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-dQPQ9 .framer-1026kg3, .framer-dQPQ9 .framer-1pk8c9p, .framer-dQPQ9 .framer-18czva8, .framer-dQPQ9 .framer-lhrrqn, .framer-dQPQ9 .framer-1kjzh8g, .framer-dQPQ9 .framer-1jfi6p7, .framer-dQPQ9 .framer-3o4sif, .framer-dQPQ9 .framer-1h76omn, .framer-dQPQ9 .framer-1mhyo0d, .framer-dQPQ9 .framer-2p5oyt, .framer-dQPQ9 .framer-19pwt50, .framer-dQPQ9 .framer-16a2xqp, .framer-dQPQ9 .framer-ergcvt, .framer-dQPQ9 .framer-5qau0u, .framer-dQPQ9 .framer-1q9ib5n, .framer-dQPQ9 .framer-n6938q, .framer-dQPQ9 .framer-1vcowey { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dQPQ9 .framer-1bq74cg, .framer-dQPQ9 .framer-1eckx40, .framer-dQPQ9 .framer-adyei3 { --border-bottom-width: 0px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 1px; }\",\".framer-dQPQ9 .framer-ha2n75, .framer-dQPQ9 .framer-15m3pk6, .framer-dQPQ9 .framer-tostv8, .framer-dQPQ9 .framer-79breq { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 1px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-wsw1jw, .framer-dQPQ9 .framer-p344uj, .framer-dQPQ9 .framer-1h63ddc, .framer-dQPQ9 .framer-1nhil4s, .framer-dQPQ9 .framer-11slej9 { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-7cbcf719-4161-4ba2-af8b-639bf8e11413, #f9fafb); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: auto; justify-content: center; overflow: hidden; padding: 120px 40px 120px 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-dQPQ9 .framer-owlc5i, .framer-dQPQ9 .framer-1rgkdc4 { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: -100px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; overflow: visible; padding: 4px; position: absolute; right: 60px; width: 95%; z-index: 2; }\",\".framer-dQPQ9 .framer-1x8t77, .framer-dQPQ9 .framer-1moscau { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-1o8o46, .framer-dQPQ9 .framer-1c01z4q, .framer-dQPQ9 .framer-18856tm { --border-bottom-width: 0px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; 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; overflow: hidden; padding: 300px 40px 300px 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-dQPQ9 .framer-1u0ifl5, .framer-dQPQ9 .framer-11qr3e6, .framer-dQPQ9 .framer-1kvgwuz, .framer-dQPQ9 .framer-hcycch, .framer-dQPQ9 .framer-1hl4wg6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; z-index: 1; }\",\".framer-dQPQ9 .framer-1lamu37, .framer-dQPQ9 .framer-1xaoi76, .framer-dQPQ9 .framer-w5mqwm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-n29y8, .framer-dQPQ9 .framer-12azk4e { aspect-ratio: 2.9649122807017543 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); overflow: visible; position: relative; width: 71px; }\",\".framer-dQPQ9 .framer-p7ymb3, .framer-dQPQ9 .framer-q6b86q, .framer-dQPQ9 .framer-ojn7t9, .framer-dQPQ9 .framer-18j8qz, .framer-dQPQ9 .framer-5xv6by, .framer-dQPQ9 .framer-zh2p4i, .framer-dQPQ9 .framer-1ctvhtb, .framer-dQPQ9 .framer-1xd18b1, .framer-dQPQ9 .framer-ufvmqb, .framer-dQPQ9 .framer-87h09j { --border-bottom-width: 1px; --border-color: var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-7cbcf719-4161-4ba2-af8b-639bf8e11413, #f9fafb); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-dQPQ9 .framer-9gh58z, .framer-dQPQ9 .framer-1l129ty, .framer-dQPQ9 .framer-12wtl1, .framer-dQPQ9 .framer-1umu6hs, .framer-dQPQ9 .framer-khguof, .framer-dQPQ9 .framer-1p3yil4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-qz5xoa { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: -100px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; left: 60px; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; overflow: visible; padding: 4px; position: absolute; right: -40px; z-index: 2; }\",\".framer-dQPQ9 .framer-1at39a7 { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 30px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-puvxkx { --border-bottom-width: 0px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 200px 40px 200px 40px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-rz1p32 { 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; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-17l3gr2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 80px 0px; position: relative; width: 60%; z-index: 1; }\",\".framer-dQPQ9 .framer-a2l3tr-container, .framer-dQPQ9 .framer-zb7uzw-container, .framer-dQPQ9 .framer-1tjrr6n-container, .framer-dQPQ9 .framer-162xsz8-container, .framer-dQPQ9 .framer-1hopefz-container { flex: none; height: 14px; position: relative; width: 14px; }\",\".framer-dQPQ9 .framer-1dmb7hy, .framer-dQPQ9 .framer-1pi6jp1 { 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-dQPQ9 .framer-1djqcvc { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.2) 28.01590653153153%, rgba(0,0,0,1) 50%) add; align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mask: linear-gradient(0deg, rgba(0,0,0,0) 0%, rgba(0, 0, 0, 0.2) 28.01590653153153%, rgba(0,0,0,1) 50%) add; overflow: visible; padding: 4px; position: relative; width: 1px; z-index: 2; }\",\".framer-dQPQ9 .framer-lhpo3s { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 700px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-1t4wffy-container, .framer-dQPQ9 .framer-14o23gp-container, .framer-dQPQ9 .framer-15vhlv5-container, .framer-dQPQ9 .framer-9ib85q-container, .framer-dQPQ9 .framer-120gkdg-container, .framer-dQPQ9 .framer-15bfdaw-container, .framer-dQPQ9 .framer-ystmrw-container, .framer-dQPQ9 .framer-1pnclwt-container, .framer-dQPQ9 .framer-l70qik-container, .framer-dQPQ9 .framer-1l2dinu-container, .framer-dQPQ9 .framer-x14zlj-container, .framer-dQPQ9 .framer-12pfyvv-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-dQPQ9 .framer-18ascba, .framer-dQPQ9 .framer-h16j37 { --border-bottom-width: 0px; --border-color: #f0f1f3; --border-left-width: 0px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; 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; overflow: hidden; padding: 300px 40px 300px 40px; position: relative; width: 1px; z-index: 2; }\",\".framer-dQPQ9 .framer-1b7zkkp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-rsdesq { height: 24px; position: relative; width: 87px; }\",\".framer-dQPQ9 .framer-18d8ax0 { height: 14px; left: 28px; position: absolute; top: 5px; width: 12px; }\",\".framer-dQPQ9 .framer-1ke8dv9 { height: 10px; left: 30px; position: absolute; top: 7px; width: 8px; }\",\".framer-dQPQ9 .framer-155q2rk { height: 13px; left: 41px; position: absolute; top: 9px; width: 9px; }\",\".framer-dQPQ9 .framer-75ylzh { height: 6px; left: 43px; position: absolute; top: 11px; width: 5px; }\",\".framer-dQPQ9 .framer-ikcwad { height: 10px; left: 52px; position: absolute; top: 9px; width: 9px; }\",\".framer-dQPQ9 .framer-1s9fskc { height: 2px; left: 54px; position: absolute; top: 10px; width: 5px; }\",\".framer-dQPQ9 .framer-1kn303s { height: 10px; left: 62px; position: absolute; top: 9px; width: 8px; }\",\".framer-dQPQ9 .framer-1gyhll0 { height: 13px; left: 71px; position: absolute; top: 5px; width: 13px; }\",\".framer-dQPQ9 .framer-1sxbdph { height: 6px; left: 75px; position: absolute; top: 8px; width: 4px; }\",\".framer-dQPQ9 .framer-1ev0a40 { height: 13px; left: 85px; position: absolute; top: 5px; width: 3px; }\",\".framer-dQPQ9 .framer-18t8ohc { height: 24px; left: 0px; position: absolute; top: 0px; width: 24px; }\",\".framer-dQPQ9 .framer-u4iti7 { height: 12px; left: 10px; position: absolute; top: 11px; width: 8px; }\",\".framer-dQPQ9 .framer-pf3r7e { height: 6px; left: 3px; position: absolute; top: 15px; width: 12px; }\",\".framer-dQPQ9 .framer-10v42cm { height: 11px; left: 2px; position: absolute; top: 6px; width: 9px; }\",\".framer-dQPQ9 .framer-1yzbqy7 { height: 11px; left: 13px; position: absolute; top: 7px; width: 9px; }\",\".framer-dQPQ9 .framer-1898pwz { height: 6px; left: 9px; position: absolute; top: 4px; width: 12px; }\",\".framer-dQPQ9 .framer-1bdwbib { height: 12px; left: 6px; position: absolute; top: 2px; width: 8px; }\",\".framer-dQPQ9 .framer-1ds8k7u { height: 6px; left: 9px; position: absolute; top: 9px; width: 5px; }\",\".framer-dQPQ9 .framer-1is7kfa { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: -100px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; overflow: visible; padding: 4px; position: absolute; right: -60px; width: 100%; z-index: 2; }\",\".framer-dQPQ9 .framer-xjpr7x { align-content: center; align-items: center; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-fiesnb { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 0px 1px 0px 1px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-gu0102 { aspect-ratio: 7.84375 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); overflow: visible; position: relative; width: 189px; }\",\".framer-dQPQ9 .framer-189pgk9 { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-lvhvy3 { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-40vv4n-container { -webkit-user-select: none; aspect-ratio: 3.225806451612903 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; user-select: none; width: 77px; }\",\".framer-dQPQ9 .framer-xogyxh { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.08); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-backdrop-filter: blur(5px); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; align-content: flex-start; align-items: flex-start; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.08); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; bottom: 153px; box-shadow: 0px 0.6021873017743928px 0.6021873017743928px -1px rgba(0, 0, 0, 0.05), 0px 2.288533303243457px 2.288533303243457px -2px rgba(0, 0, 0, 0.04), 0px 10px 10px -3px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.1) 25.079180743243246%, rgba(0,0,0,1) 53.48219313063063%) add; overflow: visible; padding: 4px; position: absolute; right: -60px; width: 100%; z-index: 2; }\",\".framer-dQPQ9 .framer-1du9026 { align-content: center; align-items: center; aspect-ratio: 1.029616724738676 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: var(--framer-aspect-ratio-supported, 623px); justify-content: flex-start; overflow: hidden; padding: 40px 0px 0px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-z5ii7m { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1hvte7p, .framer-dQPQ9 .framer-475ktw, .framer-dQPQ9 .framer-mt3s2a, .framer-dQPQ9 .framer-1pojxfy, .framer-dQPQ9 .framer-vs116s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-n8d9zf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 600px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-2trs69 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1i5y15v, .framer-dQPQ9 .framer-1rqnm6f { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 1px; }\",\".framer-dQPQ9 .framer-16eoudm, .framer-dQPQ9 .framer-3klvux, .framer-dQPQ9 .framer-jxj64q, .framer-dQPQ9 .framer-1kn0k6k, .framer-dQPQ9 .framer-1dg1zl8, .framer-dQPQ9 .framer-j2sgoi { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: none; height: auto; max-width: 300px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-vq6etg, .framer-dQPQ9 .framer-1tuy77v { --border-bottom-width: 0px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 1px; }\",\".framer-dQPQ9 .framer-1o7040e, .framer-dQPQ9 .framer-rh0yuh { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; }\",\".framer-dQPQ9 .framer-ox0un3 { background-color: #f0f1f3; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1w7eiv1, .framer-dQPQ9 .framer-1bkbu0u, .framer-dQPQ9 .framer-7o772 { -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 28.000000000000004%, rgba(0, 0, 0, 0.2) 50.02111486486487%, rgba(0,0,0,1) 100%) add; flex: none; height: 28%; left: calc(50.00000000000002% - 100% / 2); mask: linear-gradient(0deg, rgba(0,0,0,0) 28.000000000000004%, rgba(0, 0, 0, 0.2) 50.02111486486487%, rgba(0,0,0,1) 100%) add; opacity: 0.04; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: -1; }\",\".framer-dQPQ9 .framer-1ifzl4, .framer-dQPQ9 .framer-blve7h { --border-bottom-width: 1px; --border-color: #f0f1f3; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1300px; overflow: hidden; padding: 200px 0px 200px 0px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-ksqjqw, .framer-dQPQ9 .framer-171p9ue { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap: balance; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dQPQ9 .framer-7tc56v { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1euy4ba, .framer-dQPQ9 .framer-u6ejbm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-dQPQ9 .framer-1udz3im { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-dQPQ9 .framer-178pq8d { --border-bottom-width: 1px; --border-color: var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-ac94fd96-0f56-4f93-a2ce-a6b51a015381, #f3f4f6); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.6021873017743928px 3.010936508871964px 0px rgba(0, 0, 0, 0), 0px 2.288533303243457px 11.442666516217285px 0px rgba(0, 0, 0, 0.02), 0px 10px 50px 0px rgba(0, 0, 0, 0.07); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; max-width: 400px; overflow: visible; padding: 2px; position: relative; width: 100%; z-index: 2; }\",\".framer-dQPQ9 .framer-mq4i2z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: 100%; }\",\".framer-dQPQ9 .framer-1d574hy { --border-bottom-width: 0px; --border-color: var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: #ffffff; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0.6021873017743928px 0.48174984141951427px -1.3333333333333333px rgba(0, 0, 0, 0.19), 0px 2.288533303243457px 1.8308266425947657px -2.6666666666666665px rgba(0, 0, 0, 0.17), 0px 10px 8px -4px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-mut2ps { -webkit-filter: invert(0); -webkit-mask: linear-gradient(0deg, rgba(0, 0, 0, 0) 60%, rgba(0,0,0,1) 100%) add; filter: invert(0); flex: none; height: 100%; left: calc(50.00000000000002% - 98.86363636363636% / 2); mask: linear-gradient(0deg, rgba(0,0,0,0) 60%, rgba(0,0,0,1) 100%) add; opacity: 0.05; overflow: hidden; position: absolute; top: -1px; width: 99%; z-index: 1; }\",\".framer-dQPQ9 .framer-qpxv2y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-dQPQ9 .framer-1jgkmrk { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, #e5e7eb) 41%, rgb(218, 221, 230) 66.21269707207207%, rgb(103, 107, 116) 87%); border-bottom-left-radius: 13px; border-bottom-right-radius: 13px; border-top-left-radius: 13px; border-top-right-radius: 13px; box-shadow: 0px 0.6021873017743928px 0.48174984141951427px -0.6666666666666666px rgba(0, 0, 0, 0.1), 0px 2.288533303243457px 1.8308266425947657px -1.3333333333333333px rgba(0, 0, 0, 0.11), 0px 10px 8px -2px rgba(0, 0, 0, 0.15); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 1px; position: relative; width: min-content; }\",\".framer-dQPQ9 .framer-152nvev { aspect-ratio: 1.0447247706422018 / 1; border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; flex: none; height: var(--framer-aspect-ratio-supported, 115px); overflow: visible; position: relative; width: 120px; z-index: 2; }\",\".framer-dQPQ9 .framer-15quwyp, .framer-dQPQ9 .framer-1qq2fc1 { --border-bottom-width: 1px; --border-color: var(--token-ddfc11e0-1a5d-4555-9e59-b732fce8ce9d, #e5e7eb); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-ac94fd96-0f56-4f93-a2ce-a6b51a015381, #f3f4f6); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 16px 12px 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-dQPQ9 .framer-iyfxfg-container, .framer-dQPQ9 .framer-1y5tzxu-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-dQPQ9 .framer-ba14v6-container { flex: none; height: auto; left: 50%; opacity: 0.4; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 100%; z-index: 1; }\",\".framer-dQPQ9 .framer-1w55fo6 { --framer-text-wrap: balance; flex: none; height: auto; max-width: 600px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-dQPQ9 .framer-18rdf0w-container { flex: 1 0 0px; height: auto; max-width: 1300px; position: relative; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,'.framer-dQPQ9[data-border=\"true\"]::after, .framer-dQPQ9 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1299px) { .framer-dQPQ9.framer-1m1di90 { width: 810px; } .framer-dQPQ9 .framer-qz5xoa { left: 50px; right: unset; width: 414px; } .framer-dQPQ9 .framer-puvxkx { padding: 160px 40px 160px 40px; } .framer-dQPQ9 .framer-lhpo3s { aspect-ratio: 1.5136268343815513 / 1; height: var(--framer-aspect-ratio-supported, 477px); } .framer-dQPQ9 .framer-1t4wffy-container, .framer-dQPQ9 .framer-14o23gp-container, .framer-dQPQ9 .framer-15vhlv5-container, .framer-dQPQ9 .framer-9ib85q-container, .framer-dQPQ9 .framer-120gkdg-container, .framer-dQPQ9 .framer-15bfdaw-container, .framer-dQPQ9 .framer-ystmrw-container, .framer-dQPQ9 .framer-1pnclwt-container, .framer-dQPQ9 .framer-l70qik-container, .framer-dQPQ9 .framer-1l2dinu-container, .framer-dQPQ9 .framer-x14zlj-container, .framer-dQPQ9 .framer-12pfyvv-container { height: 32px; width: 32px; } .framer-dQPQ9 .framer-tostv8, .framer-dQPQ9 .framer-79breq { height: 842px; } .framer-dQPQ9 .framer-18ascba, .framer-dQPQ9 .framer-h16j37 { height: 100%; padding: 140px 30px 140px 40px; } .framer-dQPQ9 .framer-1kvgwuz, .framer-dQPQ9 .framer-1hl4wg6 { padding: 0px; } .framer-dQPQ9 .framer-1h63ddc, .framer-dQPQ9 .framer-11slej9 { align-self: unset; height: 100%; justify-content: flex-start; } .framer-dQPQ9 .framer-1is7kfa, .framer-dQPQ9 .framer-xogyxh { bottom: unset; height: 600px; justify-content: flex-start; position: relative; right: unset; width: 140%; } .framer-dQPQ9 .framer-gu0102 { height: var(--framer-aspect-ratio-supported, 24px); } .framer-dQPQ9 .framer-189pgk9 { gap: 40px; padding: 80px 0px 80px 0px; } .framer-dQPQ9 .framer-1du9026 { height: var(--framer-aspect-ratio-supported, 440px); }}\",\"@media (max-width: 809px) { .framer-dQPQ9.framer-1m1di90 { width: 390px; } .framer-dQPQ9 .framer-4kzavl, .framer-dQPQ9 .framer-qxfeue, .framer-dQPQ9 .framer-ha2n75, .framer-dQPQ9 .framer-15m3pk6, .framer-dQPQ9 .framer-fclrl5, .framer-dQPQ9 .framer-tostv8, .framer-dQPQ9 .framer-fiesnb, .framer-dQPQ9 .framer-q4ork7, .framer-dQPQ9 .framer-79breq, .framer-dQPQ9 .framer-1vq385f, .framer-dQPQ9 .framer-lkgy7c { flex-direction: column; } .framer-dQPQ9 .framer-17bdr10 { order: 0; top: -60px; } .framer-dQPQ9 .framer-xp8k03 { align-self: unset; flex: none; height: min-content; order: 2; padding: 30px 20px 40px 20px; width: 100%; } .framer-dQPQ9 .framer-1uc0lbq { gap: 40px; height: min-content; justify-content: center; } .framer-dQPQ9 .framer-oq03j { flex: none; gap: 20px; height: min-content; } .framer-dQPQ9 .framer-de7d6 { flex: none; order: 1; padding: 40px 20px 0px 20px; width: 100%; } .framer-dQPQ9 .framer-1s1g0dw { height: 460px; } .framer-dQPQ9 .framer-1q0giww { left: 27%; } .framer-dQPQ9 .framer-1bl9fld { left: 49%; } .framer-dQPQ9 .framer-8n8qw { left: 78%; } .framer-dQPQ9 .framer-10ht226 { padding: 40px 0px 40px 0px; } .framer-dQPQ9 .framer-10kkg81 { gap: 20px; } .framer-dQPQ9 .framer-1q5hkx6, .framer-dQPQ9 .framer-azneke, .framer-dQPQ9 .framer-q2xfet, .framer-dQPQ9 .framer-1i5y15v { flex: none; padding: 0px 0px 40px 0px; width: 100%; } .framer-dQPQ9 .framer-1bq74cg, .framer-dQPQ9 .framer-1eckx40, .framer-dQPQ9 .framer-adyei3, .framer-dQPQ9 .framer-vq6etg, .framer-dQPQ9 .framer-1tuy77v { --border-bottom-width: 1px; --border-left-width: 0px; --border-right-width: 0px; --border-top-width: 1px; flex: none; padding: 40px 0px 40px 0px; width: 100%; } .framer-dQPQ9 .framer-1iccypo, .framer-dQPQ9 .framer-cw7w97, .framer-dQPQ9 .framer-j79gwz { flex: none; padding: 40px 0px 0px 0px; width: 100%; } .framer-dQPQ9 .framer-wsw1jw, .framer-dQPQ9 .framer-p344uj, .framer-dQPQ9 .framer-1nhil4s { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; justify-content: flex-end; order: 1; padding: 40px 40px 0px 40px; width: 100%; } .framer-dQPQ9 .framer-owlc5i { bottom: unset; height: 470px; position: relative; right: unset; width: 120%; } .framer-dQPQ9 .framer-1o8o46, .framer-dQPQ9 .framer-1c01z4q, .framer-dQPQ9 .framer-18856tm { flex: none; order: 0; padding: 100px 20px 40px 20px; width: 100%; } .framer-dQPQ9 .framer-1u0ifl5, .framer-dQPQ9 .framer-11qr3e6, .framer-dQPQ9 .framer-1kvgwuz, .framer-dQPQ9 .framer-hcycch, .framer-dQPQ9 .framer-1hl4wg6 { padding: 0px; } .framer-dQPQ9 .framer-lhrrqn, .framer-dQPQ9 .framer-1kjzh8g, .framer-dQPQ9 .framer-1mhyo0d, .framer-dQPQ9 .framer-2p5oyt, .framer-dQPQ9 .framer-5qau0u, .framer-dQPQ9 .framer-1q9ib5n, .framer-dQPQ9 .framer-ksqjqw, .framer-dQPQ9 .framer-n6938q, .framer-dQPQ9 .framer-171p9ue, .framer-dQPQ9 .framer-1w55fo6 { --framer-text-wrap-override: balance; } .framer-dQPQ9 .framer-qz5xoa { bottom: unset; height: 470px; left: unset; position: relative; right: unset; width: 120%; } .framer-dQPQ9 .framer-1at39a7 { order: 0; } .framer-dQPQ9 .framer-puvxkx { overflow: visible; padding: 100px 20px 100px 20px; } .framer-dQPQ9 .framer-17l3gr2 { padding: 0px 0px 40px 0px; width: 100%; } .framer-dQPQ9 .framer-1dmb7hy { justify-content: flex-start; overflow: visible; } .framer-dQPQ9 .framer-1djqcvc { flex: none; width: 120%; } .framer-dQPQ9 .framer-lhpo3s { height: 400px; } .framer-dQPQ9 .framer-1t4wffy-container, .framer-dQPQ9 .framer-14o23gp-container, .framer-dQPQ9 .framer-15vhlv5-container, .framer-dQPQ9 .framer-9ib85q-container, .framer-dQPQ9 .framer-120gkdg-container, .framer-dQPQ9 .framer-15bfdaw-container, .framer-dQPQ9 .framer-ystmrw-container, .framer-dQPQ9 .framer-1pnclwt-container, .framer-dQPQ9 .framer-l70qik-container, .framer-dQPQ9 .framer-1l2dinu-container, .framer-dQPQ9 .framer-x14zlj-container, .framer-dQPQ9 .framer-12pfyvv-container { height: 32px; width: 32px; } .framer-dQPQ9 .framer-18ascba, .framer-dQPQ9 .framer-h16j37 { flex: none; padding: 100px 20px 40px 20px; width: 100%; } .framer-dQPQ9 .framer-1h63ddc, .framer-dQPQ9 .framer-11slej9 { align-content: flex-start; align-items: flex-start; align-self: unset; flex: none; height: min-content; justify-content: flex-start; padding: 40px 40px 0px 20px; width: 100%; } .framer-dQPQ9 .framer-1is7kfa, .framer-dQPQ9 .framer-xogyxh { bottom: unset; height: 400px; position: relative; right: unset; width: 120%; } .framer-dQPQ9 .framer-1rgkdc4 { bottom: unset; height: 528px; position: relative; right: unset; width: 120%; } .framer-dQPQ9 .framer-gu0102 { height: var(--framer-aspect-ratio-supported, 24px); } .framer-dQPQ9 .framer-189pgk9 { gap: 40px; padding: 60px 40px 60px 40px; } .framer-dQPQ9 .framer-1du9026 { height: var(--framer-aspect-ratio-supported, 194px); } .framer-dQPQ9 .framer-z5ii7m, .framer-dQPQ9 .framer-blve7h { padding: 100px 20px 100px 20px; } .framer-dQPQ9 .framer-dbjzp0 { gap: 30px; } .framer-dQPQ9 .framer-16eoudm, .framer-dQPQ9 .framer-3klvux, .framer-dQPQ9 .framer-jxj64q, .framer-dQPQ9 .framer-1kn0k6k, .framer-dQPQ9 .framer-1dg1zl8, .framer-dQPQ9 .framer-j2sgoi { max-width: unset; } .framer-dQPQ9 .framer-1o7040e, .framer-dQPQ9 .framer-1euy4ba, .framer-dQPQ9 .framer-u6ejbm { flex: none; width: 100%; } .framer-dQPQ9 .framer-1rqnm6f, .framer-dQPQ9 .framer-rh0yuh { flex: none; padding: 40px 0px 40px 0px; width: 100%; } .framer-dQPQ9 .framer-1ifzl4 { padding: 100px 0px 100px 0px; } .framer-dQPQ9 .framer-7tc56v { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-dQPQ9 .framer-mut2ps { top: 0px; } .framer-dQPQ9 .framer-15quwyp, .framer-dQPQ9 .framer-1qq2fc1 { padding: 12px; } .framer-dQPQ9 .framer-iyfxfg-container, .framer-dQPQ9 .framer-1y5tzxu-container { height: 24px; width: 24px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 13500\n * @framerIntrinsicWidth 1300\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BTnhmb2K1\":{\"layout\":[\"fixed\",\"auto\"]},\"TL7FTXdm2\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"U674TUJEK\":{\"pattern\":\":U674TUJEK\",\"name\":\"googlevehicleads\"},\"VXM_st_ov\":{\"pattern\":\":VXM_st_ov\",\"name\":\"googlevehicleads\"},\"spTO7Xmnm\":{\"pattern\":\":spTO7Xmnm\",\"name\":\"whitelabel\"},\"fkBJ_23Jz\":{\"pattern\":\":fkBJ_23Jz\",\"name\":\"chatgpt\"},\"fygJRiwhx\":{\"pattern\":\":fygJRiwhx\",\"name\":\"googlevehicleads\"},\"CdGjLTxzo\":{\"pattern\":\":CdGjLTxzo\",\"name\":\"workspaces\"},\"iGn3gKRHm\":{\"pattern\":\":iGn3gKRHm\",\"name\":\"who\"},\"FlRyjjUIX\":{\"pattern\":\":FlRyjjUIX\",\"name\":\"testimonials\"},\"uP_lGrxys\":{\"pattern\":\":uP_lGrxys\",\"name\":\"googleadsvoucher\"},\"jcOsQLcfz\":{\"pattern\":\":jcOsQLcfz\",\"name\":\"pricing\"}}\n * @framerResponsiveScreen\n */const FramerjZStaBNBa=withCSS(Component,css,\"framer-dQPQ9\");export default FramerjZStaBNBa;FramerjZStaBNBa.displayName=\"Home\";FramerjZStaBNBa.defaultProps={height:13500,width:1300};const variationAxes=[{defaultValue:14,maxValue:32,minValue:14,name:\"Optical size\",tag:\"opsz\"},{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];addFonts(FramerjZStaBNBa,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/GrgcKwrN6d3Uz8EwcLHZxwEfC4.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mYcqTSergLb16PdbJJQMl9ebYm4.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/ZRl8AlxwsX1m7xS1eJCiSPbztg.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nhSQpBRqFmXNUBY2p5SENQ8NplQ.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/DYHjxG0qXjopUuruoacfl5SA.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/s7NH6sl7w4NU984r5hcmo1tPSYo.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/7lw0VWkeXrGYJT05oB3DsFy8BaY.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/wx5nfqEgOXnxuFaxB0Mn9OhmcZA.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/UjlFhCnUjxhNfep4oYBPqnEssyo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2070, U+2074-207E, U+2080-208E, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/yDtI2UI8XcEg1W2je9XPN3Noo.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...ButtonFonts,...OffersFonts,...PhosphorFonts,...TickerFonts,...Phosphor1Fonts,...LogoFonts,...CardTestimonialFonts,...TickerBGFonts,...SectionPricingFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjZStaBNBa\",\"slots\":[],\"annotations\":{\"framerScrollSections\":\"{\\\"U674TUJEK\\\":{\\\"pattern\\\":\\\":U674TUJEK\\\",\\\"name\\\":\\\"googlevehicleads\\\"},\\\"VXM_st_ov\\\":{\\\"pattern\\\":\\\":VXM_st_ov\\\",\\\"name\\\":\\\"googlevehicleads\\\"},\\\"spTO7Xmnm\\\":{\\\"pattern\\\":\\\":spTO7Xmnm\\\",\\\"name\\\":\\\"whitelabel\\\"},\\\"fkBJ_23Jz\\\":{\\\"pattern\\\":\\\":fkBJ_23Jz\\\",\\\"name\\\":\\\"chatgpt\\\"},\\\"fygJRiwhx\\\":{\\\"pattern\\\":\\\":fygJRiwhx\\\",\\\"name\\\":\\\"googlevehicleads\\\"},\\\"CdGjLTxzo\\\":{\\\"pattern\\\":\\\":CdGjLTxzo\\\",\\\"name\\\":\\\"workspaces\\\"},\\\"iGn3gKRHm\\\":{\\\"pattern\\\":\\\":iGn3gKRHm\\\",\\\"name\\\":\\\"who\\\"},\\\"FlRyjjUIX\\\":{\\\"pattern\\\":\\\":FlRyjjUIX\\\",\\\"name\\\":\\\"testimonials\\\"},\\\"uP_lGrxys\\\":{\\\"pattern\\\":\\\":uP_lGrxys\\\",\\\"name\\\":\\\"googleadsvoucher\\\"},\\\"jcOsQLcfz\\\":{\\\"pattern\\\":\\\":jcOsQLcfz\\\",\\\"name\\\":\\\"pricing\\\"}}\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BTnhmb2K1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"TL7FTXdm2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"13500\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1300\",\"framerResponsiveScreen\":\"\",\"framerAcceptsLayoutTemplate\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}