{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js", "ssg:https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js", "ssg:https://framerusercontent.com/modules/GqpW06D7xnGLSxBFpQje/vWnGeTnMg0WoUjN7k5u9/eNNzkOCcF.js", "ssg:https://framerusercontent.com/modules/xfR5Xs6zPZPbGwXiWU4D/n57CNUhITHoaqowUWjUi/fjhjl55jV.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget,withCSS}from\"framer\";import{motion}from\"framer-motion\";import{containerStyles,usePadding,useRadius,paddingControl,borderRadiusControl,fontControls,useFontControls}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useCallback,useMemo,useState}from\"react\";const emailRegex=/^(([^<>()[\\]\\\\.,;:\\s@\"]+(\\.[^<>()[\\]\\\\.,;:\\s@\"]+)*)|(\".+\"))@((\\[[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\.[0-9]{1,3}\\])|(([a-zA-Z\\-0-9]+\\.)+[a-zA-Z]{2,}))$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};/**\n * FORMSPARK\n *\n * @framerIntrinsicWidth 550\n * @framerIntrinsicHeight 290\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */ const FormSpark=withCSS(function FormSpark({formId,withName,nameField:name,withEmail,email,withMessage,message,layout,inputs,button,style,gap,onSubmit,...props}){const[nameValue,setName]=useState(name===null||name===void 0?void 0:name.value);const[emailValue,setEmail]=useState(email===null||email===void 0?void 0:email.value);const[messageValue,setMessage]=useState(message===null||message===void 0?void 0:message.value);const[isNameError,setNameError]=useState(false);const[isEmailError,setEmailError]=useState(false);const[isMessageError,setMessageError]=useState(false);const[isLoading,setLoading]=useState(false);const[isSuccess,setSuccess]=useState(false);const isCanvas=useMemo(()=>{return RenderTarget.current()===RenderTarget.canvas;},[]);const gridTemplateRows=useMemo(()=>{const rows=[];if(withName||withMessage){rows.push(\"max-content\");}if(withMessage){rows.push(\"1fr\");}return[...rows,\"max-content\"].join(\" \");},[withName,withEmail,withMessage]);const gridTemplateColumns=useMemo(()=>{const cols=[];if((withName&&!withEmail||withEmail&&!withName)&&!withMessage&&layout===\"horizontal\"){return\"1fr max-content\";}return\"1fr\";},[withName,withEmail,withMessage,layout]);const{fontFamily,fontSize,fontWeight}=useFontControls(props);const borderRadius=useRadius(props);const paddingValue=usePadding(props);const validateForm=useCallback(()=>{let error=false;setNameError(false);setEmailError(false);setMessageError(false);if(withName&&!nameValue){setNameError(true);error=true;}if(withEmail&&(!emailValue||!validateEmail(emailValue))){setEmailError(true);error=true;}if(withMessage&&!messageValue){setMessageError(true);error=true;}return error;},[validateEmail,withName,withEmail,withMessage,nameValue,emailValue,messageValue,]);const handleSubmit=useCallback(event=>{setLoading(true);event.preventDefault();if(validateForm()){setLoading(false);}else{const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formId}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{setSuccess(true);onSubmit();}).catch(()=>setLoading(false));}},[formId,onSubmit,validateForm]);const handleNameChange=useCallback(event=>{setNameError(false);setName(event.target.value);},[]);const handleEmailChange=useCallback(event=>{setEmailError(false);setEmail(event.target.value);},[]);const handleMessageChange=useCallback(event=>{setMessageError(false);setMessage(event.target.value);},[]);return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,flexDirection:\"column\",\"--framer-formspark-placeholder-color\":inputs.placeholderColor},children:isSuccess?/*#__PURE__*/ _jsx(motion.div,{style:{height:\"60px\",width:\"60px\",background:button.fill,color:button.color,borderRadius:\"50%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"},initial:{scale:0},animate:{scale:1},transition:{duration:.3},children:/*#__PURE__*/ _jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"28\",height:\"28\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M 2 14 L 10 22 L 26 6\",fill:\"transparent\",strokeWidth:\"4\",stroke:\"currentColor\",strokeLinecap:\"round\"})})}):/*#__PURE__*/ _jsxs(\"form\",{style:{display:\"grid\",gridTemplateRows,gridTemplateColumns,gap,width:\"100%\",height:\"100%\"},onSubmit:handleSubmit,method:\"POST\",children:[(withName||withEmail)&&/*#__PURE__*/ _jsxs(\"div\",{style:{width:\"100%\",display:\"grid\",gridAutoFlow:layout===\"horizontal\"?\"column\":\"row\",gap},children:[withName&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"text\",name:\"name\",placeholder:name.placeholder,value:isCanvas?name.value:nameValue,onChange:handleNameChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isNameError?inputs.error:\"transparent\"}`}}),withEmail&&/*#__PURE__*/ _jsx(\"input\",{className:\"framer-formspark-input\",type:\"email\",name:\"email\",placeholder:email.placeholder,value:isCanvas?email.value:emailValue,onChange:handleEmailChange,style:{...defaultStyle,padding:paddingValue,borderRadius,fontFamily,fontWeight,fontSize,background:inputs.fill,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isEmailError?inputs.error:\"transparent\"}`}})]}),withMessage&&/*#__PURE__*/ _jsx(\"textarea\",{className:\"framer-formspark-input\",placeholder:message.placeholder,name:\"message\",value:isCanvas?message.value:messageValue,onChange:handleMessageChange,style:{...defaultStyle,minHeight:0,padding:paddingValue,resize:\"vertical\",borderRadius,background:inputs.fill,fontFamily,fontWeight,fontSize,color:inputs.color,boxShadow:`inset 0 0 0 1px ${isMessageError?inputs.error:\"transparent\"}`}}),/*#__PURE__*/ _jsxs(\"div\",{children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,borderRadius,padding:paddingValue,fontFamily,fontWeight:button.fontWeight,fontSize,background:button.fill,cursor:\"pointer\",color:button.color,zIndex:1},transition:{type:\"ease\",duration:.3},whileHover:{opacity:.8}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",left:0,top:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16},initial:{rotate:0},animate:{rotate:360},transition:{duration:2,repeat:Infinity},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})})]})]})});},[\".framer-formspark-input::placeholder { color: var(--framer-formspark-placeholder-color) !important; }\",]);FormSpark.defaultProps={fontSize:16,fontFamily:\"Inter\",fontWeight:400,padding:15,paddingTop:15,paddingBottom:15,paddingLeft:15,paddingRight:15,borderRadius:8,topLeftRadius:8,topRightRadius:8,bottomRightRadius:8,bottomLeftRadius:8,gap:15,nameField:{value:undefined,placeholder:\"Name\"},email:{value:undefined,placeholder:\"Email\"},message:{value:undefined,placeholder:\"Message\"},inputs:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},layout:{fill:\"#EBEBEB\",color:\"#000\",placeholderColor:\"rgba(0, 0, 0, 0.5)\",error:\"#EE4444\"},button:{label:\"Sign Up\",fontWeight:600,fill:\"#000\",color:\"#FFF\"}};addPropertyControls(FormSpark,{formId:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,description:\"Create a [FormSpark](https://formspark.io/) account, add a new form and copy its ID. [Learn more\u2026](https://www.framer.com/sites/integrations/formspark/)\"},withName:{title:\"Name\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},nameField:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Name\"},value:{title:\"Value\",type:ControlType.String,defaultValue:\"\"}},hidden:props=>!props.withName},withEmail:{title:\"Email\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},email:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Email\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withEmail},withMessage:{title:\"Message\",type:ControlType.Boolean,enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:true},message:{title:\" \",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"Message\"},value:{title:\"Value\",type:ControlType.String}},hidden:props=>!props.withMessage},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,defaultValue:\"horizontal\"},inputs:{title:\"Inputs\",type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.5)\"},error:{title:\"Error\",type:ControlType.Color,defaultValue:\"#EE4444\"}}},button:{title:\"Button\",type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String,defaultValue:\"Sign Up\"},fontWeight:{...fontControls.fontWeight,defaultValue:600},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#000\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"}}},...fontControls,fontSize:{title:\"Font Size\",type:ControlType.Number,displayStepper:true,defaultValue:16},...paddingControl,...borderRadiusControl,gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0},onSubmit:{type:ControlType.EventHandler}});const defaultStyle={WebkitAppearance:\"none\",display:\"inline-block\",width:\"100%\",lineHeight:\"1.4em\",outline:\"none\",border:\"none\"};export default FormSpark;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FormSpark\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"290\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"550\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./FormSpark.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{useMotionValueEvent}from\"framer-motion\";import{useRef,useEffect,useMemo,useCallback,memo}from\"react\";import{ControlType,addPropertyControls,useIsInCurrentNavigationTarget}from\"framer\";import{useOnEnter,useOnExit,defaultEvents,useIsOnCanvas,useIsBrowserSafari,useRadius,borderRadiusControl}from\"https://framer.com/m/framer/default-utils.js@^0.45.0\";import{useAutoMotionValue}from\"https://framer.com/m/framer/useAutoMotionValue.js@^0.3.0\";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={}));// 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});}/**\n * For the useEffect hook to change progress of the video on state change.\n * It was causing the video to restart on hydration\n */ let isMountedAndReadyForProgressChanges=false;const VideoMemo=/*#__PURE__*/ memo(function VideoInner(props){const{srcType,srcFile,srcUrl,playing,canvasPlay,muted,playsinline,controls,progress,objectFit,backgroundColor,radius,topLeft,topRight,bottomRight,bottomLeft,isMixed,onSeeked,onPause,onPlay,onEnd,onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,poster,restartOnEnter,posterEnabled,startTime:startTimeProp,volume,loop}=props;const isInCurrentNavigationTarget=useIsInCurrentNavigationTarget();const videoRef=useRef();const isSafari=useIsBrowserSafari();const requestingPlay=useRef(false);const wasPausedOnLeave=useRef(null);const wasEndedOnLeave=useRef(null);const isOnCanvas=useIsOnCanvas();const borderRadius=useRadius(props);// Video elements behave oddly at 100% duration\nconst startTime=useMemo(()=>startTimeProp===100?99.9:startTimeProp,[startTimeProp]);const shouldPlay=!isOnCanvas||canvasPlay;const autoPlay=useMemo(()=>playing,[]);const isMuted=useMemo(()=>isOnCanvas?true:muted,[isOnCanvas,muted]);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 isPlaying=videoRef.current.currentTime>0&&videoRef.current.onplaying&&!videoRef.current.paused&&!videoRef.current.ended&&videoRef.current.readyState>videoRef.current.HAVE_CURRENT_DATA;if(!isPlaying&&videoRef.current&&!requestingPlay.current&&isInCurrentNavigationTarget){requestingPlay.current=true;videoRef.current.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();},[]);// Pause/play via props\nuseEffect(()=>{if(playing&&shouldPlay)play();else pause();},[playing,canvasPlay]);// Change progress via prop\nuseEffect(()=>{if(isMountedAndReadyForProgressChanges)setProgress(startTime*.01);else isMountedAndReadyForProgressChanges=true;},[startTime,srcFile,srcUrl]);const videoProgress=useAutoMotionValue(progress,{transform:value=>value*.01,onChange:newValue=>{setProgress(newValue);}});// Allow scrubbing with MotionValue\nuseMotionValueEvent(videoProgress,\"change\",latest=>{if(!isOnCanvas)setProgress(latest);});// (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===SrcType.Url)return srcUrl+fragment;if(srcType===SrcType.Video)return srcFile+fragment;},[srcType,srcFile,srcUrl,startTime]);// Autoplay via JS to work in Safari\nuseEffect(()=>{if(isSafari&&videoRef.current&&autoPlay){setTimeout(()=>play(),50);}},[]);// Volume Control\nuseEffect(()=>{if(videoRef.current&&!muted)videoRef.current.volume=volume/100;},[volume]);// When video is ready, set start-time, then autoplay if needed\nconst handleReady=()=>{if(videoRef.current&&videoRef.current.currentTime<.3)setProgress(startTime*.01);if(shouldPlay&&videoRef.current&&autoPlay)play();};return /*#__PURE__*/ _jsx(\"video\",{onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,src:src,loop:loop,ref:videoRef,onSeeked:e=>{return onSeeked===null||onSeeked===void 0?void 0:onSeeked(e);},onPause:e=>{return onPause===null||onPause===void 0?void 0:onPause(e);},onPlay:e=>{return onPlay===null||onPlay===void 0?void 0:onPlay(e);},onEnded:e=>{return onEnd===null||onEnd===void 0?void 0:onEnd(e);},autoPlay:autoPlay&&shouldPlay,poster:posterEnabled?poster:undefined,onLoadedData:handleReady,controls:controls,muted:isMuted,playsInline:playsinline,style:{cursor:!!onClick?\"pointer\":\"auto\",width:\"100%\",height:\"100%\",borderRadius,display:\"block\",objectFit:objectFit,backgroundColor:backgroundColor,objectPosition:\"50% 50%\"}});});Video.displayName=\"Video\";Video.defaultProps={srcType:SrcType.Url,srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",srcFile:\"\",posterEnabled:false,controls:false,autoPlay:true,canvasPlay:false,loop:true,muted:true,playsinline:true,restartOnEnter:false,objectFit:ObjectFitType.Cover,backgroundColor:\"rgba(0,0,0,0)\",radius:0,volume:25,startTime:0};addPropertyControls(Video,{srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Url,SrcType.Video]},srcUrl:{type:ControlType.String,title:\" \",placeholder:\"../example.mp4\",hidden(props){return props.srcType===SrcType.Video;},description:\"Hosted video file URL. For Youtube, use the Youtube component.\"},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[\"mp4\"],hidden(props){return props.srcType===SrcType.Url;}},playing:{type:ControlType.Boolean,title:\"Playing\",enabledTitle:\"Yes\",disabledTitle:\"No\"},posterEnabled:{type:ControlType.Boolean,title:\"Poster\",enabledTitle:\"Yes\",disabledTitle:\"No\"},poster:{type:ControlType.Image,title:\" \",hidden:({posterEnabled})=>!posterEnabled},backgroundColor:{type:ControlType.Color,title:\"Background\"},...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:[ObjectFitType.Cover,ObjectFitType.Fill,ObjectFitType.Contain,ObjectFitType.ScaleDown,ObjectFitType.None,]},canvasPlay:{type:ControlType.Boolean,title:\"On Canvas\",enabledTitle:\"Play\",disabledTitle:\"Pause\",hidden(props){return props.autoPlay===false;}},// 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\"},muted:{type:ControlType.Boolean,title:\"Muted\",enabledTitle:\"Yes\",disabledTitle:\"No\"},volume:{type:ControlType.Number,max:100,min:0,unit:\"%\",hidden:({muted})=>muted},onEnd:{type:ControlType.EventHandler},onSeeked:{type:ControlType.EventHandler},onPause:{type:ControlType.EventHandler},onPlay:{type:ControlType.EventHandler},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"VideoProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Video\":{\"type\":\"reactComponent\",\"name\":\"Video\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerIntrinsicHeight\":\"112\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Video.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,Image,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/0jtlswBvrookcx7EpjBD/Video.js\";const VideoFonts=getFonts(Video);const enabledGestures={f6ZBuwjbr:{hover:true}};const cycleOrder=[\"f6ZBuwjbr\"];const serializationHash=\"framer-AQJRN\";const variantClassNames={f6ZBuwjbr:\"framer-v-7l3wbs\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({domain,height,id,image,imageSource,video,width,...props})=>{var _ref,_ref1,_ref2;return{...props,dtYTOKz0q:image!==null&&image!==void 0?image:props.dtYTOKz0q,P0O7arHg_:(_ref=imageSource!==null&&imageSource!==void 0?imageSource:props.P0O7arHg_)!==null&&_ref!==void 0?_ref:{src:\"https://framerusercontent.com/images/yWy6bJKejlKvxywIlEFwWYenZaY.png?scale-down-to=512\",srcSet:\"https://framerusercontent.com/images/yWy6bJKejlKvxywIlEFwWYenZaY.png?scale-down-to=512 512w,https://framerusercontent.com/images/yWy6bJKejlKvxywIlEFwWYenZaY.png 600w\"},WjYhrTqnd:(_ref1=video!==null&&video!==void 0?video:props.WjYhrTqnd)!==null&&_ref1!==void 0?_ref1:true,yNmWM3xox:(_ref2=domain!==null&&domain!==void 0?domain:props.yNmWM3xox)!==null&&_ref2!==void 0?_ref2:\"squarespace.com\"};};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,WjYhrTqnd,ZfrgBhZIC,dtYTOKz0q,P0O7arHg_,yNmWM3xox,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"f6ZBuwjbr\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"f6ZBuwjbr-hover\")return true;return false;};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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-7l3wbs\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"f6ZBuwjbr\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,...style},...addPropertyOverrides({\"f6ZBuwjbr-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:[dtYTOKz0q&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(P0O7arHg_)},className:\"framer-1k39v5v\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"OrRqQPYEF\"}),WjYhrTqnd&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1e2dtl8-container\",layoutDependency:layoutDependency,layoutId:\"sbqGjWNZ2-container\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,canvasPlay:true,controls:false,height:\"100%\",id:\"sbqGjWNZ2\",isMixedBorderRadius:false,layoutId:\"sbqGjWNZ2\",loop:true,muted:true,objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:ZfrgBhZIC,srcType:\"Upload\",srcUrl:\"https://assets.mixkit.co/videos/preview/mixkit-ice-cream-glass-of-red-soda-5094-small.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l6vmtg\",layoutDependency:layoutDependency,layoutId:\"cDFtHOVjY\",style:{backgroundColor:\"var(--token-9ab47ae7-3c69-4a9e-9ff8-993fc8bc0a0e, rgb(255, 255, 255))\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4},children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-x1mgzq\",\"data-framer-name\":\"Icon\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"HsXBYb8wo\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 10.4 10.4 L 10.4 5.6 M 10.4 5.6 L 5.6 5.6 M 10.4 5.6 L 5.6 10.4 M 4.64 15.2 L 11.36 15.2 C 12.704 15.2 13.376 15.2 13.89 14.938 C 14.341 14.708 14.708 14.341 14.938 13.89 C 15.2 13.376 15.2 12.704 15.2 11.36 L 15.2 4.64 C 15.2 3.296 15.2 2.624 14.938 2.11 C 14.708 1.659 14.341 1.292 13.89 1.062 C 13.376 0.8 12.704 0.8 11.36 0.8 L 4.64 0.8 C 3.296 0.8 2.624 0.8 2.11 1.062 C 1.659 1.292 1.292 1.659 1.062 2.11 C 0.8 2.624 0.8 3.296 0.8 4.64 L 0.8 11.36 C 0.8 12.704 0.8 13.376 1.062 13.89 C 1.292 14.341 1.659 14.708 2.11 14.938 C 2.624 15.2 3.296 15.2 4.64 15.2 Z\" fill=\"transparent\" stroke-width=\"1.5\" stroke=\"rgb(0,0,0)\" stroke-linecap=\"round\" stroke-linejoin=\"round\" stroke-dasharray=\"\"></path></svg>',svgContentId:11732227083,withExternalLayout:true}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"1em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34)))\"},children:\"squarespace.com\"})}),className:\"framer-1n92lcc\",fonts:[\"CUSTOM;Mona-Sans Regular\"],layoutDependency:layoutDependency,layoutId:\"Kbvv1FAUq\",style:{\"--extracted-r6o4lv\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yNmWM3xox,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-AQJRN.framer-1rwppnu, .framer-AQJRN .framer-1rwppnu { display: block; }\",\".framer-AQJRN.framer-7l3wbs { cursor: pointer; height: 301px; overflow: hidden; position: relative; width: 400px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AQJRN .framer-1k39v5v { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-AQJRN .framer-1e2dtl8-container { bottom: 1px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-AQJRN .framer-1l6vmtg { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: var(--framer-aspect-ratio-supported, 24px); justify-content: center; overflow: hidden; padding: 2px; position: absolute; right: 10px; top: 10px; width: 24px; will-change: var(--framer-will-change-override, transform); }\",\".framer-AQJRN .framer-x1mgzq { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-AQJRN .framer-1n92lcc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-AQJRN .framer-1l6vmtg { gap: 0px; } .framer-AQJRN .framer-1l6vmtg > * { margin: 0px; margin-left: calc(4px / 2); margin-right: calc(4px / 2); } .framer-AQJRN .framer-1l6vmtg > :first-child { margin-left: 0px; } .framer-AQJRN .framer-1l6vmtg > :last-child { margin-right: 0px; } }\",\".framer-AQJRN.framer-v-7l3wbs.hover .framer-1l6vmtg { aspect-ratio: unset; height: 24px; padding: 2px 8px 2px 4px; width: min-content; }\",\".framer-AQJRN.framer-v-7l3wbs.hover .framer-x1mgzq { order: 1; }\",\".framer-AQJRN.framer-v-7l3wbs.hover .framer-1n92lcc { order: 0; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 301\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"Cxt_Ijp6k\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"WjYhrTqnd\":\"video\",\"dtYTOKz0q\":\"image\",\"P0O7arHg_\":\"imageSource\",\"yNmWM3xox\":\"domain\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramereNNzkOCcF=withCSS(Component,css,\"framer-AQJRN\");export default FramereNNzkOCcF;FramereNNzkOCcF.displayName=\"Advertising/Squarespace Ad\";FramereNNzkOCcF.defaultProps={height:301,width:400};addPropertyControls(FramereNNzkOCcF,{WjYhrTqnd:{defaultValue:true,title:\"Video\",type:ControlType.Boolean},dtYTOKz0q:{defaultValue:false,title:\"Image\",type:ControlType.Boolean},P0O7arHg_:{__defaultAssetReference:\"data:framer/asset-reference,yWy6bJKejlKvxywIlEFwWYenZaY.png?originalFilename=image.png&preferredSize=auto\",title:\"Image Source\",type:ControlType.ResponsiveImage},yNmWM3xox:{defaultValue:\"squarespace.com\",displayTextArea:false,title:\"Domain\",type:ControlType.String}});addFonts(FramereNNzkOCcF,[{explicitInter:true,fonts:[{family:\"Mona-Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/eTV1TIK1tbVI9tQPE5TpxxykyU.woff2\"}]},...VideoFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramereNNzkOCcF\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"Cxt_Ijp6k\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerVariables\":\"{\\\"WjYhrTqnd\\\":\\\"video\\\",\\\"dtYTOKz0q\\\":\\\"image\\\",\\\"P0O7arHg_\\\":\\\"imageSource\\\",\\\"yNmWM3xox\\\":\\\"domain\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"400\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"301\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./eNNzkOCcF.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,optimizeAppear,PropertyOverrides,ResolveLinks,RichText,useActiveVariantCallback,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useOverlayState,useRouteElementId,useRouter,withCSS}from\"framer\";import{AnimatePresence,LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import*as ReactDOM from\"react-dom\";import Vimeo from\"https://framerusercontent.com/modules/0sWquksFr1YDkaIgrl9Z/VgWe6mCMJOseqaLiMnaC/Vimeo.js\";import FormSpark from\"https://framerusercontent.com/modules/vkHAj2Yk0mTnbM6ZdN5c/Foxm7T4YpJpvPgDlEus0/FormSpark.js\";import AdvertisingSquarespaceAd from\"#framer/local/canvasComponent/eNNzkOCcF/eNNzkOCcF.js\";import Button from\"#framer/local/canvasComponent/jHzyOF96c/jHzyOF96c.js\";import Navigation from\"#framer/local/canvasComponent/lHZxyVEY7/lHZxyVEY7.js\";import SubNavAbout from\"#framer/local/canvasComponent/s04IiVmco/s04IiVmco.js\";import TestimonialCustomerStory from\"#framer/local/canvasComponent/uAQjOVSdk/uAQjOVSdk.js\";import PreTitle from\"#framer/local/canvasComponent/UVGz6IzM0/UVGz6IzM0.js\";import FooterV2 from\"#framer/local/codeFile/ry2ilVy/FooterV2.js\";import*as sharedStyle from\"#framer/local/css/dUg5HNnEh/dUg5HNnEh.js\";import*as sharedStyle1 from\"#framer/local/css/fVxnimdqP/fVxnimdqP.js\";import*as sharedStyle2 from\"#framer/local/css/Mk4XRs9zw/Mk4XRs9zw.js\";import*as sharedStyle3 from\"#framer/local/css/YckFIlg3V/YckFIlg3V.js\";import metadataProvider from\"#framer/local/webPageMetadata/fjhjl55jV/fjhjl55jV.js\";const NavigationFonts=getFonts(Navigation);const SubNavAboutFonts=getFonts(SubNavAbout);const PreTitleFonts=getFonts(PreTitle);const AdvertisingSquarespaceAdFonts=getFonts(AdvertisingSquarespaceAd);const ButtonFonts=getFonts(Button);const TestimonialCustomerStoryFonts=getFonts(TestimonialCustomerStory);const VimeoFonts=getFonts(Vimeo);const FormSparkFonts=getFonts(FormSpark);const FooterV2Fonts=getFonts(FooterV2);const cycleOrder=[\"WR9dTOfPv\",\"NSD2d90hD\",\"L4dQMl8Hs\",\"WaTFSYQtS\",\"CO67BpyMZ\"];const breakpoints={CO67BpyMZ:\"(min-width: 950px) and (max-width: 1099px)\",L4dQMl8Hs:\"(min-width: 810px) and (max-width: 949px)\",NSD2d90hD:\"(min-width: 1100px) and (max-width: 1439px)\",WaTFSYQtS:\"(max-width: 809px)\",WR9dTOfPv:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-BosG2\";const variantClassNames={CO67BpyMZ:\"framer-v-sfk21s\",L4dQMl8Hs:\"framer-v-mngb9s\",NSD2d90hD:\"framer-v-1gze9vw\",WaTFSYQtS:\"framer-v-112y606\",WR9dTOfPv:\"framer-v-xzexhg\"};const transition1={delay:.3,duration:.6,ease:[.44,0,.56,1],type:\"tween\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:10};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop 1440\":\"WR9dTOfPv\",\"Phone 390\":\"WaTFSYQtS\",\"Tablet 1100\":\"NSD2d90hD\",\"Tablet 810\":\"L4dQMl8Hs\",\"Tablet 950\":\"CO67BpyMZ\"};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:\"WR9dTOfPv\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);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);}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);}}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-BosG2`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-BosG2`);};}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const AASbSEYM_welu7j=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.toggle();});const ref1=React.useRef(null);const id=useRouteElementId(\"W47joagVL\");const ref2=React.useRef(null);const router=useRouter();const isDisplayed=()=>{if(!isBrowser())return true;if([\"L4dQMl8Hs\",\"WaTFSYQtS\",\"CO67BpyMZ\"].includes(baseVariant))return false;return true;};const id1=useRouteElementId(\"lmg7dwfs1\");const ref3=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WR9dTOfPv\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xzexhg\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nlt0pp\",\"data-framer-name\":\"Site Nav V2\",name:\"Site Nav V2\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"max(100vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ks8i2j-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{variant:\"qLMSuCx74\"},L4dQMl8Hs:{variant:\"KZxQ3l27d\"},NSD2d90hD:{variant:\"qLMSuCx74\"},WaTFSYQtS:{variant:\"KZxQ3l27d\"}},children:/*#__PURE__*/_jsx(Navigation,{height:\"100%\",id:\"HALtz9TkJ\",layoutId:\"HALtz9TkJ\",style:{height:\"100%\",width:\"100%\"},V9roEbMg8:\"rgb(255, 255, 255)\",variant:\"MErYkZovB\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t7s5av-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{L4dQMl8Hs:{variant:\"SaS6Ju0ii\"},WaTFSYQtS:{variant:\"SaS6Ju0ii\"}},children:/*#__PURE__*/_jsx(SubNavAbout,{height:\"100%\",id:\"S1Wh6GsxK\",layoutId:\"S1Wh6GsxK\",style:{width:\"100%\"},variant:\"jRDmDuWid\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nrbmj5\",\"data-framer-name\":\"CONTENT\",id:id,name:\"CONTENT\",ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14hj48z\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-100wa71\",\"data-framer-name\":\"Tertriary Header\",name:\"Tertriary Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18i317h\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-lrx63s-container\",children:/*#__PURE__*/_jsx(PreTitle,{H4K1e2PpX:\"Advertise\",H71ZxursC:\"rgb(246, 217, 251)\",height:\"100%\",id:\"wlnzbUCI0\",layoutId:\"wlnzbUCI0\",variant:\"p7nrQD7hH\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ggjnc3\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"Connect with creative, product, & business decision makers worldwide\"})})},L4dQMl8Hs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"42px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"Connect with creative, product, & business decision makers worldwide\"})})},NSD2d90hD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"Connect with creative, product, & business decision makers worldwide\"})})},WaTFSYQtS:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"40px\",\"--framer-letter-spacing\":\"-1px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"Connect with creative, product, & business decision makers worldwide\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7U291cmNlIFNlcmlmIDQtcmVndWxhcg==\",\"--framer-font-family\":'\"Source Serif 4\", \"Source Serif 4 Placeholder\", serif',\"--framer-font-size\":\"64px\",\"--framer-letter-spacing\":\"-1.5px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"Connect with creative, product, & business decision makers worldwide\"})}),className:\"framer-157or35\",fonts:[\"GF;Source Serif 4-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"center\"}})}),className:\"framer-go1ffb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-183fxd5\",\"data-framer-name\":\"Spacer\",name:\"Spacer\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8hbeif\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WaTFSYQtS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"260px\",src:\"https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png\",srcSet:\"https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"370px\",src:\"https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png\",srcSet:\"https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png?scale-down-to=512 512w,https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/KXCRq85NaenbXL0RzauFZqsK2Q.png 2048w\"},className:\"framer-13b12fw\",\"data-framer-name\":\"Shot\",name:\"Shot\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-c246m8-container\",\"data-framer-name\":\"Ad\",name:\"Ad\",children:/*#__PURE__*/_jsx(AdvertisingSquarespaceAd,{dtYTOKz0q:false,height:\"100%\",id:\"NCzs2kqPq\",layoutId:\"NCzs2kqPq\",name:\"Ad\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",WjYhrTqnd:true,yNmWM3xox:\"squarespace.com\",ZfrgBhZIC:\"https://framerusercontent.com/assets/OoQmGZ2RtyWwaps8Y0n6bFUqwU0.mp4\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{WaTFSYQtS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,pixelHeight:1200,pixelWidth:1600,sizes:\"260px\",src:\"https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg\",srcSet:\"https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg 1600w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1200,intrinsicWidth:1600,pixelHeight:1200,pixelWidth:1600,sizes:\"370px\",src:\"https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg\",srcSet:\"https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/BB0SnMBGcJT8Hm4uHG4PUfQEY.jpg 1600w\"},className:\"framer-1nf25xt\",\"data-framer-name\":\"Shot\",name:\"Shot\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-f092ey\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1soyzv8\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qdof91\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Stop interrupting. Start inspiring with bespoke native ads, editorial, and much more.\"})}),className:\"framer-1kk2hjk\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"Advertise your brand organically within Dribbble\u2019s design inspiration feeds. Our native Boosted Shots act just like the regular Dribbble shots designers post on our website \u2013 just way more visible. Keep the conversation going by tapping into our community with custom editorial placements, our interactive \u201CPlayoffs\u201D, email integrations, and so much more.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"Whether driving awareness, announcing a product launch, or showcasing a special offer, we have your hard to reach audience and you have control over the design, copy, CTA, and destination.\"})]}),className:\"framer-169hk1t\",\"data-framer-name\":\"p\",fonts:[\"Inter\"],name:\"p\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":lmg7dwfs1\",webPageId:\"fjhjl55jV\"},implicitPathVariables:undefined},{href:{hash:\":lmg7dwfs1\",webPageId:\"fjhjl55jV\"},implicitPathVariables:undefined},{href:{hash:\":lmg7dwfs1\",webPageId:\"fjhjl55jV\"},implicitPathVariables:undefined},{href:{hash:\":lmg7dwfs1\",webPageId:\"fjhjl55jV\"},implicitPathVariables:undefined},{href:{hash:\":lmg7dwfs1\",webPageId:\"fjhjl55jV\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{\"data-framer-appear-id\":\"1stgv38\",animate:optimizeAppear(\"animate\",\"1stgv38\",animation,\"sfk21s\"),initial:optimizeAppear(\"initial\",\"1stgv38\",animation1,\"sfk21s\")},L4dQMl8Hs:{\"data-framer-appear-id\":\"19rqlu2\",animate:optimizeAppear(\"animate\",\"19rqlu2\",animation,\"mngb9s\"),initial:optimizeAppear(\"initial\",\"19rqlu2\",animation1,\"mngb9s\")},NSD2d90hD:{\"data-framer-appear-id\":\"laawrh\",animate:optimizeAppear(\"animate\",\"laawrh\",animation,\"1gze9vw\"),initial:optimizeAppear(\"initial\",\"laawrh\",animation1,\"1gze9vw\")},WaTFSYQtS:{\"data-framer-appear-id\":\"1raz3s\",animate:optimizeAppear(\"animate\",\"1raz3s\",animation,\"112y606\"),initial:optimizeAppear(\"initial\",\"1raz3s\",animation1,\"112y606\")}},children:/*#__PURE__*/_jsx(Container,{animate:optimizeAppear(\"animate\",\"h953i7\",animation,\"xzexhg\"),className:\"framer-h953i7-container\",\"data-framer-appear-id\":\"h953i7\",\"data-framer-name\":\"Button\",initial:optimizeAppear(\"initial\",\"h953i7\",animation1,\"xzexhg\"),name:\"Button\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{qy4VKjDB5:resolvedLinks[4]},L4dQMl8Hs:{qy4VKjDB5:resolvedLinks[2]},NSD2d90hD:{qy4VKjDB5:resolvedLinks[1]},WaTFSYQtS:{qy4VKjDB5:resolvedLinks[3]}},children:/*#__PURE__*/_jsx(Button,{aOCYaHfLN:false,beTeoO7e6:false,bZVzcvAMI:false,cgtmrK1_Q:\"rgb(255, 255, 255)\",fAGIbP3qk:false,height:\"100%\",id:\"tIhz2mE_L\",IXJV26FKd:\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(6, 3, 24))\",layoutId:\"tIhz2mE_L\",n5zXdqlOk:15,name:\"Button\",Om6UbZdF7:\"Advertise with us\",qy4VKjDB5:resolvedLinks[0],style:{height:\"100%\"},UrtBmFggk:false,variant:\"IhilNdC7m\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1riuvhi\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png\",srcSet:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=512 512w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png 2048w\"}},L4dQMl8Hs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png\",srcSet:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=512 512w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png 2048w\"}},NSD2d90hD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png\",srcSet:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=512 512w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png 2048w\"}},WaTFSYQtS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 48px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png\",srcSet:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=512 512w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 80px) / 3, 200px)\",src:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png\",srcSet:\"https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=512 512w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/dzHy7O3bePuNZ2kJDMl6Z12ah0.png 2048w\"},className:\"framer-99t8yw\",\"data-framer-name\":\"Shot\",name:\"Shot\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-sy84qf-container\",\"data-framer-name\":\"Ad\",name:\"Ad\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{ZfrgBhZIC:undefined}},children:/*#__PURE__*/_jsx(AdvertisingSquarespaceAd,{dtYTOKz0q:false,height:\"100%\",id:\"pfzg7kVhv\",layoutId:\"pfzg7kVhv\",name:\"Ad\",P0O7arHg_:addImageAlt({src:\"https://framerusercontent.com/images/XtIg2FJV2UBJCdPufSm0sGlGr8.png\",srcSet:\"https://framerusercontent.com/images/XtIg2FJV2UBJCdPufSm0sGlGr8.png?scale-down-to=512 512w,https://framerusercontent.com/images/XtIg2FJV2UBJCdPufSm0sGlGr8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/XtIg2FJV2UBJCdPufSm0sGlGr8.png 1504w\"},\"\"),style:{height:\"100%\",width:\"100%\"},width:\"100%\",WjYhrTqnd:true,yNmWM3xox:\"webflow.com\",ZfrgBhZIC:\"https://framerusercontent.com/assets/f6khR5nHFTJUAL7a3t06torr6g.mp4\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:525,intrinsicWidth:700,pixelHeight:525,pixelWidth:700,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg\",srcSet:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg 700w\"}},L4dQMl8Hs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:525,intrinsicWidth:700,pixelHeight:525,pixelWidth:700,sizes:\"max((min(100vw - 80px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg\",srcSet:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg 700w\"}},NSD2d90hD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:525,intrinsicWidth:700,loading:\"lazy\",pixelHeight:525,pixelWidth:700,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg\",srcSet:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg 700w\"}},WaTFSYQtS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:525,intrinsicWidth:700,pixelHeight:525,pixelWidth:700,sizes:\"max((min(100vw - 48px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg\",srcSet:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg 700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:525,intrinsicWidth:700,loading:\"lazy\",pixelHeight:525,pixelWidth:700,sizes:\"max((min(100vw - 80px, 1200px) - 80px) / 3, 200px)\",src:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg\",srcSet:\"https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/qAAu1iiAfu261adCwPXibsfXTL4.jpg 700w\"},className:\"framer-via6pd\",\"data-framer-name\":\"Shot\",name:\"Shot\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png\",srcSet:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png 2048w\"}},L4dQMl8Hs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png\",srcSet:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png 2048w\"}},NSD2d90hD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png\",srcSet:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png 2048w\"}},WaTFSYQtS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 48px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png\",srcSet:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 80px) / 3, 200px)\",src:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png\",srcSet:\"https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=512 512w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/rjxPLhceXqV4jkrnthUVAqZDGI.png 2048w\"},className:\"framer-jsqmmw\",\"data-framer-name\":\"Shot\",name:\"Shot\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png\",srcSet:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png 2048w\"}},L4dQMl8Hs:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png\",srcSet:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png 2048w\"}},NSD2d90hD:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 160px) / 3, 200px)\",src:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png\",srcSet:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png 2048w\"}},WaTFSYQtS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 48px, 1200px) - 48px) / 3, 200px)\",src:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png\",srcSet:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1536,intrinsicWidth:2048,loading:\"lazy\",pixelHeight:1536,pixelWidth:2048,sizes:\"max((min(100vw - 80px, 1200px) - 80px) / 3, 200px)\",src:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png\",srcSet:\"https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=512 512w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/CHiUNVBPXEahUcUse0P3B4GS8.png 2048w\"},className:\"framer-y2qfce\",\"data-framer-name\":\"Shot\",name:\"Shot\"})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-isduj8-container\",\"data-framer-name\":\"Ad\",name:\"Ad\",children:/*#__PURE__*/_jsx(AdvertisingSquarespaceAd,{dtYTOKz0q:false,height:\"100%\",id:\"nvWHVOlLj\",layoutId:\"nvWHVOlLj\",name:\"Ad\",style:{height:\"100%\",width:\"100%\"},width:\"100%\",WjYhrTqnd:true,yNmWM3xox:\"tiled.co\",ZfrgBhZIC:\"https://framerusercontent.com/assets/7LHyFkjvc79L6v1bwpJRvioLrU.mp4\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ufmegm\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"What our customers have to say\"})}),className:\"framer-18zrtn\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mlppn6\",children:[/*#__PURE__*/_jsx(Overlay,{children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-14lkvbx-container\",id:\"14lkvbx\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{variant:\"IWMqynM0K\"},L4dQMl8Hs:{variant:\"IWMqynM0K\"},WaTFSYQtS:{variant:\"IWMqynM0K\"}},children:/*#__PURE__*/_jsx(TestimonialCustomerStory,{AASbSEYM_:AASbSEYM_welu7j({overlay}),Gp9FttQh7:\"Watch MetaLab's story\",height:\"100%\",hFd7JhoS7:\"Dribbble is the gateway to creative professionals around the world. In the first month we had over 14 thousand unique visitors driven from Dribbble.\u201D\",id:\"M3CNdExut\",iSXG16slP:true,layoutId:\"M3CNdExut\",nWaLFxqtk:addImageAlt({src:\"https://framerusercontent.com/images/cCGkfZP2cwBxSLNucDgqEB9K5wE.png?scale-down-to=1024\"},\"\"),style:{width:\"100%\"},v822_HqhW:\"President, MetaLab\",V9wfpgbhU:\"Luke Des Cotes \u2014 \",variant:\"U_sY4cTcL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1x3qbmq\",\"data-framer-portal-id\":\"14lkvbx\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay.hide()},\"S2WAiNiNy\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-by0vff-container\",\"data-framer-portal-id\":\"14lkvbx\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:true,height:\"100%\",id:\"AW_Z4hXcF\",isMixedBorderRadius:false,layoutId:\"AW_Z4hXcF\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,video:\"https://vimeo.com/831507970?share=copy\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(Overlay,{children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(Container,{className:\"framer-198xaz9-container\",id:\"198xaz9\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{variant:\"IWMqynM0K\"},L4dQMl8Hs:{variant:\"IWMqynM0K\"},WaTFSYQtS:{variant:\"IWMqynM0K\"}},children:/*#__PURE__*/_jsx(TestimonialCustomerStory,{AASbSEYM_:AASbSEYM_welu7j({overlay:overlay1}),Gp9FttQh7:\"Watch Headway's story\",height:\"100%\",hFd7JhoS7:\"Connecting with Dribbble and their audience really helps us find our audience much better because they are so targeted towards that design centric approach and people who really care about design.\u201D\",id:\"FFrybLDYZ\",iSXG16slP:true,layoutId:\"FFrybLDYZ\",nWaLFxqtk:addImageAlt({src:\"https://framerusercontent.com/images/vYJzxLsuh9jvZwmNA5ifrV8m5vg.png?scale-down-to=1024\"},\"\"),style:{width:\"100%\"},v822_HqhW:\"CEO, Headway\",V9wfpgbhU:\"Andrew Verboncouer \u2014 \",variant:\"U_sY4cTcL\",width:\"100%\"})}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/ReactDOM.createPortal(/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.div,{animate:{opacity:1,transition:{delay:0,duration:.3,ease:[.5,0,.88,.77],type:\"tween\"}},className:\"framer-1f84kje\",\"data-framer-portal-id\":\"198xaz9\",exit:{opacity:0,transition:{delay:0,duration:.3,ease:[.12,.23,.5,1],type:\"tween\"}},initial:{opacity:0},onTap:()=>overlay1.hide()},\"cOFD1XxFA\"),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ycn9l2-container\",\"data-framer-portal-id\":\"198xaz9\",children:/*#__PURE__*/_jsx(Vimeo,{autoplay:true,backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:16,bottomLeftRadius:16,bottomRightRadius:16,controls:true,height:\"100%\",id:\"x0KgCDTpp\",isMixedBorderRadius:false,layoutId:\"x0KgCDTpp\",loop:false,mute:false,style:{height:\"100%\",width:\"100%\"},topLeftRadius:16,topRightRadius:16,video:\"https://vimeo.com/831513120?share=copy\",width:\"100%\"})})})]}),document.querySelector(\"#overlay\"))})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xheh03-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CO67BpyMZ:{variant:\"IWMqynM0K\"},L4dQMl8Hs:{variant:\"IWMqynM0K\"},WaTFSYQtS:{variant:\"IWMqynM0K\"}},children:/*#__PURE__*/_jsx(TestimonialCustomerStory,{Gp9FttQh7:\"Read Ugmonk's story\",height:\"100%\",hFd7JhoS7:\"Dribbble played a key role in helping us lay the groundwork for a community that we can continue to foster, and will sustain Ugmonk\u2019s future growth.\u201D\",id:\"jzsSGB0Nf\",iSXG16slP:false,kYiRlwzTV:\"https://dribbble.com/advertise/ugmonk\",layoutId:\"jzsSGB0Nf\",nWaLFxqtk:addImageAlt({src:\"https://framerusercontent.com/images/CCPRgtMhANI6P6pdQDwtsGNts.png\",srcSet:\"https://framerusercontent.com/images/CCPRgtMhANI6P6pdQDwtsGNts.png?scale-down-to=512 512w,https://framerusercontent.com/images/CCPRgtMhANI6P6pdQDwtsGNts.png 750w\"},\"\"),style:{width:\"100%\"},v822_HqhW:\"Founder, Ugmonk\",V9wfpgbhU:\"Jeff Sheldon \u2014 \",variant:\"U_sY4cTcL\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dp238t\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w1oyhi\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1wml6uu\",\"data-styles-preset\":\"fVxnimdqP\",children:\"Why advertise on Dribbble?\"})}),className:\"framer-1metol7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"With Dribbble, you can reach an audience and community like nowhere else.\\xa0\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"Dribbble is the go-to resource for discovering and connecting with thought leaders and tastemakers. Designers, product pros and business decision makers from around the globe rely on Dribbble for creating and curating future trends and projects.\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"left\"},children:\"We\u2019ll connect your brand to this creative community and its fans at scale.\"})]}),className:\"framer-1pkd3q4\",\"data-framer-name\":\"p\",fonts:[\"Inter\"],name:\"p\",verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xgl302 hidden-mngb9s hidden-112y606 hidden-sfk21s\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1oyuc2m\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n9czn7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15u5r5g\",\"data-styles-preset\":\"Mk4XRs9zw\",style:{\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"11+ million\"})}),className:\"framer-hh0vym\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"people use Dribbble every month\"})}),className:\"framer-rjjo6n\",fonts:[\"CUSTOM;Mona-Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1878p52\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15u5r5g\",\"data-styles-preset\":\"Mk4XRs9zw\",style:{\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"125+ million\"})}),className:\"framer-19b8h15\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"page views per month\"})}),className:\"framer-1t10cjr\",fonts:[\"CUSTOM;Mona-Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfnk8t\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-15u5r5g\",\"data-styles-preset\":\"Mk4XRs9zw\",style:{\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"58%\"})}),className:\"framer-1k7w9wl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO01vbmEtU2FucyBSZWd1bGFy\",\"--framer-font-family\":'\"Mona-Sans Regular\", sans-serif',\"--framer-text-color\":\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\"},children:\"26-45 years old\"})}),className:\"framer-1cxjnqu\",fonts:[\"CUSTOM;Mona-Sans Regular\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1i8746v\",id:id1,ref:ref3,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8fird1\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12lj5ox\",\"data-styles-preset\":\"YckFIlg3V\",style:{\"--framer-text-alignment\":\"center\"},children:\"Looking to advertise on Dribbble?\"})}),className:\"framer-12ivvmc\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kgsitp\",\"data-styles-preset\":\"dUg5HNnEh\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let us know your name, email address, company URL, and anything else you\u2019d like us to know ahead of time.\"})}),className:\"framer-9lr0yo\",\"data-framer-name\":\"p\",fonts:[\"Inter\"],name:\"p\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vh0r1a-container\",children:/*#__PURE__*/_jsx(FormSpark,{borderRadius:12,bottomLeftRadius:12,bottomRightRadius:12,button:{color:\"rgb(255, 255, 255)\",fill:\"var(--token-117cbcaa-8127-4416-9f92-fcbce9f99a50, rgb(13, 12, 34))\",fontWeight:600,label:\"Submit\"},email:{placeholder:\"Email address\",value:\"\"},font:false,fontFamily:\"Inter\",fontSize:16,fontWeight:400,formId:\"g3lYRLBG\",gap:16,height:\"100%\",id:\"Lrt26OmwG\",inputs:{color:\"rgb(0, 0, 0)\",error:\"rgb(238, 68, 68)\",fill:\"var(--token-eb13911e-0e46-45df-b063-ffd9f17aeac1, rgb(243, 243, 244))\",placeholderColor:\"rgba(0, 0, 0, 0.5)\"},isMixedBorderRadius:false,layout:\"vertical\",layoutId:\"Lrt26OmwG\",message:{placeholder:\"Company, budget info, and any other details\",value:\"\"},nameField:{placeholder:\"Full name\",value:\"\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:12,topRightRadius:12,width:\"100%\",withEmail:true,withMessage:true,withName:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rcc9rf\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ys6i53-container\",children:/*#__PURE__*/_jsx(FooterV2,{height:\"100%\",id:\"LWmqYS8ef\",layoutId:\"LWmqYS8ef\",style:{width:\"100%\"},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-BosG2 { background: hsl(0, 0%, 100%); }`,\".framer-BosG2.framer-7gxk0d, .framer-BosG2 .framer-7gxk0d { display: block; }\",\".framer-BosG2.framer-xzexhg { 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: 1440px; }\",\".framer-BosG2 .framer-1nlt0pp { 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: 100%; z-index: 9; }\",\".framer-BosG2 .framer-1ks8i2j-container { flex: 1 0 0px; height: 100px; position: relative; width: 1px; z-index: 10; }\",\".framer-BosG2 .framer-1t7s5av-container { flex: none; height: auto; position: sticky; top: 0px; width: 100%; will-change: transform; z-index: 1; }\",\".framer-BosG2 .framer-nrbmj5 { 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; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-14hj48z { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 80%; }\",\".framer-BosG2 .framer-100wa71 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-18i317h { 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; position: relative; width: 100%; }\",\".framer-BosG2 .framer-lrx63s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-BosG2 .framer-1ggjnc3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-157or35, .framer-BosG2 .framer-go1ffb, .framer-BosG2 .framer-18zrtn, .framer-BosG2 .framer-hh0vym, .framer-BosG2 .framer-19b8h15, .framer-BosG2 .framer-1k7w9wl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BosG2 .framer-183fxd5 { flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-BosG2 .framer-8hbeif { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-BosG2 .framer-13b12fw, .framer-BosG2 .framer-1nf25xt { aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 278px); opacity: 0.5; overflow: hidden; position: relative; width: 370px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BosG2 .framer-c246m8-container { flex: none; height: 300px; position: relative; width: 400px; }\",\".framer-BosG2 .framer-f092ey { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: hidden; padding: 100px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-1soyzv8, .framer-BosG2 .framer-dp238t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-1qdof91 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BosG2 .framer-1kk2hjk, .framer-BosG2 .framer-169hk1t, .framer-BosG2 .framer-1metol7, .framer-BosG2 .framer-1pkd3q4, .framer-BosG2 .framer-12ivvmc, .framer-BosG2 .framer-9lr0yo { flex: none; height: auto; overflow: hidden; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-BosG2 .framer-h953i7-container { flex: none; height: 56px; position: relative; width: auto; }\",\".framer-BosG2 .framer-1riuvhi { display: grid; flex: none; gap: 40px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(3, minmax(200px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-99t8yw, .framer-BosG2 .framer-via6pd, .framer-BosG2 .framer-jsqmmw, .framer-BosG2 .framer-y2qfce { align-self: start; aspect-ratio: 1.3333333333333333 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 280px); justify-self: start; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-BosG2 .framer-sy84qf-container, .framer-BosG2 .framer-isduj8-container { align-self: start; flex: none; height: 100%; justify-self: start; position: relative; width: 100%; }\",\".framer-BosG2 .framer-ufmegm { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-1mlppn6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-14lkvbx-container, .framer-BosG2 .framer-198xaz9-container, .framer-BosG2 .framer-1xheh03-container, .framer-BosG2 .framer-1ys6i53-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-BosG2 .framer-1x3qbmq, .framer-BosG2 .framer-1f84kje { background-color: rgba(0, 0, 0, 0.8); inset: 0px; position: fixed; user-select: none; z-index: 10; }\",\".framer-BosG2 .framer-by0vff-container, .framer-BosG2 .framer-1ycn9l2-container { bottom: 80px; flex: none; left: 295px; position: fixed; right: 295px; top: 80px; z-index: 10; }\",\".framer-BosG2 .framer-w1oyhi { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BosG2 .framer-1xgl302 { align-self: stretch; background-color: var(--token-48a71414-ffeb-485f-9214-89692b0cc5ae, #e7e7e9); flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-BosG2 .framer-1oyuc2m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 300px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-BosG2 .framer-n9czn7, .framer-BosG2 .framer-1878p52, .framer-BosG2 .framer-1mfnk8t { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-rjjo6n, .framer-BosG2 .framer-1t10cjr, .framer-BosG2 .framer-1cxjnqu { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-BosG2 .framer-1i8746v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: 469px; justify-content: center; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 60px; width: 100%; }\",\".framer-BosG2 .framer-8fird1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 800px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-1vh0r1a-container { flex: 1 0 0px; height: 1px; max-width: 600px; position: relative; width: 100%; }\",\".framer-BosG2 .framer-1rcc9rf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BosG2.framer-xzexhg, .framer-BosG2 .framer-1nlt0pp, .framer-BosG2 .framer-nrbmj5, .framer-BosG2 .framer-14hj48z, .framer-BosG2 .framer-100wa71, .framer-BosG2 .framer-18i317h, .framer-BosG2 .framer-1ggjnc3, .framer-BosG2 .framer-8hbeif, .framer-BosG2 .framer-f092ey, .framer-BosG2 .framer-1soyzv8, .framer-BosG2 .framer-1qdof91, .framer-BosG2 .framer-ufmegm, .framer-BosG2 .framer-1mlppn6, .framer-BosG2 .framer-dp238t, .framer-BosG2 .framer-w1oyhi, .framer-BosG2 .framer-1oyuc2m, .framer-BosG2 .framer-n9czn7, .framer-BosG2 .framer-1878p52, .framer-BosG2 .framer-1mfnk8t, .framer-BosG2 .framer-1i8746v, .framer-BosG2 .framer-8fird1, .framer-BosG2 .framer-1rcc9rf { gap: 0px; } .framer-BosG2.framer-xzexhg > *, .framer-BosG2 .framer-1rcc9rf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-BosG2.framer-xzexhg > :first-child, .framer-BosG2 .framer-nrbmj5 > :first-child, .framer-BosG2 .framer-14hj48z > :first-child, .framer-BosG2 .framer-100wa71 > :first-child, .framer-BosG2 .framer-18i317h > :first-child, .framer-BosG2 .framer-1ggjnc3 > :first-child, .framer-BosG2 .framer-f092ey > :first-child, .framer-BosG2 .framer-1qdof91 > :first-child, .framer-BosG2 .framer-ufmegm > :first-child, .framer-BosG2 .framer-1mlppn6 > :first-child, .framer-BosG2 .framer-w1oyhi > :first-child, .framer-BosG2 .framer-1oyuc2m > :first-child, .framer-BosG2 .framer-n9czn7 > :first-child, .framer-BosG2 .framer-1878p52 > :first-child, .framer-BosG2 .framer-1mfnk8t > :first-child, .framer-BosG2 .framer-1i8746v > :first-child, .framer-BosG2 .framer-8fird1 > :first-child, .framer-BosG2 .framer-1rcc9rf > :first-child { margin-top: 0px; } .framer-BosG2.framer-xzexhg > :last-child, .framer-BosG2 .framer-nrbmj5 > :last-child, .framer-BosG2 .framer-14hj48z > :last-child, .framer-BosG2 .framer-100wa71 > :last-child, .framer-BosG2 .framer-18i317h > :last-child, .framer-BosG2 .framer-1ggjnc3 > :last-child, .framer-BosG2 .framer-f092ey > :last-child, .framer-BosG2 .framer-1qdof91 > :last-child, .framer-BosG2 .framer-ufmegm > :last-child, .framer-BosG2 .framer-1mlppn6 > :last-child, .framer-BosG2 .framer-w1oyhi > :last-child, .framer-BosG2 .framer-1oyuc2m > :last-child, .framer-BosG2 .framer-n9czn7 > :last-child, .framer-BosG2 .framer-1878p52 > :last-child, .framer-BosG2 .framer-1mfnk8t > :last-child, .framer-BosG2 .framer-1i8746v > :last-child, .framer-BosG2 .framer-8fird1 > :last-child, .framer-BosG2 .framer-1rcc9rf > :last-child { margin-bottom: 0px; } .framer-BosG2 .framer-1nlt0pp > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BosG2 .framer-1nlt0pp > :first-child, .framer-BosG2 .framer-8hbeif > :first-child, .framer-BosG2 .framer-1soyzv8 > :first-child, .framer-BosG2 .framer-dp238t > :first-child { margin-left: 0px; } .framer-BosG2 .framer-1nlt0pp > :last-child, .framer-BosG2 .framer-8hbeif > :last-child, .framer-BosG2 .framer-1soyzv8 > :last-child, .framer-BosG2 .framer-dp238t > :last-child { margin-right: 0px; } .framer-BosG2 .framer-nrbmj5 > *, .framer-BosG2 .framer-100wa71 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-BosG2 .framer-14hj48z > *, .framer-BosG2 .framer-8fird1 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-BosG2 .framer-18i317h > *, .framer-BosG2 .framer-1i8746v > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-BosG2 .framer-1ggjnc3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-BosG2 .framer-8hbeif > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-BosG2 .framer-f092ey > * { margin: 0px; margin-bottom: calc(140px / 2); margin-top: calc(140px / 2); } .framer-BosG2 .framer-1soyzv8 > *, .framer-BosG2 .framer-dp238t > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-BosG2 .framer-1qdof91 > *, .framer-BosG2 .framer-w1oyhi > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-BosG2 .framer-ufmegm > *, .framer-BosG2 .framer-1oyuc2m > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-BosG2 .framer-1mlppn6 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-BosG2 .framer-n9czn7 > *, .framer-BosG2 .framer-1878p52 > *, .framer-BosG2 .framer-1mfnk8t > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } }\",\"@media (min-width: 1440px) { .framer-BosG2 .hidden-xzexhg { display: none !important; } }\",`@media (min-width: 1100px) and (max-width: 1439px) { .framer-BosG2 .hidden-1gze9vw { display: none !important; } .${metadata.bodyClassName}-framer-BosG2 { background: hsl(0, 0%, 100%); } .framer-BosG2.framer-xzexhg { width: 1100px; } .framer-BosG2 .framer-14hj48z { width: 100%; } .framer-BosG2 .framer-f092ey { padding: 100px 40px 0px 40px; } .framer-BosG2 .framer-1qdof91, .framer-BosG2 .framer-w1oyhi { flex: 0.9 0 0px; } .framer-BosG2 .framer-99t8yw, .framer-BosG2 .framer-via6pd, .framer-BosG2 .framer-jsqmmw, .framer-BosG2 .framer-y2qfce { height: var(--framer-aspect-ratio-supported, 215px); } .framer-BosG2 .framer-by0vff-container, .framer-BosG2 .framer-1ycn9l2-container { bottom: 168px; left: 152px; right: 152px; top: 169px; }}`,`@media (min-width: 810px) and (max-width: 949px) { .framer-BosG2 .hidden-mngb9s { display: none !important; } .${metadata.bodyClassName}-framer-BosG2 { background: hsl(0, 0%, 100%); } .framer-BosG2.framer-xzexhg { width: 810px; } .framer-BosG2 .framer-nrbmj5 { padding: 80px 40px 80px 40px; } .framer-BosG2 .framer-14hj48z { width: 100%; } .framer-BosG2 .framer-1qdof91, .framer-BosG2 .framer-w1oyhi { flex: 0.9 0 0px; } .framer-BosG2 .framer-1riuvhi { gap: 24px; } .framer-BosG2 .framer-99t8yw, .framer-BosG2 .framer-y2qfce { height: var(--framer-aspect-ratio-supported, 300px); } .framer-BosG2 .framer-by0vff-container, .framer-BosG2 .framer-1ycn9l2-container { bottom: 358px; left: 86px; right: 85px; top: 358px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BosG2 .framer-1riuvhi { gap: 0px; } .framer-BosG2 .framer-1riuvhi > *, .framer-BosG2 .framer-1riuvhi > :first-child, .framer-BosG2 .framer-1riuvhi > :last-child { margin: 0px; } }}`,`@media (max-width: 809px) { .framer-BosG2 .hidden-112y606 { display: none !important; } .${metadata.bodyClassName}-framer-BosG2 { background: hsl(0, 0%, 100%); } .framer-BosG2.framer-xzexhg { width: 390px; } .framer-BosG2 .framer-nrbmj5 { padding: 80px 24px 80px 24px; } .framer-BosG2 .framer-14hj48z { width: 100%; } .framer-BosG2 .framer-8hbeif { gap: 16px; } .framer-BosG2 .framer-13b12fw, .framer-BosG2 .framer-1nf25xt { height: var(--framer-aspect-ratio-supported, 195px); width: 260px; } .framer-BosG2 .framer-c246m8-container { aspect-ratio: 1.3333333333333333 / 1; height: var(--framer-aspect-ratio-supported, 218px); width: 290px; } .framer-BosG2 .framer-f092ey { gap: 120px; overflow: visible; padding: 80px 0px 0px 0px; } .framer-BosG2 .framer-1soyzv8, .framer-BosG2 .framer-dp238t { flex-direction: column; } .framer-BosG2 .framer-1qdof91, .framer-BosG2 .framer-w1oyhi { flex: none; width: 100%; } .framer-BosG2 .framer-1riuvhi { gap: 24px; overflow: visible; } .framer-BosG2 .framer-99t8yw, .framer-BosG2 .framer-y2qfce { height: var(--framer-aspect-ratio-supported, 300px); } .framer-BosG2 .framer-by0vff-container, .framer-BosG2 .framer-1ycn9l2-container { bottom: 324px; left: 30px; right: 30px; top: 324px; } .framer-BosG2 .framer-1oyuc2m { flex: none; gap: 32px; justify-content: flex-start; max-width: unset; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-BosG2 .framer-8hbeif, .framer-BosG2 .framer-f092ey, .framer-BosG2 .framer-1soyzv8, .framer-BosG2 .framer-1riuvhi, .framer-BosG2 .framer-dp238t, .framer-BosG2 .framer-1oyuc2m { gap: 0px; } .framer-BosG2 .framer-8hbeif > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-BosG2 .framer-8hbeif > :first-child { margin-left: 0px; } .framer-BosG2 .framer-8hbeif > :last-child { margin-right: 0px; } .framer-BosG2 .framer-f092ey > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-BosG2 .framer-f092ey > :first-child, .framer-BosG2 .framer-1soyzv8 > :first-child, .framer-BosG2 .framer-dp238t > :first-child, .framer-BosG2 .framer-1oyuc2m > :first-child { margin-top: 0px; } .framer-BosG2 .framer-f092ey > :last-child, .framer-BosG2 .framer-1soyzv8 > :last-child, .framer-BosG2 .framer-dp238t > :last-child, .framer-BosG2 .framer-1oyuc2m > :last-child { margin-bottom: 0px; } .framer-BosG2 .framer-1soyzv8 > *, .framer-BosG2 .framer-dp238t > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-BosG2 .framer-1riuvhi > *, .framer-BosG2 .framer-1riuvhi > :first-child, .framer-BosG2 .framer-1riuvhi > :last-child { margin: 0px; } .framer-BosG2 .framer-1oyuc2m > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}`,`@media (min-width: 950px) and (max-width: 1099px) { .framer-BosG2 .hidden-sfk21s { display: none !important; } .${metadata.bodyClassName}-framer-BosG2 { background: hsl(0, 0%, 100%); } .framer-BosG2.framer-xzexhg { width: 950px; } .framer-BosG2 .framer-14hj48z { width: 100%; } .framer-BosG2 .framer-f092ey { padding: 100px 40px 0px 40px; } .framer-BosG2 .framer-1qdof91, .framer-BosG2 .framer-w1oyhi { flex: 0.9 0 0px; } .framer-BosG2 .framer-99t8yw, .framer-BosG2 .framer-y2qfce { height: var(--framer-aspect-ratio-supported, 300px); } .framer-BosG2 .framer-by0vff-container, .framer-BosG2 .framer-1ycn9l2-container { bottom: 358px; left: 86px; right: 85px; top: 358px; }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4158\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"NSD2d90hD\":{\"layout\":[\"fixed\",\"auto\"]},\"L4dQMl8Hs\":{\"layout\":[\"fixed\",\"auto\"]},\"WaTFSYQtS\":{\"layout\":[\"fixed\",\"auto\"]},\"CO67BpyMZ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const Framerfjhjl55jV=withCSS(Component,css,\"framer-BosG2\");export default Framerfjhjl55jV;Framerfjhjl55jV.displayName=\"Advertise\";Framerfjhjl55jV.defaultProps={height:4158,width:1440};addFonts(Framerfjhjl55jV,[{explicitInter:true,fonts:[{family:\"Source Serif 4\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/sourceserif4/v8/vEFy2_tTDB4M7-auWDN0ahZJW3IX2ih5nk3AucvUHf6OAVIJmeUDygwjihdqrhlXD-wGvjU.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-ext-CFTLRB35.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://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.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://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.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://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.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://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"},{family:\"Mona-Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/eTV1TIK1tbVI9tQPE5TpxxykyU.woff2\"}]},...NavigationFonts,...SubNavAboutFonts,...PreTitleFonts,...AdvertisingSquarespaceAdFonts,...ButtonFonts,...TestimonialCustomerStoryFonts,...VimeoFonts,...FormSparkFonts,...FooterV2Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerfjhjl55jV\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"4158\",\"framerComponentViewportWidth\":\"true\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NSD2d90hD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"L4dQMl8Hs\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WaTFSYQtS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CO67BpyMZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["emailRegex", "validateEmail", "email", "FormSpark", "withCSS", "formId", "withName", "name", "withEmail", "withMessage", "message", "layout", "inputs", "button", "style", "gap", "onSubmit", "props", "nameValue", "setName", "ye", "emailValue", "setEmail", "messageValue", "setMessage", "isNameError", "setNameError", "isEmailError", "setEmailError", "isMessageError", "setMessageError", "isLoading", "setLoading", "isSuccess", "setSuccess", "isCanvas", "se", "RenderTarget", "gridTemplateRows", "rows", "gridTemplateColumns", "cols", "fontFamily", "fontSize", "fontWeight", "useFontControls", "borderRadius", "useRadius", "paddingValue", "usePadding", "validateForm", "te", "error", "handleSubmit", "event", "data", "entries", "handleNameChange", "handleEmailChange", "handleMessageChange", "p", "motion", "containerStyles", "u", "defaultStyle", "addPropertyControls", "ControlType", "fontControls", "paddingControl", "borderRadiusControl", "FormSpark_default", "ObjectFitType", "SrcType", "getProps", "props", "width", "height", "topLeft", "topRight", "bottomRight", "bottomLeft", "id", "children", "rest", "Video", "newProps", "p", "VideoMemo", "isMountedAndReadyForProgressChanges", "X", "srcType", "srcFile", "srcUrl", "playing", "canvasPlay", "muted", "playsinline", "controls", "progress", "objectFit", "backgroundColor", "radius", "isMixed", "onSeeked", "onPause", "onPlay", "onEnd", "onClick", "onMouseEnter", "onMouseLeave", "onMouseDown", "onMouseUp", "poster", "restartOnEnter", "posterEnabled", "startTimeProp", "volume", "loop", "isInCurrentNavigationTarget", "useIsInCurrentNavigationTarget", "videoRef", "pe", "isSafari", "useIsBrowserSafari", "requestingPlay", "wasPausedOnLeave", "wasEndedOnLeave", "isOnCanvas", "useIsOnCanvas", "borderRadius", "useRadius", "startTime", "se", "shouldPlay", "autoPlay", "isMuted", "setProgress", "te", "rawProgress", "newProgress", "isAlreadySet", "play", "e", "pause", "ue", "videoProgress", "useAutoMotionValue", "value", "newValue", "useMotionValueEvent", "latest", "useOnEnter", "useOnExit", "src", "fragment", "addPropertyControls", "ControlType", "borderRadiusControl", "defaultEvents", "VideoFonts", "getFonts", "Video", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "domain", "height", "id", "image", "imageSource", "video", "width", "props", "_ref", "_ref1", "_ref2", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "WjYhrTqnd", "ZfrgBhZIC", "dtYTOKz0q", "P0O7arHg_", "yNmWM3xox", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "Image2", "ComponentViewportProvider", "SVG", "RichText", "css", "FramereNNzkOCcF", "withCSS", "eNNzkOCcF_default", "addPropertyControls", "ControlType", "addFonts", "NavigationFonts", "getFonts", "lHZxyVEY7_default", "SubNavAboutFonts", "s04IiVmco_default", "PreTitleFonts", "UVGz6IzM0_default", "AdvertisingSquarespaceAdFonts", "eNNzkOCcF_default", "ButtonFonts", "jHzyOF96c_default", "TestimonialCustomerStoryFonts", "uAQjOVSdk_default", "VimeoFonts", "Vimeo_default", "FormSparkFonts", "FormSpark_default", "FooterV2Fonts", "FooterV2", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "addImageAlt", "image", "alt", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ie", "metadata1", "_document_querySelector", "robotsTag", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "AASbSEYM_welu7j", "overlay", "paginationInfo", "args", "ref1", "pe", "useRouteElementId", "ref2", "router", "useRouter", "isDisplayed", "id1", "ref3", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "ComponentViewportProvider", "Container", "PropertyOverrides", "lHZxyVEY7_default", "s04IiVmco_default", "UVGz6IzM0_default", "x", "RichText", "Image2", "eNNzkOCcF_default", "ResolveLinks", "resolvedLinks", "optimizeAppear", "jHzyOF96c_default", "l", "uAQjOVSdk_default", "AnimatePresence", "Ga", "Vimeo_default", "overlay1", "FormSpark_default", "FooterV2", "css", "Framerfjhjl55jV", "withCSS", "fjhjl55jV_default", "addFonts", "NavigationFonts", "SubNavAboutFonts", "PreTitleFonts", "AdvertisingSquarespaceAdFonts", "ButtonFonts", "TestimonialCustomerStoryFonts", "VimeoFonts", "FormSparkFonts", "FooterV2Fonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
