{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js", "ssg:https://framerusercontent.com/modules/ZP3Zg4MMFLgudkzGrIEa/KZ0pEZTwaifSB0msdbed/pR7vnkzcV.js", "ssg:https://framerusercontent.com/modules/pRN3kOPoy6HluSSF89Nr/nOQv2MYQNHjj3eMBOmDJ/abkJilg4P.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,useIsInCurrentNavigationTarget}from\"framer\";import{isMotionValue,useInView}from\"framer-motion\";import{borderRadiusControl,defaultEvents,useIsBrowserSafari,useIsOnCanvas,useOnEnter,useOnExit,useRadius}from\"https://framerusercontent.com/modules/G4IfyjvwmaeSBpdb4TWu/OIjZRBmWDcIE2B6qgG1j/index.js\";// https://framer.com/m/framer/default-utils.js@^0.45.0\nimport{memo,useCallback,useEffect,useMemo,useRef,useState}from\"react\";var ObjectFitType;(function(ObjectFitType){ObjectFitType[\"Fill\"]=\"fill\";ObjectFitType[\"Contain\"]=\"contain\";ObjectFitType[\"Cover\"]=\"cover\";ObjectFitType[\"None\"]=\"none\";ObjectFitType[\"ScaleDown\"]=\"scale-down\";})(ObjectFitType||(ObjectFitType={}));var SrcType;(function(SrcType){SrcType[\"Video\"]=\"Upload\";SrcType[\"Url\"]=\"URL\";})(SrcType||(SrcType={}));const defaultVideo=\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\";// Reduce renders\nfunction getProps(props){const{width,height,topLeft,topRight,bottomRight,bottomLeft,id,children,...rest}=props;return rest;}/**\n * VIDEO\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 112\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n */export function Video(props){const newProps=getProps(props);return /*#__PURE__*/_jsx(VideoMemo,{...newProps});}function usePlaybackControls(videoRef){const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const requestingPlay=useRef(false);const isPlayingRef=useRef(false);const setProgress=useCallback(rawProgress=>{if(!videoRef.current)return;const newProgress=(rawProgress===1?.999:rawProgress)*videoRef.current.duration;const isAlreadySet=Math.abs(videoRef.current.currentTime-newProgress)<.1;if(videoRef.current.duration>0&&!isAlreadySet){videoRef.current.currentTime=newProgress;}},[]);const play=useCallback(()=>{const video=videoRef.current;if(!video)return;video.preload=\"auto\"// makes sure browsers don't throttle: https://html.spec.whatwg.org/multipage/media.html#:~:text=When%20the%20media%20resource%20is%20playing%2C%20hints%20to%20the%20user%20agent%20that%20bandwidth%20is%20to%20be%20considered%20scarce%2C%20e.g.%20suggesting%20throttling%20the%20download%20so%20that%20the%20media%20data%20is%20obtained%20at%20the%20slowest%20possible%20rate%20that%20still%20maintains%20consistent%20playback.\n;const isPlaying=video.currentTime>0&&video.onplaying&&!video.paused&&!video.ended&&video.readyState>=video.HAVE_CURRENT_DATA;if(!isPlaying&&video&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;isPlayingRef.current=true;video.play().catch(e=>{})// It's likely fine, swallow error\n.finally(()=>requestingPlay.current=false);}},[]);const pause=useCallback(()=>{if(!videoRef.current||requestingPlay.current)return;videoRef.current.pause();isPlayingRef.current=false;},[]);return{play,pause,setProgress,isPlaying:isPlayingRef};}function useAutoplayBehavior({playingProp,muted,loop,playsinline,controls}){const[initialPlayingProp]=useState(()=>playingProp);const[hasPlayingPropChanged,setHasPlayingPropChanged]=useState(false);if(playingProp!==initialPlayingProp&&!hasPlayingPropChanged){setHasPlayingPropChanged(true);}const behavesAsGif=// passing `playing === true` on mount indicates that the video should\n// autoplay, like a GIF\ninitialPlayingProp&&muted&&loop&&playsinline&&!controls&&// Some users of the <Video> component use it by wrapping it with\n// another smart component and adding their own controls on top. (The\n// controls use transitions to control the video: e.g., when clicking\n// the play button, the smart component will transition to a state with\n// <Video playing={true} />.) In this case, we don't want the video to\n// behave as a gif, as it will be weird if the video suddenly started\n// acting as such (and auto-pausing when leaving the viewport) as soon\n// as the site visitor mutes it and clicks \u201CPlay\u201D.\n!hasPlayingPropChanged;let autoplay;if(behavesAsGif)autoplay=\"on-viewport\";else if(initialPlayingProp)autoplay=\"on-mount\";else autoplay=\"no-autoplay\";return autoplay;}const VideoMemo=/*#__PURE__*/memo(function VideoInner(props){const{// default props\nsrcType=\"URL\",srcUrl,srcFile=\"\",posterEnabled=false,controls=false,playing=true,loop=true,muted=true,playsinline=true,restartOnEnter=false,objectFit=\"cover\",backgroundColor=\"rgba(0,0,0,0)\",radius=0,volume=25,startTime:startTimeProp=0,poster,playing:playingProp,progress,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp}=props;const videoRef=useRef();const isSafari=useIsBrowserSafari();const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Hard-coding `autoplayBehavior` and `isInViewport` when on canvas as a\n// tiny perf optimization. isOnCanvas won\u2019t change through the lifecycle of\n// the component, so using these hooks conditionally should be safe\nconst autoplayBehavior=isOnCanvas?\"no-autoplay\":useAutoplayBehavior({playingProp,muted,loop,playsinline,controls});const isInViewport=isOnCanvas?true:useInView(videoRef);const isCloseToViewport=isOnCanvas?false:useInView(videoRef,{margin:\"0px 0px 100px 100px\",once:true});// Video elements behave oddly at 100% duration\nconst startTime=startTimeProp===100?99.9:startTimeProp;const{play,pause,setProgress,isPlaying}=usePlaybackControls(videoRef);// Pause/play via props\nuseEffect(()=>{if(isOnCanvas)return;if(playingProp)play();else pause();},[playingProp]);// Pause/play via viewport\nuseEffect(()=>{if(isOnCanvas)return;if(autoplayBehavior!==\"on-viewport\")return;if(isInViewport)play();else pause();},[autoplayBehavior,isInViewport]);/**\n     * The Video component has some effects that sync the video element with props\n     * like `startTime`, `progress`, etc. React calls these effects whenever these\n     * props change. However, it also calls them on the first mount, and this is\n     * troublesome \u2013 if we\u2019re doing SSR, and the user changed the video state before\n     * the video was hydrated, the initial `useEffect` call will reset the video\n     * state. To avoid this, we use this flag.\n     */const isMountedAndReadyForProgressChanges=useRef(false);// Allow scrubbling via progress prop\n// 1) Handle cases when the progress prop itself changes\nuseEffect(()=>{if(!isMountedAndReadyForProgressChanges.current){isMountedAndReadyForProgressChanges.current=true;return;}const rawProgressValue=isMotionValue(progress)?progress.get():(progress!==null&&progress!==void 0?progress:0)*.01;setProgress(// When the progress value exists (e.g. <Video startTime={10}\n// progress={50} />), we respect the `progress` value over\n// `startTime`, even if `startTime` changes. That\u2019s because\n// `startTime` == start == changing it shouldn\u2019t affect the current\n// progress\n(rawProgressValue!==null&&rawProgressValue!==void 0?rawProgressValue:0)||// Then why fall back to `startTime` when `progress` doesn\u2019t exist,\n// you might ask? Now, that\u2019s for\n// - canvas UX: we want the video progress to change when the user\n//   is scrobbling the \u201CStart Time\u201D in component settings.\n// - backwards compatibility: maybe some users *are* scrobbling\n//   using `startTime` instead of `progress`? We don\u2019t know, and it\n//   always supported it, so let\u2019s not break it\n(startTime!==null&&startTime!==void 0?startTime:0)/100);},[startTime,srcFile,srcUrl,progress]);// 2) Handle cases when the motion value inside the progress prop changes\nuseEffect(()=>{if(!isMotionValue(progress))return;return progress.on(\"change\",value=>setProgress(value));},[progress]);// (Prototyping) Checking if we need to play on navigation enter\nuseOnEnter(()=>{if(wasPausedOnLeave.current===null)return;if(videoRef.current){// if (restartOnEnter) setProgress(0)\nif(!wasEndedOnLeave&&loop||!wasPausedOnLeave.current)play();}});// (Prototyping) Pausing & saving playing state on navigation exit\nuseOnExit(()=>{if(videoRef.current){wasEndedOnLeave.current=videoRef.current.ended;wasPausedOnLeave.current=videoRef.current.paused;pause();}});const src=useMemo(()=>{let fragment=\"\";// if (\n//     startTime > 0 &&\n//     videoRef.current &&\n//     !isNaN(videoRef.current.duration) &&\n//     !isOnCanvas\n// ) {\n//     console.log(startTime, videoRef.current.duration)\n//     fragment = `#t=${startTime * videoRef.current.duration}`\n// }\nif(srcType===\"URL\")return srcUrl+fragment;if(srcType===\"Upload\")return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoplayBehavior===\"on-mount\"){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=(volume!==null&&volume!==void 0?volume:0)/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{const video=videoRef.current;if(!video)return;if(video.currentTime<.3&&startTime>0)setProgress((startTime!==null&&startTime!==void 0?startTime:0)*.01);if(// when the component updates (e.g. only srcFile/url changes), and the video was already playing, keep playing\nisPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport)play();};return /*#__PURE__*/_jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>onSeeked===null||onSeeked===void 0?void 0:onSeeked(e),onPause:e=>onPause===null||onPause===void 0?void 0:onPause(e),onPlay:e=>onPlay===null||onPlay===void 0?void 0:onPlay(e),onEnded:e=>onEnd===null||onEnd===void 0?void 0:onEnd(e),autoPlay:isPlaying.current||autoplayBehavior===\"on-mount\"||autoplayBehavior===\"on-viewport\"&&isInViewport,preload:isPlaying.current?\"auto\":isOnCanvas&&!poster?\"metadata\":autoplayBehavior!==\"on-mount\"&&!isCloseToViewport?\"none\":// `autoplay` overrides this too\n\"metadata\",poster:posterEnabled&&!srcFile&&srcUrl===defaultVideo?\"https://framerusercontent.com/images/5ILRvlYXf72kHSVHqpa3snGzjU.jpg\":posterEnabled&&poster?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isOnCanvas?true:muted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";function capitalizeFirstLetter(value){return value.charAt(0).toUpperCase()+value.slice(1);}export function titleCase(value){const groups=value.match(/[A-Z]{2,}|[A-Z][a-z]+|[a-z]+|[A-Z]|\\d+/gu)||[];return groups.map(capitalizeFirstLetter).join(\" \");}const objectFitOptions=[\"cover\",\"fill\",\"contain\",\"scale-down\",\"none\"];addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[\"URL\",\"Upload\"]},srcUrl:{type:ControlType.String,title:\"URL\",defaultValue:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",hidden(props){return props.srcType===\"Upload\";}},srcFile:{type:ControlType.File,title:\"File\",allowedFileTypes:[\"mp4\",\"webm\"],hidden(props){return props.srcType===\"URL\";}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\",description:\"We recommend adding a poster. [Learn more](https://www.framer.com/help/articles/how-are-videos-optimized-in-framer/).\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\",defaultValue:\"rgba(0,0,0,0)\"},...borderRadiusControl,startTime:{title:\"Start Time\",type:ControlType.Number,min:0,max:100,step:.1,unit:\"%\"},loop:{type:ControlType.Boolean,title:\"Loop\",enabledTitle:\"Yes\",disabledTitle:\"No\"},objectFit:{type:ControlType.Enum,title:\"Fit\",options:objectFitOptions,optionTitles:objectFitOptions.map(titleCase)},// restartOnEnter: {\n//     type: ControlType.Boolean,\n//     title: \"On ReEnter\",\n//     enabledTitle: \"Restart\",\n//     disabledTitle: \"Resume\",\n// },\ncontrols:{type:ControlType.Boolean,title:\"Controls\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted,defaultValue:25},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerIntrinsicHeight\":\"112\"}},\"titleCase\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (461de17)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Link,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import PrimaryButton from\"https://framerusercontent.com/modules/aJpNRp8XMyeLcAYz4eEJ/C1aK91eCMdPL1Caf9jGE/RypJyWCb6.js\";import Hamburger from\"https://framerusercontent.com/modules/RYKXzDcOcjVhj8iULtjC/LLHjB2IyR8zXXLKgRPlt/WI39Lv8yz.js\";import MenuItem from\"https://framerusercontent.com/modules/qNTDX0rDVQzGDdXnG3vX/CPl7dWJjJAnE22fYX9Tl/qGWcVtRXU.js\";const HamburgerFonts=getFonts(Hamburger);const MenuItemFonts=getFonts(MenuItem);const PrimaryButtonFonts=getFonts(PrimaryButton);const cycleOrder=[\"RIMDILQ0y\",\"MVUGA8e7e\",\"XClyRKI0V\"];const serializationHash=\"framer-rjHPd\";const variantClassNames={MVUGA8e7e:\"framer-v-u3qq7r\",RIMDILQ0y:\"framer-v-mz4xpi\",XClyRKI0V:\"framer-v-mpwtln\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Mobile Open\":\"XClyRKI0V\",Desktop:\"RIMDILQ0y\",Mobile:\"MVUGA8e7e\"};const getProps=({about,adSuites,benefits,fAQS,height,id,whyGopuff,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,eBhCIZmkH:fAQS!==null&&fAQS!==void 0?fAQS:props.eBhCIZmkH,H_EaBHynM:adSuites!==null&&adSuites!==void 0?adSuites:props.H_EaBHynM,SqRGTOCdv:whyGopuff!==null&&whyGopuff!==void 0?whyGopuff:props.SqRGTOCdv,uRzuzmiIn:about!==null&&about!==void 0?about:props.uRzuzmiIn,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"RIMDILQ0y\",zHMSmCxTN:benefits!==null&&benefits!==void 0?benefits:props.zHMSmCxTN};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,uRzuzmiIn,H_EaBHynM,SqRGTOCdv,zHMSmCxTN,eBhCIZmkH,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"RIMDILQ0y\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const YbzSBqWAm1hh81tm=activeVariantCallback(async(...args)=>{setVariant(\"XClyRKI0V\");});const YbzSBqWAm1exlfrt=activeVariantCallback(async(...args)=>{setVariant(\"MVUGA8e7e\");});const gGnWhNFwt1exlfrt=activeVariantCallback(async(...args)=>{setVariant(\"MVUGA8e7e\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"MVUGA8e7e\",\"XClyRKI0V\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if([\"MVUGA8e7e\",\"XClyRKI0V\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-mz4xpi\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"RIMDILQ0y\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(236, 238, 233)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backgroundColor:\"rgb(255, 255, 255)\",...style},...addPropertyOverrides({MVUGA8e7e:{\"data-framer-name\":\"Mobile\"},XClyRKI0V:{\"data-framer-name\":\"Mobile Open\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-51n3mn\",\"data-framer-name\":\"Inner\",layoutDependency:layoutDependency,layoutId:\"Tbau_noNp\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1yttcr2\",layoutDependency:layoutDependency,layoutId:\"st42yem8a\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.gopuff.com\",openInNewTab:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-zkx9ew framer-1dhxpf4\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"xJ_aLpFK4\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1847rg0\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:30,intrinsicWidth:91,layoutDependency:layoutDependency,layoutId:\"IvV0UzaNb\",svg:'<svg height=\"30\" width=\"91\" xmlns=\"http://www.w3.org/2000/svg\" fill=\"none\"><path d=\"M62.936 7.394v8.827c0 2.281-.725 3.643-2.441 3.643-1.698 0-2.441-1.362-2.441-3.643V7.394h-4.847v9.163c0 4.793 2.919 6.774 7.288 6.774 3.608 0 7.288-1.98 7.288-6.774V7.394h-4.847ZM25.984 7.04c-5.006 0-8.332 3.237-8.332 8.26 0 5.042 3.52 8.031 8.049 8.031 4.174 0 8.225-2.6 8.225-8.296 0-4.705-3.166-7.995-7.942-7.995Zm-.142 12.842c-2.07 0-3.184-2.017-3.184-4.688 0-2.317.885-4.687 3.202-4.687 2.193 0 3.078 2.37 3.078 4.67 0 2.812-1.203 4.705-3.096 4.705ZM14.204 6.297c-1.627 1.115-2.052 2.813-2.052 2.813-.884-1.115-2.706-2-4.847-2C3.732 7.11 0 10.296 0 15.319c0 4.458 3.149 7.89 7.305 7.89 1.716 0 2.884-.425 3.803-1.345v.336c0 2.83-1.75 4.104-4.05 4.104-2.247 0-3.839-.743-4.83-1.309l-.954 3.68C2.564 29.345 5.13 30 7.182 30c2.3 0 4.616-.442 6.314-1.91 1.77-1.557 2.37-4.016 2.37-7.005v-6.899c.036-2.388.885-4.068 1.929-5.253l-3.591-2.636ZM8.19 19.935c-2.07 0-3.184-2.016-3.184-4.687 0-2.318.884-4.688 3.202-4.688 2.175.018 3.06 2.37 3.06 4.67 0 2.812-1.186 4.705-3.078 4.705ZM43.568 7.04c-5.2 0-8.03 3.45-8.03 8.544v14.08h4.846v-7.712c.867.902 2.246 1.397 4.104 1.397 3.467 0 7.093-2.671 7.093-8.35 0-4.987-3.29-7.959-8.013-7.959Zm-.018 12.842c-2.07 0-3.184-2.017-3.184-4.688 0-2.317.885-4.687 3.202-4.687 2.193 0 3.078 2.37 3.078 4.67-.018 2.812-1.203 4.705-3.096 4.705ZM90.195 4.068V.354C89.523.159 88.692.018 87.63.018c-1.415 0-3.095.407-4.316 1.556-1.38 1.292-1.963 3.361-1.963 5.218v.584h-5.006V6.58c-.07-3.768 3.609-2.67 4.033-2.53V.337C79.706.142 78.875 0 77.813 0c-1.415 0-3.095.407-4.316 1.557-1.38 1.29-1.963 3.36-1.963 5.218v.583h-2.07v3.574h2.07v12.046c0 3.307-2.3 2.83-3.326 2.67l-.513 3.574a6.005 6.005 0 0 0 2.07.389c2.193.017 3.75-.655 4.793-1.68 1.31-1.292 1.805-3.15 1.805-4.989l.035-12.01h4.97v12.046c.071 3.484-2.653 2.777-3.325 2.67l-.513 3.574a6 6 0 0 0 2.07.389c2.193.017 3.75-.655 4.793-1.68 1.31-1.292 1.805-3.15 1.805-4.989l.035-12.01h3.98V7.394H86.18v-.796c.053-3.803 3.59-2.653 4.015-2.53Z\" fill=\"#00A4FF\"/></svg>',withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ia7481-container\",layoutDependency:layoutDependency,layoutId:\"INHGCT9WG-container\",children:/*#__PURE__*/_jsx(Hamburger,{height:\"100%\",id:\"INHGCT9WG\",layoutId:\"INHGCT9WG\",variant:\"F3GZrhMxG\",width:\"100%\",...addPropertyOverrides({MVUGA8e7e:{YbzSBqWAm:YbzSBqWAm1hh81tm},XClyRKI0V:{variant:\"ia4OIiMSd\",YbzSBqWAm:YbzSBqWAm1exlfrt}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1piir2p\",\"data-framer-name\":\"Trailing\",layoutDependency:layoutDependency,layoutId:\"LIjrV5m4l\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-myx9de\",layoutDependency:layoutDependency,layoutId:\"du7A0BklZ\",style:{backgroundColor:\"rgb(255, 255, 255)\"},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({MVUGA8e7e:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`},XClyRKI0V:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1n6fujf-container\",layoutDependency:layoutDependency,layoutId:\"TnUD51AhN-container\",children:/*#__PURE__*/_jsx(MenuItem,{Db2YfXQXZ:uRzuzmiIn,height:\"100%\",id:\"TnUD51AhN\",kpOMzjclF:\"About\",layoutId:\"TnUD51AhN\",variant:\"xLYUsh0O4\",width:\"100%\",...addPropertyOverrides({MVUGA8e7e:{style:{width:\"100%\"}},XClyRKI0V:{bYoObl1Aw:undefined,gGnWhNFwt:gGnWhNFwt1exlfrt,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({MVUGA8e7e:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`},XClyRKI0V:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gy4efx-container\",layoutDependency:layoutDependency,layoutId:\"ec4cJcXNA-container\",children:/*#__PURE__*/_jsx(MenuItem,{Db2YfXQXZ:H_EaBHynM,height:\"100%\",id:\"ec4cJcXNA\",kpOMzjclF:\"Ad Suites\",layoutId:\"ec4cJcXNA\",variant:\"xLYUsh0O4\",width:\"100%\",...addPropertyOverrides({MVUGA8e7e:{style:{width:\"100%\"}},XClyRKI0V:{gGnWhNFwt:gGnWhNFwt1exlfrt,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({MVUGA8e7e:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`},XClyRKI0V:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-41kay6-container\",layoutDependency:layoutDependency,layoutId:\"YCWdyxmsz-container\",children:/*#__PURE__*/_jsx(MenuItem,{Db2YfXQXZ:SqRGTOCdv,height:\"100%\",id:\"YCWdyxmsz\",kpOMzjclF:\"Why Gopuff?\",layoutId:\"YCWdyxmsz\",variant:\"xLYUsh0O4\",width:\"100%\",...addPropertyOverrides({MVUGA8e7e:{style:{width:\"100%\"}},XClyRKI0V:{gGnWhNFwt:gGnWhNFwt1exlfrt,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({MVUGA8e7e:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`},XClyRKI0V:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3hsenm-container\",layoutDependency:layoutDependency,layoutId:\"BMOtVcZ94-container\",children:/*#__PURE__*/_jsx(MenuItem,{Db2YfXQXZ:zHMSmCxTN,height:\"100%\",id:\"BMOtVcZ94\",kpOMzjclF:\"Benefits\",layoutId:\"BMOtVcZ94\",variant:\"xLYUsh0O4\",width:\"100%\",...addPropertyOverrides({MVUGA8e7e:{style:{width:\"100%\"}},XClyRKI0V:{gGnWhNFwt:gGnWhNFwt1exlfrt,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({MVUGA8e7e:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`},XClyRKI0V:{width:`min(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"}, 1440px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-yc4gns-container\",layoutDependency:layoutDependency,layoutId:\"TfCSBZcAx-container\",children:/*#__PURE__*/_jsx(MenuItem,{Db2YfXQXZ:eBhCIZmkH,height:\"100%\",id:\"TfCSBZcAx\",kpOMzjclF:\"FAQs\",layoutId:\"TfCSBZcAx\",variant:\"xLYUsh0O4\",width:\"100%\",...addPropertyOverrides({MVUGA8e7e:{style:{width:\"100%\"}},XClyRKI0V:{gGnWhNFwt:gGnWhNFwt1exlfrt,style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1coz9n9\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"Y9WCEOMQk\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-17aiozw-container\",layoutDependency:layoutDependency,layoutId:\"Mawncb_74-container\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"Mawncb_74\",layoutId:\"Mawncb_74\",opNQ8siIq:\"Get Started\",style:{height:\"100%\"},variant:\"v9CDp9f1Z\",width:\"100%\"})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-8rgm6z\",\"data-framer-name\":\"Button\",layoutDependency:layoutDependency,layoutId:\"aDscfHusy\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-eimzaf-container\",layoutDependency:layoutDependency,layoutId:\"ka6AteQzL-container\",children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"ka6AteQzL\",layoutId:\"ka6AteQzL\",opNQ8siIq:\"Get Started\",RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form\",style:{height:\"100%\"},variant:\"v9CDp9f1Z\",width:\"100%\"})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-rjHPd.framer-1dhxpf4, .framer-rjHPd .framer-1dhxpf4 { display: block; }\",\".framer-rjHPd.framer-mz4xpi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 72px; justify-content: center; overflow: visible; padding: 0px 20px 0px 20px; position: relative; width: 1440px; }\",\".framer-rjHPd .framer-51n3mn { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1440px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-rjHPd .framer-1yttcr2, .framer-rjHPd .framer-1piir2p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rjHPd .framer-zkx9ew { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 34px; justify-content: center; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-rjHPd .framer-1847rg0 { aspect-ratio: 3.033333333333333 / 1; flex: none; height: 30px; position: relative; width: var(--framer-aspect-ratio-supported, 91px); }\",\".framer-rjHPd .framer-1ia7481-container, .framer-rjHPd .framer-1n6fujf-container, .framer-rjHPd .framer-gy4efx-container, .framer-rjHPd .framer-41kay6-container, .framer-rjHPd .framer-3hsenm-container, .framer-rjHPd .framer-yc4gns-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-rjHPd .framer-myx9de { 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: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-rjHPd .framer-1coz9n9, .framer-rjHPd .framer-8rgm6z { 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 0px 0px 16px; position: relative; width: min-content; }\",\".framer-rjHPd .framer-17aiozw-container, .framer-rjHPd .framer-eimzaf-container { flex: none; height: 40px; position: relative; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rjHPd.framer-mz4xpi, .framer-rjHPd .framer-1yttcr2, .framer-rjHPd .framer-zkx9ew, .framer-rjHPd .framer-1piir2p, .framer-rjHPd .framer-myx9de, .framer-rjHPd .framer-1coz9n9, .framer-rjHPd .framer-8rgm6z { gap: 0px; } .framer-rjHPd.framer-mz4xpi > *, .framer-rjHPd .framer-1yttcr2 > *, .framer-rjHPd .framer-1piir2p > *, .framer-rjHPd .framer-1coz9n9 > *, .framer-rjHPd .framer-8rgm6z > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-rjHPd.framer-mz4xpi > :first-child, .framer-rjHPd .framer-1yttcr2 > :first-child, .framer-rjHPd .framer-zkx9ew > :first-child, .framer-rjHPd .framer-1piir2p > :first-child, .framer-rjHPd .framer-myx9de > :first-child, .framer-rjHPd .framer-1coz9n9 > :first-child, .framer-rjHPd .framer-8rgm6z > :first-child { margin-left: 0px; } .framer-rjHPd.framer-mz4xpi > :last-child, .framer-rjHPd .framer-1yttcr2 > :last-child, .framer-rjHPd .framer-zkx9ew > :last-child, .framer-rjHPd .framer-1piir2p > :last-child, .framer-rjHPd .framer-myx9de > :last-child, .framer-rjHPd .framer-1coz9n9 > :last-child, .framer-rjHPd .framer-8rgm6z > :last-child { margin-right: 0px; } .framer-rjHPd .framer-zkx9ew > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-rjHPd .framer-myx9de > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",\".framer-rjHPd.framer-v-u3qq7r.framer-mz4xpi { flex-direction: column; gap: 0px; justify-content: flex-start; overflow: hidden; padding: 0px; width: 350px; }\",\".framer-rjHPd.framer-v-u3qq7r .framer-51n3mn, .framer-rjHPd.framer-v-mpwtln .framer-51n3mn { flex: none; flex-direction: column; width: 100%; }\",\".framer-rjHPd.framer-v-u3qq7r .framer-1yttcr2, .framer-rjHPd.framer-v-mpwtln .framer-1yttcr2 { gap: unset; height: 72px; justify-content: space-between; padding: 0px 8px 0px 16px; width: 100%; }\",\".framer-rjHPd.framer-v-u3qq7r .framer-zkx9ew, .framer-rjHPd.framer-v-mpwtln .framer-zkx9ew { justify-content: flex-start; }\",\".framer-rjHPd.framer-v-u3qq7r .framer-1piir2p, .framer-rjHPd.framer-v-mpwtln .framer-1piir2p { flex-direction: column; width: 100%; }\",\".framer-rjHPd.framer-v-u3qq7r .framer-myx9de, .framer-rjHPd.framer-v-mpwtln .framer-myx9de { align-content: flex-start; align-items: flex-start; flex-direction: column; justify-content: flex-start; width: 100%; }\",\".framer-rjHPd.framer-v-u3qq7r .framer-1n6fujf-container, .framer-rjHPd.framer-v-u3qq7r .framer-gy4efx-container, .framer-rjHPd.framer-v-u3qq7r .framer-41kay6-container, .framer-rjHPd.framer-v-u3qq7r .framer-3hsenm-container, .framer-rjHPd.framer-v-u3qq7r .framer-yc4gns-container, .framer-rjHPd.framer-v-mpwtln .framer-1n6fujf-container, .framer-rjHPd.framer-v-mpwtln .framer-gy4efx-container, .framer-rjHPd.framer-v-mpwtln .framer-41kay6-container, .framer-rjHPd.framer-v-mpwtln .framer-3hsenm-container, .framer-rjHPd.framer-v-mpwtln .framer-yc4gns-container { width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rjHPd.framer-v-u3qq7r.framer-mz4xpi, .framer-rjHPd.framer-v-u3qq7r .framer-51n3mn, .framer-rjHPd.framer-v-u3qq7r .framer-1yttcr2, .framer-rjHPd.framer-v-u3qq7r .framer-1piir2p, .framer-rjHPd.framer-v-u3qq7r .framer-myx9de { gap: 0px; } .framer-rjHPd.framer-v-u3qq7r.framer-mz4xpi > *, .framer-rjHPd.framer-v-u3qq7r .framer-myx9de > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rjHPd.framer-v-u3qq7r.framer-mz4xpi > :first-child, .framer-rjHPd.framer-v-u3qq7r .framer-1piir2p > :first-child, .framer-rjHPd.framer-v-u3qq7r .framer-myx9de > :first-child { margin-top: 0px; } .framer-rjHPd.framer-v-u3qq7r.framer-mz4xpi > :last-child, .framer-rjHPd.framer-v-u3qq7r .framer-1piir2p > :last-child, .framer-rjHPd.framer-v-u3qq7r .framer-myx9de > :last-child { margin-bottom: 0px; } .framer-rjHPd.framer-v-u3qq7r .framer-51n3mn > *, .framer-rjHPd.framer-v-u3qq7r .framer-51n3mn > :first-child, .framer-rjHPd.framer-v-u3qq7r .framer-51n3mn > :last-child, .framer-rjHPd.framer-v-u3qq7r .framer-1yttcr2 > *, .framer-rjHPd.framer-v-u3qq7r .framer-1yttcr2 > :first-child, .framer-rjHPd.framer-v-u3qq7r .framer-1yttcr2 > :last-child { margin: 0px; } .framer-rjHPd.framer-v-u3qq7r .framer-1piir2p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\".framer-rjHPd.framer-v-mpwtln.framer-mz4xpi { flex-direction: column; gap: 0px; height: min-content; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 0px 64px 0px; width: 350px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-rjHPd.framer-v-mpwtln.framer-mz4xpi, .framer-rjHPd.framer-v-mpwtln .framer-51n3mn, .framer-rjHPd.framer-v-mpwtln .framer-1yttcr2, .framer-rjHPd.framer-v-mpwtln .framer-1piir2p, .framer-rjHPd.framer-v-mpwtln .framer-myx9de { gap: 0px; } .framer-rjHPd.framer-v-mpwtln.framer-mz4xpi > *, .framer-rjHPd.framer-v-mpwtln .framer-myx9de > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-rjHPd.framer-v-mpwtln.framer-mz4xpi > :first-child, .framer-rjHPd.framer-v-mpwtln .framer-1piir2p > :first-child, .framer-rjHPd.framer-v-mpwtln .framer-myx9de > :first-child { margin-top: 0px; } .framer-rjHPd.framer-v-mpwtln.framer-mz4xpi > :last-child, .framer-rjHPd.framer-v-mpwtln .framer-1piir2p > :last-child, .framer-rjHPd.framer-v-mpwtln .framer-myx9de > :last-child { margin-bottom: 0px; } .framer-rjHPd.framer-v-mpwtln .framer-51n3mn > *, .framer-rjHPd.framer-v-mpwtln .framer-51n3mn > :first-child, .framer-rjHPd.framer-v-mpwtln .framer-51n3mn > :last-child, .framer-rjHPd.framer-v-mpwtln .framer-1yttcr2 > *, .framer-rjHPd.framer-v-mpwtln .framer-1yttcr2 > :first-child, .framer-rjHPd.framer-v-mpwtln .framer-1yttcr2 > :last-child { margin: 0px; } .framer-rjHPd.framer-v-mpwtln .framer-1piir2p > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",'.framer-rjHPd[data-border=\"true\"]::after, .framer-rjHPd [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 72\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"MVUGA8e7e\":{\"layout\":[\"fixed\",\"fixed\"]},\"XClyRKI0V\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]}}}\n * @framerVariables {\"uRzuzmiIn\":\"about\",\"H_EaBHynM\":\"adSuites\",\"SqRGTOCdv\":\"whyGopuff\",\"zHMSmCxTN\":\"benefits\",\"eBhCIZmkH\":\"fAQS\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerpR7vnkzcV=withCSS(Component,css,\"framer-rjHPd\");export default FramerpR7vnkzcV;FramerpR7vnkzcV.displayName=\"Ads Header\";FramerpR7vnkzcV.defaultProps={height:72,width:1440};addPropertyControls(FramerpR7vnkzcV,{variant:{options:[\"RIMDILQ0y\",\"MVUGA8e7e\",\"XClyRKI0V\"],optionTitles:[\"Desktop\",\"Mobile\",\"Mobile Open\"],title:\"Variant\",type:ControlType.Enum},uRzuzmiIn:{title:\"About\",type:ControlType.Link},H_EaBHynM:{title:\"Ad Suites\",type:ControlType.Link},SqRGTOCdv:{title:\"Why Gopuff\",type:ControlType.Link},zHMSmCxTN:{title:\"Benefits\",type:ControlType.Link},eBhCIZmkH:{title:\"FAQs\",type:ControlType.Link}});addFonts(FramerpR7vnkzcV,[{explicitInter:true,fonts:[]},...HamburgerFonts,...MenuItemFonts,...PrimaryButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerpR7vnkzcV\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"MVUGA8e7e\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"XClyRKI0V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]}}}\",\"framerIntrinsicWidth\":\"1440\",\"framerIntrinsicHeight\":\"72\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"uRzuzmiIn\\\":\\\"about\\\",\\\"H_EaBHynM\\\":\\\"adSuites\\\",\\\"SqRGTOCdv\\\":\\\"whyGopuff\\\",\\\"zHMSmCxTN\\\":\\\"benefits\\\",\\\"eBhCIZmkH\\\":\\\"fAQS\\\"}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./pR7vnkzcV.map", "// Generated by Framer (50a537b)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouteElementId,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/90ICLbTHnkXgVfH1BSgW/Video.js\";import Footer from\"#framer/local/canvasComponent/Muzpq_oaB/Muzpq_oaB.js\";import AdsHeader from\"#framer/local/canvasComponent/pR7vnkzcV/pR7vnkzcV.js\";import PrimaryButton from\"#framer/local/canvasComponent/TJP2lHXun/TJP2lHXun.js\";import FAQ from\"#framer/local/canvasComponent/W7rZgS7DO/W7rZgS7DO.js\";import*as sharedStyle from\"#framer/local/css/EfsG0fwnw/EfsG0fwnw.js\";import metadataProvider from\"#framer/local/webPageMetadata/abkJilg4P/abkJilg4P.js\";const AdsHeaderFonts=getFonts(AdsHeader);const PrimaryButtonFonts=getFonts(PrimaryButton);const VideoFonts=getFonts(Video);const FAQFonts=getFonts(FAQ);const FooterFonts=getFonts(Footer);const breakpoints={cyf_2nmlm:\"(min-width: 768px) and (max-width: 1199px)\",dfHUreGKw:\"(max-width: 767px)\",u_oerxj8I:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-7WkHB\";const variantClassNames={cyf_2nmlm:\"framer-v-8aujwd\",dfHUreGKw:\"framer-v-94vy1g\",u_oerxj8I:\"framer-v-1rdc9gu\"};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"u_oerxj8I\",Phone:\"dfHUreGKw\",Tablet:\"cyf_2nmlm\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"u_oerxj8I\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-7WkHB`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-7WkHB`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const router=useRouter();const elementId=useRouteElementId(\"DaQbnXs3t\");const ref2=React.useRef(null);const elementId1=useRouteElementId(\"LjIOGydIs\");const ref3=React.useRef(null);const elementId2=useRouteElementId(\"mAjC8e9YS\");const ref4=React.useRef(null);const elementId3=useRouteElementId(\"br_sauWzy\");const ref5=React.useRef(null);const elementId4=useRouteElementId(\"Jd5uSsLZr\");const ref6=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"u_oerxj8I\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1rdc9gu\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":DaQbnXs3t\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":LjIOGydIs\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":mAjC8e9YS\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":br_sauWzy\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":Jd5uSsLZr\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":DaQbnXs3t\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":LjIOGydIs\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":mAjC8e9YS\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":br_sauWzy\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":Jd5uSsLZr\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":DaQbnXs3t\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":LjIOGydIs\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":mAjC8e9YS\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":br_sauWzy\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined},{href:{hash:\":Jd5uSsLZr\",webPageId:\"abkJilg4P\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:72,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-um3no2-container\",layoutScroll:true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{eBhCIZmkH:resolvedLinks[9],H_EaBHynM:resolvedLinks[6],SqRGTOCdv:resolvedLinks[7],uRzuzmiIn:resolvedLinks[5],zHMSmCxTN:resolvedLinks[8]},dfHUreGKw:{eBhCIZmkH:resolvedLinks[14],H_EaBHynM:resolvedLinks[11],SqRGTOCdv:resolvedLinks[12],uRzuzmiIn:resolvedLinks[10],variant:\"MVUGA8e7e\",zHMSmCxTN:resolvedLinks[13]}},children:/*#__PURE__*/_jsx(AdsHeader,{eBhCIZmkH:resolvedLinks[4],H_EaBHynM:resolvedLinks[1],height:\"100%\",id:\"Lw0yVKK3W\",layoutId:\"Lw0yVKK3W\",SqRGTOCdv:resolvedLinks[2],style:{height:\"100%\",width:\"100%\"},uRzuzmiIn:resolvedLinks[0],variant:\"RIMDILQ0y\",width:\"100%\",zHMSmCxTN:resolvedLinks[3]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1k1updu\",\"data-framer-name\":\"Gopuff Ads\",name:\"Gopuff Ads\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uudala\",\"data-framer-name\":\"Gradient\",name:\"Gradient\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9fuwms\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1senr89\",\"data-framer-name\":\"Elevate Your Brand\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:185,intrinsicWidth:826,name:\"Elevate Your Brand\",svg:'<svg width=\"826\" height=\"185\" viewBox=\"0 0 826 185\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M734.897 162.139C728.221 162.139 722.003 160.31 716.608 156.653V144.948C721.363 148.606 728.221 151.075 733.342 151.075C737.274 151.075 739.56 149.703 739.56 146.868C739.56 144.948 738.188 143.668 734.897 142.753L728.496 141.108C720.449 139.096 716.334 134.981 716.334 128.031C716.334 119.07 723.832 113.126 736.085 113.126C743.492 113.126 748.704 115.23 752.453 117.607V128.671C747.973 125.654 742.669 124.099 737.548 124.099C733.434 124.099 731.422 125.38 731.422 127.483C731.422 129.312 732.702 130.5 736.085 131.323L742.669 132.786C751.356 134.707 755.014 139.553 755.014 146.411C755.014 155.738 747.15 162.139 734.897 162.139Z\" fill=\"white\"/>\\n<path d=\"M692.319 121.173V94.9297H707.132V160.767H692.593V152.995C690.215 157.841 685.003 162.139 677.414 162.139C664.429 162.139 657.205 151.258 657.205 137.633C657.205 124.831 664.795 113.127 678.602 113.127C684.729 113.127 689.484 116.053 692.319 121.173ZM682.351 149.612C688.478 149.612 692.501 144.765 692.501 137.633C692.501 130.5 688.661 125.654 682.534 125.654C676.408 125.654 672.384 130.409 672.384 137.816C672.384 145.131 676.499 149.612 682.351 149.612Z\" fill=\"white\"/>\\n<path d=\"M653.611 160.767H637.426L633.586 147.691H611.457L607.708 160.767H591.797L612.005 96.7583H633.22L653.611 160.767ZM622.43 109.926L614.84 136.078H630.111L622.43 109.926Z\" fill=\"white\"/>\\n<path d=\"M244.677 113.127C254.736 113.127 260.862 119.893 260.862 131.781V160.767H246.049V135.072C246.049 128.854 243.946 125.563 238.642 125.563C233.156 125.563 230.23 129.677 230.23 135.987V160.767H215.416V94.9297H230.23V120.99C232.79 116.327 237.545 113.127 244.677 113.127Z\" fill=\"white\"/>\\n<path d=\"M196.979 114.498H208.592V126.568H196.979V160.767H182.166V126.568H171.559V114.498H182.166V102.154L196.979 98.9531V114.498Z\" fill=\"white\"/>\\n<path d=\"M157.192 109.286C152.437 109.286 148.871 106.086 148.871 101.513C148.871 97.0328 152.254 93.9238 157.192 93.9238C162.039 93.9238 165.331 97.0328 165.331 101.513C165.331 106.086 161.856 109.286 157.192 109.286ZM164.599 160.767H149.694V114.498H164.599V160.767Z\" fill=\"white\"/>\\n<path d=\"M120.815 143.119L128.496 114.498H143.218L129.136 160.767H114.048L105.087 131.415L96.3997 160.767H81.5862L68.6016 114.498H83.4151L90.3646 142.845L98.1371 114.498H112.951L120.815 143.119Z\" fill=\"white\"/>\\n<path d=\"M810.951 27.1734V0.929688H825.765V66.7675H811.226V58.9949C808.848 63.8413 803.636 68.1391 796.046 68.1391C783.062 68.1391 775.838 57.2576 775.838 43.6328C775.838 30.831 783.428 19.1265 797.235 19.1265C803.362 19.1265 808.117 22.0526 810.951 27.1734ZM800.984 55.6116C807.111 55.6116 811.134 50.7652 811.134 43.6328C811.134 36.5004 807.294 31.654 801.167 31.654C795.041 31.654 791.017 36.4089 791.017 43.8157C791.017 51.131 795.132 55.6116 800.984 55.6116Z\" fill=\"white\"/>\\n<path d=\"M751.4 19.1265C761.458 19.1265 767.585 26.076 767.585 37.7805V66.7674H752.771V41.0724C752.771 34.8544 750.668 31.5625 745.365 31.5625C739.878 31.5625 736.952 35.6774 736.952 41.9868V66.7674H722.139V20.4981H736.769V27.4476C739.147 22.5098 744.085 19.1265 751.4 19.1265Z\" fill=\"white\"/>\\n<path d=\"M689.066 19.1265C703.697 19.1265 711.652 27.4476 711.652 40.5237V66.7674H697.113V61.3724C694.644 65.5787 689.981 68.139 684.22 68.139C675.259 68.139 668.949 61.921 668.949 53.417C668.949 44.1814 675.807 38.6035 685.409 38.6035C690.804 38.6035 694.736 40.4323 697.113 43.3584V41.9868C697.113 35.0373 692.998 31.2882 685.683 31.2882C679.831 31.2882 674.893 33.3913 671.418 36.5003V24.1557C675.807 21.3211 681.934 19.1265 689.066 19.1265ZM689.889 58.6291C694.461 58.6291 697.388 55.9773 697.388 52.4111C697.388 49.0278 694.461 46.4674 689.981 46.4674C685.409 46.4674 682.665 48.9363 682.665 52.5026C682.665 56.1602 685.317 58.6291 689.889 58.6291Z\" fill=\"white\"/>\\n<path d=\"M659.177 19.6753C661.645 19.6753 663.566 20.4983 665.029 21.5041V35.2203C663.291 34.0316 660.822 33.3001 657.713 33.3001C651.404 33.3001 647.563 37.7807 647.563 46.1018V66.7676H632.75V20.4983H647.563V30.0996C649.667 22.6929 653.873 19.6753 659.177 19.6753Z\" fill=\"white\"/>\\n<path d=\"M611.896 32.6596C619.942 34.6713 624.057 40.615 624.057 48.2961C624.057 58.9947 616.193 66.7673 601.563 66.7673H573.49V2.7583H602.02C615.096 2.7583 621.863 9.89073 621.863 19.4921C621.863 26.4416 618.297 31.0137 611.896 32.6596ZM598.545 15.1029H588.852V29.5506H598.728C604.032 29.5506 606.501 26.6245 606.501 22.4182C606.501 17.9376 603.757 15.1029 598.545 15.1029ZM588.852 54.697H598.728C605.038 54.697 608.055 51.588 608.055 46.833C608.055 42.261 605.129 39.0605 599.277 39.0605H588.852V54.697Z\" fill=\"white\"/>\\n<path d=\"M537.911 19.6753C540.38 19.6753 542.3 20.4983 543.763 21.5041V35.2203C542.026 34.0316 539.557 33.3001 536.448 33.3001C530.138 33.3001 526.298 37.7807 526.298 46.1018V66.7676H511.484V20.4983H526.298V30.0996C528.401 22.6929 532.607 19.6753 537.911 19.6753Z\" fill=\"white\"/>\\n<path d=\"M485.396 44.73V20.498H500.301V66.7674H485.761V59.1777C483.384 64.4813 478.263 68.0476 471.588 68.0476C460.524 68.0476 455.037 60.8237 455.037 49.3935V20.498H469.851V46.1931C469.851 52.4111 472.137 55.8858 477.349 55.8858C482.744 55.8858 485.396 51.6795 485.396 44.73Z\" fill=\"white\"/>\\n<path d=\"M421.726 68.139C407.644 68.139 396.854 58.5377 396.854 43.8156C396.854 28.8192 407.461 19.1265 421.726 19.1265C436.173 19.1265 446.872 28.8192 446.872 43.8156C446.872 58.5377 435.99 68.139 421.726 68.139ZM421.726 55.6116C427.944 55.6116 431.693 50.8566 431.693 43.7242C431.693 36.5003 427.944 31.6539 421.726 31.6539C415.599 31.6539 412.033 36.5003 412.033 43.7242C412.033 50.8566 415.69 55.6116 421.726 55.6116Z\" fill=\"white\"/>\\n<path d=\"M371.167 28.5448L384.701 2.7583H401.251L378.848 44.2727V66.7673H363.578V43.9069L341.357 2.7583H357.908L371.167 28.5448Z\" fill=\"white\"/>\\n<path d=\"M315.88 41.2553V47.2904H284.332C285.795 53.0512 290.916 56.6174 299.877 56.6174C305.089 56.6174 310.119 55.0629 313.868 52.5026V63.2012C310.393 65.853 304.175 68.139 296.22 68.139C279.76 68.139 269.336 58.5377 269.336 43.3584C269.336 29.0936 278.663 19.1265 293.842 19.1265C307.741 19.1265 315.88 26.9904 315.88 41.2553ZM294.208 30.3737C288.447 30.3737 285.247 33.6656 284.515 39.0607H303.169C302.986 33.2999 299.512 30.3737 294.208 30.3737Z\" fill=\"white\"/>\\n<path d=\"M254.532 20.4982H266.145V32.5684H254.532V66.7675H239.719V32.5684H229.111V20.4982H239.719V8.15357L254.532 4.95312V20.4982Z\" fill=\"white\"/>\\n<path d=\"M200.963 19.1265C215.593 19.1265 223.549 27.4476 223.549 40.5237V66.7674H209.01V61.3724C206.541 65.5787 201.877 68.139 196.116 68.139C187.155 68.139 180.846 61.921 180.846 53.417C180.846 44.1814 187.704 38.6035 197.305 38.6035C202.7 38.6035 206.632 40.4323 209.01 43.3584V41.9868C209.01 35.0373 204.895 31.2882 197.579 31.2882C191.727 31.2882 186.789 33.3913 183.315 36.5003V24.1557C187.704 21.3211 193.83 19.1265 200.963 19.1265ZM201.786 58.6291C206.358 58.6291 209.284 55.9773 209.284 52.4111C209.284 49.0278 206.358 46.4674 201.877 46.4674C197.305 46.4674 194.562 48.9363 194.562 52.5026C194.562 56.1602 197.214 58.6291 201.786 58.6291Z\" fill=\"white\"/>\\n<path d=\"M152.545 49.1192L162.604 20.498H178.332L160.044 66.7674H145.23L127.033 20.498H142.853L152.545 49.1192Z\" fill=\"white\"/>\\n<path d=\"M124.514 41.2553V47.2904H92.9671C94.4301 53.0512 99.5509 56.6174 108.512 56.6174C113.724 56.6174 118.754 55.0629 122.503 52.5026V63.2012C119.028 65.853 112.81 68.139 104.854 68.139C88.395 68.139 77.9707 58.5377 77.9707 43.3584C77.9707 29.0936 87.2977 19.1265 102.477 19.1265C116.376 19.1265 124.514 26.9904 124.514 41.2553ZM102.843 30.3737C97.082 30.3737 93.8815 33.6656 93.15 39.0607H111.804C111.621 33.2999 108.146 30.3737 102.843 30.3737Z\" fill=\"white\"/>\\n<path d=\"M69.2741 66.7675H54.3691V0.929688H69.2741V66.7675Z\" fill=\"white\"/>\\n<path d=\"M16.0946 39.6092V53.5997H44.3499V66.7673H0.732422V2.7583H43.9842V15.9259H16.0946V27.7218H41.9725V39.6092H16.0946Z\" fill=\"white\"/>\\n<path d=\"M487.814 112.105V140.37C487.814 147.668 485.434 152.036 479.883 152.04C474.328 152.032 471.952 147.664 471.952 140.37V112.105H456.156V141.443C456.156 156.785 465.641 163.125 479.887 163.125C491.628 163.125 503.614 156.785 503.614 141.443V112.105H487.818H487.814Z\" fill=\"#65C8FF\"/>\\n<path d=\"M367.565 110.984C351.258 110.984 340.457 121.315 340.457 137.419C340.457 153.523 351.894 163.129 366.655 163.129C380.261 163.129 393.39 154.792 393.39 136.557C393.39 121.489 383.074 110.984 367.565 110.984ZM367.095 152.044C360.374 152.044 356.715 145.582 356.715 137.068C356.715 129.67 359.584 122.066 367.11 122.066C374.635 122.066 377.14 129.63 377.14 136.986C377.14 145.989 373.247 152.044 367.098 152.044\" fill=\"#65C8FF\"/>\\n<path d=\"M329.25 108.61C323.947 112.161 322.582 117.609 322.582 117.609C319.683 114.058 313.771 111.203 306.802 111.203C295.151 111.199 283 121.393 283 137.489C283 151.774 293.229 162.759 306.798 162.759C312.379 162.759 316.181 161.387 319.16 158.468V159.526C319.16 168.595 313.459 172.66 305.997 172.66C298.536 172.66 293.481 170.289 290.3 168.495L287.171 180.254C291.353 182.417 299.713 184.503 306.411 184.503C313.876 184.503 321.42 183.116 326.975 178.378C332.725 173.374 334.692 165.529 334.692 155.942V133.887C334.816 126.219 337.546 120.849 340.961 117.102L329.25 108.61ZM309.638 152.262C302.917 152.262 299.258 145.8 299.258 137.286C299.258 129.888 302.127 122.284 309.653 122.284C317.178 122.284 319.683 129.848 319.683 137.204C319.683 146.207 315.79 152.262 309.641 152.262\" fill=\"#65C8FF\"/>\\n<path d=\"M424.744 110.984C407.809 110.984 398.641 122.01 398.641 138.329V183.364H414.417V158.672C417.211 161.534 421.717 163.129 427.775 163.129C439.061 163.129 450.848 154.596 450.848 136.402C450.848 120.479 440.111 110.984 424.744 110.984ZM424.703 152.044C417.982 152.044 414.323 145.582 414.323 137.068C414.323 129.67 417.196 122.066 424.718 122.066C432.239 122.066 434.748 129.63 434.748 136.986C434.748 145.989 430.855 152.044 424.707 152.044\" fill=\"#65C8FF\"/>\\n<path d=\"M576.476 101.457V89.5615C574.283 88.9586 571.579 88.5 568.119 88.5C563.49 88.5 558.074 89.7982 554.076 93.4858C549.567 97.6025 547.702 104.216 547.702 110.211V112.105H531.41V109.575C531.154 97.5211 543.132 101.046 544.513 101.46V89.5615C542.32 88.9586 539.612 88.5 536.156 88.5C531.527 88.5 526.111 89.7982 522.11 93.4858C517.604 97.6025 515.735 104.216 515.735 110.211V112.105H508.996V123.549H515.735V162.126C515.739 172.716 508.24 171.173 504.904 170.659L503.234 182.114C504.825 182.724 507.401 183.346 509.944 183.364C517.093 183.412 522.144 181.297 525.521 177.99C529.778 173.833 531.376 167.893 531.418 162.001L531.53 123.549H547.698V162.126C547.912 173.282 539.078 171.018 536.867 170.659L535.197 182.114C536.788 182.724 539.36 183.346 541.906 183.364C549.056 183.412 554.106 181.297 557.484 177.99C561.741 173.833 563.339 167.893 563.381 162.001L563.497 123.549H576.476V112.105H563.373V109.575C563.602 97.4176 575.095 101.046 576.476 101.46\" fill=\"#65C8FF\"/>\\n</svg>\\n',title:\"Elevate your Brand with gopuff Ads\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-14mmh8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17ozs6k\",\"data-framer-name\":\"gopuff-logo 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:249,name:\"gopuff-logo 1\",svg:'<svg width=\"249\" height=\"83\" viewBox=\"0 0 249 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_11653_15623)\">\\n<path d=\"M173.776 20.6611V44.8028C173.776 51.0356 171.757 54.7665 167.047 54.7696C162.334 54.7633 160.318 51.0324 160.318 44.8028V20.6611H146.916V45.7189C146.916 58.8227 154.963 64.2374 167.05 64.2374C177.012 64.2374 187.181 58.8227 187.181 45.7189V20.6611H173.78H173.776Z\" fill=\"#00A4FF\"/>\\n<path d=\"M71.7495 19.7041C57.9141 19.7041 48.75 28.5274 48.75 42.282C48.75 56.0366 58.4533 64.2407 70.9774 64.2407C82.5218 64.2407 93.661 57.1201 93.661 41.5459C93.661 28.6759 84.9085 19.7041 71.7495 19.7041ZM71.3507 54.7729C65.6487 54.7729 62.544 49.254 62.544 41.9819C62.544 35.6637 64.9786 29.1687 71.3634 29.1687C77.7483 29.1687 79.8734 35.629 79.8734 41.9124C79.8734 49.6015 76.5709 54.7729 71.3539 54.7729\" fill=\"#00A4FF\"/>\\n<path d=\"M39.2409 17.6758C34.7418 20.7085 33.5835 25.3618 33.5835 25.3618C31.1234 22.3291 26.1074 19.8903 20.1948 19.8903C10.3096 19.8871 0 28.5935 0 42.3418C0 54.5421 8.67907 63.9246 20.1916 63.9246C24.9268 63.9246 28.1527 62.7526 30.6799 60.2601V61.1635C30.6799 68.9096 25.8426 72.3814 19.512 72.3814C13.1813 72.3814 8.89286 70.3564 6.19341 68.8243L3.53864 78.867C7.08684 80.715 14.1801 82.4967 19.8629 82.4967C26.1968 82.4967 32.5976 81.3121 37.3104 77.2653C42.1892 72.9911 43.858 66.2907 43.858 58.1024V39.2649C43.9633 32.7161 46.2799 28.1291 49.1771 24.929L39.2409 17.6758ZM22.6007 54.9591C16.8987 54.9591 13.794 49.4402 13.794 42.1681C13.794 35.8499 16.2286 29.3549 22.6134 29.3549C28.9983 29.3549 31.1234 35.8152 31.1234 42.0986C31.1234 49.7877 27.8209 54.9591 22.6039 54.9591\" fill=\"#00A4FF\"/>\\n<path d=\"M120.263 19.7041C105.894 19.7041 98.1152 29.1213 98.1152 43.0591V81.524H111.501V60.434C113.872 62.8791 117.694 64.2407 122.835 64.2407C132.41 64.2407 142.41 56.9527 142.41 41.4132C142.41 27.8134 133.301 19.7041 120.263 19.7041ZM120.228 54.7729C114.526 54.7729 111.421 49.254 111.421 41.9819C111.421 35.6637 113.859 29.1687 120.24 29.1687C126.622 29.1687 128.75 35.629 128.75 41.9124C128.75 49.6015 125.448 54.7729 120.231 54.7729\" fill=\"#00A4FF\"/>\\n<path d=\"M249.001 11.5662V1.40665C247.141 0.891725 244.846 0.5 241.911 0.5C237.983 0.5 233.388 1.60883 229.996 4.75843C226.17 8.27447 224.588 13.9229 224.588 19.0437V20.6612H210.765V18.5004C210.548 8.20497 220.711 11.2156 221.882 11.5694V1.40665C220.022 0.891725 217.724 0.5 214.792 0.5C210.864 0.5 206.269 1.60883 202.874 4.75843C199.052 8.27447 197.466 13.9229 197.466 19.0437V20.6612H191.748V30.4354H197.466V63.3845C197.469 72.4289 191.106 71.1115 188.276 70.6724L186.859 80.4561C188.209 80.9773 190.395 81.508 192.552 81.5238C198.618 81.5649 202.903 79.7579 205.768 76.9337C209.38 73.3829 210.736 68.3094 210.771 63.2771L210.867 30.4354H224.585V63.3845C224.767 72.9122 217.271 70.9789 215.395 70.6724L213.978 80.4561C215.328 80.9773 217.511 81.508 219.671 81.5238C225.737 81.5649 230.022 79.7579 232.887 76.9337C236.499 73.3829 237.855 68.3094 237.89 63.2771L237.989 30.4354H249.001V20.6612H237.884V18.5004C238.079 8.11652 247.83 11.2156 249.001 11.5694\" fill=\"#00A4FF\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_11653_15623\">\\n<rect width=\"249\" height=\"82\" fill=\"white\" transform=\"translate(0 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-183m9dq\",\"data-framer-name\":\"Description\",id:elementId,name:\"Description\",ref:ref2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-text-alignment\":\"center\"},children:\"Gopuff Ads is the first instant Ads platform transforming the future of advertising. We help advertiser reach the most relevant and highest-intent customers for your brand on Gopuff, your one-stop shop for groceries, alcohol, home essentials, and more. \"})}),className:\"framer-htwpm7\",\"data-framer-name\":\"Gopuff Ads is the first instant Ads platform transforming the future of advertising. We help advertiser reach the most relevant and highest-intent customers for your brand on Gopuff, your one-stop shop for groceries, alcohol, home essentials, and more.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Gopuff Ads is the first instant Ads platform transforming the future of advertising. We help advertiser reach the most relevant and highest-intent customers for your brand on Gopuff, your one-stop shop for groceries, alcohol, home essentials, and more.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:675.3825665859564},dfHUreGKw:{y:516.0707021791768}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:726,children:/*#__PURE__*/_jsx(Container,{className:\"framer-yaj7kk-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"ju8fu2_xI\",layoutId:\"ju8fu2_xI\",opNQ8siIq:\"Get Started\",RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form \",style:{height:\"100%\",width:\"100%\"},variant:\"cvdyP0f7m\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6745r4\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yl9gjo\",\"data-framer-name\":\"Videos\",name:\"Videos\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13jmqrk\",\"data-framer-name\":\"Video Row\",id:elementId1,name:\"Video Row\",ref:ref3,children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-a55hka-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{objectFit:\"fill\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(255, 202, 0)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,controls:false,height:\"100%\",id:\"R0uJpPVp1\",isMixedBorderRadius:false,layoutId:\"R0uJpPVp1\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/RfBNycnnQUorH44eLsq7MLZ0lyU.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,volume:25,width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5ds0ye\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-tqawi6\",\"data-styles-preset\":\"EfsG0fwnw\",children:\"Gopuff Ads Suite of Solutions\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Gopuff Ads Suite of Solutions\"})}),className:\"framer-1w6926u\",\"data-framer-name\":\"Gopuff Ads Suite of Solutions\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],name:\"Gopuff Ads Suite of Solutions\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\"},children:\"We collapse the marketing funnel from impression to consumption in just 20 minutes with an omni-channel strategy. Reach customers through digital ads and physical product sampling. \"})}),className:\"framer-1pgsuus\",\"data-framer-name\":\"We collapse the marketing funnel from impression to consumption in just 20 minutes with an omni-channel strategy. Reach customers through digital ads and physical product sampling.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"We collapse the marketing funnel from impression to consumption in just 20 minutes with an omni-channel strategy. Reach customers through digital ads and physical product sampling.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-89u572\",\"data-framer-name\":\"Video Row\",name:\"Video Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1awdl73\",\"data-framer-name\":\"Frame 1000002061\",name:\"Frame 1000002061\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Our Core Suite Includes: \"})}),className:\"framer-23yhok\",\"data-framer-name\":\"Our Core Suite Includes:\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],name:\"Our Core Suite Includes:\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"ul\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"140%\"},children:[/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"In-app Sponsored Products\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Behavioral and contextual targeting\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"In-app Display\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Off-platform Audience Extension\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Product Sampling\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Data & Insights\"})}),/*#__PURE__*/_jsx(\"li\",{children:/*#__PURE__*/_jsx(\"p\",{children:\"Non-endemic Advertising\"})})]})}),className:\"framer-1br8hfv\",\"data-framer-name\":\"In-app Sponsored Products Behavioral and contextual targeting In-app Display Off-platform Audience Extension Product Sampling Data & Insights Non-endemic Advertising\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"In-app Sponsored Products Behavioral and contextual targeting In-app Display Off-platform Audience Extension Product Sampling Data & Insights Non-endemic Advertising\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-dnotp5-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{objectFit:\"scale-down\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"}}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgb(213, 62, 153)\",borderRadius:40,bottomLeftRadius:40,bottomRightRadius:40,controls:false,height:\"100%\",id:\"rqVW8nQal\",isMixedBorderRadius:false,layoutId:\"rqVW8nQal\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/OlbcLFNqhSODsE46dBvOHp9Bo.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:40,topRightRadius:40,volume:25,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16uds3o\",\"data-framer-name\":\"Why Choose Gopuff Ads?\",name:\"Why Choose Gopuff Ads?\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"47.08px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Why Choose Gopuff Ads?\"})}),className:\"framer-1ke1pnc\",\"data-framer-name\":\"Why Choose Gopuff Ads?\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],id:elementId2,name:\"Why Choose Gopuff Ads?\",ref:ref4,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\"},children:\"Our platform offers a unique opportunity to reach a demographic that skews younger, providing you with the perfect way to introduce your products to a fresh and receptive audience. Gopuff also delivers late into the night and fills a void left by other retailers. This presents advertisers with an unparalleled opportunity for incremental sales, ensuring your brand stays top-of-mind when others have closed their doors.\"})}),className:\"framer-cgc33m\",\"data-framer-name\":\"Our platform offers a unique opportunity to reach a demographic that skews younger, providing you with the perfect way to introduce your products to a fresh and receptive audience. Gopuff also delivers late into the night and fills a void left by other retailers. This presents advertisers with an unparalleled opportunity for incremental sales, ensuring your brand stays top-of-mind when others have closed their doors.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Our platform offers a unique opportunity to reach a demographic that skews younger, providing you with the perfect way to introduce your products to a fresh and receptive audience. Gopuff also delivers late into the night and fills a void left by other retailers. This presents advertisers with an unparalleled opportunity for incremental sales, ensuring your brand stays top-of-mind when others have closed their doors.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oiwsjs\",\"data-framer-name\":\"Value Props\",name:\"Value Props\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yqo9ih\",\"data-framer-name\":\"Frame 1000002064\",name:\"Frame 1000002064\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1trtyjc\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-xlqvtb\",\"data-framer-name\":\"revenue 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:84,intrinsicWidth:84,name:\"revenue 1\",svg:'<svg width=\"84\" height=\"84\" viewBox=\"0 0 84 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_11653_15669)\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M80.4467 12.4408C80.3907 13.1542 80.9238 13.778 81.6372 13.834C82.3506 13.8899 82.9744 13.3569 83.0304 12.6434L83.4951 6.9474H83.4947C83.501 6.86618 83.4997 6.78318 83.4901 6.69921C83.4091 5.98852 82.7671 5.4782 82.0564 5.55942L76.3808 6.22893C75.6701 6.30999 75.1598 6.95194 75.241 7.66263C75.3221 8.37331 75.964 8.88363 76.6747 8.80242L78.7648 8.55585L63.9577 23.9523L48.4597 16.3079C47.9932 16.0372 47.3874 16.0777 46.958 16.4515L36.9201 25.1943C37.1131 24.1294 37.2142 23.033 37.2142 21.9133C37.2142 11.7914 28.9794 3.5564 18.8573 3.5564C8.73516 3.5564 0.5 11.7912 0.5 21.9132C0.5 32.0351 8.73483 40.27 18.8568 40.27C26.0687 40.27 32.3214 36.0888 35.3214 30.024L48.0113 18.9715L63.6612 26.6909C64.1908 26.9522 64.8127 26.8176 65.1909 26.4013L80.6162 10.3621L80.4467 12.4408ZM18.8569 37.6764C10.1651 37.6764 3.09375 30.605 3.09375 21.9132C3.09375 13.2214 10.1651 6.14998 18.8568 6.14998C27.5486 6.14998 34.62 13.2214 34.62 21.9132C34.62 30.605 27.5488 37.6764 18.8569 37.6764ZM41.2869 39.698H33.9477C32.3388 39.698 31.0297 41.0071 31.0297 42.616V77.5254C31.0297 79.1344 32.3388 80.4434 33.9477 80.4434H41.2869C42.8958 80.4434 44.2049 79.1344 44.2049 77.5254V42.6162C44.2049 41.0071 42.8958 39.698 41.2869 39.698ZM41.6111 77.5256C41.6111 77.7013 41.4626 77.8498 41.2869 77.8498H33.9477C33.772 77.8498 33.6235 77.7013 33.6235 77.5256V42.6162C33.6235 42.4404 33.772 42.2919 33.9477 42.2919H41.2869C41.4626 42.2919 41.6111 42.4404 41.6111 42.6162V77.5256ZM60.9347 46.9145H53.5955C51.9866 46.9145 50.6776 48.2235 50.6776 49.8325V77.5256C50.6776 79.1345 51.9866 80.4436 53.5955 80.4436H60.9347C62.5436 80.4436 63.8527 79.1345 63.8527 77.5256V49.8325C63.8527 48.2235 62.5436 46.9145 60.9347 46.9145ZM61.2589 77.5256C61.2589 77.7013 61.1104 77.8498 60.9347 77.8498H53.5955C53.4198 77.8498 53.2713 77.7013 53.2713 77.5256V49.8325C53.2713 49.6567 53.4198 49.5082 53.5955 49.5082H60.9347C61.1104 49.5082 61.2589 49.6567 61.2589 49.8325V77.5256ZM80.582 25.8181H73.2429C71.6339 25.8181 70.3249 27.1271 70.3249 28.736V77.5254C70.3249 79.1344 71.6339 80.4434 73.2429 80.4434H80.582C82.191 80.4434 83.5 79.1344 83.5 77.5254V28.736C83.5 27.1271 82.191 25.8181 80.582 25.8181ZM80.9062 77.5254C80.9062 77.7012 80.7578 77.8497 80.582 77.8497H73.2429C73.0671 77.8497 72.9186 77.7012 72.9186 77.5254V28.736C72.9186 28.5603 73.0671 28.4118 73.2429 28.4118H80.582C80.7578 28.4118 80.9062 28.5603 80.9062 28.736V77.5254ZM21.6392 57.5502H14.3002C12.6913 57.5502 11.3822 58.8592 11.3822 60.4681V77.5254C11.3822 79.1344 12.6913 80.4434 14.3002 80.4434H21.6392C23.2482 80.4434 24.5572 79.1344 24.5572 77.5254V60.4681C24.5572 58.8592 23.2482 57.5502 21.6392 57.5502ZM21.9634 77.5254C21.9634 77.7012 21.815 77.8497 21.6392 77.8497H14.3002C14.1245 77.8497 13.976 77.7012 13.976 77.5254V60.4681C13.976 60.2924 14.1245 60.1439 14.3002 60.1439H21.6392C21.815 60.1439 21.9634 60.2924 21.9634 60.4681V77.5254ZM25.5465 25.7595C25.7425 27.351 25.1847 29.0038 23.7207 30.1146C22.7126 30.8796 21.417 31.3304 20.1538 31.5062V32.7087C20.1538 33.4249 19.5731 34.0056 18.8569 34.0056C18.1407 34.0056 17.5601 33.4249 17.5601 32.7087V31.4822C16.5119 31.3123 15.5092 30.9414 14.6509 30.3696C13.4435 29.5654 12.5185 28.3794 12.1276 26.8111C11.9569 26.1173 12.3812 25.4165 13.075 25.2458C13.7688 25.0751 14.4696 25.4994 14.6403 26.1932C14.8609 27.0783 15.3888 27.7515 16.0795 28.2116C17.7783 29.343 20.5184 29.3039 22.1604 28.0579C23.6085 26.9592 23.0775 24.9328 21.6731 24.085C20.8214 23.5707 19.7072 23.2994 18.6648 23.1283C17.4001 22.9207 16.0301 22.5446 14.9182 21.8187C12.0508 19.9468 11.965 15.8282 14.5833 13.6994C15.3878 13.0453 16.3872 12.5963 17.4523 12.3818L17.5602 12.3609V11.1175C17.5602 10.4013 18.1409 9.82063 18.8571 9.82063C19.5733 9.82063 20.154 10.4013 20.154 11.1175V12.3411C20.3286 12.3713 20.5022 12.4082 20.6742 12.4517C22.5175 12.919 24.1944 14.131 25.0751 16.2288C25.352 16.8891 25.0414 17.6489 24.3811 17.9259C23.7209 18.2028 22.9611 17.8922 22.684 17.2319C22.0536 15.7292 20.5051 14.8374 18.8871 14.8366C17.1624 14.8356 15.1495 15.8718 15.245 17.8395C15.3374 19.7427 17.5529 20.3242 19.0803 20.575C20.3921 20.7902 21.8221 21.1485 23.0105 21.866C24.4664 22.7451 25.3574 24.2237 25.5465 25.7595Z\" fill=\"#00A4FF\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_11653_15669\">\\n<rect width=\"83\" height=\"83\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Accelerate \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Revenue\"})]}),className:\"framer-1rvgz3k\",\"data-framer-name\":\"Accelerate Revenue\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Accelerate Revenue\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Drive trial, consideration, and sales with valuable audiences.\"})}),className:\"framer-udqcz\",\"data-framer-name\":\"Drive trial, consideration, and sales with valuable audiences.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Drive trial, consideration, and sales with valuable audiences.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xhp5hz\",\"data-framer-name\":\"Frame 1000002065\",name:\"Frame 1000002065\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nwvake\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:73,intrinsicWidth:114,loading:getLoadingLazyAtYPosition(3437.8225665859563),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iRZAOluuRA5LMIBQ4jdliF6sHU.svg\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:73,intrinsicWidth:114,loading:getLoadingLazyAtYPosition(4563.590702179177),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iRZAOluuRA5LMIBQ4jdliF6sHU.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:73,intrinsicWidth:114,loading:getLoadingLazyAtYPosition(3488.44),positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/iRZAOluuRA5LMIBQ4jdliF6sHU.svg\"},className:\"framer-hpvld0\",\"data-framer-name\":\"Icon\",name:\"Icon\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Expand \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Fanbase\"})]}),className:\"framer-j1c2ue\",\"data-framer-name\":\"Expand Fanbase\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Expand Fanbase\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Reach untapped customers and grow your brand.\"})}),className:\"framer-4t5hyi\",\"data-framer-name\":\"Reach untapped customers and grow your brand.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Reach untapped customers and grow your brand.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-iw2sqn\",\"data-framer-name\":\"Frame 1000002066\",name:\"Frame 1000002066\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hbmk4\",\"data-framer-name\":\"Icon\",name:\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1sja41i\",\"data-framer-name\":\"social-media 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:84,intrinsicWidth:84,name:\"social-media 1\",svg:'<svg width=\"84\" height=\"84\" viewBox=\"0 0 84 84\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_11653_15679)\">\\n<path d=\"M73.0966 51.8507C74.1427 48.6218 74.674 45.2543 74.674 41.8227C74.674 38.4039 74.1465 35.0483 73.1067 31.8296C75.3934 30.9709 77.4723 29.5961 79.1985 27.768C82.1817 24.61 83.7559 20.4787 83.6318 16.1366C83.3747 7.17182 75.8734 0.0890271 66.9073 0.344856C62.5645 0.468971 58.5308 2.27687 55.5476 5.43548C54.0411 7.03061 52.895 8.87397 52.1446 10.8674C48.9252 9.82827 45.5696 9.30078 42.1495 9.30078C38.7275 9.30078 35.3694 9.82953 32.1481 10.8699C29.8247 4.72182 23.8786 0.337891 16.9269 0.337891C7.95831 0.337891 0.662109 7.63409 0.662109 16.602C0.662109 23.5531 5.04667 29.4986 11.1948 31.8213C10.1538 35.0433 9.62563 38.4013 9.62563 41.8227C9.62563 45.2543 10.1569 48.6218 11.203 51.8507C5.05047 54.1716 0.662109 60.1196 0.662109 67.0738C0.662109 69.522 1.19277 71.8757 2.23951 74.0693C2.5289 74.6753 3.2546 74.9324 3.86061 74.643C4.46599 74.3536 4.72308 73.6279 4.43432 73.0219C3.54462 71.1576 3.09375 69.1566 3.09375 67.0738C3.09375 59.4471 9.29951 53.242 16.9269 53.242C24.5549 53.242 30.7607 59.4471 30.7607 67.0738C30.7607 74.7012 24.5549 80.9064 16.9269 80.9064C13.4479 80.9064 10.1227 79.6101 7.56443 77.2564C7.06987 76.8017 6.30048 76.834 5.84645 77.3279C5.39178 77.8225 5.42345 78.5912 5.91801 79.0459C8.92653 81.8138 12.8362 83.338 16.9269 83.338C23.8887 83.338 29.8425 78.9408 32.1582 72.7787C35.3757 73.8172 38.7306 74.3447 42.1495 74.3447C45.569 74.3447 48.9245 73.8172 52.142 72.7793C54.4578 78.9414 60.4115 83.338 67.3734 83.338C76.342 83.338 83.6382 76.0418 83.6382 67.0738C83.6382 60.1196 79.2498 54.1709 73.0966 51.8507ZM57.3156 7.1047C59.8524 4.41849 63.2839 2.88098 66.9776 2.77523C67.1118 2.77143 67.2448 2.76953 67.3791 2.76953C74.8247 2.76953 80.9868 8.7163 81.2008 16.2056C81.3066 19.8987 79.9679 23.4119 77.4311 26.0987C74.8944 28.785 71.4628 30.3225 67.7691 30.4282C67.6349 30.432 67.5013 30.4339 67.3677 30.4339C59.922 30.4339 53.76 24.4872 53.5459 16.9978C53.4395 13.3048 54.7789 9.79091 57.3156 7.1047ZM51.46 70.444C48.4642 71.4179 45.3379 71.9131 42.1495 71.9131C38.9624 71.9131 35.8361 71.4179 32.8402 70.444C33.0701 69.356 33.1923 68.2289 33.1923 67.0738C33.1923 58.1059 25.8955 50.8103 16.9269 50.8103C15.7649 50.8103 14.6314 50.9338 13.5378 51.1662C12.5556 48.1596 12.0573 45.0219 12.0573 41.8227C12.0573 38.6337 12.5531 35.5062 13.5289 32.5071C14.6251 32.7414 15.7617 32.8656 16.9269 32.8656C19.7132 32.8656 22.4621 32.1487 24.8779 30.793C25.463 30.4643 25.6713 29.7234 25.3427 29.1377C25.014 28.5519 24.2731 28.3442 23.6874 28.6729C21.6344 29.8247 19.2965 30.4339 16.9269 30.4339C9.29888 30.4339 3.09375 24.2288 3.09375 16.6014C3.09375 8.97466 9.29951 2.76953 16.9269 2.76953C24.5549 2.76953 30.7607 8.97466 30.7607 16.602C30.7607 19.7929 29.6481 22.906 27.628 25.3686C27.2019 25.8872 27.2778 26.6535 27.7971 27.0796C28.3157 27.5052 29.0819 27.4298 29.5081 26.9106C31.8834 24.0148 33.1923 20.3534 33.1923 16.6014C33.1923 15.4369 33.0676 14.3002 32.8339 13.2041C35.8323 12.2282 38.9605 11.7324 42.1495 11.7324C45.3379 11.7324 48.4648 12.2276 51.4619 13.2022C51.1966 14.4573 51.0776 15.7522 51.1149 17.0675C51.3676 25.8739 58.6119 32.8662 67.367 32.8656C67.5235 32.8656 67.6811 32.8637 67.8388 32.8586C68.8355 32.8301 69.8158 32.7117 70.7713 32.5097C71.7465 35.5074 72.2424 38.635 72.2424 41.8227C72.2424 45.0219 71.7434 48.1596 70.7618 51.1662C69.6682 50.9332 68.5347 50.8103 67.3734 50.8103C58.4048 50.8103 51.1086 58.1059 51.1086 67.0738C51.1086 68.2295 51.2302 69.3567 51.46 70.444ZM67.3734 80.9064C59.7454 80.9064 53.5402 74.7012 53.5402 67.0745C53.5402 59.4471 59.7454 53.242 67.3734 53.242C75.0014 53.242 81.2065 59.4471 81.2065 67.0745C81.2065 74.7012 75.0014 80.9064 67.3734 80.9064Z\" fill=\"#00A4FF\"/>\\n<path d=\"M25.2057 9.42482C24.7865 9.13986 24.2349 9.1443 23.8208 9.43685C23.4067 9.72878 22.9634 9.97258 22.4973 10.1657C20.8268 8.85871 18.406 8.8739 16.7475 10.3158C15.8857 11.0655 15.3468 12.1022 15.2214 13.2217C13.4375 12.9564 11.8253 11.9742 10.7678 10.4684C10.5158 10.11 10.0902 9.91558 9.6552 9.95738C9.2189 9.9998 8.83958 10.2734 8.66164 10.6736C8.62682 10.7521 7.80867 12.6214 7.91315 14.9093C7.99294 16.6602 8.61922 18.9171 10.9033 20.6598C10.0807 20.9251 9.21193 21.048 8.34629 21.0131C7.78271 20.991 7.27928 21.3576 7.1273 21.8997C6.97532 22.4417 7.21532 23.0173 7.70735 23.2909C9.61467 24.3503 11.6581 24.881 13.6547 24.881C15.5728 24.881 17.4472 24.3908 19.1152 23.4099C21.2068 22.1796 22.7266 20.2957 23.5517 17.9951C23.5776 17.9368 23.5992 17.8761 23.6163 17.8134C24.0405 16.564 24.2628 15.1955 24.2628 13.7442C24.2628 13.6808 24.2609 13.6169 24.2584 13.5536C24.9524 12.7354 25.4476 11.7659 25.7034 10.7179C25.8225 10.2252 25.6249 9.70978 25.2057 9.42482ZM21.7938 13.3648C21.8179 13.4915 21.8305 13.6226 21.8305 13.748C21.8305 14.9397 21.6532 16.0435 21.3157 17.0408C21.2973 17.0864 21.2821 17.1339 21.2695 17.1827C20.6381 18.9494 19.4888 20.3685 17.8823 21.3139C16.4119 22.1796 14.7243 22.5481 13.0044 22.4234C13.3983 22.2283 13.7789 22.0067 14.143 21.7597C14.5077 21.5115 14.7104 21.0853 14.6711 20.6452C14.6318 20.2051 14.357 19.8214 13.9536 19.6422C11.6835 18.6334 10.4695 17.0288 10.3461 14.8739C10.3207 14.4325 10.3429 14.0089 10.3904 13.6207C12.0628 15.0182 14.205 15.7807 16.441 15.723C17.1002 15.7059 17.6258 15.167 17.6258 14.5078V13.7701C17.6258 13.7651 17.6258 13.7594 17.6258 13.7537C17.6176 13.1388 17.8785 12.5543 18.3433 12.1509C19.2121 11.3955 20.533 11.4873 21.2885 12.3561C21.4404 12.5302 21.6342 12.6537 21.8457 12.7189C21.7716 12.9228 21.752 13.1451 21.7938 13.3648Z\" fill=\"#00A4FF\"/>\\n<path d=\"M63.3721 17.5607H65.0958V24.8107C65.0958 25.4819 65.6403 26.0265 66.3116 26.0265C66.9834 26.0265 67.5274 25.4819 67.5274 24.8107V17.5607H69.405C70.0762 17.5607 70.6208 17.0161 70.6208 16.3449C70.6208 15.6737 70.0762 15.1291 69.405 15.1291H67.5274V11.7273C67.5274 10.5596 68.4779 9.60913 69.6462 9.60913H71.2205C71.8917 9.60913 72.4363 9.06455 72.4363 8.39331C72.4363 7.72144 71.8917 7.17749 71.2205 7.17749H69.6462C67.1373 7.17749 65.0958 9.21842 65.0958 11.7273V15.1291H63.3721C62.7008 15.1291 62.1562 15.6737 62.1562 16.3449C62.1562 17.0161 62.7008 17.5607 63.3721 17.5607Z\" fill=\"#00A4FF\"/>\\n<path d=\"M14.1691 73.362C14.4585 73.362 14.7479 73.2873 15.0056 73.1385L23.2814 68.3581C23.7975 68.0605 24.118 67.5052 24.118 66.9093C24.118 66.314 23.7975 65.7587 23.2814 65.4611L15.0056 60.6807C14.4902 60.3825 13.8493 60.3825 13.3332 60.6807C12.8171 60.9783 12.4961 61.5337 12.4961 62.1296V71.6896C12.4961 72.2855 12.8171 72.8408 13.3332 73.1385C13.591 73.2879 13.8797 73.362 14.1691 73.362ZM14.9277 63.4442L20.9283 66.9099L14.9277 70.3756V63.4442Z\" fill=\"#00A4FF\"/>\\n<path d=\"M72.6563 58.4631H62.09C60.2549 58.4631 58.7617 59.9563 58.7617 61.7921V72.3564C58.7617 74.1922 60.2549 75.6854 62.09 75.6854H72.6563C74.4914 75.6854 75.9846 74.1922 75.9846 72.3564V61.7921C75.9846 59.9563 74.4914 58.4631 72.6563 58.4631ZM73.553 72.3564C73.553 72.8516 73.1508 73.2537 72.6563 73.2537H62.09C61.5955 73.2537 61.1934 72.8516 61.1934 72.3564V61.7921C61.1934 61.2975 61.5955 60.8948 62.09 60.8948H72.6563C73.1508 60.8948 73.553 61.2975 73.553 61.7921V72.3564Z\" fill=\"#00A4FF\"/>\\n<path d=\"M67.3745 63.3992C65.3482 63.3992 63.6992 65.0481 63.6992 67.0745C63.6992 69.1009 65.3482 70.7492 67.3745 70.7492C69.4009 70.7492 71.0499 69.1009 71.0499 67.0745C71.0499 65.0481 69.4009 63.3992 67.3745 63.3992ZM67.3745 68.3175C66.6887 68.3175 66.1309 67.7597 66.1309 67.0745C66.1309 66.3887 66.6887 65.8308 67.3745 65.8308C68.0603 65.8308 68.6182 66.3887 68.6182 67.0745C68.6182 67.7597 68.0603 68.3175 67.3745 68.3175Z\" fill=\"#00A4FF\"/>\\n<path d=\"M50.9499 29.2085C50.278 29.2085 49.734 29.7531 49.734 30.4243V30.9695C48.0205 31.9796 46.2189 32.8515 44.3667 33.5652C42.8836 34.1364 41.3518 34.6113 39.8023 34.983C39.5642 34.8 39.2678 34.6892 38.9449 34.6892H33.3781C32.0331 34.6892 30.9395 35.7834 30.9395 37.1278V43.5128C30.9395 44.8578 32.0331 45.9514 33.3781 45.9514H34.4907L34.9124 54.0581C34.946 54.7072 35.483 55.2106 36.1257 55.2106C36.1466 55.2106 36.1681 55.21 36.1897 55.2087C36.8603 55.1739 37.3757 54.6021 37.3409 53.9315L36.9255 45.9514H38.9449C39.2672 45.9514 39.5642 45.8412 39.8017 45.6582C40.7882 45.8963 41.7698 46.1762 42.7291 46.4947C43.3668 46.7056 44.0545 46.3605 44.266 45.7234C44.4775 45.0857 44.1318 44.3974 43.4947 44.1865C42.4644 43.8446 41.4107 43.5438 40.3507 43.2886V37.3532C42.011 36.9556 43.6518 36.4458 45.2406 35.8341C46.7768 35.242 48.2814 34.5486 49.7334 33.7634V46.8803C49.1989 46.5916 48.6588 46.3161 48.1148 46.0546C47.5095 45.7633 46.7831 46.0179 46.4925 46.6232C46.2012 47.2286 46.4557 47.955 47.0611 48.2462C47.9667 48.6819 48.8621 49.1619 49.7334 49.6736V50.2163C49.7334 50.8881 50.278 51.4321 50.9492 51.4321C51.6205 51.4321 52.165 50.8881 52.165 50.2163V30.4243C52.1657 29.7531 51.6211 29.2085 50.9499 29.2085ZM37.9197 43.5191L33.3711 43.5128L33.3781 37.1208H37.9197V43.5191Z\" fill=\"#00A4FF\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_11653_15679\">\\n<rect width=\"83\" height=\"83\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Amplify Trade Promos\"})}),className:\"framer-1ma8bbq\",\"data-framer-name\":\"Amplify Trade Promos\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Amplify Trade Promos\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Boost planned promotions and marketing initiatives.\"})}),className:\"framer-2ppgmt\",\"data-framer-name\":\"Boost planned promotions and marketing initiatives.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Boost planned promotions and marketing initiatives.\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-madvod\",\"data-framer-name\":\"Frame 1000002067\",name:\"Frame 1000002067\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-fhy6j0\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-7bpm00\",\"data-framer-name\":\"analysis 1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:82,intrinsicWidth:82,name:\"analysis 1\",svg:'<svg width=\"82\" height=\"82\" viewBox=\"0 0 82 82\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_11653_15690)\">\\n<path d=\"M34.267 5.91577C18.6156 5.91577 5.92773 18.6037 5.92773 34.255C5.92773 49.9064 18.6156 62.5943 34.267 62.5943C49.9184 62.5943 62.6062 49.9064 62.6062 34.255C62.5892 18.6107 49.9113 5.93281 34.267 5.91577ZM34.267 8.61475C42.6028 8.62133 50.4141 12.684 55.2056 19.5051L51.8319 22.8788C51.0109 22.3821 50.071 22.1162 49.1114 22.1096C46.1302 22.1096 43.7134 24.5264 43.7134 27.5076C43.7181 28.4683 43.9825 29.4097 44.4786 30.2322L35.6421 39.0686C33.9689 38.0484 31.8661 38.0484 30.1929 39.0686L24.0554 32.9312C24.5515 32.1087 24.8158 31.1672 24.8206 30.2066C24.8243 27.2313 22.4154 24.8164 19.4402 24.8127C16.9795 24.8096 14.8296 26.474 14.2163 28.8571H9.20969C11.7648 17.058 22.1945 8.63246 34.267 8.61475ZM51.8103 27.5076C51.8103 28.9983 50.602 30.2066 49.1114 30.2066C47.6207 30.2066 46.4124 28.9983 46.4124 27.5076C46.4124 26.0169 47.6207 24.8086 49.1114 24.8086C50.602 24.8086 51.8103 26.0169 51.8103 27.5076ZM35.6165 43.7014C35.6165 45.1921 34.4082 46.4004 32.9175 46.4004C31.4268 46.4004 30.2185 45.1921 30.2185 43.7014C30.2185 42.2108 31.4268 41.0025 32.9175 41.0025C34.4082 41.0025 35.6165 42.2108 35.6165 43.7014ZM22.1216 30.2066C22.1216 31.6972 20.9133 32.9055 19.4226 32.9055C17.9319 32.9055 16.7236 31.6972 16.7236 30.2066C16.7236 28.7159 17.9319 27.5076 19.4226 27.5076C20.9133 27.5076 22.1216 28.7159 22.1216 30.2066ZM46.7251 56.6744C42.9142 58.7904 38.6262 59.899 34.267 59.8951C20.1159 59.9048 8.63633 48.441 8.62671 34.2899C8.62604 33.3767 8.67428 32.4639 8.77111 31.5559H14.2163C14.8298 33.9318 16.9687 35.5951 19.4226 35.6043C20.3833 35.5996 21.3247 35.3353 22.1472 34.8392L28.2847 40.9767C27.7886 41.7992 27.5243 42.7406 27.5195 43.7013C27.5195 46.6825 29.9363 49.0992 32.9175 49.0992C35.8987 49.0992 38.3155 46.6825 38.3155 43.7013C38.3107 42.7406 38.0464 41.7992 37.5503 40.9767L46.3867 32.1402C47.2093 32.6363 48.1507 32.9006 49.1114 32.9054C52.0925 32.9054 54.5093 30.4886 54.5093 27.5074C54.5046 26.5467 54.2403 25.6053 53.7441 24.7828L56.686 21.8423C63.5541 34.2117 59.0944 49.8065 46.7251 56.6744Z\" fill=\"#00A4FF\"/>\\n<path d=\"M68.0051 14.0126C70.4589 14.0034 72.5979 12.3403 73.2114 9.96418H81.5V7.2652H73.2114C72.5979 4.88909 70.4589 3.22602 68.0051 3.21674C65.0239 3.21674 62.6071 5.6335 62.6071 8.61469C62.6118 9.57536 62.8762 10.5168 63.3723 11.3393L61.0012 13.7104C49.6562 -1.07008 28.4774 -3.85509 13.6969 7.48989C-1.08351 18.8349 -3.86851 40.0139 7.47647 54.7943C18.1853 68.7459 37.8155 72.1302 52.5777 62.5699L56.6505 66.6427L58.5587 68.5509L69.422 79.4142C72.1849 82.1772 76.6642 82.1772 79.4271 79.4142C82.19 76.6513 82.19 72.1721 79.4271 69.4091L68.5638 58.5458L66.6556 56.6376L62.5828 52.5648C69.8125 41.4288 69.8125 27.0813 62.5828 15.9451L65.2818 13.2461C66.1038 13.7424 67.0449 14.0072 68.0051 14.0126ZM68.0051 5.91571C69.4958 5.91571 70.704 7.12401 70.704 8.61469C70.704 10.1054 69.4958 11.3137 68.0051 11.3137C66.5144 11.3137 65.3061 10.1054 65.3061 8.61469C65.3061 7.12401 66.5146 5.91571 68.0051 5.91571ZM77.519 71.3173C79.2473 73.0069 79.2789 75.7777 77.5893 77.5061C75.8997 79.2344 73.1289 79.266 71.4006 77.5764C71.3768 77.5533 71.3535 77.5299 71.3302 77.5061L60.4668 66.6427L66.6556 60.4539L77.519 71.3173ZM64.7474 58.5458L58.5587 64.7345L54.8233 60.9991C55.0135 60.8534 55.1917 60.6928 55.3793 60.543C55.5668 60.3932 55.7841 60.2137 55.9852 60.045C56.2807 59.7967 56.5722 59.5457 56.8583 59.288C57.0054 59.153 57.1457 59.0181 57.2901 58.8831C57.8434 58.3649 58.3792 57.8292 58.8974 57.2759C59.0323 57.1315 59.1673 56.9911 59.3022 56.8441C59.56 56.558 59.811 56.2665 60.0593 55.9709C60.2285 55.7712 60.3945 55.5693 60.5572 55.365C60.7057 55.1788 60.8663 55.0007 61.012 54.8104L64.7474 58.5458ZM59.5141 52.2774C59.089 52.8712 58.6504 53.4528 58.1875 54.0128C58.0526 54.1761 57.9082 54.334 57.7692 54.4946C57.3563 54.975 56.9298 55.4411 56.4899 55.8927C56.2983 56.0905 56.1034 56.2854 55.9056 56.477C55.4557 56.9169 54.9898 57.3434 54.5075 57.7563C54.3469 57.8913 54.189 58.0384 54.0257 58.1747C53.4657 58.6375 52.8841 59.0761 52.2903 59.5012C38.3204 69.4815 18.9048 66.2473 8.92447 52.2774C-1.05584 38.3075 2.17837 18.8919 16.1483 8.91158C30.1182 -1.06873 49.5338 2.16532 59.5141 16.1354C67.2367 26.9451 67.2367 41.4677 59.5141 52.2774Z\" fill=\"#00A4FF\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_11653_15690\">\\n<rect width=\"81\" height=\"81\" fill=\"white\" transform=\"translate(0.5 0.5)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Gain Valuable Insight\"})}),className:\"framer-1pjtwvg\",\"data-framer-name\":\"Gain Valuable Insight\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Gain Valuable Insight\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Measure impact through closed-loop post sample customer analysis.\"})}),className:\"framer-w632u2\",\"data-framer-name\":\"Measure impact through closed-loop post sample customer analysis.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Measure impact through closed-loop post sample customer analysis.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:4552.882566585957},dfHUreGKw:{y:6238.930702179177}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:4043.2200000000003,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1met6yq-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"iiMJ974kj\",layoutId:\"iiMJ974kj\",opNQ8siIq:\"Get Started\",RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form \",style:{height:\"100%\",width:\"100%\"},variant:\"cvdyP0f7m\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-httd75\",\"data-framer-name\":\"Own the Digital Shelf\",name:\"Own the Digital Shelf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"47.08px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Own the Digital Shelf \u2013 \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"47.08px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Pay Only for Engagements\"})]}),className:\"framer-13963m8\",\"data-framer-name\":\"Own the Digital Shelf \u2013 Pay Only for Engagements\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],name:\"Own the Digital Shelf \u2013 Pay Only for Engagements\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1jzfkl9\",\"data-framer-name\":\"Tiles\",name:\"Tiles\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-121cn2s\",\"data-framer-name\":\"Tile\",name:\"Tile\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5238.762566585957),pixelHeight:1306,pixelWidth:1636,sizes:\"max((min(100vw, 1200px) - 64px) / 2, 1px)\",src:\"https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg\",srcSet:\"https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg 1636w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6924.8107021791775),pixelHeight:1306,pixelWidth:1636,sizes:\"calc(min(100vw, 1200px) - 32px)\",src:\"https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg\",srcSet:\"https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg 1636w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4729.1),pixelHeight:1306,pixelWidth:1636,sizes:\"max((min(100vw, 1200px) - 64px) / 2, 1px)\",src:\"https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg\",srcSet:\"https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/JjVZdJVecqO6FLW4Sy9EiiRU.jpg 1636w\"},className:\"framer-179vwq3\",\"data-framer-name\":\"Frame 1000002112\",name:\"Frame 1000002112\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgmcje\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Sponsored Product Ads\"})}),className:\"framer-14yrj4l\",\"data-framer-name\":\"Sponsored Product Ads\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Sponsored Product Ads\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Reach customers wherever they are \u2013 homepage, category, sub-category, or shelf.\"})}),className:\"framer-1l03vo3\",\"data-framer-name\":\"Reach customers wherever they are \u2013 homepage, category, sub-category, or shelf.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Reach customers wherever they are \u2013 homepage, category, sub-category, or shelf.\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wzx72e\",\"data-framer-name\":\"Tile\",name:\"Tile\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(5238.762566585957),sizes:\"max((min(100vw, 1200px) - 64px) / 2, 1px)\",src:\"https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png\",srcSet:\"https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png 2000w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(7725.8107021791775),sizes:\"calc(min(100vw, 1200px) - 32px)\",src:\"https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png\",srcSet:\"https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png 2000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(4729.1),sizes:\"max((min(100vw, 1200px) - 64px) / 2, 1px)\",src:\"https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png\",srcSet:\"https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png?scale-down-to=512 512w,https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/K81bIP5c64iljBhRvAMlOdYLJcU.png 2000w\"},className:\"framer-9gvo07\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tk8iyu\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Contextual & Behavioral Targeting\"})}),className:\"framer-1lsbee6\",\"data-framer-name\":\"Contextual & Behavioral Targeting\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Contextual & Behavioral Targeting\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Leverage our first-party customer data to reach your customer.\"})}),className:\"framer-1exrk31\",\"data-framer-name\":\"Leverage our first-party customer data to reach your customer.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Leverage our first-party customer data to reach your customer.\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z0kl3c\",\"data-framer-name\":\"Instant Sampling Program\",name:\"Instant Sampling Program\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w7vcn7\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"47.08px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Instant Sampling Program\"})}),className:\"framer-sw6c2j\",\"data-framer-name\":\"Instant Sampling Program\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],name:\"Instant Sampling Program\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Join our new Instant Sampling Program to get your products in the hands of customers within minutes. Drive broad trial and awareness with surprise in-bag samples and marketing inserts.\"})}),className:\"framer-y9m1bg\",\"data-framer-name\":\"Join our new Instant Sampling Program to get your products in the hands of customers within minutes. Drive broad trial and awareness with surprise in-bag samples and marketing inserts.\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Join our new Instant Sampling Program to get your products in the hands of customers within minutes. Drive broad trial and awareness with surprise in-bag samples and marketing inserts.\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:6620.342566585957},dfHUreGKw:{y:9107.390702179177}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:6110.68,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ssv9gi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"wrseOF4XS\",layoutId:\"wrseOF4XS\",opNQ8siIq:\"Get Started\",RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form \",style:{height:\"100%\",width:\"100%\"},variant:\"cvdyP0f7m\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rgo94y\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g9jogk\",\"data-framer-name\":\"Image Wall\",name:\"Image Wall\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6708.759233252624),sizes:\"400px\",src:\"https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg\",srcSet:\"https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg 1800w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9195.59903551251),sizes:\"200px\",src:\"https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg\",srcSet:\"https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6199.18),sizes:\"480px\",src:\"https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg\",srcSet:\"https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/5G1J10pbFXEXFMcPjIWKRxqz9K4.jpg 1800w\"},className:\"framer-ggvpiu\",\"data-framer-name\":\"Prime-Energy 5\",name:\"Prime-Energy 5\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6708.342566585957),positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png\",srcSet:\"https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png 1920w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(9195.390702179177),positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png\",srcSet:\"https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6198.68),positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png\",srcSet:\"https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png?scale-down-to=512 512w,https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/1fNp86nNNJGg6wgfHPgJw8itXE.png 1920w\"},className:\"framer-wdgqt1\",\"data-framer-name\":\"Prime-Energy 4\",name:\"Prime-Energy 4\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6708.342566585957),sizes:\"400px\",src:\"https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg\",srcSet:\"https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg 1800w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9195.390702179177),sizes:\"200px\",src:\"https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg\",srcSet:\"https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6198.68),sizes:\"480px\",src:\"https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg\",srcSet:\"https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m3o84cyfptE53yl2QTQbeiwZ4Wo.jpg 1800w\"},className:\"framer-kg2c3\",\"data-framer-name\":\"Prime-Energy 3\",name:\"Prime-Energy 3\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zbfa25\",\"data-framer-name\":\"Image Wall\",name:\"Image Wall\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6985.009233252624),sizes:\"400px\",src:\"https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg\",srcSet:\"https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg 1800w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9338.72403551251),sizes:\"200px\",src:\"https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg\",srcSet:\"https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6528.847364016737),sizes:\"480px\",src:\"https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg\",srcSet:\"https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/cNWuBFG289UAwCbpZRmaNJJlw.jpg 1800w\"},className:\"framer-rmwpnz\",\"data-framer-name\":\"Prime-Energy 1\",name:\"Prime-Energy 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6985.009233252624),positionX:\"center\",positionY:\"center\",sizes:\"400px\",src:\"https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png\",srcSet:\"https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png 1920w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(9338.72403551251),positionX:\"center\",positionY:\"center\",sizes:\"200px\",src:\"https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png\",srcSet:\"https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png 1920w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(6528.847364016737),positionX:\"center\",positionY:\"center\",sizes:\"480px\",src:\"https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png\",srcSet:\"https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png?scale-down-to=512 512w,https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sDEAOGWA3GEhz4Sn575g3igvRc.png 1920w\"},className:\"framer-1n3bkpb\",\"data-framer-name\":\"Prime-Energy 2\",name:\"Prime-Energy 2\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6985.009233252624),sizes:\"400px\",src:\"https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg\",srcSet:\"https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg 1800w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(9338.72403551251),sizes:\"200px\",src:\"https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg\",srcSet:\"https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg 1800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(6528.68),sizes:\"480px\",src:\"https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg\",srcSet:\"https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/mweHA4WZdVF6Kuwub1HhKDgV0M.jpg 1800w\"},className:\"framer-1c0yqp5\",\"data-framer-name\":\"Prime-Energy 6\",name:\"Prime-Energy 6\"})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d1wek8\",\"data-framer-name\":\"Why Join\",id:elementId3,name:\"Why Join\",ref:ref5,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1r19f9x\",\"data-framer-name\":\"Frame 1000002060\",name:\"Frame 1000002060\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"47.08px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Why Join?\"})}),className:\"framer-1tgl2wu\",\"data-framer-name\":\"Why Join?\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],name:\"Why Join?\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-krdz4s\",\"data-framer-name\":\"Frame 1000002075\",name:\"Frame 1000002075\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-vo43dh\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:54,intrinsicWidth:66,name:\"Icon\",svg:'<svg width=\"66\" height=\"54\" viewBox=\"0 0 66 54\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M24.5993 10.4144C28.4698 7.0012 33.5517 4.92663 39.1152 4.92663C51.2324 4.92663 61.0722 14.7664 61.0722 26.8837C61.0722 39.001 51.2324 48.8408 39.1152 48.8408C33.5517 48.8408 28.4698 46.7662 24.5993 43.353C23.6604 42.5232 22.2218 42.611 21.392 43.5529C20.5622 44.4918 20.653 45.9273 21.5919 46.7571C26.265 50.882 32.4008 53.3836 39.1152 53.3836C53.7401 53.3836 65.6151 41.5086 65.6151 26.8837C65.6151 12.2588 53.7401 0.383789 39.1152 0.383789C32.4008 0.383789 26.265 2.88538 21.5919 7.01028C20.653 7.84011 20.5622 9.27565 21.392 10.2145C22.2218 11.1564 23.6604 11.2442 24.5993 10.4144Z\" fill=\"#00A4FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M35.6309 13.5582V25.6724C35.6309 26.2751 35.8701 26.8536 36.2971 27.2776L45.9885 36.969C46.8729 37.8563 48.3145 37.8563 49.1988 36.969C50.0862 36.0846 50.0862 34.643 49.1988 33.7587L40.1737 24.7305V13.5582C40.1737 12.3043 39.1561 11.2867 37.9023 11.2867C36.6485 11.2867 35.6309 12.3043 35.6309 13.5582Z\" fill=\"#00A4FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M2.77142 18.5555H20.9428C22.1966 18.5555 23.2142 17.5379 23.2142 16.2841C23.2142 15.0303 22.1966 14.0127 20.9428 14.0127H2.77142C1.5176 14.0127 0.5 15.0303 0.5 16.2841C0.5 17.5379 1.5176 18.5555 2.77142 18.5555Z\" fill=\"#00A4FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M5.79877 29.155H23.9701C25.224 29.155 26.2416 28.1374 26.2416 26.8836C26.2416 25.6298 25.224 24.6122 23.9701 24.6122H5.79877C4.54494 24.6122 3.52734 25.6298 3.52734 26.8836C3.52734 28.1374 4.54494 29.155 5.79877 29.155Z\" fill=\"#00A4FF\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M8.82806 39.7554H26.9994C28.2533 39.7554 29.2709 38.7378 29.2709 37.4839C29.2709 36.2301 28.2533 35.2125 26.9994 35.2125H8.82806C7.57424 35.2125 6.55664 36.2301 6.55664 37.4839C6.55664 38.7378 7.57424 39.7554 8.82806 39.7554Z\" fill=\"#00A4FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Accelerate brand trial and consideration\"})}),className:\"framer-fyj18t\",\"data-framer-name\":\"Accelerate brand trial and consideration\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Accelerate brand trial and consideration\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ra7egx\",\"data-framer-name\":\"Frame 1000002076\",name:\"Frame 1000002076\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-sganb4\",\"data-framer-name\":\"Global expansion\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:83,intrinsicWidth:83,name:\"Global expansion\",svg:'<svg width=\"83\" height=\"83\" viewBox=\"0 0 83 83\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M69.2747 41.3812C69.2747 35.5513 67.4404 29.8692 64.0316 25.1397C60.6228 20.4103 55.8123 16.8732 50.2816 15.0297C44.7509 13.1861 38.7803 13.1294 33.2156 14.8677C27.6509 16.606 22.7741 20.0511 19.2762 24.715C14.8561 30.6085 12.9582 38.0166 14 45.3094C15.0418 52.6023 18.9381 59.1826 24.8316 63.6027C30.7251 68.0228 38.1331 69.9208 45.426 68.8789C52.7188 67.8371 59.2991 63.9408 63.7193 58.0473C67.3409 53.2474 69.292 47.3941 69.2747 41.3812ZM58.3623 60.0182L57.6613 60.6398L57.238 60.9705C57.0131 61.1557 56.7883 61.3409 56.5502 61.5128L56.1005 61.8435L55.4127 62.3329L54.9233 62.6371L54.2222 63.0736L53.7064 63.3646L53.0053 63.7482L52.463 64.0128L51.7355 64.3434L51.18 64.5947L50.4393 64.8857L49.8705 65.0974L49.1166 65.3355L48.8652 65.4148C51.4142 62.3821 53.2494 58.8156 54.2354 54.9786C56.4826 55.6065 58.6488 56.4943 60.6903 57.6241C60.3728 58.0076 60.0554 58.3648 59.7115 58.7219L59.4734 58.9732C59.2221 59.2245 58.9707 59.4891 58.7062 59.7272L58.3623 60.0182ZM33.125 65.0974L32.5562 64.8857L31.8155 64.5947L31.26 64.3434L30.5325 64.0128L29.9902 63.7482L29.2891 63.3646L28.7733 63.0736L28.0722 62.6371L27.5828 62.3329L26.9479 61.8435L26.4982 61.5128L25.7972 60.9705L25.3871 60.6398L24.6861 60.0182L24.3025 59.7007C24.038 59.4626 23.7866 59.1981 23.5353 58.9468L23.2972 58.6955C22.9533 58.3383 22.6359 57.9812 22.3184 57.5976C24.3599 56.4679 26.5261 55.5801 28.7733 54.9522C29.7593 58.7891 31.5946 62.3556 34.1435 65.3884L33.8922 65.309L33.125 65.0974ZM24.6332 22.7706L25.3342 22.149L25.7443 21.8183L26.4453 21.276L26.895 20.9453L27.5828 20.4559L28.0722 20.1517L28.7733 19.7152L29.2891 19.4242L29.9902 19.0406L30.5325 18.776L31.26 18.4454L31.8155 18.1941L32.543 17.9031L33.125 17.6914L33.8789 17.4533L34.1302 17.374C31.5813 20.4067 29.7461 23.9732 28.76 27.8102C26.5129 27.1823 24.3467 26.2945 22.3052 25.1647C22.6227 24.7812 22.9401 24.424 23.284 24.0669L23.5221 23.8156C23.7734 23.5643 24.0247 23.2997 24.2893 23.0616L24.6332 22.7706ZM49.8705 17.6914L50.4525 17.9031L51.18 18.1941L51.7355 18.4454L52.463 18.776L53.0053 19.0406L53.7064 19.4242L54.2222 19.7152L54.9233 20.1517L55.4127 20.4559L56.1005 20.9453L56.5502 21.276C56.7883 21.4479 57.0131 21.6331 57.238 21.8183L57.6613 22.149L58.3623 22.7706L58.7062 23.0881C58.9707 23.3262 59.2221 23.5907 59.4734 23.842L59.7115 24.0933C60.0554 24.4505 60.3728 24.8076 60.6903 25.1912C58.6488 26.3209 56.4826 27.2087 54.2354 27.8366C53.2494 23.9997 51.4142 20.4332 48.8652 17.4004L49.1166 17.4798L49.8705 17.6914ZM56.0476 40.0585C55.9875 36.7891 55.611 33.5333 54.9233 30.3365C57.5089 29.6338 59.9938 28.6025 62.3172 27.2678C64.9051 31.0529 66.3973 35.4792 66.6292 40.0585H56.0476ZM40.175 29.4768C37.2179 29.4092 34.2733 29.0683 31.379 28.4583C33.2705 22.0035 36.4847 17.374 40.175 16.4613V29.4768ZM40.175 32.1222V40.0585H29.5933C29.6675 37.0057 30.0351 33.9671 30.6912 30.9847C33.809 31.6652 36.9847 32.0461 40.175 32.1222ZM40.175 42.7039V50.6401C36.9949 50.7048 33.8281 51.0724 30.7176 51.738C30.0552 48.7694 29.6787 45.7443 29.5933 42.7039H40.175ZM40.175 53.2856V66.301C36.4847 65.3884 33.2705 60.7589 31.379 54.3041C34.2733 53.694 37.2179 53.3531 40.175 53.2856ZM42.8204 53.2856C45.7776 53.3531 48.7221 53.694 51.6165 54.3041C49.725 60.7589 46.5108 65.3884 42.8204 66.301V53.2856ZM42.8204 50.6401V42.7039H53.4021C53.328 45.7567 52.9603 48.7953 52.3043 51.7777C49.1865 51.0971 46.0108 50.7162 42.8204 50.6401ZM42.8204 40.0585V32.1222C46.0006 32.0575 49.1674 31.6899 52.2778 31.0243C52.9403 33.9929 53.3168 37.0181 53.4021 40.0585H42.8204ZM42.8204 29.4768V16.4216C46.5108 17.3343 49.725 21.9638 51.6165 28.4186C48.7234 29.042 45.7788 29.3962 42.8204 29.4768ZM26.9479 40.0585H16.3662C16.5943 35.4805 18.0819 31.0543 20.665 27.2678C22.9884 28.6025 25.4733 29.6338 28.059 30.3365C27.3757 33.5337 27.0036 36.7896 26.9479 40.0585ZM26.9479 42.7039C27.008 45.9732 27.3845 49.2291 28.0722 52.4258C25.4866 53.1285 23.0017 54.1598 20.6783 55.4945C18.0904 51.7094 16.5982 47.2832 16.3662 42.7039H26.9479ZM56.0476 42.7039H66.6292C66.4012 47.2819 64.9136 51.708 62.3304 55.4945C60.0071 54.1598 57.5221 53.1285 54.9365 52.4258C55.6198 49.2286 55.9919 45.9728 56.0476 42.7039Z\" fill=\"#00A4FF\"/>\\n<path d=\"M38.4684 6.60704L40.1747 4.88751V9.63604C40.1747 9.98685 40.3141 10.3233 40.5621 10.5713C40.8102 10.8194 41.1466 10.9588 41.4974 10.9588C41.8482 10.9588 42.1847 10.8194 42.4327 10.5713C42.6808 10.3233 42.8201 9.98685 42.8201 9.63604V4.88751L44.5264 6.60704C44.6494 6.73101 44.7957 6.82941 44.9569 6.89657C45.1181 6.96372 45.2909 6.99829 45.4656 6.99829C45.6402 6.99829 45.8131 6.96372 45.9742 6.89657C46.1354 6.82941 46.2817 6.73101 46.4047 6.60704C46.5287 6.48407 46.6271 6.33778 46.6942 6.1766C46.7614 6.01541 46.7959 5.84253 46.7959 5.66791C46.7959 5.4933 46.7614 5.32041 46.6942 5.15923C46.6271 4.99804 46.5287 4.85175 46.4047 4.72879L42.4365 0.760657C42.3108 0.640237 42.1624 0.545842 42.0001 0.482888C41.678 0.350593 41.3168 0.350593 40.9948 0.482888C40.8324 0.545842 40.6841 0.640237 40.5583 0.760657L36.5902 4.72879C36.3411 4.97786 36.2012 5.31567 36.2012 5.66791C36.2012 6.02015 36.3411 6.35797 36.5902 6.60704C36.8392 6.85611 37.1771 6.99604 37.5293 6.99604C37.8815 6.99604 38.2193 6.85611 38.4684 6.60704Z\" fill=\"#00A4FF\"/>\\n<path d=\"M13.442 20.2178C13.7928 20.2178 14.1292 20.0784 14.3772 19.8304C14.6253 19.5823 14.7647 19.2459 14.7647 18.8951V16.5142L18.1111 19.8739C18.2341 19.9979 18.3804 20.0963 18.5416 20.1634C18.7027 20.2306 18.8756 20.2651 19.0502 20.2651C19.2249 20.2651 19.3977 20.2306 19.5589 20.1634C19.7201 20.0963 19.8664 19.9979 19.9894 19.8739C20.1133 19.7509 20.2117 19.6046 20.2789 19.4434C20.3461 19.2823 20.3806 19.1094 20.3806 18.9348C20.3806 18.7602 20.3461 18.5873 20.2789 18.4261C20.2117 18.2649 20.1133 18.1186 19.9894 17.9956L16.6297 14.6492H19.0106C19.3614 14.6492 19.6978 14.5098 19.9459 14.2618C20.1939 14.0137 20.3333 13.6773 20.3333 13.3265C20.3333 12.9757 20.1939 12.6392 19.9459 12.3912C19.6978 12.1431 19.3614 12.0038 19.0106 12.0038H13.442C13.27 12.0017 13.0993 12.0331 12.9393 12.0964C12.6134 12.2379 12.3534 12.4979 12.2118 12.8238C12.1486 12.9838 12.1171 13.1545 12.1192 13.3265V18.8951C12.1192 19.2459 12.2586 19.5823 12.5067 19.8304C12.7547 20.0784 13.0911 20.2178 13.442 20.2178Z\" fill=\"#00A4FF\"/>\\n<path d=\"M9.75238 40.0584H5.00385L6.72337 38.3521C6.97244 38.103 7.11237 37.7652 7.11237 37.413C7.11237 37.0607 6.97244 36.7229 6.72337 36.4738C6.4743 36.2248 6.13649 36.0848 5.78425 36.0848C5.43201 36.0848 5.09419 36.2248 4.84512 36.4738L0.87699 40.442C0.75657 40.5678 0.662175 40.7161 0.599221 40.8785C0.466926 41.2005 0.466926 41.5617 0.599221 41.8837C0.662175 42.0461 0.75657 42.1944 0.87699 42.3202L4.84512 46.2883C4.96808 46.4123 5.11438 46.5107 5.27556 46.5779C5.43675 46.645 5.60963 46.6796 5.78425 46.6796C5.95886 46.6796 6.13175 46.645 6.29293 46.5779C6.45411 46.5107 6.60041 46.4123 6.72337 46.2883C6.84735 46.1654 6.94575 46.0191 7.0129 45.8579C7.08005 45.6967 7.11463 45.5238 7.11463 45.3492C7.11463 45.1746 7.08005 45.0017 7.0129 44.8405C6.94575 44.6794 6.84735 44.5331 6.72337 44.4101L5.00385 42.7038H9.75238C10.1032 42.7038 10.4396 42.5644 10.6877 42.3164C10.9357 42.0683 11.0751 41.7319 11.0751 41.3811C11.0751 41.0303 10.9357 40.6939 10.6877 40.4458C10.4396 40.1977 10.1032 40.0584 9.75238 40.0584Z\" fill=\"#00A4FF\"/>\\n<path d=\"M19.9894 62.8883C19.8664 62.7643 19.7201 62.6659 19.5589 62.5988C19.3977 62.5316 19.2249 62.4971 19.0502 62.4971C18.8756 62.4971 18.7027 62.5316 18.5416 62.5988C18.3804 62.6659 18.2341 62.7643 18.1111 62.8883L14.7647 66.248V63.8671C14.7647 63.5163 14.6253 63.1799 14.3772 62.9318C14.1292 62.6838 13.7928 62.5444 13.442 62.5444C13.0911 62.5444 12.7547 62.6838 12.5067 62.9318C12.2586 63.1799 12.1192 63.5163 12.1192 63.8671V69.4754C12.1171 69.6474 12.1486 69.8181 12.2118 69.9781C12.3534 70.304 12.6134 70.564 12.9393 70.7055C13.0993 70.7688 13.27 70.8002 13.442 70.7981H19.0106C19.3614 70.7981 19.6978 70.6588 19.9459 70.4107C20.1939 70.1627 20.3333 69.8262 20.3333 69.4754C20.3333 69.1246 20.1939 68.7882 19.9459 68.5401C19.6978 68.2921 19.3614 68.1527 19.0106 68.1527H16.6297L19.9894 64.8063C20.1194 64.6827 20.223 64.5339 20.2938 64.3691C20.3646 64.2042 20.4011 64.0267 20.4011 63.8473C20.4011 63.6679 20.3646 63.4903 20.2938 63.3255C20.223 63.1606 20.1194 63.0119 19.9894 62.8883Z\" fill=\"#00A4FF\"/>\\n<path d=\"M44.5264 76.1552L42.8201 77.8747V73.1262C42.8201 72.7754 42.6808 72.4389 42.4327 72.1909C42.1847 71.9428 41.8482 71.8035 41.4974 71.8035C41.1466 71.8035 40.8102 71.9428 40.5621 72.1909C40.3141 72.4389 40.1747 72.7754 40.1747 73.1262V77.8747L38.4684 76.1552C38.2193 75.9061 37.8815 75.7662 37.5293 75.7662C37.1771 75.7662 36.8392 75.9061 36.5902 76.1552C36.3411 76.4043 36.2012 76.7421 36.2012 77.0943C36.2012 77.4465 36.3411 77.7844 36.5902 78.0334L40.5583 82.0016C40.6841 82.122 40.8324 82.2164 40.9948 82.2793C41.1531 82.3493 41.3243 82.3855 41.4974 82.3855C41.6705 82.3855 41.8417 82.3493 42.0001 82.2793C42.1624 82.2164 42.3108 82.122 42.4365 82.0016L46.4047 78.0334C46.6538 77.7844 46.7937 77.4465 46.7937 77.0943C46.7937 76.7421 46.6538 76.4043 46.4047 76.1552C46.1556 75.9061 45.8178 75.7662 45.4656 75.7662C45.1133 75.7662 44.7755 75.9061 44.5264 76.1552Z\" fill=\"#00A4FF\"/>\\n<path d=\"M69.5516 62.5445C69.2008 62.5445 68.8644 62.6838 68.6164 62.9319C68.3683 63.18 68.2289 63.5164 68.2289 63.8672V66.2481L64.8825 62.8884C64.6334 62.6393 64.2956 62.4994 63.9434 62.4994C63.5911 62.4994 63.2533 62.6393 63.0042 62.8884C62.7552 63.1375 62.6152 63.4753 62.6152 63.8275C62.6152 64.1798 62.7552 64.5176 63.0042 64.7666L66.3639 68.1131H63.983C63.6322 68.1131 63.2958 68.2524 63.0477 68.5005C62.7997 68.7486 62.6603 69.085 62.6603 69.4358C62.6603 69.7866 62.7997 70.123 63.0477 70.3711C63.2958 70.6192 63.6322 70.7585 63.983 70.7585H69.5913C69.7633 70.7606 69.934 70.7292 70.094 70.6659C70.4199 70.5244 70.6799 70.2644 70.8215 69.9384C70.8847 69.7785 70.9162 69.6078 70.914 69.4358V63.8672C70.9141 63.6901 70.8786 63.5148 70.8097 63.3517C70.7408 63.1886 70.6398 63.0409 70.5127 62.9176C70.3856 62.7942 70.2351 62.6976 70.07 62.6335C69.9049 62.5695 69.7287 62.5392 69.5516 62.5445Z\" fill=\"#00A4FF\"/>\\n<path d=\"M82.3958 41.8837C82.5281 41.5617 82.5281 41.2005 82.3958 40.8785C82.3328 40.7161 82.2384 40.5678 82.118 40.442L78.1499 36.4738C77.9008 36.2248 77.563 36.0848 77.2108 36.0848C76.8585 36.0848 76.5207 36.2248 76.2716 36.4738C76.0226 36.7229 75.8826 37.0607 75.8826 37.413C75.8826 37.7652 76.0226 38.103 76.2716 38.3521L77.9912 40.0584H73.2426C72.8918 40.0584 72.5554 40.1977 72.3073 40.4458C72.0593 40.6939 71.9199 41.0303 71.9199 41.3811C71.9199 41.7319 72.0593 42.0683 72.3073 42.3164C72.5554 42.5644 72.8918 42.7038 73.2426 42.7038H77.9912L76.2716 44.4101C76.1477 44.5331 76.0493 44.6794 75.9821 44.8405C75.915 45.0017 75.8804 45.1746 75.8804 45.3492C75.8804 45.5238 75.915 45.6967 75.9821 45.8579C76.0493 46.0191 76.1477 46.1654 76.2716 46.2883C76.3946 46.4123 76.5409 46.5107 76.7021 46.5779C76.8633 46.645 77.0362 46.6796 77.2108 46.6796C77.3854 46.6796 77.5583 46.645 77.7194 46.5779C77.8806 46.5107 78.0269 46.4123 78.1499 46.2883L82.118 42.3202C82.2384 42.1944 82.3328 42.0461 82.3958 41.8837Z\" fill=\"#00A4FF\"/>\\n<path d=\"M70.0546 12.0964C69.8947 12.0331 69.7239 12.0017 69.552 12.0038H63.9833C63.6325 12.0038 63.2961 12.1431 63.048 12.3912C62.8 12.6392 62.6606 12.9757 62.6606 13.3265C62.6606 13.6773 62.8 14.0137 63.048 14.2618C63.2961 14.5098 63.6325 14.6492 63.9833 14.6492H66.3642L63.0045 17.9956C62.8806 18.1186 62.7822 18.2649 62.715 18.4261C62.6479 18.5873 62.6133 18.7602 62.6133 18.9348C62.6133 19.1094 62.6479 19.2823 62.715 19.4434C62.7822 19.6046 62.8806 19.7509 63.0045 19.8739C63.1275 19.9979 63.2738 20.0963 63.435 20.1634C63.5962 20.2306 63.769 20.2651 63.9437 20.2651C64.1183 20.2651 64.2912 20.2306 64.4523 20.1634C64.6135 20.0963 64.7598 19.9979 64.8828 19.8739L68.2292 16.5142V18.8951C68.2292 19.2459 68.3686 19.5823 68.6167 19.8304C68.8647 20.0784 69.2011 20.2178 69.552 20.2178C69.9028 20.2178 70.2392 20.0784 70.4872 19.8304C70.7353 19.5823 70.8747 19.2459 70.8747 18.8951V13.3265C70.8768 13.1545 70.8453 12.9838 70.7821 12.8238C70.6405 12.4979 70.3805 12.2379 70.0546 12.0964Z\" fill=\"#00A4FF\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Expand your fanbase\"})}),className:\"framer-af91ei\",\"data-framer-name\":\"Expand your fanbase\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Expand your fanbase\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-t9cvv7\",\"data-framer-name\":\"Frame 1000002077\",name:\"Frame 1000002077\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-lwuw5z\",\"data-framer-name\":\"g997\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:46,intrinsicWidth:83,name:\"g997\",svg:'<svg width=\"83\" height=\"46\" viewBox=\"0 0 83 46\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M79.0081 23.0066C79.0081 20.772 80.1123 18.7991 81.803 17.5942C82.5304 17.0758 83 16.2732 83 15.3799V3.04694C83 1.57721 81.8086 0.385693 80.3387 0.385693H3.16141C1.69152 0.385693 0.5 1.57721 0.5 3.04694V15.3799C0.5 16.2732 0.969602 17.0758 1.697 17.5942C3.38783 18.7991 4.49203 20.772 4.49203 23.0066C4.49203 25.2413 3.38783 27.2141 1.697 28.4191C0.969602 28.9375 0.5 29.7401 0.5 30.6333V42.9663C0.5 44.436 1.69152 45.6276 3.16141 45.6276H80.3387C81.8086 45.6276 83 44.436 83 42.9663V30.6333C83 29.7401 82.5304 28.9375 81.803 28.4191C80.1123 27.2141 79.0081 25.2413 79.0081 23.0066Z\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.75 5.70789V8.36914\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.75 37.6438V40.3051\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.75 21.676V24.3373\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.75 13.6924V16.3536\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M41.75 29.6597V32.3209\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M52.3945 34.9827L71.0236 11.0309\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M59.0484 15.0229C59.0484 17.2275 57.2611 19.0148 55.0565 19.0148C52.8517 19.0148 51.0645 17.2275 51.0645 15.0229C51.0645 12.8181 52.8517 11.0309 55.0565 11.0309C57.2611 11.0309 59.0484 12.8181 59.0484 15.0229Z\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M72.355 30.9911C72.355 33.1959 70.5677 34.9832 68.3631 34.9832C66.1584 34.9832 64.3711 33.1959 64.3711 30.9911C64.3711 28.7865 66.1584 26.9992 68.3631 26.9992C70.5677 26.9992 72.355 28.7865 72.355 30.9911Z\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M31.1042 36.3136H12.4752C11.7403 36.3136 11.1445 35.7178 11.1445 34.983V19.0152C11.1445 18.2803 11.7403 17.6845 12.4752 17.6845H31.1042C31.8391 17.6845 32.4348 18.2803 32.4348 19.0152V34.983C32.4348 35.7178 31.8391 36.3136 31.1042 36.3136Z\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M18.3497 9.14907C20.2315 11.0308 23.1211 17.6841 23.1211 17.6841C23.1211 17.6841 16.4678 14.7946 14.5861 12.9127C13.5468 11.8734 13.5468 10.1884 14.5861 9.14907C15.6254 8.10977 17.3104 8.10977 18.3497 9.14907Z\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M25.2304 9.14919C23.3486 11.0309 20.459 17.6842 20.459 17.6842C20.459 17.6842 27.1123 14.7947 28.994 12.9128C30.0333 11.8735 30.0333 10.1885 28.994 9.14919C27.9547 8.10989 26.2697 8.10989 25.2304 9.14919Z\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M29.7734 24.3373H32.4349\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n<path d=\"M11.1445 24.3374H24.4508\" stroke=\"#00A4FF\" stroke-width=\"3\" stroke-miterlimit=\"10\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Amplify planned promotions\"})}),className:\"framer-1cfrg8w\",\"data-framer-name\":\"Amplify planned promotions\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Amplify planned promotions\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fojxqp\",\"data-framer-name\":\"Frame 1000002078\",name:\"Frame 1000002078\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-18br51h\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:62,intrinsicWidth:69,name:\"Vector\",svg:'<svg width=\"69\" height=\"62\" viewBox=\"-1 -1 69 62\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"path-1-outside-1_11653_15794\" maskUnits=\"userSpaceOnUse\" x=\"-0.5\" y=\"-0.372681\" width=\"68\" height=\"61\" fill=\"black\">\\n<rect fill=\"white\" x=\"-0.5\" y=\"-0.372681\" width=\"68\" height=\"61\"/>\\n<path d=\"M45.5728 39.1778L45.0025 39.8008C39.0272 46.1401 29.0049 46.4381 22.663 40.4781C16.3074 34.5181 16.0086 24.5215 21.9839 18.1958C27.9593 11.8701 37.9815 11.5585 44.337 17.5185C50.4346 23.2483 50.9914 32.7843 45.5728 39.1778ZM43.821 38.4599C42.5173 35.8998 39.842 34.2743 36.9222 34.3556L30.4173 34.5588C27.4975 34.6536 24.9309 36.4416 23.7901 39.0694C29.4395 44.5147 38.4975 44.2438 43.821 38.4599ZM22.4864 37.6471C23.8852 35.0599 26.4519 33.2448 29.4259 32.852C25.6778 30.3732 25.0259 25.1176 28.1358 21.8125C30.8926 18.9002 35.4963 18.7512 38.4296 21.5009C41.7296 24.5893 41.4037 29.8991 37.8185 32.5947C40.8062 32.7978 43.4815 34.4504 45.0432 36.9563C48.9951 31.2672 48.1531 23.5463 43.1148 18.8189C37.479 13.5362 28.6111 13.8071 23.3148 19.4284C18.5481 24.4538 18.1815 32.2154 22.4864 37.6471ZM33.2556 21.3248C30.2272 21.4196 27.8506 23.9526 27.9457 26.9597C28.0407 29.9804 30.5667 32.3508 33.5951 32.256C36.6235 32.1612 39 29.6417 38.9049 26.6211C38.8235 23.6005 36.2839 21.23 33.2556 21.3248ZM50.8284 43.3769C51.7926 42.9163 53.0012 43.133 53.7074 43.9593L60.4975 51.7344C61.3667 52.7097 61.2988 54.2268 60.321 55.1072C60.3074 55.1208 60.2802 55.1479 60.2531 55.1614L55.8123 59.0219C54.8074 59.9159 53.2321 59.8075 52.3765 58.7781L45.5864 51.003C44.8667 50.1767 44.7988 48.9711 45.3963 48.0771L43.5086 45.9099C39.584 48.2261 35.0617 49.0524 30.716 48.4429C22.758 47.3186 16.2123 41.4534 14.3247 33.597H1.3963C0.893827 33.597 0.5 33.2042 0.5 32.703V28.5039C0.5 23.0993 4.70988 18.6157 10.0605 18.2229C6.46173 15.5274 6.08148 10.2717 9.27284 7.08851C12.1654 4.20333 16.8642 4.20333 19.7568 7.08851C21.2914 8.61915 22.1333 10.8135 21.8889 13.0892C25.7457 10.2852 30.3494 9.05261 34.8444 9.36415C38.4839 9.60797 42.0556 10.8677 45.0975 13.0892C44.6358 8.72752 48.0716 4.92124 52.4716 4.92124C56.5728 4.92124 59.8864 8.22634 59.8864 12.3171C59.8864 14.7146 58.7457 16.8684 56.9259 18.2364C62.2765 18.6293 66.5 23.1264 66.5 28.5175V32.7166C66.5 33.2178 66.0926 33.6106 65.6037 33.6106H52.6481C51.9963 36.3332 50.7469 38.9339 48.9407 41.2096L50.8284 43.3769ZM51.4802 45.0836L47.0123 48.9711C46.7543 49.2014 46.7272 49.5942 46.958 49.8381L53.7617 57.6267C53.979 57.8841 54.3728 57.9112 54.6309 57.6944L59.0988 53.8069C59.3568 53.5901 59.3839 53.1973 59.1667 52.94L52.363 45.1513C52.1321 44.894 51.7383 44.8669 51.4802 45.0836ZM13.9988 31.8361C13.4148 27.7996 14.0938 23.6682 15.9679 20.0109H10.8346C6.1358 20.0109 2.29259 23.8443 2.29259 28.531V31.8226H13.9988V31.8361ZM18.2222 16.5704C18.521 16.2046 18.8469 15.8389 19.1864 15.4867C19.2 15.4461 19.2272 15.3919 19.2543 15.3513C20.6667 13.1433 20.3543 10.2311 18.4938 8.37534C16.2938 6.18097 12.7494 6.18097 10.5494 8.37534C8.34938 10.5697 8.34938 14.1051 10.5494 16.2994C12.6 18.3448 15.8593 18.4938 18.0864 16.6652C18.1272 16.6245 18.1815 16.5974 18.2222 16.5704ZM47.8815 15.568L48.3704 16.1098C48.4654 16.2317 48.5741 16.3401 48.6691 16.462C49.1716 16.9225 49.7556 17.2883 50.3938 17.5456C54.0333 18.9814 58.0802 16.3265 58.0802 12.3306C58.0802 9.24224 55.5679 6.73633 52.458 6.73633C47.9086 6.73633 45.3012 11.8972 47.8815 15.568ZM51.0321 20.0244C52.9198 23.6953 53.5852 27.8266 53.0012 31.8497H64.7074V28.5581C64.7074 23.8714 60.8642 20.038 56.1654 20.038H51.0321V20.0244ZM49.416 44.5011L47.0802 41.8327C46.7951 41.5076 46.7815 40.9929 47.0802 40.6678C49.9185 37.3898 51.4259 33.2042 51.4123 28.9509C51.3716 19.6316 44.1333 11.843 34.7222 11.1928C30.1457 10.8812 25.4469 12.3035 21.7259 15.5409C18.1272 18.6699 15.9543 23.0451 15.6148 27.786C14.9765 37.0647 21.6037 45.3816 30.9605 46.709C35.116 47.2915 39.4481 46.4381 43.142 44.0677C43.5086 43.7832 44.0518 43.8374 44.3642 44.2031L46.7 46.8716L49.416 44.5011ZM61.1765 28.1111C61.679 28.1111 62.0728 28.5175 62.0728 29.0051C62.0728 29.4927 61.6654 29.8991 61.1765 29.8991H55.8123C55.3099 29.8991 54.916 29.5063 54.916 29.0051C54.916 28.5039 55.3235 28.1111 55.8123 28.1111H61.1765ZM11.1877 28.1111C11.6901 28.1111 12.084 28.5175 12.084 29.0051C12.084 29.4927 11.6901 29.8991 11.1877 29.8991H5.82346C5.32099 29.8991 4.92716 29.5063 4.92716 29.0051C4.92716 28.5039 5.33457 28.1111 5.82346 28.1111H11.1877ZM32.6037 1.52132C32.6037 1.02014 32.9975 0.627319 33.5 0.627319C34.0025 0.627319 34.3963 1.02014 34.3963 1.52132V6.8447C34.3963 7.34588 33.9889 7.7387 33.5 7.7387C33.0111 7.7387 32.6037 7.34588 32.6037 6.8447V1.52132ZM32.6037 51.1655C32.6037 50.6643 32.9975 50.2715 33.5 50.2715C34.0025 50.2715 34.3963 50.6779 34.3963 51.1655V56.4889C34.3963 56.9901 33.9889 57.3829 33.5 57.3829C33.0111 57.3829 32.6037 56.9765 32.6037 56.4889V51.1655Z\"/>\\n</mask>\\n<path d=\"M45.5728 39.1778L45.0025 39.8008C39.0272 46.1401 29.0049 46.4381 22.663 40.4781C16.3074 34.5181 16.0086 24.5215 21.9839 18.1958C27.9593 11.8701 37.9815 11.5585 44.337 17.5185C50.4346 23.2483 50.9914 32.7843 45.5728 39.1778ZM43.821 38.4599C42.5173 35.8998 39.842 34.2743 36.9222 34.3556L30.4173 34.5588C27.4975 34.6536 24.9309 36.4416 23.7901 39.0694C29.4395 44.5147 38.4975 44.2438 43.821 38.4599ZM22.4864 37.6471C23.8852 35.0599 26.4519 33.2448 29.4259 32.852C25.6778 30.3732 25.0259 25.1176 28.1358 21.8125C30.8926 18.9002 35.4963 18.7512 38.4296 21.5009C41.7296 24.5893 41.4037 29.8991 37.8185 32.5947C40.8062 32.7978 43.4815 34.4504 45.0432 36.9563C48.9951 31.2672 48.1531 23.5463 43.1148 18.8189C37.479 13.5362 28.6111 13.8071 23.3148 19.4284C18.5481 24.4538 18.1815 32.2154 22.4864 37.6471ZM33.2556 21.3248C30.2272 21.4196 27.8506 23.9526 27.9457 26.9597C28.0407 29.9804 30.5667 32.3508 33.5951 32.256C36.6235 32.1612 39 29.6417 38.9049 26.6211C38.8235 23.6005 36.2839 21.23 33.2556 21.3248ZM50.8284 43.3769C51.7926 42.9163 53.0012 43.133 53.7074 43.9593L60.4975 51.7344C61.3667 52.7097 61.2988 54.2268 60.321 55.1072C60.3074 55.1208 60.2802 55.1479 60.2531 55.1614L55.8123 59.0219C54.8074 59.9159 53.2321 59.8075 52.3765 58.7781L45.5864 51.003C44.8667 50.1767 44.7988 48.9711 45.3963 48.0771L43.5086 45.9099C39.584 48.2261 35.0617 49.0524 30.716 48.4429C22.758 47.3186 16.2123 41.4534 14.3247 33.597H1.3963C0.893827 33.597 0.5 33.2042 0.5 32.703V28.5039C0.5 23.0993 4.70988 18.6157 10.0605 18.2229C6.46173 15.5274 6.08148 10.2717 9.27284 7.08851C12.1654 4.20333 16.8642 4.20333 19.7568 7.08851C21.2914 8.61915 22.1333 10.8135 21.8889 13.0892C25.7457 10.2852 30.3494 9.05261 34.8444 9.36415C38.4839 9.60797 42.0556 10.8677 45.0975 13.0892C44.6358 8.72752 48.0716 4.92124 52.4716 4.92124C56.5728 4.92124 59.8864 8.22634 59.8864 12.3171C59.8864 14.7146 58.7457 16.8684 56.9259 18.2364C62.2765 18.6293 66.5 23.1264 66.5 28.5175V32.7166C66.5 33.2178 66.0926 33.6106 65.6037 33.6106H52.6481C51.9963 36.3332 50.7469 38.9339 48.9407 41.2096L50.8284 43.3769ZM51.4802 45.0836L47.0123 48.9711C46.7543 49.2014 46.7272 49.5942 46.958 49.8381L53.7617 57.6267C53.979 57.8841 54.3728 57.9112 54.6309 57.6944L59.0988 53.8069C59.3568 53.5901 59.3839 53.1973 59.1667 52.94L52.363 45.1513C52.1321 44.894 51.7383 44.8669 51.4802 45.0836ZM13.9988 31.8361C13.4148 27.7996 14.0938 23.6682 15.9679 20.0109H10.8346C6.1358 20.0109 2.29259 23.8443 2.29259 28.531V31.8226H13.9988V31.8361ZM18.2222 16.5704C18.521 16.2046 18.8469 15.8389 19.1864 15.4867C19.2 15.4461 19.2272 15.3919 19.2543 15.3513C20.6667 13.1433 20.3543 10.2311 18.4938 8.37534C16.2938 6.18097 12.7494 6.18097 10.5494 8.37534C8.34938 10.5697 8.34938 14.1051 10.5494 16.2994C12.6 18.3448 15.8593 18.4938 18.0864 16.6652C18.1272 16.6245 18.1815 16.5974 18.2222 16.5704ZM47.8815 15.568L48.3704 16.1098C48.4654 16.2317 48.5741 16.3401 48.6691 16.462C49.1716 16.9225 49.7556 17.2883 50.3938 17.5456C54.0333 18.9814 58.0802 16.3265 58.0802 12.3306C58.0802 9.24224 55.5679 6.73633 52.458 6.73633C47.9086 6.73633 45.3012 11.8972 47.8815 15.568ZM51.0321 20.0244C52.9198 23.6953 53.5852 27.8266 53.0012 31.8497H64.7074V28.5581C64.7074 23.8714 60.8642 20.038 56.1654 20.038H51.0321V20.0244ZM49.416 44.5011L47.0802 41.8327C46.7951 41.5076 46.7815 40.9929 47.0802 40.6678C49.9185 37.3898 51.4259 33.2042 51.4123 28.9509C51.3716 19.6316 44.1333 11.843 34.7222 11.1928C30.1457 10.8812 25.4469 12.3035 21.7259 15.5409C18.1272 18.6699 15.9543 23.0451 15.6148 27.786C14.9765 37.0647 21.6037 45.3816 30.9605 46.709C35.116 47.2915 39.4481 46.4381 43.142 44.0677C43.5086 43.7832 44.0518 43.8374 44.3642 44.2031L46.7 46.8716L49.416 44.5011ZM61.1765 28.1111C61.679 28.1111 62.0728 28.5175 62.0728 29.0051C62.0728 29.4927 61.6654 29.8991 61.1765 29.8991H55.8123C55.3099 29.8991 54.916 29.5063 54.916 29.0051C54.916 28.5039 55.3235 28.1111 55.8123 28.1111H61.1765ZM11.1877 28.1111C11.6901 28.1111 12.084 28.5175 12.084 29.0051C12.084 29.4927 11.6901 29.8991 11.1877 29.8991H5.82346C5.32099 29.8991 4.92716 29.5063 4.92716 29.0051C4.92716 28.5039 5.33457 28.1111 5.82346 28.1111H11.1877ZM32.6037 1.52132C32.6037 1.02014 32.9975 0.627319 33.5 0.627319C34.0025 0.627319 34.3963 1.02014 34.3963 1.52132V6.8447C34.3963 7.34588 33.9889 7.7387 33.5 7.7387C33.0111 7.7387 32.6037 7.34588 32.6037 6.8447V1.52132ZM32.6037 51.1655C32.6037 50.6643 32.9975 50.2715 33.5 50.2715C34.0025 50.2715 34.3963 50.6779 34.3963 51.1655V56.4889C34.3963 56.9901 33.9889 57.3829 33.5 57.3829C33.0111 57.3829 32.6037 56.9765 32.6037 56.4889V51.1655Z\" fill=\"#00A4FF\"/>\\n<path d=\"M45.5728 39.1778L45.0025 39.8008C39.0272 46.1401 29.0049 46.4381 22.663 40.4781C16.3074 34.5181 16.0086 24.5215 21.9839 18.1958C27.9593 11.8701 37.9815 11.5585 44.337 17.5185C50.4346 23.2483 50.9914 32.7843 45.5728 39.1778ZM43.821 38.4599C42.5173 35.8998 39.842 34.2743 36.9222 34.3556L30.4173 34.5588C27.4975 34.6536 24.9309 36.4416 23.7901 39.0694C29.4395 44.5147 38.4975 44.2438 43.821 38.4599ZM22.4864 37.6471C23.8852 35.0599 26.4519 33.2448 29.4259 32.852C25.6778 30.3732 25.0259 25.1176 28.1358 21.8125C30.8926 18.9002 35.4963 18.7512 38.4296 21.5009C41.7296 24.5893 41.4037 29.8991 37.8185 32.5947C40.8062 32.7978 43.4815 34.4504 45.0432 36.9563C48.9951 31.2672 48.1531 23.5463 43.1148 18.8189C37.479 13.5362 28.6111 13.8071 23.3148 19.4284C18.5481 24.4538 18.1815 32.2154 22.4864 37.6471ZM33.2556 21.3248C30.2272 21.4196 27.8506 23.9526 27.9457 26.9597C28.0407 29.9804 30.5667 32.3508 33.5951 32.256C36.6235 32.1612 39 29.6417 38.9049 26.6211C38.8235 23.6005 36.2839 21.23 33.2556 21.3248ZM50.8284 43.3769C51.7926 42.9163 53.0012 43.133 53.7074 43.9593L60.4975 51.7344C61.3667 52.7097 61.2988 54.2268 60.321 55.1072C60.3074 55.1208 60.2802 55.1479 60.2531 55.1614L55.8123 59.0219C54.8074 59.9159 53.2321 59.8075 52.3765 58.7781L45.5864 51.003C44.8667 50.1767 44.7988 48.9711 45.3963 48.0771L43.5086 45.9099C39.584 48.2261 35.0617 49.0524 30.716 48.4429C22.758 47.3186 16.2123 41.4534 14.3247 33.597H1.3963C0.893827 33.597 0.5 33.2042 0.5 32.703V28.5039C0.5 23.0993 4.70988 18.6157 10.0605 18.2229C6.46173 15.5274 6.08148 10.2717 9.27284 7.08851C12.1654 4.20333 16.8642 4.20333 19.7568 7.08851C21.2914 8.61915 22.1333 10.8135 21.8889 13.0892C25.7457 10.2852 30.3494 9.05261 34.8444 9.36415C38.4839 9.60797 42.0556 10.8677 45.0975 13.0892C44.6358 8.72752 48.0716 4.92124 52.4716 4.92124C56.5728 4.92124 59.8864 8.22634 59.8864 12.3171C59.8864 14.7146 58.7457 16.8684 56.9259 18.2364C62.2765 18.6293 66.5 23.1264 66.5 28.5175V32.7166C66.5 33.2178 66.0926 33.6106 65.6037 33.6106H52.6481C51.9963 36.3332 50.7469 38.9339 48.9407 41.2096L50.8284 43.3769ZM51.4802 45.0836L47.0123 48.9711C46.7543 49.2014 46.7272 49.5942 46.958 49.8381L53.7617 57.6267C53.979 57.8841 54.3728 57.9112 54.6309 57.6944L59.0988 53.8069C59.3568 53.5901 59.3839 53.1973 59.1667 52.94L52.363 45.1513C52.1321 44.894 51.7383 44.8669 51.4802 45.0836ZM13.9988 31.8361C13.4148 27.7996 14.0938 23.6682 15.9679 20.0109H10.8346C6.1358 20.0109 2.29259 23.8443 2.29259 28.531V31.8226H13.9988V31.8361ZM18.2222 16.5704C18.521 16.2046 18.8469 15.8389 19.1864 15.4867C19.2 15.4461 19.2272 15.3919 19.2543 15.3513C20.6667 13.1433 20.3543 10.2311 18.4938 8.37534C16.2938 6.18097 12.7494 6.18097 10.5494 8.37534C8.34938 10.5697 8.34938 14.1051 10.5494 16.2994C12.6 18.3448 15.8593 18.4938 18.0864 16.6652C18.1272 16.6245 18.1815 16.5974 18.2222 16.5704ZM47.8815 15.568L48.3704 16.1098C48.4654 16.2317 48.5741 16.3401 48.6691 16.462C49.1716 16.9225 49.7556 17.2883 50.3938 17.5456C54.0333 18.9814 58.0802 16.3265 58.0802 12.3306C58.0802 9.24224 55.5679 6.73633 52.458 6.73633C47.9086 6.73633 45.3012 11.8972 47.8815 15.568ZM51.0321 20.0244C52.9198 23.6953 53.5852 27.8266 53.0012 31.8497H64.7074V28.5581C64.7074 23.8714 60.8642 20.038 56.1654 20.038H51.0321V20.0244ZM49.416 44.5011L47.0802 41.8327C46.7951 41.5076 46.7815 40.9929 47.0802 40.6678C49.9185 37.3898 51.4259 33.2042 51.4123 28.9509C51.3716 19.6316 44.1333 11.843 34.7222 11.1928C30.1457 10.8812 25.4469 12.3035 21.7259 15.5409C18.1272 18.6699 15.9543 23.0451 15.6148 27.786C14.9765 37.0647 21.6037 45.3816 30.9605 46.709C35.116 47.2915 39.4481 46.4381 43.142 44.0677C43.5086 43.7832 44.0518 43.8374 44.3642 44.2031L46.7 46.8716L49.416 44.5011ZM61.1765 28.1111C61.679 28.1111 62.0728 28.5175 62.0728 29.0051C62.0728 29.4927 61.6654 29.8991 61.1765 29.8991H55.8123C55.3099 29.8991 54.916 29.5063 54.916 29.0051C54.916 28.5039 55.3235 28.1111 55.8123 28.1111H61.1765ZM11.1877 28.1111C11.6901 28.1111 12.084 28.5175 12.084 29.0051C12.084 29.4927 11.6901 29.8991 11.1877 29.8991H5.82346C5.32099 29.8991 4.92716 29.5063 4.92716 29.0051C4.92716 28.5039 5.33457 28.1111 5.82346 28.1111H11.1877ZM32.6037 1.52132C32.6037 1.02014 32.9975 0.627319 33.5 0.627319C34.0025 0.627319 34.3963 1.02014 34.3963 1.52132V6.8447C34.3963 7.34588 33.9889 7.7387 33.5 7.7387C33.0111 7.7387 32.6037 7.34588 32.6037 6.8447V1.52132ZM32.6037 51.1655C32.6037 50.6643 32.9975 50.2715 33.5 50.2715C34.0025 50.2715 34.3963 50.6779 34.3963 51.1655V56.4889C34.3963 56.9901 33.9889 57.3829 33.5 57.3829C33.0111 57.3829 32.6037 56.9765 32.6037 56.4889V51.1655Z\" stroke=\"#00A4FF\" mask=\"url(#path-1-outside-1_11653_15794)\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgUmVndWxhcg==\",\"--framer-font-family\":'\"ABC Ginto Normal Regular\", \"ABC Ginto Normal Regular Placeholder\", sans-serif',\"--framer-font-size\":\"30px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Gain valuable post-sample customer insights\"})}),className:\"framer-87d79y\",\"data-framer-name\":\"Gain valuable post-sample customer insights\",fonts:[\"CUSTOM;ABC Ginto Normal Regular\"],name:\"Gain valuable post-sample customer insights\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:8317.282566585956},dfHUreGKw:{y:11119.330702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:7907.620000000001,children:/*#__PURE__*/_jsx(Container,{className:\"framer-13im5sn-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"h1vRiCm7i\",layoutId:\"h1vRiCm7i\",opNQ8siIq:\"Get Started\",RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form \",style:{height:\"100%\",width:\"100%\"},variant:\"cvdyP0f7m\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7560.312566585957),positionX:\"center\",positionY:\"center\",sizes:\"calc((min(100vw, 1200px) - 32px) * 0.4)\",src:\"https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png\",srcSet:\"https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png?scale-down-to=1024 878w,https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png 1658w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(9525.390702179178),positionX:\"center\",positionY:\"center\",sizes:\"calc((min(100vw, 1200px) - 32px) * 0.8)\",src:\"https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png\",srcSet:\"https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png?scale-down-to=1024 878w,https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png 1658w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",loading:getLoadingLazyAtYPosition(7150.650000000001),positionX:\"center\",positionY:\"center\",sizes:\"calc((min(100vw, 1200px) - 32px) * 0.4)\",src:\"https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png\",srcSet:\"https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png?scale-down-to=1024 878w,https://framerusercontent.com/images/6Gvpqf8LGNCdcwDHv8ohwq467QE.png 1658w\"},className:\"framer-xfxaee\",\"data-framer-name\":\"Image\",name:\"Image\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u8uetm\",\"data-framer-name\":\"Work with Us\",name:\"Work with Us\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQmxhY2s=\",\"--framer-font-family\":'\"ABC Ginto Normal Black\", \"ABC Ginto Normal Black Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"Work With Us\"})}),className:\"framer-1bwj24s\",\"data-framer-name\":\"Work With Us\",fonts:[\"CUSTOM;ABC Ginto Normal Black\"],name:\"Work With Us\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2notp6\",\"data-framer-name\":\"Frame 1000002092\",name:\"Frame 1000002092\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-uo3j5p\",\"data-framer-name\":\"Frame 1000002089\",name:\"Frame 1000002089\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8741.282566585956),sizes:\"max((min(100vw, 1200px) - 96px) / 3, 50px)\",src:\"https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png\",srcSet:\"https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png 800w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(11543.330702179179),sizes:\"max(min(100vw, 1200px) - 32px, 50px)\",src:\"https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png\",srcSet:\"https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8331.62),sizes:\"max((min(100vw, 1200px) - 96px) / 3, 50px)\",src:\"https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png\",srcSet:\"https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png?scale-down-to=512 512w,https://framerusercontent.com/images/HSRdOdHl9kCGm0Lti02QfI5c8LM.png 800w\"},className:\"framer-110cn9g\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Become A Delivery Partner\"})}),className:\"framer-n9mruu\",\"data-framer-name\":\"Become A Delivery Partner\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Become A Delivery Partner\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10llupz\",\"data-framer-name\":\"Frame 1000002090\",name:\"Frame 1000002090\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8741.282566585956),sizes:\"max((min(100vw, 1200px) - 96px) / 3, 50px)\",src:\"https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png\",srcSet:\"https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png 800w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(12091.970702179178),sizes:\"max(min(100vw, 1200px) - 32px, 50px)\",src:\"https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png\",srcSet:\"https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition(8331.62),sizes:\"max((min(100vw, 1200px) - 96px) / 3, 50px)\",src:\"https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png\",srcSet:\"https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/fvVvfhlBaUX7IpPCGkbHVhPyyY.png 800w\"},className:\"framer-1rcugy\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Advertise on Gopuff\"})}),className:\"framer-wvh38h\",\"data-framer-name\":\"Advertise on Gopuff\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Advertise on Gopuff\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x3e05b\",\"data-framer-name\":\"Frame 1000002092\",name:\"Frame 1000002092\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8741.282566585956),positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1200px) - 96px) / 3, 50px)\",src:\"https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png\",srcSet:\"https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png 1424w\"}},dfHUreGKw:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(12640.61070217918),positionX:\"center\",positionY:\"center\",sizes:\"max(min(100vw, 1200px) - 32px, 50px)\",src:\"https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png\",srcSet:\"https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png 1424w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition(8331.62),positionX:\"center\",positionY:\"center\",sizes:\"max((min(100vw, 1200px) - 96px) / 3, 50px)\",src:\"https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png\",srcSet:\"https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png?scale-down-to=512 512w,https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/80YBXBD7Dy5UBHjSQPsNEkmlQ4w.png 1424w\"},className:\"framer-14c02va\",\"data-framer-name\":\"Rectangle 5\",name:\"Rectangle 5\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"26.48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\"},children:\"Partner & Affiliate Requests\"})}),className:\"framer-1due45\",\"data-framer-name\":\"Partner & Affiliate Requests\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],name:\"Partner & Affiliate Requests\",verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:9289.922566585956},dfHUreGKw:{y:13189.250702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,width:\"180px\",y:8880.26,children:/*#__PURE__*/_jsx(Container,{className:\"framer-7tykus-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dfHUreGKw:{RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form\"}},children:/*#__PURE__*/_jsx(PrimaryButton,{height:\"100%\",id:\"IMumdQyXW\",layoutId:\"IMumdQyXW\",opNQ8siIq:\"Get Started\",RI4GN65Ld:\"https://www.gopuff.com/go/ads/registration-form \",style:{height:\"100%\",width:\"100%\"},variant:\"cvdyP0f7m\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1997spl\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e2fxjd\",\"data-framer-name\":\"FAQs\",name:\"FAQs\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO0FCQyBHaW50byBOb3JtYWwgQm9sZA==\",\"--framer-font-family\":'\"ABC Ginto Normal Bold\", \"ABC Ginto Normal Bold Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"110%\",\"--framer-text-alignment\":\"center\"},children:\"FAQs\"})}),className:\"framer-127sm9d\",\"data-framer-name\":\"FAQs\",fonts:[\"CUSTOM;ABC Ginto Normal Bold\"],id:elementId4,name:\"FAQs\",ref:ref6,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:9777.922566585956},dfHUreGKw:{y:13645.250702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"calc(min(100vw, 1200px) - 32px)\",y:9368.260000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14btb9x-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"gt5OxDa6B\",layoutId:\"gt5OxDa6B\",oUgyr_DtJ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"You can create a new account and see your ad live on the Gopuff website or app in less than 15 minutes.\"})}),style:{width:\"100%\"},V14wjvda9:\"How long does it take to set up ads?\",variant:\"bu6hLsrhm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:9845.922566585956},dfHUreGKw:{y:13713.250702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"calc(min(100vw, 1200px) - 32px)\",y:9436.260000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1shqb0j-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"PM85yjpSq\",layoutId:\"PM85yjpSq\",oUgyr_DtJ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Gopuff operates on a Cost-Per-Click payment model \u2013 you only pay when a customer clicks on your ad.\"})}),style:{width:\"100%\"},V14wjvda9:\"What will I be charged for?\",variant:\"bu6hLsrhm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:9913.922566585956},dfHUreGKw:{y:13781.250702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"calc(min(100vw, 1200px) - 32px)\",y:9504.260000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-12k9sz8-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"lwhzB2N4Z\",layoutId:\"lwhzB2N4Z\",oUgyr_DtJ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Yes, with our ad scheduling feature, you have complete control to set a future campaign launch date.\"})}),style:{width:\"100%\"},V14wjvda9:\"Can I set campaigns to go live on a particular date in the future?\",variant:\"bu6hLsrhm\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:9981.922566585956},dfHUreGKw:{y:13849.250702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"calc(min(100vw, 1200px) - 32px)\",y:9572.260000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-18si2h4-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"KMJwJd60F\",layoutId:\"KMJwJd60F\",oUgyr_DtJ:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Under your Campaigns dashboard, access real-time data including Ad Spend, Impressions, Clicks, Conversions, CTR, ROAS, Halo ROAS, and more.\"})}),style:{width:\"100%\"},V14wjvda9:\"What reporting metrics do I receive?\",variant:\"bu6hLsrhm\",width:\"100%\"})})})})]})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{y:10081.922566585956},dfHUreGKw:{y:13917.250702179179}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:\"100vw\",y:9672.260000000002,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1lc7xap-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{cyf_2nmlm:{variant:\"hj146CtPR\"},dfHUreGKw:{variant:\"IFKSswIQG\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"wWUBgkkm9\",layoutId:\"wWUBgkkm9\",style:{width:\"100%\"},variant:\"EGj77m1oz\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-7WkHB { background: white; }`,\".framer-7WkHB.framer-1878wfl, .framer-7WkHB .framer-1878wfl { display: block; }\",\".framer-7WkHB.framer-1rdc9gu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-7WkHB .framer-um3no2-container { flex: none; height: 72px; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 9; }\",\".framer-7WkHB .framer-1k1updu { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-1uudala { align-content: center; align-items: center; background: linear-gradient(180deg, #000000 53.15315315315314%, rgb(101, 200, 255) 100%); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 142px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-9fuwms { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-1senr89 { aspect-ratio: 4.464864864864865 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 185px); max-width: 90%; position: relative; width: 826px; }\",\".framer-7WkHB .framer-14mmh8 { align-content: center; align-items: center; background-color: #ffffff; border-top-left-radius: 32px; border-top-right-radius: 32px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 32px 0px 0px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7WkHB .framer-17ozs6k { flex: none; height: 83px; position: relative; width: 249px; }\",\".framer-7WkHB .framer-183m9dq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 32px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-htwpm7, .framer-7WkHB .framer-1w6926u, .framer-7WkHB .framer-1pgsuus, .framer-7WkHB .framer-23yhok, .framer-7WkHB .framer-1br8hfv, .framer-7WkHB .framer-1ke1pnc, .framer-7WkHB .framer-cgc33m, .framer-7WkHB .framer-1rvgz3k, .framer-7WkHB .framer-udqcz, .framer-7WkHB .framer-j1c2ue, .framer-7WkHB .framer-4t5hyi, .framer-7WkHB .framer-1ma8bbq, .framer-7WkHB .framer-2ppgmt, .framer-7WkHB .framer-1pjtwvg, .framer-7WkHB .framer-w632u2, .framer-7WkHB .framer-13963m8, .framer-7WkHB .framer-14yrj4l, .framer-7WkHB .framer-1l03vo3, .framer-7WkHB .framer-1lsbee6, .framer-7WkHB .framer-1exrk31, .framer-7WkHB .framer-sw6c2j, .framer-7WkHB .framer-y9m1bg, .framer-7WkHB .framer-1tgl2wu, .framer-7WkHB .framer-1bwj24s, .framer-7WkHB .framer-n9mruu, .framer-7WkHB .framer-wvh38h, .framer-7WkHB .framer-1due45, .framer-7WkHB .framer-127sm9d { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-7WkHB .framer-yaj7kk-container, .framer-7WkHB .framer-1met6yq-container, .framer-7WkHB .framer-ssv9gi-container, .framer-7WkHB .framer-13im5sn-container, .framer-7WkHB .framer-7tykus-container { flex: none; height: 48px; position: relative; width: 180px; }\",\".framer-7WkHB .framer-6745r4 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-1yl9gjo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 64px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-13jmqrk, .framer-7WkHB .framer-89u572 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-a55hka-container, .framer-7WkHB .framer-dnotp5-container { aspect-ratio: 1.0711009174311927 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 187px); position: relative; width: 40%; }\",\".framer-7WkHB .framer-5ds0ye, .framer-7WkHB .framer-121cn2s, .framer-7WkHB .framer-1wzx72e, .framer-7WkHB .framer-1r19f9x { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7WkHB .framer-1awdl73 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-7WkHB .framer-16uds3o, .framer-7WkHB .framer-w7vcn7, .framer-7WkHB .framer-1u8uetm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-1oiwsjs { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(4, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-yqo9ih, .framer-7WkHB .framer-xhp5hz, .framer-7WkHB .framer-iw2sqn, .framer-7WkHB .framer-madvod { align-content: center; align-items: center; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-1trtyjc, .framer-7WkHB .framer-1nwvake, .framer-7WkHB .framer-1hbmk4, .framer-7WkHB .framer-fhy6j0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 84px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-xlqvtb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 84px); position: relative; width: 84px; }\",\".framer-7WkHB .framer-hpvld0 { aspect-ratio: 1.5616438356164384 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 73px); position: relative; width: 114px; }\",\".framer-7WkHB .framer-1sja41i { flex: none; height: 84px; position: relative; width: 84px; }\",\".framer-7WkHB .framer-7bpm00 { flex: none; height: 82px; position: relative; width: 82px; }\",\".framer-7WkHB .framer-httd75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-1jzfkl9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-179vwq3 { aspect-ratio: 1.2528735632183907 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: var(--framer-aspect-ratio-supported, 160px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-7WkHB .framer-1xgmcje, .framer-7WkHB .framer-1tk8iyu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-9gvo07 { aspect-ratio: 1.2528735632183907 / 1; border-bottom-left-radius: 32px; border-bottom-right-radius: 32px; border-top-left-radius: 32px; border-top-right-radius: 32px; flex: none; height: var(--framer-aspect-ratio-supported, 160px); position: relative; width: 100%; }\",\".framer-7WkHB .framer-z0kl3c { align-content: center; align-items: center; background-color: #0e3472; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 64px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-rgo94y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 550px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-g9jogk, .framer-7WkHB .framer-zbfa25 { 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: min-content; }\",\".framer-7WkHB .framer-ggvpiu { aspect-ratio: 1.5047021943573669 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 5.059963226318359px 5.059963226318359px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 319px); position: relative; width: 480px; }\",\".framer-7WkHB .framer-wdgqt1, .framer-7WkHB .framer-kg2c3, .framer-7WkHB .framer-rmwpnz, .framer-7WkHB .framer-1n3bkpb, .framer-7WkHB .framer-1c0yqp5 { aspect-ratio: 1.5 / 1; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 5.059963226318359px 5.059963226318359px 0px rgba(0, 0, 0, 0.25); flex: none; height: var(--framer-aspect-ratio-supported, 320px); position: relative; width: 480px; }\",\".framer-7WkHB .framer-d1wek8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-krdz4s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 44px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-vo43dh { flex: none; height: 54px; position: relative; width: 66px; }\",\".framer-7WkHB .framer-fyj18t, .framer-7WkHB .framer-af91ei, .framer-7WkHB .framer-1cfrg8w, .framer-7WkHB .framer-87d79y { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-7WkHB .framer-1ra7egx, .framer-7WkHB .framer-t9cvv7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-sganb4 { flex: none; height: 83px; position: relative; width: 83px; }\",\".framer-7WkHB .framer-lwuw5z { flex: none; height: 46px; position: relative; width: 83px; }\",\".framer-7WkHB .framer-1fojxqp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 43px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-18br51h { flex: none; height: 62px; position: relative; width: 69px; }\",\".framer-7WkHB .framer-xfxaee { aspect-ratio: 0.8592132505175983 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 233px); position: relative; width: 40%; }\",\".framer-7WkHB .framer-2notp6 { display: grid; flex: none; gap: 32px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-uo3j5p, .framer-7WkHB .framer-10llupz, .framer-7WkHB .framer-x3e05b { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100%; justify-content: flex-start; justify-self: start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-110cn9g, .framer-7WkHB .framer-1rcugy, .framer-7WkHB .framer-14c02va { aspect-ratio: 1 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); position: relative; width: 100%; }\",\".framer-7WkHB .framer-1997spl { 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-7WkHB .framer-e2fxjd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 64px 16px 64px 16px; position: relative; width: 100%; }\",\".framer-7WkHB .framer-14btb9x-container, .framer-7WkHB .framer-1shqb0j-container, .framer-7WkHB .framer-12k9sz8-container, .framer-7WkHB .framer-18si2h4-container, .framer-7WkHB .framer-1lc7xap-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7WkHB.framer-1rdc9gu, .framer-7WkHB .framer-1k1updu, .framer-7WkHB .framer-1uudala, .framer-7WkHB .framer-9fuwms, .framer-7WkHB .framer-14mmh8, .framer-7WkHB .framer-183m9dq, .framer-7WkHB .framer-6745r4, .framer-7WkHB .framer-1yl9gjo, .framer-7WkHB .framer-13jmqrk, .framer-7WkHB .framer-5ds0ye, .framer-7WkHB .framer-89u572, .framer-7WkHB .framer-1awdl73, .framer-7WkHB .framer-16uds3o, .framer-7WkHB .framer-yqo9ih, .framer-7WkHB .framer-1trtyjc, .framer-7WkHB .framer-xhp5hz, .framer-7WkHB .framer-1nwvake, .framer-7WkHB .framer-iw2sqn, .framer-7WkHB .framer-1hbmk4, .framer-7WkHB .framer-madvod, .framer-7WkHB .framer-fhy6j0, .framer-7WkHB .framer-httd75, .framer-7WkHB .framer-1jzfkl9, .framer-7WkHB .framer-121cn2s, .framer-7WkHB .framer-1xgmcje, .framer-7WkHB .framer-1wzx72e, .framer-7WkHB .framer-1tk8iyu, .framer-7WkHB .framer-z0kl3c, .framer-7WkHB .framer-w7vcn7, .framer-7WkHB .framer-rgo94y, .framer-7WkHB .framer-g9jogk, .framer-7WkHB .framer-zbfa25, .framer-7WkHB .framer-d1wek8, .framer-7WkHB .framer-1r19f9x, .framer-7WkHB .framer-krdz4s, .framer-7WkHB .framer-1ra7egx, .framer-7WkHB .framer-t9cvv7, .framer-7WkHB .framer-1fojxqp, .framer-7WkHB .framer-1u8uetm, .framer-7WkHB .framer-uo3j5p, .framer-7WkHB .framer-10llupz, .framer-7WkHB .framer-x3e05b, .framer-7WkHB .framer-1997spl, .framer-7WkHB .framer-e2fxjd { gap: 0px; } .framer-7WkHB.framer-1rdc9gu > *, .framer-7WkHB .framer-1k1updu > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-7WkHB.framer-1rdc9gu > :first-child, .framer-7WkHB .framer-1k1updu > :first-child, .framer-7WkHB .framer-1uudala > :first-child, .framer-7WkHB .framer-9fuwms > :first-child, .framer-7WkHB .framer-14mmh8 > :first-child, .framer-7WkHB .framer-183m9dq > :first-child, .framer-7WkHB .framer-6745r4 > :first-child, .framer-7WkHB .framer-1yl9gjo > :first-child, .framer-7WkHB .framer-5ds0ye > :first-child, .framer-7WkHB .framer-1awdl73 > :first-child, .framer-7WkHB .framer-16uds3o > :first-child, .framer-7WkHB .framer-yqo9ih > :first-child, .framer-7WkHB .framer-xhp5hz > :first-child, .framer-7WkHB .framer-iw2sqn > :first-child, .framer-7WkHB .framer-madvod > :first-child, .framer-7WkHB .framer-httd75 > :first-child, .framer-7WkHB .framer-121cn2s > :first-child, .framer-7WkHB .framer-1xgmcje > :first-child, .framer-7WkHB .framer-1wzx72e > :first-child, .framer-7WkHB .framer-1tk8iyu > :first-child, .framer-7WkHB .framer-z0kl3c > :first-child, .framer-7WkHB .framer-w7vcn7 > :first-child, .framer-7WkHB .framer-rgo94y > :first-child, .framer-7WkHB .framer-1r19f9x > :first-child, .framer-7WkHB .framer-1u8uetm > :first-child, .framer-7WkHB .framer-uo3j5p > :first-child, .framer-7WkHB .framer-10llupz > :first-child, .framer-7WkHB .framer-x3e05b > :first-child, .framer-7WkHB .framer-1997spl > :first-child, .framer-7WkHB .framer-e2fxjd > :first-child { margin-top: 0px; } .framer-7WkHB.framer-1rdc9gu > :last-child, .framer-7WkHB .framer-1k1updu > :last-child, .framer-7WkHB .framer-1uudala > :last-child, .framer-7WkHB .framer-9fuwms > :last-child, .framer-7WkHB .framer-14mmh8 > :last-child, .framer-7WkHB .framer-183m9dq > :last-child, .framer-7WkHB .framer-6745r4 > :last-child, .framer-7WkHB .framer-1yl9gjo > :last-child, .framer-7WkHB .framer-5ds0ye > :last-child, .framer-7WkHB .framer-1awdl73 > :last-child, .framer-7WkHB .framer-16uds3o > :last-child, .framer-7WkHB .framer-yqo9ih > :last-child, .framer-7WkHB .framer-xhp5hz > :last-child, .framer-7WkHB .framer-iw2sqn > :last-child, .framer-7WkHB .framer-madvod > :last-child, .framer-7WkHB .framer-httd75 > :last-child, .framer-7WkHB .framer-121cn2s > :last-child, .framer-7WkHB .framer-1xgmcje > :last-child, .framer-7WkHB .framer-1wzx72e > :last-child, .framer-7WkHB .framer-1tk8iyu > :last-child, .framer-7WkHB .framer-z0kl3c > :last-child, .framer-7WkHB .framer-w7vcn7 > :last-child, .framer-7WkHB .framer-rgo94y > :last-child, .framer-7WkHB .framer-1r19f9x > :last-child, .framer-7WkHB .framer-1u8uetm > :last-child, .framer-7WkHB .framer-uo3j5p > :last-child, .framer-7WkHB .framer-10llupz > :last-child, .framer-7WkHB .framer-x3e05b > :last-child, .framer-7WkHB .framer-1997spl > :last-child, .framer-7WkHB .framer-e2fxjd > :last-child { margin-bottom: 0px; } .framer-7WkHB .framer-1uudala > *, .framer-7WkHB .framer-14mmh8 > *, .framer-7WkHB .framer-rgo94y > *, .framer-7WkHB .framer-1997spl > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-7WkHB .framer-9fuwms > *, .framer-7WkHB .framer-1yl9gjo > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-7WkHB .framer-183m9dq > *, .framer-7WkHB .framer-5ds0ye > *, .framer-7WkHB .framer-1awdl73 > *, .framer-7WkHB .framer-16uds3o > *, .framer-7WkHB .framer-121cn2s > *, .framer-7WkHB .framer-1wzx72e > *, .framer-7WkHB .framer-w7vcn7 > *, .framer-7WkHB .framer-1r19f9x > *, .framer-7WkHB .framer-1u8uetm > *, .framer-7WkHB .framer-e2fxjd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7WkHB .framer-6745r4 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-7WkHB .framer-13jmqrk > *, .framer-7WkHB .framer-89u572 > *, .framer-7WkHB .framer-1jzfkl9 > *, .framer-7WkHB .framer-d1wek8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-7WkHB .framer-13jmqrk > :first-child, .framer-7WkHB .framer-89u572 > :first-child, .framer-7WkHB .framer-1trtyjc > :first-child, .framer-7WkHB .framer-1nwvake > :first-child, .framer-7WkHB .framer-1hbmk4 > :first-child, .framer-7WkHB .framer-fhy6j0 > :first-child, .framer-7WkHB .framer-1jzfkl9 > :first-child, .framer-7WkHB .framer-g9jogk > :first-child, .framer-7WkHB .framer-zbfa25 > :first-child, .framer-7WkHB .framer-d1wek8 > :first-child, .framer-7WkHB .framer-krdz4s > :first-child, .framer-7WkHB .framer-1ra7egx > :first-child, .framer-7WkHB .framer-t9cvv7 > :first-child, .framer-7WkHB .framer-1fojxqp > :first-child { margin-left: 0px; } .framer-7WkHB .framer-13jmqrk > :last-child, .framer-7WkHB .framer-89u572 > :last-child, .framer-7WkHB .framer-1trtyjc > :last-child, .framer-7WkHB .framer-1nwvake > :last-child, .framer-7WkHB .framer-1hbmk4 > :last-child, .framer-7WkHB .framer-fhy6j0 > :last-child, .framer-7WkHB .framer-1jzfkl9 > :last-child, .framer-7WkHB .framer-g9jogk > :last-child, .framer-7WkHB .framer-zbfa25 > :last-child, .framer-7WkHB .framer-d1wek8 > :last-child, .framer-7WkHB .framer-krdz4s > :last-child, .framer-7WkHB .framer-1ra7egx > :last-child, .framer-7WkHB .framer-t9cvv7 > :last-child, .framer-7WkHB .framer-1fojxqp > :last-child { margin-right: 0px; } .framer-7WkHB .framer-yqo9ih > *, .framer-7WkHB .framer-xhp5hz > *, .framer-7WkHB .framer-iw2sqn > *, .framer-7WkHB .framer-madvod > *, .framer-7WkHB .framer-1xgmcje > *, .framer-7WkHB .framer-1tk8iyu > *, .framer-7WkHB .framer-uo3j5p > *, .framer-7WkHB .framer-10llupz > *, .framer-7WkHB .framer-x3e05b > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-7WkHB .framer-1trtyjc > *, .framer-7WkHB .framer-1nwvake > *, .framer-7WkHB .framer-1hbmk4 > *, .framer-7WkHB .framer-fhy6j0 > *, .framer-7WkHB .framer-g9jogk > *, .framer-7WkHB .framer-zbfa25 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-7WkHB .framer-httd75 > *, .framer-7WkHB .framer-z0kl3c > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-7WkHB .framer-krdz4s > * { margin: 0px; margin-left: calc(44px / 2); margin-right: calc(44px / 2); } .framer-7WkHB .framer-1ra7egx > *, .framer-7WkHB .framer-t9cvv7 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-7WkHB .framer-1fojxqp > * { margin: 0px; margin-left: calc(43px / 2); margin-right: calc(43px / 2); } }\",`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-7WkHB { background: white; } .framer-7WkHB.framer-1rdc9gu { width: 768px; } .framer-7WkHB .framer-1senr89 { height: var(--framer-aspect-ratio-supported, 134px); width: 600px; } .framer-7WkHB .framer-13jmqrk, .framer-7WkHB .framer-89u572 { align-content: flex-start; align-items: flex-start; } .framer-7WkHB .framer-1oiwsjs { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-7WkHB .framer-rgo94y { height: 450px; } .framer-7WkHB .framer-ggvpiu { height: var(--framer-aspect-ratio-supported, 266px); width: 400px; } .framer-7WkHB .framer-wdgqt1, .framer-7WkHB .framer-kg2c3, .framer-7WkHB .framer-rmwpnz, .framer-7WkHB .framer-1n3bkpb, .framer-7WkHB .framer-1c0yqp5 { height: var(--framer-aspect-ratio-supported, 267px); width: 400px; }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-7WkHB { background: white; } .framer-7WkHB.framer-1rdc9gu { width: 390px; } .framer-7WkHB .framer-1uudala { padding: 110px 16px 0px 16px; } .framer-7WkHB .framer-9fuwms { gap: 32px; } .framer-7WkHB .framer-1senr89 { height: var(--framer-aspect-ratio-supported, 72px); max-width: unset; width: 320px; } .framer-7WkHB .framer-14mmh8 { padding: 16px 0px 0px 0px; } .framer-7WkHB .framer-17ozs6k { aspect-ratio: 3.0120481927710845 / 1; height: var(--framer-aspect-ratio-supported, 66px); width: 200px; } .framer-7WkHB .framer-13jmqrk, .framer-7WkHB .framer-89u572, .framer-7WkHB .framer-1jzfkl9, .framer-7WkHB .framer-d1wek8 { flex-direction: column; } .framer-7WkHB .framer-a55hka-container { max-width: 400px; width: 100%; } .framer-7WkHB .framer-5ds0ye, .framer-7WkHB .framer-121cn2s, .framer-7WkHB .framer-1wzx72e { flex: none; width: 100%; } .framer-7WkHB .framer-1awdl73 { flex: none; order: 1; width: 100%; } .framer-7WkHB .framer-dnotp5-container { max-width: 400px; order: 0; width: 100%; } .framer-7WkHB .framer-1oiwsjs, .framer-7WkHB .framer-2notp6 { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-7WkHB .framer-rgo94y { height: 250px; } .framer-7WkHB .framer-ggvpiu, .framer-7WkHB .framer-wdgqt1, .framer-7WkHB .framer-kg2c3, .framer-7WkHB .framer-rmwpnz, .framer-7WkHB .framer-1n3bkpb, .framer-7WkHB .framer-1c0yqp5 { height: var(--framer-aspect-ratio-supported, 133px); width: 200px; } .framer-7WkHB .framer-1r19f9x { align-content: center; align-items: center; flex: none; order: 1; width: 100%; } .framer-7WkHB .framer-xfxaee { order: 0; width: 80%; } .framer-7WkHB .framer-e2fxjd { padding: 32px 16px 32px 16px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-7WkHB .framer-9fuwms, .framer-7WkHB .framer-13jmqrk, .framer-7WkHB .framer-89u572, .framer-7WkHB .framer-1jzfkl9, .framer-7WkHB .framer-d1wek8 { gap: 0px; } .framer-7WkHB .framer-9fuwms > *, .framer-7WkHB .framer-13jmqrk > *, .framer-7WkHB .framer-89u572 > *, .framer-7WkHB .framer-1jzfkl9 > *, .framer-7WkHB .framer-d1wek8 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-7WkHB .framer-9fuwms > :first-child, .framer-7WkHB .framer-13jmqrk > :first-child, .framer-7WkHB .framer-89u572 > :first-child, .framer-7WkHB .framer-1jzfkl9 > :first-child, .framer-7WkHB .framer-d1wek8 > :first-child { margin-top: 0px; } .framer-7WkHB .framer-9fuwms > :last-child, .framer-7WkHB .framer-13jmqrk > :last-child, .framer-7WkHB .framer-89u572 > :last-child, .framer-7WkHB .framer-1jzfkl9 > :last-child, .framer-7WkHB .framer-d1wek8 > :last-child { margin-bottom: 0px; } }}`,...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 6466\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cyf_2nmlm\":{\"layout\":[\"fixed\",\"auto\"]},\"dfHUreGKw\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerabkJilg4P=withCSS(Component,css,\"framer-7WkHB\");export default FramerabkJilg4P;FramerabkJilg4P.displayName=\"E / Ads Thank You\";FramerabkJilg4P.defaultProps={height:6466,width:1200};addFonts(FramerabkJilg4P,[{explicitInter:true,fonts:[{family:\"ABC Ginto Normal Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/guP3FJTaW6h6hBX54tn7WdjaE.woff2\"},{family:\"ABC Ginto Normal Black\",source:\"custom\",url:\"https://framerusercontent.com/assets/Xn2IlWAaLcHxpmkkickPnlr9thc.woff2\"},{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:\"ABC Ginto Normal Bold\",source:\"custom\",url:\"https://framerusercontent.com/assets/yb2TTAWx5b5QmjLvKRAoLZxhQ0.woff2\"}]},...AdsHeaderFonts,...PrimaryButtonFonts,...VideoFonts,...FAQFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerabkJilg4P\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"6466\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1200\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cyf_2nmlm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dfHUreGKw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["ObjectFitType", "SrcType", "defaultVideo", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "usePlaybackControls", "videoRef", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "requestingPlay", "pe", "isPlayingRef", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "video", "e", "pause", "useAutoplayBehavior", "playingProp", "muted", "loop", "playsinline", "controls", "initialPlayingProp", "ye", "hasPlayingPropChanged", "setHasPlayingPropChanged", "behavesAsGif", "autoplay", "X", "srcType", "srcUrl", "srcFile", "posterEnabled", "playing", "restartOnEnter", "objectFit", "backgroundColor", "radius", "volume", "startTimeProp", "poster", "progress", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "isSafari", "useIsBrowserSafari", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "autoplayBehavior", "isInViewport", "useInView", "isCloseToViewport", "startTime", "isPlaying", "ue", "isMountedAndReadyForProgressChanges", "rawProgressValue", "isMotionValue", "value", "useOnEnter", "useOnExit", "src", "se", "fragment", "handleReady", "capitalizeFirstLetter", "titleCase", "objectFitOptions", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "HamburgerFonts", "getFonts", "WI39Lv8yz_default", "MenuItemFonts", "qGWcVtRXU_default", "PrimaryButtonFonts", "RypJyWCb6_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "about", "adSuites", "benefits", "fAQS", "height", "id", "whyGopuff", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "uRzuzmiIn", "H_EaBHynM", "SqRGTOCdv", "zHMSmCxTN", "eBhCIZmkH", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "YbzSBqWAm1hh81tm", "args", "YbzSBqWAm1exlfrt", "gGnWhNFwt1exlfrt", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "u", "Link", "SVG", "ComponentViewportProvider", "css", "FramerpR7vnkzcV", "withCSS", "pR7vnkzcV_default", "addPropertyControls", "ControlType", "addFonts", "AdsHeaderFonts", "getFonts", "pR7vnkzcV_default", "PrimaryButtonFonts", "TJP2lHXun_default", "VideoFonts", "Video", "FAQFonts", "W7rZgS7DO_default", "FooterFonts", "Muzpq_oaB_default", "breakpoints", "serializationHash", "variantClassNames", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "router", "useRouter", "elementId", "useRouteElementId", "ref2", "elementId1", "ref3", "elementId2", "ref4", "elementId3", "ref5", "elementId4", "ref6", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "Container", "PropertyOverrides2", "pR7vnkzcV_default", "SVG", "RichText2", "x", "TJP2lHXun_default", "Video", "getLoadingLazyAtYPosition", "Image2", "W7rZgS7DO_default", "Muzpq_oaB_default", "css", "FramerabkJilg4P", "withCSS", "abkJilg4P_default", "addFonts", "AdsHeaderFonts", "PrimaryButtonFonts", "VideoFonts", "FAQFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
