{"version":3,"file":"ZMY-3Jq5nlG7i5a-mEhOhkhna7cpAcu3m__YL5CAs-s.CMkdvxLz.mjs","names":["Input","email","Input","Icon","Component","Icon","React","isBrowser","dotStyle","Component","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","PhosphorFonts","Phosphor","serializationHash","variantClassNames","transition1","transition","humanReadableVariantMap","getProps","Component","className","css","MotionPathWithV1StrokeFX","Base","MotionSVG","SVG","transition","getProps","Component","className","css","Icon","SVG","getProps","Component","className","css","Icon","Navigation","Phosphor","Statistic","Button","ChromaBackground","Icon","Icon1","DiscoveryAndDefine","Phosphor1","Review","Footer","Cursor","metadata","className","PropertyOverrides","Image","Blog","_Fragment","EPcnqL8KSTIHEw_sqR","GuJAimSMnTIHEw_sqR","idTIHEw_sqR","o0iLWe0htTIHEw_sqR","oeq4Nj4khTIHEw_sqR","udtAPF5mrTIHEw_sqR","css"],"sources":["https:/framer.com/m/framer/InputSites.js@1.15.1","https:/framerusercontent.com/modules/O4nTVQCXY50llpKf7Pq5/jdU3ZspO1AnLl6ucDsHw/Input_ConvertKit.js","https:/framer.com/m/phosphor-icons/House.js@0.0.57","https:/framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js","https:/framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js","https:/framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js","https:/framerusercontent.com/modules/ThSo2zMbc6SbV9ppn2oW/StO5ijMnLuor9m7wTiOw/b2V8LTOED.js","https:/framerusercontent.com/modules/fGN0rDYLtvas4EuB2X2Z/VGuQyk3fv8xOCmQgvJzD/HZKOF3t3K.js","https:/framerusercontent.com/modules/9fZm1xQ3RPMXUH70YJfs/QtwVdDFcnrtl41xE2ziK/OhO6xx60Y.js","https:/framerusercontent.com/modules/JCLcg72OD4OWyrd2iPK3/4WStSYx6KFQzbiHvot8t/EMh5JSf1I.js","https:/framerusercontent.com/modules/bFFhEh5YaWUUdf5eNL2d/35DlLgiPwIEJtyNkfi1s/GZHQqptwW.js","https:/framerusercontent.com/modules/jW6nxsKbfSwpVebcpprM/6PfKtq2Qc5a3o8w7QWzn/augiA20Il.js"],"sourcesContent":["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";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 mailchimpRegex=/^https?:\\/\\/([^\\/]+)[^\\?]+\\??(.+)$/;const validateEmail=email=>{return emailRegex.test(String(email).toLowerCase());};const parseMailChimpUrl=url=>{const[,domain,parameters]=url.replace(\"&amp;\",\"&\").match(mailchimpRegex)??[null,null,null];return[domain,parameters?new URLSearchParams(parameters):null];};function safeURL(url){console.log(url);try{new URL(url);return url;}catch{try{new URL(`https://${url}`);return`https://${url}`;}catch{}}return undefined;}function isInternalURL(href){if(href===undefined)return false;if(href.startsWith(\"#\")||href.startsWith(\"/\")||href.startsWith(\".\"))return true;return false;}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */const VERSION=\"v1\";/**\n * INPUT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */const Input=withCSS(function Input({service,redirectAs,mailchimpURL,loopsID,loopsUserGroup,loopsMailingList,formsparkID,getwaitlistAPI,convertkitAPI,convertkitFormID,input,button,font,layout,link,gap,style,onSubmit}){const[email,setEmail]=useState(\"\");const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[isFocus,setFocus]=useState(false);// Padding\nconst{paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,padding,borderRadius,borderObject,focusObject,shadowObject,height,fixedHeight}=input;const{buttonPaddingPerSide,buttonPaddingTop,buttonPaddingRight,buttonPaddingBottom,buttonPaddingLeft,buttonPadding}=button;const paddingValue=paddingPerSide?`${paddingTop}px ${button.isDocked?paddingRight+button.widthWhenDocked:paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px ${button.isDocked?padding+button.widthWhenDocked:padding}px ${padding}px ${padding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${button.isDocked?0:buttonPaddingTop}px ${buttonPaddingRight}px ${button.isDocked?0:buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${button.isDocked?0:buttonPadding}px ${buttonPadding}px ${button.isDocked?0:buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */setLoading(false);setFocus(false);setEmail(\"\");if(redirectAs===\"link\"&&link&&!isError){const[fullPath,hash]=link.split(\"#\");const path=fullPath.split(\"?\")[0]||\"\";const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(!isInternalURL(link)){const url=safeURL(link);if(url&&typeof window!==\"undefined\")window.open(url,\"_blank\");}}};const validateForm=useCallback(email=>{if(email===\"\"||!validateEmail(email)){setError(true);formControls.start(\"error\");return false;}return true;},[validateEmail]);const handleChange=useCallback(event=>{setError(false);setEmail(event.target.value);},[]);const handleFocus=useCallback(event=>{setFocus(true);},[]);const handleBlur=useCallback(event=>{setFocus(false);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);if(service===\"mailchimp\"){const[domain,parameters]=parseMailChimpUrl(mailchimpURL);if(!validateForm(email)||!domain||!parameters){setLoading(false);return;}// MERGE0 is Mailchimp’s email field name\nparameters.set(\"MERGE0\",email);fetch(`https://${domain}/subscribe/post`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded;charset=UTF-8\"},body:parameters.toString()}).then(response=>{onSuccess();if(redirectAs===\"overlay\")onSubmit?.();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"loops\"){if(!validateForm(email)){setLoading(false);return;}const emailBody=`email=${encodeURIComponent(email)}`;const userGroupBody=`userGroup=${encodeURIComponent(loopsUserGroup)}`;const mailingListBody=`mailingLists=${encodeURIComponent(loopsMailingList)}`;const hasMailingList=!!loopsMailingList&&loopsMailingList!==\" \";const hasUserGroup=!!loopsUserGroup&&loopsUserGroup!==\" \";let formBody=emailBody;if(hasUserGroup){formBody+=`&${userGroupBody}`;}if(hasMailingList){formBody+=`&${mailingListBody}`;}fetch(`https://app.loops.so/api/newsletter-form/${loopsID}`,{method:\"POST\",mode:\"no-cors\",headers:{\"Content-Type\":\"application/x-www-form-urlencoded\"},body:formBody}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit?.();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"formspark\"){if(!validateForm(email)){setLoading(false);return;}const data=new FormData(event.target);const entries=Object.fromEntries(data.entries());fetch(`https://api.formspark.io/${formsparkID}`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(entries)}).then(()=>{onSuccess();onSubmit?.();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"getwaitlist\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;fetch(`https://api.getwaitlist.com/api/v1\n/waiter/`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit?.();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}if(service===\"convertkit\"){if(!validateForm(email)){setLoading(false);return;}const formData=new FormData(event.target);const data=Object.fromEntries(formData.entries());data.referral_link=document.URL;data.api_key=convertkitAPI;fetch(`https://api.convertkit.com/v3/forms/${convertkitFormID}/subscribe`,{method:\"POST\",headers:{\"Content-Type\":\"application/json\",Accept:\"application/json\"},body:JSON.stringify(data)}).then(()=>{onSuccess();if(redirectAs===\"overlay\")onSubmit?.();}).catch(error=>{console.error(error);setLoading(false);setError(true);formControls.start(\"error\");});}},[mailchimpURL,formsparkID,convertkitFormID,email,onSubmit,validateForm,isLoading]);// Animation\nconst formControls=useAnimationControls();// Input Box Shadow Stylees\nconst focusStylesFrom=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthFrom}px ${focusObject.focusColor}`:null;const focusStylesTo=input.focusObject?`inset 0 0 0 ${focusObject.focusWidthTo}px ${focusObject.focusColor}`:null;const shadowStyles=input.shadowObject?`${shadowObject.shadowX}px ${shadowObject.shadowY}px ${shadowObject.shadowBlur}px ${shadowObject.shadowColor}`:null;const borderStyles=input.borderObject?`inset 0 0 0 ${borderObject.borderWidth}px ${borderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},focused:{boxShadow:dynamicBoxShadow(focusStylesTo,shadowStyles,borderStyles)}};return /*#__PURE__*/_jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/_jsxs(\"form\",{style:{width:\"100%\",height:\"auto\",display:\"flex\",position:\"relative\",flexDirection:layout===\"vertical\"?\"column\":\"row\",color:button.color,gap:button.isDocked?0:gap},onSubmit:handleSubmit,method:\"POST\",children:[service===\"getwaitlist\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:getwaitlistAPI}),service===\"convertkit\"&&/*#__PURE__*/_jsx(\"input\",{type:\"hidden\",name:\"api_key\",value:convertkitAPI}),/*#__PURE__*/_jsx(motion.input,{type:\"email\",name:\"email\",placeholder:input.placeholder,value:email,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:handleFocus,onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",style:{...defaultStyle,padding:paddingValue,borderRadius,fontSize:16,...font,background:input.fill,height:height?\"auto\":fixedHeight,color:input.color,boxShadow:dynamicBoxShadow(focusStylesFrom,shadowStyles,borderStyles)},variants:inputVariants,initial:false,animate:isFocus?\"focused\":\"default\",transition:{duration:.3},\"data-1p-ignore\":true}),!button.shouldAppear&&isLoading&&/*#__PURE__*/_jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:paddingPerSide,paddingTop:paddingTop,paddingRight:paddingRight,padding:padding,color:input.color}),button.shouldAppear&&/*#__PURE__*/_jsxs(\"div\",{style:{position:button.isDocked?\"absolute\":\"relative\",top:button.isDocked?button.insetWhenDocked:0,right:button.isDocked?button.insetWhenDocked:0,bottom:button.isDocked?button.insetWhenDocked:0},children:[/*#__PURE__*/_jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:button.isDocked?button.widthWhenDocked:\"100%\",height:height?\"100%\":fixedHeight,cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,// fontWeight: button.fontWeight,\nfontSize:16,...button.buttonFont,background:button.fill,color:button.color,zIndex:1,boxShadow:getButtonShadow(button)}}),isLoading&&/*#__PURE__*/_jsx(\"div\",{style:{borderRadius:button.isDocked?borderRadius-button.insetWhenDocked:borderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:button.color,background:button.fill},children:/*#__PURE__*/_jsx(Spinner,{color:button.color})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.paddingPerSide?props.paddingRight:props.padding}:{};return /*#__PURE__*/_jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/_jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/_jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},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\"})]})})});};addPropertyControls(Input,{service:{title:\"Service\",type:ControlType.Enum,options:[\"loops\",\"formspark\",\"mailchimp\",\"getwaitlist\",\"convertkit\"],optionTitles:[\"Loops\",\"FormSpark\",\"MailChimp\",\"Get Waitlist\",\"ConvertKit\"],defaultValue:\"loops\"},mailchimpURL:{title:\"URL\",placeholder:\"https://***.us6.list-manage.com/subscribe/post?u=***\",type:ControlType.String,hidden:props=>props.service!==\"mailchimp\"},loopsID:{title:\"ID\",placeholder:\"klm2jxy0i98abzr01pq7defg5\",type:ControlType.String,hidden:props=>props.service!==\"loops\"},loopsUserGroup:{title:\"User Group\",type:ControlType.String,placeholder:\"Title\",optional:true,hidden:props=>props.service!==\"loops\"},loopsMailingList:{title:\"Mailing List\",type:ControlType.String,placeholder:\"cm3q41c5v02ii1lml14om2wtr\",optional:true,hidden:props=>props.service!==\"loops\"},formsparkID:{title:\"ID\",placeholder:\"7PbPpGN3\",type:ControlType.String,hidden:props=>props.service!==\"formspark\"},getwaitlistAPI:{title:\"ID\",placeholder:\"9148\",type:ControlType.String,hidden:props=>props.service!==\"getwaitlist\"},convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String,hidden:props=>props.service!==\"convertkit\"},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});const defaultStyle={WebkitAppearance:\"none\",appearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};function getButtonShadow(button){if(button.buttonShadow){return`${button.buttonShadow.shadowX}px ${button.buttonShadow.shadowY}px ${button.buttonShadow.shadowBlur}px ${button.buttonShadow.shadowColor}`;}else return\"none\";}function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}export default Input;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Input\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input.map","import{jsx as _jsx}from\"react/jsx-runtime\";import Input from\"https://framer.com/m/framer/InputSites.js@1.15.1\";import{ControlType,addPropertyControls}from\"framer\";/**\n * INPUT - CONVERTKIT\n * By Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */export default function ConvertKit(props){// This is a React component containing an Example component\n// - Replace <Example /> with your own code\n// - Find inspiration: https://www.framer.com/developers/\nreturn /*#__PURE__*/_jsx(Input,{...props,service:\"convertkit\"});}addPropertyControls(ConvertKit,{convertkitAPI:{title:\"API Key\",placeholder:\"5opis1WK6xnVsBwrOINUpe\",type:ControlType.String},convertkitFormID:{title:\"Form ID\",placeholder:\"1043389\",type:ControlType.String},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},layout:{title:\"Layout\",type:ControlType.Enum,options:[\"horizontal\",\"vertical\"],displaySegmentedControl:true,hidden:props=>props.button.isDocked},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},input:{title:\"Input\",type:ControlType.Object,controls:{placeholder:{title:\"Placeholder\",type:ControlType.String,defaultValue:\"name@email.com\"},placeholderColor:{title:\" \",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},height:{title:\"Height\",type:ControlType.Boolean,enabledTitle:\"Auto\",disabledTitle:\"Fixed\"},fixedHeight:{title:\" \",type:ControlType.Number,displayStepper:true,min:0,defaultValue:50,hidden:props=>props.height},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Subscribe\"},buttonFont:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},isDocked:{title:\"Docked\",type:ControlType.Boolean,defaultValue:false},widthWhenDocked:{title:\"Width\",type:ControlType.Number,min:0,defaultValue:100,displayStepper:true,hidden:props=>!props.isDocked},insetWhenDocked:{title:\"Inset\",type:ControlType.Number,min:0,defaultValue:5,displayStepper:true,hidden:props=>!props.isDocked},buttonPadding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"buttonPaddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"buttonPaddingTop\",\"buttonPaddingRight\",\"buttonPaddingBottom\",\"buttonPaddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},buttonShadow:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:10,hidden:props=>props.button.isDocked}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ConvertKit\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerSupportedLayoutHeight\":\"any\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Input_ConvertKit.map","let Component;\nlet IconInner;\nvar Icon = (React) => {\n  if (!Component) {\n    Component = /* @__PURE__ */ new Map([\n      [\n        \"bold\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M222.14,105.85l-80-80a20,20,0,0,0-28.28,0l-80,80A19.86,19.86,0,0,0,28,120v96a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V164h24v52a12,12,0,0,0,12,12h64a12,12,0,0,0,12-12V120A19.86,19.86,0,0,0,222.14,105.85ZM204,204H164V152a12,12,0,0,0-12-12H104a12,12,0,0,0-12,12v52H52V121.65l76-76,76,76Z\" }))\n      ],\n      [\n        \"duotone\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\n          \"path\",\n          {\n            d: \"M216,120v96H152V152H104v64H40V120a8,8,0,0,1,2.34-5.66l80-80a8,8,0,0,1,11.32,0l80,80A8,8,0,0,1,216,120Z\",\n            opacity: \"0.2\"\n          }\n        ), /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"fill\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M224,120v96a8,8,0,0,1-8,8H160a8,8,0,0,1-8-8V164a4,4,0,0,0-4-4H108a4,4,0,0,0-4,4v52a8,8,0,0,1-8,8H40a8,8,0,0,1-8-8V120a16,16,0,0,1,4.69-11.31l80-80a16,16,0,0,1,22.62,0l80,80A16,16,0,0,1,224,120Z\" }))\n      ],\n      [\n        \"light\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M217.9,110.1l-80-80a14,14,0,0,0-19.8,0l-80,80A13.92,13.92,0,0,0,34,120v96a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V158h36v58a6,6,0,0,0,6,6h64a6,6,0,0,0,6-6V120A13.92,13.92,0,0,0,217.9,110.1ZM210,210H158V152a6,6,0,0,0-6-6H104a6,6,0,0,0-6,6v58H46V120a2,2,0,0,1,.58-1.42l80-80a2,2,0,0,1,2.84,0l80,80A2,2,0,0,1,210,120Z\" }))\n      ],\n      [\n        \"regular\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M219.31,108.68l-80-80a16,16,0,0,0-22.62,0l-80,80A15.87,15.87,0,0,0,32,120v96a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V160h32v56a8,8,0,0,0,8,8h64a8,8,0,0,0,8-8V120A15.87,15.87,0,0,0,219.31,108.68ZM208,208H160V152a8,8,0,0,0-8-8H104a8,8,0,0,0-8,8v56H48V120l80-80,80,80Z\" }))\n      ],\n      [\n        \"thin\",\n        /* @__PURE__ */ React.createElement(React.Fragment, null, /* @__PURE__ */ React.createElement(\"path\", { d: \"M216.49,111.51l-80-80a12,12,0,0,0-17,0l-80,80A12,12,0,0,0,36,120v96a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V156h40v60a4,4,0,0,0,4,4h64a4,4,0,0,0,4-4V120A12,12,0,0,0,216.49,111.51ZM212,212H156V152a4,4,0,0,0-4-4H104a4,4,0,0,0-4,4v60H44V120a4,4,0,0,1,1.17-2.83l80-80a4,4,0,0,1,5.66,0l80,80A4,4,0,0,1,212,120Z\" }))\n      ]\n    ]);\n    IconInner = React.forwardRef((props, ref) => /* @__PURE__ */ React.createElement(\"g\", { ref, ...props }, Component.get(props.weight)));\n  }\n  return IconInner;\n};\nconst __FramerMetadata__ = {\n  exports: {\n    default: {\n      type: \"reactComponent\",\n      slots: [],\n      annotations: { framerContractVersion: \"1\" }\n    },\n    __FramerMetadata__: { type: \"variable\" }\n  }\n};\nvar House_default = Icon;\nexport {\n  __FramerMetadata__,\n  House_default as default\n};\n","import{jsx as _jsx}from\"react/jsx-runtime\";import*as React from\"react\";import{useState,useEffect,useRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion}from\"framer-motion\";import{NullState}from\"https://framer.com/m/framer/icon-nullstate.js@0.7.0\";import HouseFactory from\"https://framer.com/m/phosphor-icons/House.js@0.0.57\";import{defaultEvents,useIconSelection}from\"https://framerusercontent.com/modules/Ma20hU0GGRxLxZphbywl/OSpwWF91FHPVFyQJjMHt/utils.js\";const iconKeys=[\"Acorn\",\"AddressBook\",\"AddressBookTabs\",\"AirTrafficControl\",\"Airplane\",\"AirplaneInFlight\",\"AirplaneLanding\",\"AirplaneTakeoff\",\"AirplaneTaxiing\",\"AirplaneTilt\",\"Airplay\",\"Alarm\",\"Alien\",\"AlignBottom\",\"AlignBottomSimple\",\"AlignCenterVertical\",\"AlignLeft\",\"AlignLeftSimple\",\"AlignRight\",\"AlignRightSimple\",\"AlignTop\",\"AlignTopSimple\",\"AmazonLogo\",\"Ambulance\",\"Anchor\",\"AnchorSimple\",\"AndroidLogo\",\"Angle\",\"AngularLogo\",\"Aperture\",\"AppStoreLogo\",\"AppWindow\",\"AppleLogo\",\"ApplePodcastsLogo\",\"ApproximateEquals\",\"Archive\",\"ArchiveBox\",\"ArchiveTray\",\"Armchair\",\"ArrowArcLeft\",\"ArrowArcRight\",\"ArrowBendDownLeft\",\"ArrowBendDownRight\",\"ArrowBendLeftDown\",\"ArrowBendLeftUp\",\"ArrowBendRightDown\",\"ArrowBendRightUp\",\"ArrowBendUpLeft\",\"ArrowBendUpRight\",\"ArrowCircleDown\",\"ArrowCircleDownLeft\",\"ArrowCircleDownRight\",\"ArrowCircleLeft\",\"ArrowCircleRight\",\"ArrowCircleUp\",\"ArrowCircleUpLeft\",\"ArrowCircleUpRight\",\"ArrowClockwise\",\"ArrowDown\",\"ArrowDownLeft\",\"ArrowDownRight\",\"ArrowElbowDownLeft\",\"ArrowElbowDownRight\",\"ArrowElbowLeft\",\"ArrowElbowLeftDown\",\"ArrowElbowLeftUp\",\"ArrowElbowRight\",\"ArrowElbowRightDown\",\"ArrowElbowRightUp\",\"ArrowElbowUpLeft\",\"ArrowElbowUpRight\",\"ArrowFatDown\",\"ArrowFatLeft\",\"ArrowFatLineDown\",\"ArrowFatLineLeft\",\"ArrowFatLineRight\",\"ArrowFatLineUp\",\"ArrowFatLinesDown\",\"ArrowFatLinesLeft\",\"ArrowFatLinesRight\",\"ArrowFatLinesUp\",\"ArrowFatRight\",\"ArrowFatUp\",\"ArrowLeft\",\"ArrowLineDown\",\"ArrowLineDownLeft\",\"ArrowLineDownRight\",\"ArrowLineLeft\",\"ArrowLineRight\",\"ArrowLineUp\",\"ArrowLineUpLeft\",\"ArrowLineUpRight\",\"ArrowRight\",\"ArrowSquareDown\",\"ArrowSquareDownLeft\",\"ArrowSquareDownRight\",\"ArrowSquareIn\",\"ArrowSquareLeft\",\"ArrowSquareOut\",\"ArrowSquareRight\",\"ArrowSquareUp\",\"ArrowSquareUpLeft\",\"ArrowSquareUpRight\",\"ArrowUDownLeft\",\"ArrowUDownRight\",\"ArrowULeftDown\",\"ArrowULeftUp\",\"ArrowURightDown\",\"ArrowURightUp\",\"ArrowUUpLeft\",\"ArrowUUpRight\",\"ArrowUp\",\"ArrowUpLeft\",\"ArrowUpRight\",\"ArrowsClockwise\",\"ArrowsDownUp\",\"ArrowsHorizontal\",\"ArrowsIn\",\"ArrowsInCardinal\",\"ArrowsInLineVertical\",\"ArrowsInSimple\",\"ArrowsLeftRight\",\"ArrowsMerge\",\"ArrowsOut\",\"ArrowsOutCardinal\",\"ArrowsOutSimple\",\"ArrowsSplit\",\"ArrowsVertical\",\"Article\",\"ArticleMedium\",\"ArticleNyTimes\",\"Asclepius\",\"Asterisk\",\"AsteriskSimple\",\"At\",\"Atom\",\"Avocado\",\"Axe\",\"Baby\",\"BabyCarriage\",\"Backpack\",\"Backspace\",\"Bag\",\"BagSimple\",\"Balloon\",\"Bandaids\",\"Bank\",\"Barbell\",\"Barcode\",\"Barn\",\"Barricade\",\"Baseball\",\"BaseballCap\",\"BaseballHelmet\",\"Basket\",\"Basketball\",\"Bathtub\",\"BatteryCharging\",\"BatteryEmpty\",\"BatteryFull\",\"BatteryHigh\",\"BatteryLow\",\"BatteryMedium\",\"BatteryPlus\",\"BatteryPlusVertical\",\"BatteryVerticalEmpty\",\"BatteryVerticalFull\",\"BatteryVerticalHigh\",\"BatteryVerticalLow\",\"BatteryWarning\",\"BeachBall\",\"Beanie\",\"Bed\",\"BeerBottle\",\"BeerStein\",\"BehanceLogo\",\"Bell\",\"BellRinging\",\"BellSimple\",\"BellSimpleRinging\",\"BellSimpleSlash\",\"BellSimpleZ\",\"BellSlash\",\"BellZ\",\"Belt\",\"BezierCurve\",\"Bicycle\",\"Binary\",\"Binoculars\",\"Biohazard\",\"Bird\",\"Blueprint\",\"Bluetooth\",\"BluetoothConnected\",\"BluetoothSlash\",\"BluetoothX\",\"Boat\",\"Bomb\",\"Bone\",\"Book\",\"BookBookmark\",\"BookOpen\",\"BookOpenText\",\"BookOpenUser\",\"BookUser\",\"Bookmark\",\"BookmarkSimple\",\"Bookmarks\",\"BookmarksSimple\",\"Books\",\"Boot\",\"Boules\",\"BoundingBox\",\"BowlFood\",\"BowlSteam\",\"BowlingBall\",\"BoxArrowDown\",\"BoxArrowUp\",\"BoxingGlove\",\"BracketsAngle\",\"BracketsCurly\",\"BracketsRound\",\"BracketsSquare\",\"Brain\",\"Brandy\",\"Bread\",\"Bridge\",\"Briefcase\",\"BriefcaseMetal\",\"Broadcast\",\"Broom\",\"Browser\",\"Browsers\",\"Bug\",\"BugBeetle\",\"BugDroid\",\"Building\",\"BuildingApartment\",\"BuildingOffice\",\"Buildings\",\"Bulldozer\",\"Bus\",\"Butterfly\",\"CableCar\",\"Cactus\",\"Cake\",\"Calculator\",\"Calendar\",\"CalendarBlank\",\"CalendarCheck\",\"CalendarDot\",\"CalendarDots\",\"CalendarHeart\",\"CalendarMinus\",\"CalendarPlus\",\"CalendarSlash\",\"CalendarStar\",\"CalendarX\",\"CallBell\",\"Camera\",\"CameraPlus\",\"CameraRotate\",\"CameraSlash\",\"Campfire\",\"Car\",\"CarBattery\",\"CarProfile\",\"CarSimple\",\"Cardholder\",\"Cards\",\"CardsThree\",\"CaretCircleDoubleUp\",\"CaretCircleDown\",\"CaretCircleLeft\",\"CaretCircleRight\",\"CaretCircleUp\",\"CaretCircleUpDown\",\"CaretDoubleDown\",\"CaretDoubleLeft\",\"CaretDoubleRight\",\"CaretDoubleUp\",\"CaretDown\",\"CaretLeft\",\"CaretLineDown\",\"CaretLineLeft\",\"CaretLineRight\",\"CaretLineUp\",\"CaretRight\",\"CaretUp\",\"CaretUpDown\",\"Carrot\",\"CashRegister\",\"CassetteTape\",\"CastleTurret\",\"Cat\",\"CellSignalFull\",\"CellSignalHigh\",\"CellSignalLow\",\"CellSignalMedium\",\"CellSignalNone\",\"CellSignalSlash\",\"CellSignalX\",\"CellTower\",\"Certificate\",\"Chair\",\"Chalkboard\",\"ChalkboardSimple\",\"ChalkboardTeacher\",\"Champagne\",\"ChargingStation\",\"ChartBar\",\"ChartBarHorizontal\",\"ChartDonut\",\"ChartLine\",\"ChartLineDown\",\"ChartLineUp\",\"ChartPie\",\"ChartPieSlice\",\"ChartPolar\",\"ChartScatter\",\"Chat\",\"ChatCentered\",\"ChatCenteredDots\",\"ChatCenteredSlash\",\"ChatCenteredText\",\"ChatCircle\",\"ChatCircleDots\",\"ChatCircleSlash\",\"ChatCircleText\",\"ChatDots\",\"ChatSlash\",\"ChatTeardrop\",\"ChatTeardropDots\",\"ChatTeardropSlash\",\"ChatTeardropText\",\"ChatText\",\"Chats\",\"ChatsCircle\",\"ChatsTeardrop\",\"Check\",\"CheckCircle\",\"CheckFat\",\"CheckSquare\",\"CheckSquareOffset\",\"Checkerboard\",\"Checks\",\"Cheers\",\"Cheese\",\"ChefHat\",\"Cherries\",\"Church\",\"Cigarette\",\"CigaretteSlash\",\"Circle\",\"CircleDashed\",\"CircleHalf\",\"CircleHalfTilt\",\"CircleNotch\",\"CirclesFour\",\"CirclesThree\",\"CirclesThreePlus\",\"Circuitry\",\"City\",\"Clipboard\",\"ClipboardText\",\"Clock\",\"ClockAfternoon\",\"ClockClockwise\",\"ClockCountdown\",\"ClockUser\",\"ClosedCaptioning\",\"Cloud\",\"CloudArrowDown\",\"CloudArrowUp\",\"CloudCheck\",\"CloudFog\",\"CloudLightning\",\"CloudMoon\",\"CloudRain\",\"CloudSlash\",\"CloudSnow\",\"CloudSun\",\"CloudWarning\",\"CloudX\",\"Clover\",\"Club\",\"CoatHanger\",\"CodaLogo\",\"Code\",\"CodeBlock\",\"CodeSimple\",\"CodepenLogo\",\"CodesandboxLogo\",\"Coffee\",\"CoffeeBean\",\"Coin\",\"CoinVertical\",\"Coins\",\"Columns\",\"ColumnsPlusLeft\",\"ColumnsPlusRight\",\"Command\",\"Compass\",\"CompassRose\",\"CompassTool\",\"ComputerTower\",\"Confetti\",\"ContactlessPayment\",\"Control\",\"Cookie\",\"CookingPot\",\"Copy\",\"CopySimple\",\"Copyleft\",\"Copyright\",\"CornersIn\",\"CornersOut\",\"Couch\",\"CourtBasketball\",\"Cow\",\"CowboyHat\",\"Cpu\",\"Crane\",\"CraneTower\",\"CreditCard\",\"Cricket\",\"Crop\",\"Cross\",\"Crosshair\",\"CrosshairSimple\",\"Crown\",\"CrownCross\",\"CrownSimple\",\"Cube\",\"CubeFocus\",\"CubeTransparent\",\"CurrencyBtc\",\"CurrencyCircleDollar\",\"CurrencyCny\",\"CurrencyDollar\",\"CurrencyDollarSimple\",\"CurrencyEth\",\"CurrencyEur\",\"CurrencyGbp\",\"CurrencyInr\",\"CurrencyJpy\",\"CurrencyKrw\",\"CurrencyKzt\",\"CurrencyNgn\",\"CurrencyRub\",\"Cursor\",\"CursorClick\",\"CursorText\",\"Cylinder\",\"Database\",\"Desk\",\"Desktop\",\"DesktopTower\",\"Detective\",\"DevToLogo\",\"DeviceMobile\",\"DeviceMobileCamera\",\"DeviceMobileSlash\",\"DeviceMobileSpeaker\",\"DeviceRotate\",\"DeviceTablet\",\"DeviceTabletCamera\",\"DeviceTabletSpeaker\",\"Devices\",\"Diamond\",\"DiamondsFour\",\"DiceFive\",\"DiceFour\",\"DiceOne\",\"DiceSix\",\"DiceThree\",\"DiceTwo\",\"Disc\",\"DiscoBall\",\"DiscordLogo\",\"Divide\",\"Dna\",\"Dog\",\"Door\",\"DoorOpen\",\"Dot\",\"DotOutline\",\"DotsNine\",\"DotsSix\",\"DotsSixVertical\",\"DotsThree\",\"DotsThreeCircle\",\"DotsThreeOutline\",\"DotsThreeVertical\",\"Download\",\"DownloadSimple\",\"Dress\",\"Dresser\",\"DribbbleLogo\",\"Drone\",\"Drop\",\"DropHalf\",\"DropHalfBottom\",\"DropSimple\",\"DropSlash\",\"DropboxLogo\",\"Ear\",\"EarSlash\",\"Egg\",\"EggCrack\",\"Eject\",\"EjectSimple\",\"Elevator\",\"Empty\",\"Engine\",\"Envelope\",\"EnvelopeOpen\",\"EnvelopeSimple\",\"EnvelopeSimpleOpen\",\"Equalizer\",\"Equals\",\"Eraser\",\"EscalatorDown\",\"EscalatorUp\",\"Exam\",\"ExclamationMark\",\"Exclude\",\"ExcludeSquare\",\"Export\",\"Eye\",\"EyeClosed\",\"EyeSlash\",\"Eyedropper\",\"EyedropperSample\",\"Eyeglasses\",\"Eyes\",\"FaceMask\",\"FacebookLogo\",\"Factory\",\"Faders\",\"FadersHorizontal\",\"FalloutShelter\",\"Fan\",\"Farm\",\"FastForward\",\"FastForwardCircle\",\"Feather\",\"FediverseLogo\",\"FigmaLogo\",\"File\",\"FileArchive\",\"FileArrowDown\",\"FileArrowUp\",\"FileAudio\",\"FileC\",\"FileCloud\",\"FileCode\",\"FileCpp\",\"FileCss\",\"FileCsv\",\"FileDashed\",\"FileDoc\",\"FileHtml\",\"FileImage\",\"FileIni\",\"FileJpg\",\"FileJs\",\"FileJsx\",\"FileLock\",\"FileMagnifyingGlass\",\"FileMd\",\"FileMinus\",\"FilePdf\",\"FilePlus\",\"FilePng\",\"FilePpt\",\"FilePy\",\"FileRs\",\"FileSql\",\"FileSvg\",\"FileText\",\"FileTs\",\"FileTsx\",\"FileTxt\",\"FileVideo\",\"FileVue\",\"FileX\",\"FileXls\",\"FileZip\",\"Files\",\"FilmReel\",\"FilmScript\",\"FilmSlate\",\"FilmStrip\",\"Fingerprint\",\"FingerprintSimple\",\"FinnTheHuman\",\"Fire\",\"FireExtinguisher\",\"FireSimple\",\"FireTruck\",\"FirstAid\",\"FirstAidKit\",\"Fish\",\"FishSimple\",\"Flag\",\"FlagBanner\",\"FlagBannerFold\",\"FlagCheckered\",\"FlagPennant\",\"Flame\",\"Flashlight\",\"Flask\",\"FlipHorizontal\",\"FlipVertical\",\"FloppyDisk\",\"FloppyDiskBack\",\"FlowArrow\",\"Flower\",\"FlowerLotus\",\"FlowerTulip\",\"FlyingSaucer\",\"Folder\",\"FolderDashed\",\"FolderLock\",\"FolderMinus\",\"FolderNotch\",\"FolderNotchMinus\",\"FolderNotchOpen\",\"FolderNotchPlus\",\"FolderOpen\",\"FolderPlus\",\"FolderSimple\",\"FolderSimpleDashed\",\"FolderSimpleLock\",\"FolderSimpleMinus\",\"FolderSimplePlus\",\"FolderSimpleStar\",\"FolderSimpleUser\",\"FolderStar\",\"FolderUser\",\"Folders\",\"Football\",\"FootballHelmet\",\"Footprints\",\"ForkKnife\",\"FourK\",\"FrameCorners\",\"FramerLogo\",\"Function\",\"Funnel\",\"FunnelSimple\",\"FunnelSimpleX\",\"FunnelX\",\"GameController\",\"Garage\",\"GasCan\",\"GasPump\",\"Gauge\",\"Gavel\",\"Gear\",\"GearFine\",\"GearSix\",\"GenderFemale\",\"GenderIntersex\",\"GenderMale\",\"GenderNeuter\",\"GenderNonbinary\",\"GenderTransgender\",\"Ghost\",\"Gif\",\"Gift\",\"GitBranch\",\"GitCommit\",\"GitDiff\",\"GitFork\",\"GitMerge\",\"GitPullRequest\",\"GithubLogo\",\"GitlabLogo\",\"GitlabLogoSimple\",\"Globe\",\"GlobeHemisphereEast\",\"GlobeHemisphereWest\",\"GlobeSimple\",\"GlobeSimpleX\",\"GlobeStand\",\"GlobeX\",\"Goggles\",\"Golf\",\"GoodreadsLogo\",\"GoogleCardboardLogo\",\"GoogleChromeLogo\",\"GoogleDriveLogo\",\"GoogleLogo\",\"GooglePhotosLogo\",\"GooglePlayLogo\",\"GooglePodcastsLogo\",\"Gps\",\"GpsFix\",\"GpsSlash\",\"Gradient\",\"GraduationCap\",\"Grains\",\"GrainsSlash\",\"Graph\",\"GraphicsCard\",\"GreaterThan\",\"GreaterThanOrEqual\",\"GridFour\",\"GridNine\",\"Guitar\",\"HairDryer\",\"Hamburger\",\"Hammer\",\"Hand\",\"HandArrowDown\",\"HandArrowUp\",\"HandCoins\",\"HandDeposit\",\"HandEye\",\"HandFist\",\"HandGrabbing\",\"HandHeart\",\"HandPalm\",\"HandPeace\",\"HandPointing\",\"HandSoap\",\"HandSwipeLeft\",\"HandSwipeRight\",\"HandTap\",\"HandWaving\",\"HandWithdraw\",\"Handbag\",\"HandbagSimple\",\"HandsClapping\",\"HandsPraying\",\"Handshake\",\"HardDrive\",\"HardDrives\",\"HardHat\",\"Hash\",\"HashStraight\",\"HeadCircuit\",\"Headlights\",\"Headphones\",\"Headset\",\"Heart\",\"HeartBreak\",\"HeartHalf\",\"HeartStraight\",\"HeartStraightBreak\",\"Heartbeat\",\"Hexagon\",\"HighDefinition\",\"HighHeel\",\"Highlighter\",\"HighlighterCircle\",\"Hockey\",\"Hoodie\",\"Horse\",\"Hospital\",\"Hourglass\",\"HourglassHigh\",\"HourglassLow\",\"HourglassMedium\",\"HourglassSimple\",\"HourglassSimpleHigh\",\"HourglassSimpleLow\",\"House\",\"HouseLine\",\"HouseSimple\",\"Hurricane\",\"IceCream\",\"IdentificationBadge\",\"IdentificationCard\",\"Image\",\"ImageBroken\",\"ImageSquare\",\"Images\",\"ImagesSquare\",\"Infinity\",\"Info\",\"InstagramLogo\",\"Intersect\",\"IntersectSquare\",\"IntersectThree\",\"Intersection\",\"Invoice\",\"Island\",\"Jar\",\"JarLabel\",\"Jeep\",\"Joystick\",\"Kanban\",\"Key\",\"KeyReturn\",\"Keyboard\",\"Keyhole\",\"Knife\",\"Ladder\",\"LadderSimple\",\"Lamp\",\"LampPendant\",\"Laptop\",\"Lasso\",\"LastfmLogo\",\"Layout\",\"Leaf\",\"Lectern\",\"Lego\",\"LegoSmiley\",\"LessThan\",\"LessThanOrEqual\",\"LetterCircleH\",\"LetterCircleP\",\"LetterCircleV\",\"Lifebuoy\",\"Lightbulb\",\"LightbulbFilament\",\"Lighthouse\",\"Lightning\",\"LightningA\",\"LightningSlash\",\"LineSegment\",\"LineSegments\",\"LineVertical\",\"Link\",\"LinkBreak\",\"LinkSimple\",\"LinkSimpleBreak\",\"LinkSimpleHorizontal\",\"LinkedinLogo\",\"LinktreeLogo\",\"LinuxLogo\",\"List\",\"ListBullets\",\"ListChecks\",\"ListDashes\",\"ListHeart\",\"ListMagnifyingGlass\",\"ListNumbers\",\"ListPlus\",\"ListStar\",\"Lock\",\"LockKey\",\"LockKeyOpen\",\"LockLaminated\",\"LockLaminatedOpen\",\"LockOpen\",\"LockSimple\",\"LockSimpleOpen\",\"Lockers\",\"Log\",\"MagicWand\",\"Magnet\",\"MagnetStraight\",\"MagnifyingGlass\",\"MagnifyingGlassMinus\",\"MagnifyingGlassPlus\",\"Mailbox\",\"MapPin\",\"MapPinArea\",\"MapPinLine\",\"MapPinPlus\",\"MapPinSimple\",\"MapPinSimpleArea\",\"MapPinSimpleLine\",\"MapTrifold\",\"MarkdownLogo\",\"MarkerCircle\",\"Martini\",\"MaskHappy\",\"MaskSad\",\"MastodonLogo\",\"MathOperations\",\"MatrixLogo\",\"Medal\",\"MedalMilitary\",\"MediumLogo\",\"Megaphone\",\"MegaphoneSimple\",\"MemberOf\",\"Memory\",\"MessengerLogo\",\"MetaLogo\",\"Meteor\",\"Metronome\",\"Microphone\",\"MicrophoneSlash\",\"MicrophoneStage\",\"Microscope\",\"MicrosoftExcelLogo\",\"MicrosoftOutlookLogo\",\"MicrosoftTeamsLogo\",\"MicrosoftWordLogo\",\"Minus\",\"MinusCircle\",\"MinusSquare\",\"Money\",\"MoneyWavy\",\"Monitor\",\"MonitorArrowUp\",\"MonitorPlay\",\"Moon\",\"MoonStars\",\"Moped\",\"MopedFront\",\"Mosque\",\"Motorcycle\",\"Mountains\",\"Mouse\",\"MouseLeftClick\",\"MouseMiddleClick\",\"MouseRightClick\",\"MouseScroll\",\"MouseSimple\",\"MusicNote\",\"MusicNoteSimple\",\"MusicNotes\",\"MusicNotesMinus\",\"MusicNotesPlus\",\"MusicNotesSimple\",\"NavigationArrow\",\"Needle\",\"Network\",\"NetworkSlash\",\"NetworkX\",\"Newspaper\",\"NewspaperClipping\",\"NotEquals\",\"NotMemberOf\",\"NotSubsetOf\",\"NotSupersetOf\",\"Notches\",\"Note\",\"NoteBlank\",\"NotePencil\",\"Notebook\",\"Notepad\",\"Notification\",\"NotionLogo\",\"NuclearPlant\",\"NumberCircleEight\",\"NumberCircleFive\",\"NumberCircleFour\",\"NumberCircleNine\",\"NumberCircleOne\",\"NumberCircleSeven\",\"NumberCircleSix\",\"NumberCircleThree\",\"NumberCircleTwo\",\"NumberCircleZero\",\"NumberEight\",\"NumberFive\",\"NumberFour\",\"NumberNine\",\"NumberOne\",\"NumberSeven\",\"NumberSix\",\"NumberSquareEight\",\"NumberSquareFive\",\"NumberSquareFour\",\"NumberSquareNine\",\"NumberSquareOne\",\"NumberSquareSeven\",\"NumberSquareSix\",\"NumberSquareThree\",\"NumberSquareTwo\",\"NumberSquareZero\",\"NumberThree\",\"NumberTwo\",\"NumberZero\",\"Numpad\",\"Nut\",\"NyTimesLogo\",\"Octagon\",\"OfficeChair\",\"Onigiri\",\"OpenAiLogo\",\"Option\",\"Orange\",\"OrangeSlice\",\"Oven\",\"Package\",\"PaintBrush\",\"PaintBrushBroad\",\"PaintBrushHousehold\",\"PaintBucket\",\"PaintRoller\",\"Palette\",\"Panorama\",\"Pants\",\"PaperPlane\",\"PaperPlaneRight\",\"PaperPlaneTilt\",\"Paperclip\",\"PaperclipHorizontal\",\"Parachute\",\"Paragraph\",\"Parallelogram\",\"Park\",\"Password\",\"Path\",\"PatreonLogo\",\"Pause\",\"PauseCircle\",\"PawPrint\",\"PaypalLogo\",\"Peace\",\"Pen\",\"PenNib\",\"PenNibStraight\",\"Pencil\",\"PencilCircle\",\"PencilLine\",\"PencilRuler\",\"PencilSimple\",\"PencilSimpleLine\",\"PencilSimpleSlash\",\"PencilSlash\",\"Pentagon\",\"Pentagram\",\"Pepper\",\"Percent\",\"Person\",\"PersonArmsSpread\",\"PersonSimple\",\"PersonSimpleBike\",\"PersonSimpleCircle\",\"PersonSimpleHike\",\"PersonSimpleRun\",\"PersonSimpleSki\",\"PersonSimpleSwim\",\"PersonSimpleTaiChi\",\"PersonSimpleThrow\",\"PersonSimpleWalk\",\"Perspective\",\"Phone\",\"PhoneCall\",\"PhoneDisconnect\",\"PhoneIncoming\",\"PhoneList\",\"PhoneOutgoing\",\"PhonePause\",\"PhonePlus\",\"PhoneSlash\",\"PhoneTransfer\",\"PhoneX\",\"PhosphorLogo\",\"Pi\",\"PianoKeys\",\"PicnicTable\",\"PictureInPicture\",\"PiggyBank\",\"Pill\",\"PingPong\",\"PintGlass\",\"PinterestLogo\",\"Pinwheel\",\"Pipe\",\"PipeWrench\",\"PixLogo\",\"Pizza\",\"Placeholder\",\"Planet\",\"Plant\",\"Play\",\"PlayCircle\",\"PlayPause\",\"Playlist\",\"Plug\",\"PlugCharging\",\"Plugs\",\"PlugsConnected\",\"Plus\",\"PlusCircle\",\"PlusMinus\",\"PlusSquare\",\"PokerChip\",\"PoliceCar\",\"Polygon\",\"Popcorn\",\"Popsicle\",\"PottedPlant\",\"Power\",\"Prescription\",\"Presentation\",\"PresentationChart\",\"Printer\",\"Prohibit\",\"ProhibitInset\",\"ProjectorScreen\",\"ProjectorScreenChart\",\"Pulse\",\"PushPin\",\"PushPinSimple\",\"PushPinSimpleSlash\",\"PushPinSlash\",\"PuzzlePiece\",\"QrCode\",\"Question\",\"QuestionMark\",\"Queue\",\"Quotes\",\"Rabbit\",\"Racquet\",\"Radical\",\"Radio\",\"RadioButton\",\"Radioactive\",\"Rainbow\",\"RainbowCloud\",\"Ranking\",\"ReadCvLogo\",\"Receipt\",\"ReceiptX\",\"Record\",\"Rectangle\",\"RectangleDashed\",\"Recycle\",\"RedditLogo\",\"Repeat\",\"RepeatOnce\",\"ReplitLogo\",\"Resize\",\"Rewind\",\"RewindCircle\",\"RoadHorizon\",\"Robot\",\"Rocket\",\"RocketLaunch\",\"Rows\",\"RowsPlusBottom\",\"RowsPlusTop\",\"Rss\",\"RssSimple\",\"Rug\",\"Ruler\",\"Sailboat\",\"Scales\",\"Scan\",\"ScanSmiley\",\"Scissors\",\"Scooter\",\"Screencast\",\"Screwdriver\",\"Scribble\",\"ScribbleLoop\",\"Scroll\",\"Seal\",\"SealCheck\",\"SealPercent\",\"SealQuestion\",\"SealWarning\",\"Seat\",\"Seatbelt\",\"SecurityCamera\",\"Selection\",\"SelectionAll\",\"SelectionBackground\",\"SelectionForeground\",\"SelectionInverse\",\"SelectionPlus\",\"SelectionSlash\",\"Shapes\",\"Share\",\"ShareFat\",\"ShareNetwork\",\"Shield\",\"ShieldCheck\",\"ShieldCheckered\",\"ShieldChevron\",\"ShieldPlus\",\"ShieldSlash\",\"ShieldStar\",\"ShieldWarning\",\"ShippingContainer\",\"ShirtFolded\",\"ShootingStar\",\"ShoppingBag\",\"ShoppingBagOpen\",\"ShoppingCart\",\"ShoppingCartSimple\",\"Shovel\",\"Shower\",\"Shrimp\",\"Shuffle\",\"ShuffleAngular\",\"ShuffleSimple\",\"Sidebar\",\"SidebarSimple\",\"Sigma\",\"SignIn\",\"SignOut\",\"Signature\",\"Signpost\",\"SimCard\",\"Siren\",\"SketchLogo\",\"SkipBack\",\"SkipBackCircle\",\"SkipForward\",\"SkipForwardCircle\",\"Skull\",\"SkypeLogo\",\"SlackLogo\",\"Sliders\",\"SlidersHorizontal\",\"Slideshow\",\"Smiley\",\"SmileyAngry\",\"SmileyBlank\",\"SmileyMeh\",\"SmileyMelting\",\"SmileyNervous\",\"SmileySad\",\"SmileySticker\",\"SmileyWink\",\"SmileyXEyes\",\"SnapchatLogo\",\"Sneaker\",\"SneakerMove\",\"Snowflake\",\"SoccerBall\",\"Sock\",\"SolarPanel\",\"SolarRoof\",\"SortAscending\",\"SortDescending\",\"SoundcloudLogo\",\"Spade\",\"Sparkle\",\"SpeakerHifi\",\"SpeakerHigh\",\"SpeakerLow\",\"SpeakerNone\",\"SpeakerSimpleHigh\",\"SpeakerSimpleLow\",\"SpeakerSimpleNone\",\"SpeakerSimpleSlash\",\"SpeakerSimpleX\",\"SpeakerSlash\",\"SpeakerX\",\"Speedometer\",\"Sphere\",\"Spinner\",\"SpinnerBall\",\"SpinnerGap\",\"Spiral\",\"SplitHorizontal\",\"SplitVertical\",\"SpotifyLogo\",\"SprayBottle\",\"Square\",\"SquareHalf\",\"SquareHalfBottom\",\"SquareLogo\",\"SquareSplitVertical\",\"SquaresFour\",\"Stack\",\"StackMinus\",\"StackOverflowLogo\",\"StackPlus\",\"StackSimple\",\"Stairs\",\"Stamp\",\"StandardDefinition\",\"Star\",\"StarAndCrescent\",\"StarFour\",\"StarHalf\",\"StarOfDavid\",\"SteamLogo\",\"SteeringWheel\",\"Steps\",\"Stethoscope\",\"Sticker\",\"Stool\",\"Stop\",\"StopCircle\",\"Storefront\",\"Strategy\",\"StripeLogo\",\"Student\",\"SubsetOf\",\"SubsetProperOf\",\"Subtitles\",\"SubtitlesSlash\",\"Subtract\",\"SubtractSquare\",\"Subway\",\"Suitcase\",\"SuitcaseRolling\",\"SuitcaseSimple\",\"Sun\",\"SunDim\",\"SunHorizon\",\"Sunglasses\",\"SupersetOf\",\"SupersetProperOf\",\"Swap\",\"Swatches\",\"SwimmingPool\",\"Sword\",\"Synagogue\",\"Syringe\",\"TShirt\",\"Table\",\"Tabs\",\"Tag\",\"TagChevron\",\"TagSimple\",\"Target\",\"Taxi\",\"TeaBag\",\"TelegramLogo\",\"Television\",\"TelevisionSimple\",\"TennisBall\",\"Tent\",\"Terminal\",\"TerminalWindow\",\"TestTube\",\"TextAUnderline\",\"TextAa\",\"TextAlignCenter\",\"TextAlignJustify\",\"TextAlignLeft\",\"TextAlignRight\",\"TextB\",\"TextColumns\",\"TextH\",\"TextHFive\",\"TextHFour\",\"TextHOne\",\"TextHSix\",\"TextHThree\",\"TextHTwo\",\"TextIndent\",\"TextItalic\",\"TextOutdent\",\"TextStrikethrough\",\"TextSubscript\",\"TextSuperscript\",\"TextT\",\"TextTSlash\",\"TextUnderline\",\"Textbox\",\"Thermometer\",\"ThermometerCold\",\"ThermometerHot\",\"ThermometerSimple\",\"ThreadsLogo\",\"ThreeD\",\"ThumbsDown\",\"ThumbsUp\",\"Ticket\",\"TidalLogo\",\"TiktokLogo\",\"Tilde\",\"Timer\",\"TipJar\",\"Tipi\",\"Tire\",\"ToggleLeft\",\"ToggleRight\",\"Toilet\",\"ToiletPaper\",\"Toolbox\",\"Tooth\",\"Tornado\",\"Tote\",\"ToteSimple\",\"Towel\",\"Tractor\",\"Trademark\",\"TrademarkRegistered\",\"TrafficCone\",\"TrafficSign\",\"TrafficSignal\",\"Train\",\"TrainRegional\",\"TrainSimple\",\"Tram\",\"Translate\",\"Trash\",\"TrashSimple\",\"Tray\",\"TrayArrowDown\",\"TrayArrowUp\",\"TreasureChest\",\"Tree\",\"TreeEvergreen\",\"TreePalm\",\"TreeStructure\",\"TreeView\",\"TrendDown\",\"TrendUp\",\"Triangle\",\"TriangleDashed\",\"Trolley\",\"TrolleySuitcase\",\"Trophy\",\"Truck\",\"TruckTrailer\",\"TumblrLogo\",\"TwitchLogo\",\"TwitterLogo\",\"Umbrella\",\"UmbrellaSimple\",\"Union\",\"Unite\",\"UniteSquare\",\"Upload\",\"UploadSimple\",\"Usb\",\"User\",\"UserCheck\",\"UserCircle\",\"UserCircleCheck\",\"UserCircleDashed\",\"UserCircleGear\",\"UserCircleMinus\",\"UserCirclePlus\",\"UserFocus\",\"UserGear\",\"UserList\",\"UserMinus\",\"UserPlus\",\"UserRectangle\",\"UserSound\",\"UserSquare\",\"UserSwitch\",\"Users\",\"UsersFour\",\"UsersThree\",\"Van\",\"Vault\",\"VectorThree\",\"VectorTwo\",\"Vibrate\",\"Video\",\"VideoCamera\",\"VideoCameraSlash\",\"VideoConference\",\"Vignette\",\"VinylRecord\",\"VirtualReality\",\"Virus\",\"Visor\",\"Voicemail\",\"Volleyball\",\"Wall\",\"Wallet\",\"Warehouse\",\"Warning\",\"WarningCircle\",\"WarningDiamond\",\"WarningOctagon\",\"WashingMachine\",\"Watch\",\"WaveSawtooth\",\"WaveSine\",\"WaveSquare\",\"WaveTriangle\",\"Waveform\",\"WaveformSlash\",\"Waves\",\"Webcam\",\"WebcamSlash\",\"WebhooksLogo\",\"WechatLogo\",\"WhatsappLogo\",\"Wheelchair\",\"WheelchairMotion\",\"WifiHigh\",\"WifiLow\",\"WifiMedium\",\"WifiNone\",\"WifiSlash\",\"WifiX\",\"Wind\",\"Windmill\",\"WindowsLogo\",\"Wine\",\"Wrench\",\"X\",\"XCircle\",\"XLogo\",\"XSquare\",\"Yarn\",\"YinYang\",\"YoutubeLogo\"];const moduleBaseUrl=\"https://framer.com/m/phosphor-icons/\";const weightOptions=[\"thin\",\"light\",\"regular\",\"bold\",\"fill\",\"duotone\"];const lowercaseIconKeyPairs=iconKeys.reduce((res,key)=>{res[key.toLowerCase()]=key;return res;},{});/**\n * PHOSPHOR\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n *\n * @framerIntrinsicWidth 24\n * @framerIntrinsicHeight 24\n */export function Icon(props){const{color,selectByList,iconSearch,iconSelection,onClick,onMouseDown,onMouseUp,onMouseEnter,onMouseLeave,weight,mirrored}=props;const isMounted=useRef(false);const iconKey=useIconSelection(iconKeys,selectByList,iconSearch,iconSelection,lowercaseIconKeyPairs);const[SelectedIcon,setSelectedIcon]=useState(iconKey===\"Home\"?HouseFactory(React):null);async function importModule(){// Get the selected module\ntry{const version=\"0.0.57\";const iconModuleUrl=`${moduleBaseUrl}${iconKey}.js@${version}`;const module=await import(/* webpackIgnore: true */iconModuleUrl);if(isMounted.current)setSelectedIcon(module.default(React));}catch(err){if(isMounted.current)setSelectedIcon(null);}}useEffect(()=>{isMounted.current=true;importModule();return()=>{isMounted.current=false;};},[iconKey]);const isOnCanvas=RenderTarget.current()===RenderTarget.canvas;const emptyState=isOnCanvas?/*#__PURE__*/_jsx(NullState,{}):null;return /*#__PURE__*/_jsx(motion.div,{style:{display:\"contents\"},onClick,onMouseEnter,onMouseLeave,onMouseDown,onMouseUp,children:SelectedIcon?/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",style:{userSelect:\"none\",width:\"100%\",height:\"100%\",display:\"inline-block\",fill:color,color,flexShrink:0,transform:mirrored?\"scale(-1, 1)\":undefined},focusable:\"false\",color:color,children:/*#__PURE__*/_jsx(SelectedIcon,{color:color,weight:weight})}):emptyState});}Icon.displayName=\"Phosphor\";Icon.defaultProps={width:24,height:24,iconSelection:\"House\",iconSearch:\"House\",color:\"#66F\",selectByList:true,weight:\"regular\",mirrored:false};addPropertyControls(Icon,{selectByList:{type:ControlType.Boolean,title:\"Select\",enabledTitle:\"List\",disabledTitle:\"Search\",defaultValue:Icon.defaultProps.selectByList},iconSelection:{type:ControlType.Enum,options:iconKeys,defaultValue:Icon.defaultProps.iconSelection,title:\"Name\",hidden:({selectByList})=>!selectByList,description:\"Find every icon name on the [Phosphor site](https://phosphoricons.com/)\"},iconSearch:{type:ControlType.String,title:\"Name\",placeholder:\"Menu, Wifi, Box…\",hidden:({selectByList})=>selectByList},color:{type:ControlType.Color,title:\"Color\",defaultValue:Icon.defaultProps.color},weight:{type:ControlType.Enum,title:\"Weight\",optionTitles:weightOptions.map(piece=>piece.charAt(0).toUpperCase()+piece.slice(1)),options:weightOptions,defaultValue:Icon.defaultProps.weight},mirrored:{type:ControlType.Boolean,enabledTitle:\"Yes\",disabledTitle:\"No\",defaultValue:Icon.defaultProps.mirrored},...defaultEvents});\nexport const __FramerMetadata__ = {\"exports\":{\"IconProps\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"Icon\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"24\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicHeight\":\"24\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Phosphor.map","import{useState,useEffect}from\"react\";export const isBrowser=()=>typeof document===\"object\";export function getBrowserVisibilityProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){// Opera 12.10 and Firefox 18 and later support\nreturn\"visibilitychange\";}else if(typeof document.msHidden!==\"undefined\"){return\"msvisibilitychange\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitvisibilitychange\";}}export function getBrowserDocumentHiddenProp(){if(!isBrowser())return;if(typeof document.hidden!==\"undefined\"){return\"hidden\";}else if(typeof document.msHidden!==\"undefined\"){return\"msHidden\";}else if(typeof document.webkitHidden!==\"undefined\"){return\"webkitHidden\";}}export function getIsDocumentHidden(){if(!isBrowser())return;return!document[getBrowserDocumentHiddenProp()];}export function usePageVisibility(){if(!isBrowser())return;const[isVisible,setIsVisible]=useState(getIsDocumentHidden());const onVisibilityChange=()=>setIsVisible(getIsDocumentHidden());useEffect(()=>{const visibilityChange=getBrowserVisibilityProp();document.addEventListener(visibilityChange,onVisibilityChange,false);return()=>{document.removeEventListener(visibilityChange,onVisibilityChange);};});return isVisible;}\nexport const __FramerMetadata__ = {\"exports\":{\"getBrowserVisibilityProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getIsDocumentHidden\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"usePageVisibility\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"isBrowser\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBrowserDocumentHiddenProp\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UsePageVisibility.map","import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useLayoutEffect,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement,forwardRef}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,animate,useMotionValue,useInView,useTransform,LayoutGroup,wrap,sync,mix}from\"framer-motion\";import{resize}from\"@motionone/dom\";import{usePageVisibility}from\"https://framerusercontent.com/modules/V9ryrjN5Am9WM1dJeyyJ/9mrJHeWj7rhvLTLu7Yzt/UsePageVisibility.js\";// Using opacity: 0.001 instead of 0 as an LCP hack. (opacity: 0.001 is still 0\n// to a human eye but makes Google think the elements are visible)\nconst OPACITY_0=.001;/**\n *\n * SLIDESHOW\n * V2 with Drag\n * By Benjamin and Matt\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Slideshow(props){/**\n     * Properties\n     */const{slots,startFrom,direction,effectsOptions,autoPlayControl,dragControl,alignment,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,itemAmount,fadeOptions,intervalControl,transitionControl,arrowOptions,borderRadius,progressOptions,style}=props;const{effectsOpacity,effectsScale,effectsRotate,effectsPerspective,effectsHover}=effectsOptions;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{showMouseControls,arrowSize,arrowRadius,arrowFill,leftArrow,rightArrow,arrowShouldSpace=true,arrowShouldFadeIn=false,arrowPosition,arrowPadding,arrowGap,arrowPaddingTop,arrowPaddingRight,arrowPaddingBottom,arrowPaddingLeft}=arrowOptions;const{showProgressDots,dotSize,dotsInset,dotsRadius,dotsPadding,dotsGap,dotsFill,dotsBackground,dotsActiveOpacity,dotsOpacity,dotsBlur}=progressOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/**\n     * Checks\n     */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const hasChildren=Children.count(filteredSlots)>0;const isHorizontal=direction===\"left\"||direction===\"right\";const isInverted=direction===\"right\"||direction===\"bottom\";/**\n     * Empty state for Canvas\n     */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"⭐️\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to make infinite auto-playing slideshows.\"})]});}/**\n     * Refs, State\n     */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return filteredSlots.map(index=>/*#__PURE__*/createRef());},[filteredSlots]);const timeoutRef=useRef(undefined);const[size,setSize]=useState({parent:null,children:null,item:null,itemWidth:null,itemHeight:null,viewportLength:null});/* For pausing on hover */const[isHovering,setIsHovering]=useState(false);const[shouldPlayOnHover,setShouldPlayOnHover]=useState(autoPlayControl);/* For cursor updates */const[isMouseDown,setIsMouseDown]=useState(false);/* Check if resizing */const[isResizing,setIsResizing]=useState(false);/**\n     * Array for children\n     */const dupedChildren=[];let duplicateBy=4;if(isCanvas){duplicateBy=1;}/**\n     * Measure parent, child, items\n     */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const total=filteredSlots.length-1;const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const start=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetLeft:childrenRef[0].current.offsetTop:0;const end=childrenRef[total].current?isHorizontal?childrenRef[total].current.offsetLeft+childrenRef[total].current.offsetWidth:childrenRef[total].current.offsetTop+childrenRef[total].current.offsetHeight:0;const childrenLength=end-start+gap;const itemSize=childrenRef[0].current?isHorizontal?childrenRef[0].current.offsetWidth:childrenRef[0].current.offsetHeight:0;const itemWidth=childrenRef[0].current?childrenRef[0].current.offsetWidth:0;const itemHeight=childrenRef[0].current?childrenRef[0].current.offsetHeight:0;const viewportLength=isHorizontal?Math.max(document.documentElement.clientWidth||0,window.innerWidth||0,parentRef.current.offsetWidth):Math.max(document.documentElement.clientHeight||0,window.innerHeight||0,parentRef.current.offsetHeight);setSize({parent:parentLength,children:childrenLength,item:itemSize,itemWidth,itemHeight,viewportLength});}},[hasChildren]);const scheduleMeasure=useCallback(()=>{sync.read(measure);},[measure]);/**\n     * Add refs to all children\n     * Added itemAmount for resizing\n     */useLayoutEffect(()=>{if(hasChildren)scheduleMeasure();},[hasChildren,itemAmount]);/**\n     * Track whether this is the initial resize event. By default this will fire on mount,\n     * which we do in the useEffect. We should only fire it on subsequent resizes.\n     */let initialResize=useRef(true);useEffect(()=>{return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){scheduleMeasure();setIsResizing(true);}initialResize.current=false;});},[]);useEffect(()=>{if(isResizing){const timer=setTimeout(()=>setIsResizing(false),500);return()=>clearTimeout(timer);}},[isResizing]);/**\n     * Animation, pagination\n     */const totalItems=filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length;const childrenSize=isCanvas?0:size===null||size===void 0?void 0:size.children;const itemWithGap=(size===null||size===void 0?void 0:size.item)+gap;const itemOffset=startFrom*itemWithGap;const[currentItem,setCurrentItem]=useState(startFrom+totalItems);const[isDragging,setIsDragging]=useState(false);/* Check for browser window visibility *//* Otherwise, it will re-play all the item increments */const visibilityRef=useRef(null);const isInView=useInView(visibilityRef);const isVisible=usePageVisibility()&&isInView;const factor=isInverted?1:-1;/* The x and y values to start from */const xOrY=useMotionValue(childrenSize);/* For canvas only. Using xOrY is slower upon page switching */const canvasPosition=isHorizontal?-startFrom*((size===null||size===void 0?void 0:size.itemWidth)+gap):-startFrom*((size===null||size===void 0?void 0:size.itemHeight)+gap);/* Calculate the new value to animate to */const newPosition=()=>factor*currentItem*itemWithGap;/* Wrapped values for infinite looping *//* Instead of 0 to a negative full duplicated row, we start with an offset */const wrappedValue=!isCanvas?useTransform(xOrY,value=>{const wrapped=wrap(-childrenSize,-childrenSize*2,value);return isNaN(wrapped)?0:wrapped;}):0;/* Convert the current item to a wrapping index for dots */const wrappedIndex=wrap(0,totalItems,currentItem);const wrappedIndexInverted=wrap(0,-totalItems,currentItem);/* Update x or y with the provided starting point *//* The subtraction of a full row of children is for overflow */useLayoutEffect(()=>{if((size===null||size===void 0?void 0:size.children)===null)return;/* Initial measure */// if (initialResize.current) {\n//     xOrY.set((childrenSize + itemOffset) * factor)\n// }\n/* Subsequent resizes */if(!initialResize.current&&isResizing){xOrY.set(newPosition());}},[size,childrenSize,factor,itemOffset,currentItem,itemWithGap,isResizing]);/**\n     * Page item methods\n     * Switching, deltas, autoplaying\n     *//* Next and previous function, animates the X */const switchPages=()=>{if(isCanvas||!hasChildren||!size.parent||isDragging)return;if(xOrY.get()!==newPosition()){animate(xOrY,newPosition(),transitionControl);}if(autoPlayControl&&shouldPlayOnHover){timeoutRef.current=setTimeout(()=>{setCurrentItem(currentItem+1);switchPages();},intervalControl*1e3);}};/* Page navigation functions */const setDelta=delta=>{if(!isInverted){setCurrentItem(currentItem+delta);}else{setCurrentItem(currentItem-delta);}};const setPage=index=>{const currentItemWrapped=wrap(0,totalItems,currentItem);const currentItemWrappedInvert=wrap(0,-totalItems,currentItem);const goto=index-currentItemWrapped;const gotoInverted=index-Math.abs(currentItemWrappedInvert);if(!isInverted){setCurrentItem(currentItem+goto);}else{setCurrentItem(currentItem-gotoInverted);}};/**\n     * Drag\n     */const handleDragStart=()=>{setIsDragging(true);};const handleDragEnd=(event,{offset,velocity})=>{setIsDragging(false);const offsetXorY=isHorizontal?offset.x:offset.y;const velocityThreshold=200// Based on testing, can be tweaked or could be 0\n;const velocityXorY=isHorizontal?velocity.x:velocity.y;const isHalfOfNext=offsetXorY<-size.item/2;const isHalfOfPrev=offsetXorY>size.item/2;/* In case you drag more than 1 item left or right */const normalizedOffset=Math.abs(offsetXorY);const itemDelta=Math.round(normalizedOffset/size.item);/* Minimum delta is 1 to initiate a page switch *//* For velocity use only */const itemDeltaFromOne=itemDelta===0?1:itemDelta;/* For quick flicks, even with low offsets */if(velocityXorY>velocityThreshold){setDelta(-itemDeltaFromOne);}else if(velocityXorY<-velocityThreshold){setDelta(itemDeltaFromOne);}else{/* For dragging over half of the current item with 0 velocity */if(isHalfOfNext){setDelta(itemDelta);}if(isHalfOfPrev){setDelta(-itemDelta);}}};/* Kickstart the auto-playing once we have all the children */useEffect(()=>{if(!isVisible||isResizing)return;switchPages();return()=>timeoutRef.current&&clearTimeout(timeoutRef.current);},[dupedChildren,isVisible,isResizing]);/* Create copies of our children to create a perfect loop */let childCounter=0;/**\n     * Sizing\n     * */let columnOrRowValue=`calc(${100/itemAmount}% - ${gap}px + ${gap/itemAmount}px)`;/**\n     * Nested array to create duplicates of the children for infinite looping\n     * These are wrapped around, and start at a full \"page\" worth of offset\n     * as defined above.\n     */for(let index=0;index<duplicateBy;index++){dupedChildren.push(...Children.map(filteredSlots,(child,childIndex)=>{let ref;if(childIndex===0){ref=childrenRef[0];}if(childIndex===filteredSlots.length-1){ref=childrenRef[1];}return /*#__PURE__*/_jsx(Slide,{ref:childrenRef[childIndex],slideKey:index+childIndex+\"lg\",index:index,width:isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",height:!isHorizontal?itemAmount>1?columnOrRowValue:\"100%\":\"100%\",size:size,child:child,numChildren:filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length,wrappedValue:wrappedValue,childCounter:childCounter++,gap:gap,isCanvas:isCanvas,isHorizontal:isHorizontal,effectsOpacity:effectsOpacity,effectsScale:effectsScale,effectsRotate:effectsRotate,children:index+childIndex},index+childIndex+\"lg\");}));}/**\n     * Fades with masks\n     */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/**\n     * Dots\n     */const dots=[];const dotsBlurStyle={};if(showProgressDots){for(let i=0;i<(filteredSlots===null||filteredSlots===void 0?void 0:filteredSlots.length);i++){dots.push(/*#__PURE__*/_jsx(Dot,{dotStyle:{...dotStyle,width:dotSize,height:dotSize,backgroundColor:dotsFill},buttonStyle:baseButtonStyles,selectedOpacity:dotsActiveOpacity,opacity:dotsOpacity,onClick:()=>setPage(i),wrappedIndex:wrappedIndex,wrappedIndexInverted:wrappedIndexInverted,total:totalItems,index:i,gap:dotsGap,padding:dotsPadding,isHorizontal:isHorizontal,isInverted:isInverted},i));}if(dotsBlur>0){dotsBlurStyle.backdropFilter=dotsBlurStyle.WebkitBackdropFilter=dotsBlurStyle.MozBackdropFilter=`blur(${dotsBlur}px)`;}}const dragProps=dragControl?{drag:isHorizontal?\"x\":\"y\",onDragStart:handleDragStart,onDragEnd:handleDragEnd,dragDirectionLock:true,values:{x:xOrY,y:xOrY},dragMomentum:false}:{};const arrowHasTop=arrowPosition===\"top-left\"||arrowPosition===\"top-mid\"||arrowPosition===\"top-right\";const arrowHasBottom=arrowPosition===\"bottom-left\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"bottom-right\";const arrowHasLeft=arrowPosition===\"top-left\"||arrowPosition===\"bottom-left\";const arrowHasRight=arrowPosition===\"top-right\"||arrowPosition===\"bottom-right\";const arrowHasMid=arrowPosition===\"top-mid\"||arrowPosition===\"bottom-mid\"||arrowPosition===\"auto\";return /*#__PURE__*/_jsxs(\"section\",{style:{...containerStyle,padding:paddingValue,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,opacity:(size===null||size===void 0?void 0:size.item)!==null?1:OPACITY_0,userSelect:\"none\"},onMouseEnter:()=>{setIsHovering(true);if(!effectsHover)setShouldPlayOnHover(false);},onMouseLeave:()=>{setIsHovering(false);if(!effectsHover)setShouldPlayOnHover(true);},onMouseDown:event=>{// Preventdefault fixes the cursor switching to text on drag on safari\nevent.preventDefault();setIsMouseDown(true);},onMouseUp:()=>setIsMouseDown(false),ref:visibilityRef,children:[/*#__PURE__*/_jsx(\"div\",{style:{width:\"100%\",height:\"100%\",margin:0,padding:\"inherit\",position:\"absolute\",inset:0,overflow:overflow?\"visible\":\"hidden\",borderRadius:borderRadius,userSelect:\"none\",perspective:isCanvas?\"none\":effectsPerspective},children:/*#__PURE__*/_jsx(motion.ul,{ref:parentRef,...dragProps,style:{...containerStyle,gap:gap,placeItems:alignment,x:isHorizontal?isCanvas?canvasPosition:wrappedValue:0,y:!isHorizontal?isCanvas?canvasPosition:wrappedValue:0,flexDirection:isHorizontal?\"row\":\"column\",transformStyle:effectsRotate!==0&&!isCanvas?\"preserve-3d\":undefined,cursor:dragControl?isMouseDown?\"grabbing\":\"grab\":\"auto\",userSelect:\"none\",...style},children:dupedChildren})}),/*#__PURE__*/_jsxs(\"fieldset\",{style:{...controlsStyles},\"aria-label\":\"Slideshow pagination controls\",className:\"framer--slideshow-controls\",children:[/*#__PURE__*/_jsxs(motion.div,{style:{position:\"absolute\",display:\"flex\",flexDirection:isHorizontal?\"row\":\"column\",justifyContent:arrowShouldSpace?\"space-between\":\"center\",gap:arrowShouldSpace?\"unset\":arrowGap,opacity:arrowShouldFadeIn?OPACITY_0:1,alignItems:\"center\",inset:arrowPadding,top:arrowShouldSpace?arrowPadding:arrowHasTop?arrowPaddingTop:\"unset\",left:arrowShouldSpace?arrowPadding:arrowHasLeft?arrowPaddingLeft:arrowHasMid?0:\"unset\",right:arrowShouldSpace?arrowPadding:arrowHasRight?arrowPaddingRight:arrowHasMid?0:\"unset\",bottom:arrowShouldSpace?arrowPadding:arrowHasBottom?arrowPaddingBottom:\"unset\"},animate:arrowShouldFadeIn&&{opacity:isHovering?1:OPACITY_0},transition:transitionControl,children:[/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(-1),\"aria-label\":\"Previous\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:leftArrow||\"https://framerusercontent.com/images/6tTbkXggWgQCAJ4DO2QEdXXmgM.svg\",alt:\"Back Arrow\"})}),/*#__PURE__*/_jsx(motion.button,{type:\"button\",style:{...baseButtonStyles,backgroundColor:arrowFill,width:arrowSize,height:arrowSize,borderRadius:arrowRadius,rotate:!isHorizontal?90:0,display:showMouseControls?\"block\":\"none\",pointerEvents:\"auto\"},onClick:()=>setDelta(1),\"aria-label\":\"Next\",whileTap:{scale:.9},transition:{duration:.15},children:/*#__PURE__*/_jsx(\"img\",{decoding:\"async\",width:arrowSize,height:arrowSize,src:rightArrow||\"https://framerusercontent.com/images/11KSGbIZoRSg4pjdnUoif6MKHI.svg\",alt:\"Next Arrow\"})})]}),dots.length>1?/*#__PURE__*/_jsx(\"div\",{style:{...dotsContainerStyle,left:isHorizontal?\"50%\":dotsInset,top:!isHorizontal?\"50%\":\"unset\",transform:isHorizontal?\"translateX(-50%)\":\"translateY(-50%)\",flexDirection:isHorizontal?\"row\":\"column\",bottom:isHorizontal?dotsInset:\"unset\",borderRadius:dotsRadius,backgroundColor:dotsBackground,userSelect:\"none\",...dotsBlurStyle},children:dots}):null]})]});}/* Default Properties */Slideshow.defaultProps={direction:\"left\",dragControl:false,startFrom:0,itemAmount:1,infinity:true,gap:10,padding:10,autoPlayControl:true,effectsOptions:{effectsOpacity:1,effectsScale:1,effectsRotate:0,effectsPerspective:1200,effectsHover:true},transitionControl:{type:\"spring\",stiffness:200,damping:40},fadeOptions:{fadeContent:false,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},arrowOptions:{showMouseControls:true,arrowShouldFadeIn:false,arrowShouldSpace:true,arrowFill:\"rgba(0,0,0,0.2)\",arrowSize:40},progressOptions:{showProgressDots:true}};/* Property Controls */addPropertyControls(Slideshow,{slots:{type:ControlType.Array,title:\"Content\",control:{type:ControlType.ComponentInstance}},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],displaySegmentedControl:true,defaultValue:Slideshow.defaultProps.direction},autoPlayControl:{type:ControlType.Boolean,title:\"Auto Play\",defaultValue:true},intervalControl:{type:ControlType.Number,title:\"Interval\",defaultValue:1.5,min:.5,max:10,step:.1,displayStepper:true,unit:\"s\",hidden:props=>!props.autoPlayControl},dragControl:{type:ControlType.Boolean,title:\"Draggable\",defaultValue:false},startFrom:{type:ControlType.Number,title:\"Current\",min:0,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.startFrom},effectsOptions:{type:ControlType.Object,title:\"Effects\",controls:{effectsOpacity:{type:ControlType.Number,title:\"Opacity\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsOpacity,min:0,max:1,step:.01,displayStepper:true},effectsScale:{type:ControlType.Number,title:\"Scale\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsScale,min:0,max:1,step:.01,displayStepper:true},effectsPerspective:{type:ControlType.Number,title:\"Perspective\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsPerspective,min:200,max:2e3,step:1},effectsRotate:{type:ControlType.Number,title:\"Rotate\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsRotate,min:-180,max:180,step:1},effectsHover:{type:ControlType.Boolean,title:\"On Hover\",enabledTitle:\"Play\",disabledTitle:\"Pause\",defaultValue:Slideshow.defaultProps.effectsOptions.effectsHover}}},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},itemAmount:{type:ControlType.Number,title:\"Items\",min:1,max:10,displayStepper:true,defaultValue:Slideshow.defaultProps.itemAmount},gap:{type:ControlType.Number,title:\"Gap\",min:0},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,displayStepper:true,defaultValue:0},transitionControl:{type:ControlType.Transition,defaultValue:Slideshow.defaultProps.transitionControl,title:\"Transition\"},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:false},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},arrowOptions:{type:ControlType.Object,title:\"Arrows\",controls:{showMouseControls:{type:ControlType.Boolean,title:\"Show\",defaultValue:Slideshow.defaultProps.arrowOptions.showMouseControls},arrowFill:{type:ControlType.Color,title:\"Fill\",hidden:props=>!props.showMouseControls,defaultValue:Slideshow.defaultProps.arrowOptions.arrowFill},leftArrow:{type:ControlType.Image,title:\"Previous\",hidden:props=>!props.showMouseControls},rightArrow:{type:ControlType.Image,title:\"Next\",hidden:props=>!props.showMouseControls},arrowSize:{type:ControlType.Number,title:\"Size\",min:0,max:200,displayStepper:true,defaultValue:Slideshow.defaultProps.arrowOptions.arrowSize,hidden:props=>!props.showMouseControls},arrowRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:500,defaultValue:40,hidden:props=>!props.showMouseControls},arrowShouldFadeIn:{type:ControlType.Boolean,title:\"Fade In\",defaultValue:false,hidden:props=>!props.showMouseControls},arrowShouldSpace:{type:ControlType.Boolean,title:\"Distance\",enabledTitle:\"Space\",disabledTitle:\"Group\",defaultValue:Slideshow.defaultProps.arrowOptions.arrowShouldSpace,hidden:props=>!props.showMouseControls},arrowPosition:{type:ControlType.Enum,title:\"Position\",options:[\"auto\",\"top-left\",\"top-mid\",\"top-right\",\"bottom-left\",\"bottom-mid\",\"bottom-right\"],optionTitles:[\"Center\",\"Top Left\",\"Top Middle\",\"Top Right\",\"Bottom Left\",\"Bottom Middle\",\"Bottom Right\"],hidden:props=>!props.showMouseControls||props.arrowShouldSpace},arrowPadding:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:20,displayStepper:true,hidden:props=>!props.showMouseControls||!props.arrowShouldSpace},arrowPaddingTop:{type:ControlType.Number,title:\"Top\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"bottom-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-right\"},arrowPaddingBottom:{type:ControlType.Number,title:\"Bottom\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-right\"},arrowPaddingRight:{type:ControlType.Number,title:\"Right\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-left\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-left\"||props.arrowPosition===\"bottom-mid\"},arrowPaddingLeft:{type:ControlType.Number,title:\"Left\",min:-500,max:500,defaultValue:0,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace||props.arrowPosition===\"auto\"||props.arrowPosition===\"top-right\"||props.arrowPosition===\"top-mid\"||props.arrowPosition===\"bottom-right\"||props.arrowPosition===\"bottom-mid\"},arrowGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showMouseControls||props.arrowShouldSpace}}},progressOptions:{type:ControlType.Object,title:\"Dots\",controls:{showProgressDots:{type:ControlType.Boolean,title:\"Show\",defaultValue:false},dotSize:{type:ControlType.Number,title:\"Size\",min:1,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsInset:{type:ControlType.Number,title:\"Inset\",min:-100,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsGap:{type:ControlType.Number,title:\"Gap\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsPadding:{type:ControlType.Number,title:\"Padding\",min:0,max:100,defaultValue:10,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsFill:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#fff\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBackground:{type:ControlType.Color,title:\"Backdrop\",defaultValue:\"rgba(0,0,0,0.2)\",hidden:props=>!props.showProgressDots||props.showScrollbar},dotsRadius:{type:ControlType.Number,title:\"Radius\",min:0,max:200,defaultValue:50,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsOpacity:{type:ControlType.Number,title:\"Opacity\",min:0,max:1,defaultValue:.5,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsActiveOpacity:{type:ControlType.Number,title:\"Current\",min:0,max:1,defaultValue:1,step:.1,displayStepper:true,hidden:props=>!props.showProgressDots||props.showScrollbar},dotsBlur:{type:ControlType.Number,title:\"Blur\",min:0,max:50,defaultValue:0,step:1,hidden:props=>!props.showProgressDots||props.showScrollbar}}}});/* Placeholder Styles */const containerStyle={display:\"flex\",flexDirection:\"row\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Component Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:180,lineHeight:1.5,textAlign:\"center\"};/* Control Styles */const baseButtonStyles={border:\"none\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",background:\"transparent\",cursor:\"pointer\",margin:0,padding:0};const controlsStyles={display:\"flex\",justifyContent:\"space-between\",alignItems:\"center\",position:\"absolute\",pointerEvents:\"none\",userSelect:\"none\",top:0,left:0,right:0,bottom:0,border:0,padding:0,margin:0};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);/* Slide Component */const Slide=/*#__PURE__*/forwardRef(function Component(props,ref){var _child_props,_child_props1;const{slideKey,width,height,child,size,gap,wrappedValue,numChildren,childCounter,isCanvas,effects,effectsOpacity,effectsScale,effectsRotate,isHorizontal,isLast,index}=props;/**\n     * Unique offsets + scroll range [0, 1, 1, 0]\n     */const childOffset=((size===null||size===void 0?void 0:size.item)+gap)*childCounter;const scrollRange=[-(size===null||size===void 0?void 0:size.item),0,(size===null||size===void 0?void 0:size.parent)-(size===null||size===void 0?void 0:size.item)+gap,size===null||size===void 0?void 0:size.parent].map(val=>val-childOffset);/**\n     * Effects\n     */const rotateY=!isCanvas&&useTransform(wrappedValue,scrollRange,[-effectsRotate,0,0,effectsRotate]);const rotateX=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsRotate,0,0,-effectsRotate]);const opacity=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsOpacity,1,1,effectsOpacity]);const scale=!isCanvas&&useTransform(wrappedValue,scrollRange,[effectsScale,1,1,effectsScale]);const originXorY=!isCanvas&&useTransform(wrappedValue,scrollRange,[1,1,0,0]);const isVisible=!isCanvas&&useTransform(wrappedValue,latest=>latest>=scrollRange[1]&&latest<=scrollRange[2]);useEffect(()=>{if(!isVisible)return;return isVisible.onChange(newValue=>{var _ref_current;(_ref_current=ref.current)===null||_ref_current===void 0?void 0:_ref_current.setAttribute(\"aria-hidden\",!newValue);});},[]);const visibility=isCanvas?\"visible\":useTransform(wrappedValue,[scrollRange[0]-size.viewportLength,mix(scrollRange[1],scrollRange[2],.5),scrollRange[3]+size.viewportLength],[\"hidden\",\"visible\",\"hidden\"]);return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:{display:\"contents\"},\"aria-hidden\":index===0?false:true,children:/*#__PURE__*/cloneElement(child,{ref:ref,key:slideKey+\"child\",style:{...(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.style,flexShrink:0,userSelect:\"none\",width,height,opacity:opacity,scale:scale,originX:isHorizontal?originXorY:.5,originY:!isHorizontal?originXorY:.5,rotateY:isHorizontal?rotateY:0,rotateX:!isHorizontal?rotateX:0,visibility},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.children)})});});function Dot({selectedOpacity,opacity,total,index,wrappedIndex,wrappedIndexInverted,dotStyle,buttonStyle,gap,padding,isHorizontal,isInverted,...props}){/* Check active item *//* Go 0—1—2—3—4—5—0 */let isSelected=wrappedIndex===index;/* Go 0—5—4—3—2—1—0—5 instead when inverted */if(isInverted){isSelected=Math.abs(wrappedIndexInverted)===index;}const inlinePadding=gap/2;let top=!isHorizontal&&index>0?inlinePadding:padding;let bottom=!isHorizontal&&index!==total-1?inlinePadding:padding;let right=isHorizontal&&index!==total-1?inlinePadding:padding;let left=isHorizontal&&index>0?inlinePadding:padding;return /*#__PURE__*/_jsx(\"button\",{\"aria-label\":`Scroll to page ${index+1}`,type:\"button\",...props,style:{...buttonStyle,padding:`${top}px ${right}px ${bottom}px ${left}px`},children:/*#__PURE__*/_jsx(motion.div,{style:{...dotStyle},initial:false,animate:{opacity:isSelected?selectedOpacity:opacity},transition:{duration:.3}})});}/* Dot Styles */const dotsContainerStyle={display:\"flex\",placeContent:\"center\",placeItems:\"center\",overflow:\"hidden\",position:\"absolute\",pointerEvents:\"auto\"};const dotStyle={borderRadius:\"50%\",background:\"white\",cursor:\"pointer\",border:\"none\",placeContent:\"center\",placeItems:\"center\",padding:0};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Slideshow\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SlideShow.map","// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/nANoDDYHDKWuOkVcGvFx/HjRApbRZbqyuxNI5K13q/wg8Xs5Yw0.js\";const enabledGestures={A6Z9hPsEz:{hover:true},BDRVo4E5I:{hover:true},G9TNBDEvu:{hover:true},ifxqapMtt:{hover:true},k1cyDEC_H:{hover:true},lDNrUuK8u:{hover:true},LgtO0Tz4o:{hover:true},polj8VgQo:{hover:true},PV9PrDU2C:{hover:true},qmJAcABt7:{hover:true},trjjtA4MU:{hover:true},v6D0trQON:{hover:true},W9Obyd2pu:{hover:true},XOlOqUxFx:{hover:true},Y9HhhsiTs:{hover:true}};const cycleOrder=[\"lDNrUuK8u\",\"Y9HhhsiTs\",\"A6Z9hPsEz\",\"BDRVo4E5I\",\"W9Obyd2pu\",\"trjjtA4MU\",\"polj8VgQo\",\"k1cyDEC_H\",\"XOlOqUxFx\",\"ifxqapMtt\",\"LgtO0Tz4o\",\"qmJAcABt7\",\"PV9PrDU2C\",\"v6D0trQON\",\"G9TNBDEvu\"];const serializationHash=\"framer-BnJyi\";const variantClassNames={A6Z9hPsEz:\"framer-v-u5jjl2\",BDRVo4E5I:\"framer-v-1r7si5s\",G9TNBDEvu:\"framer-v-11vt13x\",ifxqapMtt:\"framer-v-eenley\",k1cyDEC_H:\"framer-v-15iws1v\",lDNrUuK8u:\"framer-v-1qn0f7z\",LgtO0Tz4o:\"framer-v-1hmnapp\",polj8VgQo:\"framer-v-yf2fzt\",PV9PrDU2C:\"framer-v-1cb9m12\",qmJAcABt7:\"framer-v-xb0agm\",trjjtA4MU:\"framer-v-qpubyr\",v6D0trQON:\"framer-v-x9fyd0\",W9Obyd2pu:\"framer-v-1i008ld\",XOlOqUxFx:\"framer-v-18t1qei\",Y9HhhsiTs:\"framer-v-686w7f\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop - 1) discovery\":\"lDNrUuK8u\",\"desktop - 2) strategy\":\"Y9HhhsiTs\",\"desktop - 3) design\":\"A6Z9hPsEz\",\"desktop - 4) content\":\"BDRVo4E5I\",\"Desktop - 5) launch\":\"W9Obyd2pu\",\"mobile - 2) strategy\":\"qmJAcABt7\",\"mobile - 3) design\":\"PV9PrDU2C\",\"mobile - 4) content\":\"v6D0trQON\",\"mobile - 5) launch\":\"G9TNBDEvu\",\"Mobile - Discovery\":\"polj8VgQo\",\"tablet - 2) strategy\":\"k1cyDEC_H\",\"tablet - 3) design\":\"XOlOqUxFx\",\"tablet - 4) content\":\"ifxqapMtt\",\"tablet - 5) Launch\":\"LgtO0Tz4o\",\"Tablet - discovery + define\":\"trjjtA4MU\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"lDNrUuK8u\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"lDNrUuK8u\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qn0f7z\",className,classNames),\"data-framer-name\":\"Desktop - 1) discovery\",layoutDependency:layoutDependency,layoutId:\"lDNrUuK8u\",ref:refBinding,style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,rotate:0,...style},variants:{\"A6Z9hPsEz-hover\":{rotate:-1},\"BDRVo4E5I-hover\":{rotate:-1},\"G9TNBDEvu-hover\":{rotate:-2},\"ifxqapMtt-hover\":{rotate:-1},\"k1cyDEC_H-hover\":{rotate:-1},\"lDNrUuK8u-hover\":{rotate:-1},\"LgtO0Tz4o-hover\":{rotate:-1},\"polj8VgQo-hover\":{rotate:-2},\"PV9PrDU2C-hover\":{rotate:-2},\"qmJAcABt7-hover\":{rotate:-2},\"trjjtA4MU-hover\":{rotate:-1},\"v6D0trQON-hover\":{rotate:-2},\"W9Obyd2pu-hover\":{rotate:-1},\"XOlOqUxFx-hover\":{rotate:-1},\"Y9HhhsiTs-hover\":{rotate:-1}},...addPropertyOverrides({\"A6Z9hPsEz-hover\":{\"data-framer-name\":undefined},\"BDRVo4E5I-hover\":{\"data-framer-name\":undefined},\"G9TNBDEvu-hover\":{\"data-framer-name\":undefined},\"ifxqapMtt-hover\":{\"data-framer-name\":undefined},\"k1cyDEC_H-hover\":{\"data-framer-name\":undefined},\"lDNrUuK8u-hover\":{\"data-framer-name\":undefined},\"LgtO0Tz4o-hover\":{\"data-framer-name\":undefined},\"polj8VgQo-hover\":{\"data-framer-name\":undefined},\"PV9PrDU2C-hover\":{\"data-framer-name\":undefined},\"qmJAcABt7-hover\":{\"data-framer-name\":undefined},\"trjjtA4MU-hover\":{\"data-framer-name\":undefined},\"v6D0trQON-hover\":{\"data-framer-name\":undefined},\"W9Obyd2pu-hover\":{\"data-framer-name\":undefined},\"XOlOqUxFx-hover\":{\"data-framer-name\":undefined},\"Y9HhhsiTs-hover\":{\"data-framer-name\":undefined},A6Z9hPsEz:{\"data-framer-name\":\"desktop - 3) design\"},BDRVo4E5I:{\"data-framer-name\":\"desktop - 4) content\"},G9TNBDEvu:{\"data-framer-name\":\"mobile - 5) launch\"},ifxqapMtt:{\"data-framer-name\":\"tablet - 4) content\"},k1cyDEC_H:{\"data-framer-name\":\"tablet - 2) strategy\"},LgtO0Tz4o:{\"data-framer-name\":\"tablet - 5) Launch\"},polj8VgQo:{\"data-framer-name\":\"Mobile - Discovery\"},PV9PrDU2C:{\"data-framer-name\":\"mobile - 3) design\"},qmJAcABt7:{\"data-framer-name\":\"mobile - 2) strategy\"},trjjtA4MU:{\"data-framer-name\":\"Tablet - discovery + define\"},v6D0trQON:{\"data-framer-name\":\"mobile - 4) content\"},W9Obyd2pu:{\"data-framer-name\":\"Desktop - 5) launch\"},XOlOqUxFx:{\"data-framer-name\":\"tablet - 3) design\"},Y9HhhsiTs:{\"data-framer-name\":\"desktop - 2) strategy\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-.5),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"},className:\"framer-ed5xo5\",\"data-framer-name\":\"Texture\",layoutDependency:layoutDependency,layoutId:\"pN4ggAwmH\",style:{borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,opacity:.05},...addPropertyOverrides({\"ifxqapMtt-hover\":{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},\"k1cyDEC_H-hover\":{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},\"LgtO0Tz4o-hover\":{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},\"trjjtA4MU-hover\":{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},\"XOlOqUxFx-hover\":{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},G9TNBDEvu:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-9.4719),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},ifxqapMtt:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288.5)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},k1cyDEC_H:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288.5)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},LgtO0Tz4o:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288.5)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},polj8VgQo:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-9.4719),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},PV9PrDU2C:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-9.4719),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},qmJAcABt7:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-9.4719),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},trjjtA4MU:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288.5)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},v6D0trQON:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-9.4719),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}},XOlOqUxFx:{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+((componentViewport?.height||288.5)*.4610051993067593-127.5)),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/wGAHOWhVswEtWkOKTJN6s2CW0.svg\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19emdgk\",\"data-border\":true,\"data-framer-name\":\"White BG\",layoutDependency:layoutDependency,layoutId:\"Ez_M49NzV\",style:{\"--border-bottom-width\":\"4px\",\"--border-color\":\"var(--token-7691355c-4408-449a-86a2-0d41a052714d, rgb(0, 0, 0))\",\"--border-left-width\":\"4px\",\"--border-right-width\":\"4px\",\"--border-style\":\"solid\",\"--border-top-width\":\"4px\",backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20}}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(25+((componentViewport?.height||288)-50-142)/2)),pixelHeight:563,pixelWidth:563,sizes:\"117px\",src:\"https://framerusercontent.com/images/k787D3nuyIExhoeLFmN96s7oO2s.png\",srcSet:\"https://framerusercontent.com/images/k787D3nuyIExhoeLFmN96s7oO2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/k787D3nuyIExhoeLFmN96s7oO2s.png 563w\"},className:\"framer-3xteoc\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"bGBPBnohZ\",style:{borderBottomLeftRadius:12,borderBottomRightRadius:12,borderTopLeftRadius:12,borderTopRightRadius:12},...addPropertyOverrides({\"ifxqapMtt-hover\":{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png\",srcSet:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png 563w\"}},\"k1cyDEC_H-hover\":{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png\",srcSet:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png 563w\"}},\"LgtO0Tz4o-hover\":{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png\",srcSet:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png 563w\"}},\"trjjtA4MU-hover\":{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288)-106-130)/2)),pixelHeight:135,pixelWidth:135,src:\"https://framerusercontent.com/images/Ue05I5ETgzuHokdfXBzQmTDOSc.svg\"}},\"XOlOqUxFx-hover\":{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png\",srcSet:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png 563w\"}},A6Z9hPsEz:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(25+((componentViewport?.height||288)-50-142)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"117px\",src:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png\",srcSet:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png 563w\"}},BDRVo4E5I:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(25+((componentViewport?.height||288)-50-142)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"117px\",src:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png\",srcSet:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png 563w\"}},G9TNBDEvu:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+(((componentViewport?.height||406)-50-356)/2+0+0)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png\",srcSet:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png 563w\"}},ifxqapMtt:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288.5)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png\",srcSet:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png 563w\"}},k1cyDEC_H:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288.5)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png\",srcSet:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png 563w\"}},LgtO0Tz4o:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288.5)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png\",srcSet:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png 563w\"}},polj8VgQo:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+(((componentViewport?.height||406)-50-356)/2+0+0)),pixelHeight:563,pixelWidth:563,sizes:\"122px\",src:\"https://framerusercontent.com/images/k787D3nuyIExhoeLFmN96s7oO2s.png\",srcSet:\"https://framerusercontent.com/images/k787D3nuyIExhoeLFmN96s7oO2s.png?scale-down-to=512 512w,https://framerusercontent.com/images/k787D3nuyIExhoeLFmN96s7oO2s.png 563w\"}},PV9PrDU2C:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+(((componentViewport?.height||406)-50-356)/2+0+0)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png\",srcSet:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png 563w\"}},qmJAcABt7:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+(((componentViewport?.height||406)-50-356)/2+0+0)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png\",srcSet:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png 563w\"}},trjjtA4MU:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288.5)-106-130)/2)),pixelHeight:135,pixelWidth:135,src:\"https://framerusercontent.com/images/Ue05I5ETgzuHokdfXBzQmTDOSc.svg\"}},v6D0trQON:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+25+(((componentViewport?.height||406)-50-356)/2+0+0)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"122px\",src:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png\",srcSet:\"https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png?scale-down-to=512 512w,https://framerusercontent.com/images/QLH1HkUI8SuNx84JS5cDgUBm3E.png 563w\"}},W9Obyd2pu:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(25+((componentViewport?.height||288)-50-142)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"117px\",src:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png\",srcSet:\"https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png?scale-down-to=512 512w,https://framerusercontent.com/images/QC7FPCBdwPCvYfZJYXOSg4ffQ.png 563w\"}},XOlOqUxFx:{background:{alt:\"\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(53+((componentViewport?.height||288.5)-106-130)/2)),pixelHeight:563,pixelWidth:563,positionX:\"center\",positionY:\"center\",sizes:\"119px\",src:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png\",srcSet:\"https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png?scale-down-to=512 512w,https://framerusercontent.com/images/7He7xSB6IVvtS7cSsyf2inaP2VI.png 563w\"}},Y9HhhsiTs:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(25+((componentViewport?.height||288)-50-142)/2)),pixelHeight:563,pixelWidth:563,sizes:\"117px\",src:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png\",srcSet:\"https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png?scale-down-to=512 512w,https://framerusercontent.com/images/hei336cYbgarPNfqhPAHsdE8QJY.png 563w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-171o5al\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"pt3F2yMCU\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"1) Discovery & Define\"})}),className:\"framer-15fcovb\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"WRVybzFbp\",style:{\"--extracted-a0htzi\":\"rgb(10, 10, 10)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A6Z9hPsEz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"3) Design and Visual Identity\"})})},BDRVo4E5I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"4) Content and Creative Assets\"})})},G9TNBDEvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"5) Launch & Support\"})}),fonts:[\"GF;Calistoga-regular\"]},ifxqapMtt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"4) Content & Creative Assets\"})})},k1cyDEC_H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"2) Brand Strategy & Positioning\"})})},LgtO0Tz4o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"5) Launch & Support\"})})},polj8VgQo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"1) Discovery & Define\"})}),fonts:[\"GF;Calistoga-regular\"]},PV9PrDU2C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"3) Design & Identity\"})}),fonts:[\"GF;Calistoga-regular\"]},qmJAcABt7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"2) Strategy & Position\"})}),fonts:[\"GF;Calistoga-regular\"]},v6D0trQON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"4) Content & Assets\"})}),fonts:[\"GF;Calistoga-regular\"]},W9Obyd2pu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"5) Launch and Support\"})})},XOlOqUxFx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"3) Design & Visual Identity\"})})},Y9HhhsiTs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{className:\"framer-styles-preset-ros38q\",\"data-styles-preset\":\"wg8Xs5Yw0\",style:{\"--framer-text-color\":\"var(--extracted-a0htzi, rgb(10, 10, 10))\"},children:\"2) Brand Strategy & Positioning\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:[\"We kick things off with onboarding. You’ll get access to a personalized Notion portal, where you’ll find your project timeline, tasks, and brand questionnaire to help me get to know your business inside and out. This \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"sets the foundation for a clear, aligned process from day one.\"})]})}),className:\"framer-1bb05br\",\"data-framer-name\":\"Description\",fonts:[\"FS;Manrope-medium\",\"FS;Manrope-extrabold\"],layoutDependency:layoutDependency,layoutId:\"lwV7Rl7IG\",style:{\"--extracted-r6o4lv\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{G9TNBDEvu:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},ifxqapMtt:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},k1cyDEC_H:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},LgtO0Tz4o:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},polj8VgQo:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},PV9PrDU2C:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},qmJAcABt7:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},v6D0trQON:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"},XOlOqUxFx:{\"--extracted-r6o4lv\":\"rgb(23, 23, 23)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({A6Z9hPsEz:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:[\"Your visuals are often the \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"first impression\"}),\" people have of your brand. I’ll make sure they are not just visually appealing but \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"purposeful\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent\"}),\". We’ll create a cohesive identity that makes your brand \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"memorable\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"recognizable\"}),\", from your logo and color palette to typography and imagery.\"]})})},BDRVo4E5I:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:[\"Once your visual identity is in place, we’ll \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"bring it to life\"}),\" across your key platforms. Creating \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent, quality content\"}),\" is what helps \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"build trust\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"credibility\"}),\". Whether it’s social media templates, marketing collateral, or packaging design, your brand will look\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\" polished, intentional\"}),\", and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"cohesive\"}),\".\"]})})},G9TNBDEvu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"A successful launch sets the tone for your brand’s future. I’ll make sure you feel \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"confident \"}),\"and fully \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"equipped\"}),\" to roll everything out. If you need continued support, I also offer options to \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"help you keep things consistent and evolving\"}),\" as your business grows.\"]})})},ifxqapMtt:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"Once your visual identity is in place, we’ll \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"bring it to life \"}),\"across your key platforms. Creating \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent, quality content\"}),\" is what helps \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"build trust\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"credibility\"}),\". Whether it’s social media templates, marketing collateral, or packaging design, your brand will look \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"polished\"}),\", \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"intentional\"}),\", and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"cohesive\"}),\".\"]})})},k1cyDEC_H:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"Strategy turns design into a tool for connection. We’ll develop a clear brand strategy and positioning that \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"helps your brand stand out\"}),\" to the right people for the right reasons. This step makes sure your \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"messaging, tone of voice\"}),\", and overall \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"creative direction \"}),\"resonates with your audience.\"]})})},LgtO0Tz4o:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"A successful launch sets the tone for your brand’s future. I’ll make sure you feel \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"confident\"}),\" and fully \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"equipped\"}),\" to roll everything out. If you need continued support, I offer options to \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"help you keep things consistent and evolving \"}),\"as your business grows.\"]})})},polj8VgQo:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"We kick things off with onboarding. You’ll get access to a personalized Notion portal, where you’ll find your project timeline, tasks, and brand questionnaire to help me get to know your business inside and out. This \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"sets the foundation for a clear, aligned process from day one.\"})]})})},PV9PrDU2C:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"Your visuals are often the \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"first impression\"}),\" people have of your brand. I’ll make sure they're \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"visually appealing\"}),\",  \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"purposeful\"}),\" & \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent\"}),\". We’ll create a cohesive identity that makes your brand \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"memorable\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"recognizable\"}),\", from your logo, colors, typography, and imagery.\"]})})},qmJAcABt7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"Strategy turns design into a tool for connection. We’ll develop a clear brand strategy and positioning that \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"helps your brand stand out \"}),\"to the right people for the right reasons. This step makes sure your \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"messaging, tone of voice\"}),\", and overall \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"creative direction \"}),\"resonates with your audience.\"]})})},trjjtA4MU:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:[\"We kick things off with onboarding. You’ll get access to a personalized Notion portal, where you’ll find your project timeline, tasks, and brand questionnaire to help me get to know your business inside and out. This \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"sets the foundation for a clear, aligned process from day one.\"})]})})},v6D0trQON:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"Once your visual identity is in place, we’ll \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"bring it to life\"}),\" and create \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent, quality content, \"}),\"which is what helps build \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"trust\"}),\" & \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"credibility\"}),\". Whether it’s social media templates, marketing collateral, or packaging design, your brand will look \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"polished, intentional,\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"cohesive\"}),\".\"]})})},W9Obyd2pu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:[\"A successful launch sets the tone for your brand’s future. I’ll make sure you feel \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"confident\"}),\" and fully \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"equipped\"}),\" to roll everything out, whether you’re debuting a rebrand or something new. If you need continued support, I offer options to help you keep things \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"evolving\"}),\" as your business grows.\"]})})},XOlOqUxFx:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(23, 23, 23))\"},children:[\"Your visuals are often the\",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\" first impression \"}),\"people have of your brand. I’ll make sure they are not just visually appealing but \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"purposeful\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"consistent\"}),\". We’ll create a cohesive identity that makes your brand \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"memorable\"}),\" and \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"recognizable\"}),\", from your logo and color palette to typography and imagery.\"]})})},Y9HhhsiTs:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1tZWRpdW0=\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:[\"Strategy turns design into a tool for connection. We’ll develop a clear brand strategy and positioning that \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"helps your brand stand out\"}),\" to the right people for the right reasons. This step makes sure your \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"messaging, tone of voice\"}),\", and overall \",/*#__PURE__*/_jsx(motion.span,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1leHRyYWJvbGQ=\",\"--framer-font-weight\":\"800\"},children:\"creative direction\"}),\" resonates with your audience.\"]})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BnJyi.framer-oxd94g, .framer-BnJyi .framer-oxd94g { display: block; }\",\".framer-BnJyi.framer-1qn0f7z { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; overflow: visible; padding: 25px 40px 25px 40px; position: relative; width: min-content; }\",\".framer-BnJyi .framer-ed5xo5 { flex: none; gap: 10px; height: 254px; overflow: hidden; position: absolute; right: -9px; top: 0px; width: 949px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-BnJyi .framer-19emdgk { flex: none; gap: 10px; height: 261px; left: 0px; overflow: hidden; position: absolute; top: calc(46.18055555555558% - 261px / 2); width: 949px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-BnJyi .framer-3xteoc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 142px; justify-content: center; overflow: hidden; padding: 20px; position: relative; width: 117px; will-change: var(--framer-will-change-override, transform); }\",\".framer-BnJyi .framer-171o5al { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 238px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 728px; }\",\".framer-BnJyi .framer-15fcovb { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 455px; word-break: break-word; word-wrap: break-word; }\",\".framer-BnJyi .framer-1bb05br { flex: none; height: 143px; position: relative; white-space: pre-wrap; width: 687px; word-break: break-word; word-wrap: break-word; }\",\".framer-BnJyi.framer-v-686w7f .framer-ed5xo5, .framer-BnJyi.framer-v-u5jjl2 .framer-ed5xo5, .framer-BnJyi.framer-v-1r7si5s .framer-ed5xo5, .framer-BnJyi.framer-v-1i008ld .framer-ed5xo5 { height: 261px; }\",\".framer-BnJyi.framer-v-686w7f .framer-3xteoc { flex-direction: row; padding: 0px; }\",\".framer-BnJyi.framer-v-686w7f .framer-1bb05br { width: 665px; }\",\".framer-BnJyi.framer-v-u5jjl2.framer-1qn0f7z, .framer-BnJyi.framer-v-1r7si5s.framer-1qn0f7z, .framer-BnJyi.framer-v-1i008ld.framer-1qn0f7z { height: 288px; width: 952px; }\",\".framer-BnJyi.framer-v-u5jjl2 .framer-1bb05br, .framer-BnJyi.framer-v-1r7si5s .framer-1bb05br { width: 699px; }\",\".framer-BnJyi.framer-v-1i008ld .framer-15fcovb { order: 0; }\",\".framer-BnJyi.framer-v-1i008ld .framer-1bb05br { order: 1; width: 699px; }\",\".framer-BnJyi.framer-v-qpubyr.framer-1qn0f7z, .framer-BnJyi.framer-v-15iws1v.framer-1qn0f7z, .framer-BnJyi.framer-v-18t1qei.framer-1qn0f7z, .framer-BnJyi.framer-v-eenley.framer-1qn0f7z, .framer-BnJyi.framer-v-1hmnapp.framer-1qn0f7z { gap: 32px; padding: 53px 32px 53px 32px; }\",\".framer-BnJyi.framer-v-qpubyr .framer-ed5xo5, .framer-BnJyi.framer-v-15iws1v .framer-ed5xo5, .framer-BnJyi.framer-v-18t1qei .framer-ed5xo5, .framer-BnJyi.framer-v-eenley .framer-ed5xo5 { height: 255px; left: calc(49.93084370677734% - 715.7389243502147px / 2); order: 2; right: unset; top: calc(46.10051993067593% - 255px / 2); width: 716px; z-index: 0; }\",\".framer-BnJyi.framer-v-qpubyr .framer-19emdgk, .framer-BnJyi.framer-v-15iws1v .framer-19emdgk, .framer-BnJyi.framer-v-18t1qei .framer-19emdgk, .framer-BnJyi.framer-v-eenley .framer-19emdgk, .framer-BnJyi.framer-v-1hmnapp .framer-19emdgk { height: 253px; left: calc(49.79253112033197% - 716.2387420348168px / 2); order: 0; top: calc(46.10051993067593% - 253.09701492537314px / 2); width: 716px; z-index: -1; }\",\".framer-BnJyi.framer-v-qpubyr .framer-3xteoc, .framer-BnJyi.framer-v-15iws1v .framer-3xteoc, .framer-BnJyi.framer-v-18t1qei .framer-3xteoc, .framer-BnJyi.framer-v-eenley .framer-3xteoc, .framer-BnJyi.framer-v-1hmnapp .framer-3xteoc { align-content: flex-end; align-items: flex-end; flex-direction: row; height: 130px; order: 1; padding: 0px 0px 50px 0px; width: 119px; }\",\".framer-BnJyi.framer-v-qpubyr .framer-171o5al, .framer-BnJyi.framer-v-15iws1v .framer-171o5al, .framer-BnJyi.framer-v-18t1qei .framer-171o5al, .framer-BnJyi.framer-v-eenley .framer-171o5al, .framer-BnJyi.framer-v-1hmnapp .framer-171o5al { height: min-content; order: 3; width: 508px; }\",\".framer-BnJyi.framer-v-qpubyr .framer-15fcovb { width: 423px; }\",\".framer-BnJyi.framer-v-qpubyr .framer-1bb05br, .framer-BnJyi.framer-v-15iws1v .framer-1bb05br, .framer-BnJyi.framer-v-18t1qei .framer-1bb05br, .framer-BnJyi.framer-v-eenley .framer-1bb05br, .framer-BnJyi.framer-v-1hmnapp .framer-1bb05br { height: 136px; width: 470px; }\",\".framer-BnJyi.framer-v-yf2fzt.framer-1qn0f7z, .framer-BnJyi.framer-v-xb0agm.framer-1qn0f7z, .framer-BnJyi.framer-v-1cb9m12.framer-1qn0f7z, .framer-BnJyi.framer-v-x9fyd0.framer-1qn0f7z, .framer-BnJyi.framer-v-11vt13x.framer-1qn0f7z { flex-direction: column; width: 379px; }\",\".framer-BnJyi.framer-v-yf2fzt .framer-ed5xo5, .framer-BnJyi.framer-v-xb0agm .framer-ed5xo5, .framer-BnJyi.framer-v-1cb9m12 .framer-ed5xo5, .framer-BnJyi.framer-v-x9fyd0 .framer-ed5xo5, .framer-BnJyi.framer-v-11vt13x .framer-ed5xo5 { height: 414px; left: calc(50.92348284960424% - 341px / 2); order: 3; right: unset; top: -9px; width: 341px; z-index: 0; }\",\".framer-BnJyi.framer-v-yf2fzt .framer-19emdgk, .framer-BnJyi.framer-v-xb0agm .framer-19emdgk, .framer-BnJyi.framer-v-1cb9m12 .framer-19emdgk, .framer-BnJyi.framer-v-x9fyd0 .framer-19emdgk, .framer-BnJyi.framer-v-11vt13x .framer-19emdgk { height: 412px; left: calc(50.92348284960424% - 343px / 2); order: 2; top: -10px; width: 343px; z-index: -1; }\",\".framer-BnJyi.framer-v-yf2fzt .framer-3xteoc, .framer-BnJyi.framer-v-xb0agm .framer-3xteoc, .framer-BnJyi.framer-v-1cb9m12 .framer-3xteoc, .framer-BnJyi.framer-v-x9fyd0 .framer-3xteoc, .framer-BnJyi.framer-v-11vt13x .framer-3xteoc { align-content: flex-end; align-items: flex-end; flex-direction: row; height: 98px; order: 0; padding: 0px 0px 50px 0px; width: 122px; }\",\".framer-BnJyi.framer-v-yf2fzt .framer-171o5al, .framer-BnJyi.framer-v-xb0agm .framer-171o5al, .framer-BnJyi.framer-v-1cb9m12 .framer-171o5al, .framer-BnJyi.framer-v-x9fyd0 .framer-171o5al, .framer-BnJyi.framer-v-11vt13x .framer-171o5al { height: 231px; order: 1; width: 256px; }\",\".framer-BnJyi.framer-v-yf2fzt .framer-15fcovb, .framer-BnJyi.framer-v-xb0agm .framer-15fcovb { width: 309px; }\",\".framer-BnJyi.framer-v-yf2fzt .framer-1bb05br, .framer-BnJyi.framer-v-xb0agm .framer-1bb05br, .framer-BnJyi.framer-v-1cb9m12 .framer-1bb05br, .framer-BnJyi.framer-v-x9fyd0 .framer-1bb05br, .framer-BnJyi.framer-v-11vt13x .framer-1bb05br { height: 194px; width: 256px; }\",\".framer-BnJyi.framer-v-15iws1v .framer-15fcovb, .framer-BnJyi.framer-v-18t1qei .framer-15fcovb, .framer-BnJyi.framer-v-eenley .framer-15fcovb, .framer-BnJyi.framer-v-1hmnapp .framer-15fcovb { width: 473px; }\",\".framer-BnJyi.framer-v-1hmnapp .framer-ed5xo5 { height: 255px; left: calc(49.93084370677734% - 715.7389243502147px / 2); order: 2; right: unset; top: calc(46.10051993067593% - 255px / 2); width: 716px; z-index: -1; }\",\".framer-BnJyi.framer-v-1cb9m12 .framer-15fcovb, .framer-BnJyi.framer-v-x9fyd0 .framer-15fcovb, .framer-BnJyi.framer-v-11vt13x .framer-15fcovb { width: 255px; }\",\".framer-BnJyi.framer-v-qpubyr.hover .framer-ed5xo5, .framer-BnJyi.framer-v-15iws1v.hover .framer-ed5xo5, .framer-BnJyi.framer-v-18t1qei.hover .framer-ed5xo5, .framer-BnJyi.framer-v-eenley.hover .framer-ed5xo5, .framer-BnJyi.framer-v-1hmnapp.hover .framer-ed5xo5, .framer-BnJyi.framer-v-yf2fzt.hover .framer-ed5xo5, .framer-BnJyi.framer-v-xb0agm.hover .framer-ed5xo5, .framer-BnJyi.framer-v-1cb9m12.hover .framer-ed5xo5, .framer-BnJyi.framer-v-x9fyd0.hover .framer-ed5xo5, .framer-BnJyi.framer-v-11vt13x.hover .framer-ed5xo5 { right: unset; }\",...sharedStyle.css,'.framer-BnJyi[data-border=\"true\"]::after, .framer-BnJyi [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 288\n * @framerIntrinsicWidth 952\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"Y9HhhsiTs\":{\"layout\":[\"auto\",\"auto\"]},\"A6Z9hPsEz\":{\"layout\":[\"fixed\",\"fixed\"]},\"BDRVo4E5I\":{\"layout\":[\"fixed\",\"fixed\"]},\"W9Obyd2pu\":{\"layout\":[\"fixed\",\"fixed\"]},\"trjjtA4MU\":{\"layout\":[\"auto\",\"auto\"]},\"polj8VgQo\":{\"layout\":[\"fixed\",\"auto\"]},\"k1cyDEC_H\":{\"layout\":[\"auto\",\"auto\"]},\"XOlOqUxFx\":{\"layout\":[\"auto\",\"auto\"]},\"ifxqapMtt\":{\"layout\":[\"auto\",\"auto\"]},\"LgtO0Tz4o\":{\"layout\":[\"auto\",\"auto\"]},\"qmJAcABt7\":{\"layout\":[\"fixed\",\"auto\"]},\"PV9PrDU2C\":{\"layout\":[\"fixed\",\"auto\"]},\"v6D0trQON\":{\"layout\":[\"fixed\",\"auto\"]},\"G9TNBDEvu\":{\"layout\":[\"fixed\",\"auto\"]},\"Dfcei2FsX\":{\"layout\":[\"auto\",\"auto\"]},\"uTGalhkiG\":{\"layout\":[\"auto\",\"auto\"]},\"WXOOTRO5J\":{\"layout\":[\"fixed\",\"fixed\"]},\"rV7bx6Ikk\":{\"layout\":[\"fixed\",\"fixed\"]},\"YxeKSICzC\":{\"layout\":[\"fixed\",\"fixed\"]},\"qscO_rcH_\":{\"layout\":[\"auto\",\"auto\"]},\"jmAQf_0Gs\":{\"layout\":[\"auto\",\"auto\"]},\"lyUCWLYjL\":{\"layout\":[\"auto\",\"auto\"]},\"zp1VqQFiO\":{\"layout\":[\"auto\",\"auto\"]},\"dcbQGaKCB\":{\"layout\":[\"auto\",\"auto\"]},\"ARSEEN7ap\":{\"layout\":[\"fixed\",\"auto\"]},\"plt1gRAcd\":{\"layout\":[\"fixed\",\"auto\"]},\"XvYNGzlm1\":{\"layout\":[\"fixed\",\"auto\"]},\"k569JFbBV\":{\"layout\":[\"fixed\",\"auto\"]},\"XDC0g5QGl\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerb2V8LTOED=withCSS(Component,css,\"framer-BnJyi\");export default Framerb2V8LTOED;Framerb2V8LTOED.displayName=\"discovery and define\";Framerb2V8LTOED.defaultProps={height:288,width:952};addPropertyControls(Framerb2V8LTOED,{variant:{options:[\"lDNrUuK8u\",\"Y9HhhsiTs\",\"A6Z9hPsEz\",\"BDRVo4E5I\",\"W9Obyd2pu\",\"trjjtA4MU\",\"polj8VgQo\",\"k1cyDEC_H\",\"XOlOqUxFx\",\"ifxqapMtt\",\"LgtO0Tz4o\",\"qmJAcABt7\",\"PV9PrDU2C\",\"v6D0trQON\",\"G9TNBDEvu\"],optionTitles:[\"Desktop - 1) discovery\",\"desktop - 2) strategy\",\"desktop - 3) design\",\"desktop - 4) content\",\"Desktop - 5) launch\",\"Tablet - discovery + define\",\"Mobile - Discovery\",\"tablet - 2) strategy\",\"tablet - 3) design\",\"tablet - 4) content\",\"tablet - 5) Launch\",\"mobile - 2) strategy\",\"mobile - 3) design\",\"mobile - 4) content\",\"mobile - 5) launch\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerb2V8LTOED,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Calistoga\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/calistoga/v16/6NUU8F2OJg6MeR7l4e0vscYAwdRZfw.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/BNWG6MUI4RTC6WEND2VPDH4MHMIVU3XZ/R5YXY5FMVG6PXU36GNEEA24MIPMEPGSM/CIM4KQCLZSMMLWPVH25IDDSTY4ENPHEY.woff2\",weight:\"500\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7EWHG4AMROQSXDCQTDPGBVASATB7CED2/TJSQTK5FHJ2MYKML5IXF2G6YTGFJLTYL/K4ZMLVLHYIFVTTTWGVOTVGOFUUX7NVGI.woff2\",weight:\"800\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerb2V8LTOED\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Y9HhhsiTs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"A6Z9hPsEz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"BDRVo4E5I\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"W9Obyd2pu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"trjjtA4MU\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"polj8VgQo\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k1cyDEC_H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"XOlOqUxFx\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ifxqapMtt\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"LgtO0Tz4o\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"qmJAcABt7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PV9PrDU2C\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"v6D0trQON\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G9TNBDEvu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Dfcei2FsX\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uTGalhkiG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"WXOOTRO5J\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rV7bx6Ikk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YxeKSICzC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"qscO_rcH_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"jmAQf_0Gs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"lyUCWLYjL\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"zp1VqQFiO\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"dcbQGaKCB\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ARSEEN7ap\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"plt1gRAcd\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XvYNGzlm1\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"k569JFbBV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XDC0g5QGl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"288\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"952\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./b2V8LTOED.map","// Generated by Framer (4d21961)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const cycleOrder=[\"y_cFFDosK\",\"hteoHFbiy\"];const serializationHash=\"framer-n2C5N\";const variantClassNames={hteoHFbiy:\"framer-v-1ocouwg\",y_cFFDosK:\"framer-v-jlblxp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"hteoHFbiy\",Default:\"y_cFFDosK\"};const getProps=({height,id,position,reviewerName,reviewText,width,...props})=>{return{...props,DyU9GjKot:reviewerName??props.DyU9GjKot??\"James Reviwer\",PbUPX35ej:position??props.PbUPX35ej??\"CEO at Facebook\",variant:humanReadableVariantMap[props.variant]??props.variant??\"y_cFFDosK\",vyx3P1YTh:reviewText??props.vyx3P1YTh??\"SleekFolio is perfect for my portfolio. Its modern design beautifully showcases my work. User-friendly customization and responsiveness ensure seamless experiences on any device.\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,vyx3P1YTh,DyU9GjKot,PbUPX35ej,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"y_cFFDosK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jlblxp\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"y_cFFDosK\",ref:refBinding,style:{...style},...addPropertyOverrides({hteoHFbiy:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h3,{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"140%\",\"--framer-text-color\":\"var(--extracted-a0htzi, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:\"SleekFolio is perfect for my portfolio. Its modern design beautifully showcases my work. User-friendly customization and responsiveness ensure seamless experiences on any device.\"})}),className:\"framer-1521pnt\",\"data-framer-name\":\"Review Content\",fonts:[\"FS;Space Grotesk-semibold\"],layoutDependency:layoutDependency,layoutId:\"MWLDzQooF\",style:{\"--extracted-a0htzi\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\",\"--framer-paragraph-spacing\":\"0px\"},text:vyx3P1YTh,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1c4heur\",\"data-framer-name\":\"Reviewer\",layoutDependency:layoutDependency,layoutId:\"qO4fhBHZf\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2nyxl7\",\"data-framer-name\":\"Texts\",layoutDependency:layoutDependency,layoutId:\"UINFwbOjz\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25)))\"},children:\"James Reviwer\"})}),className:\"framer-85utbb\",\"data-framer-name\":\"Name\",fonts:[\"GF;Rubik-600\"],layoutDependency:layoutDependency,layoutId:\"T0Tz8vHLC\",style:{\"--extracted-1eung3n\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\",\"--framer-paragraph-spacing\":\"0px\"},text:DyU9GjKot,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(66, 198, 255)))\"},children:\"CEO at Facebook\"})}),className:\"framer-o7k52w\",\"data-framer-name\":\"Position\",fonts:[\"GF;Rubik-600\"],layoutDependency:layoutDependency,layoutId:\"PpryKeTvs\",style:{\"--extracted-1lwpl3i\":\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(66, 198, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:PbUPX35ej,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({hteoHFbiy:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7UnViaWstNjAw\",\"--framer-font-family\":'\"Rubik\", \"Rubik Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(66, 198, 255)))\"},children:\"CEO at Facebook\"})})}},baseVariant,gestureVariant)})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-n2C5N.framer-1l5eoyw, .framer-n2C5N .framer-1l5eoyw { display: block; }\",\".framer-n2C5N.framer-jlblxp { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; height: 306px; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 672px; }\",\".framer-n2C5N .framer-1521pnt { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-n2C5N .framer-1c4heur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-n2C5N .framer-2nyxl7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-n2C5N .framer-85utbb, .framer-n2C5N .framer-o7k52w { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-n2C5N .framer-1c4heur, .framer-n2C5N .framer-2nyxl7 { gap: 0px; } .framer-n2C5N .framer-1c4heur > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-n2C5N .framer-1c4heur > :first-child { margin-left: 0px; } .framer-n2C5N .framer-1c4heur > :last-child { margin-right: 0px; } .framer-n2C5N .framer-2nyxl7 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-n2C5N .framer-2nyxl7 > :first-child { margin-top: 0px; } .framer-n2C5N .framer-2nyxl7 > :last-child { margin-bottom: 0px; } }\",\".framer-n2C5N.framer-v-1ocouwg.framer-jlblxp { height: 346px; width: 214px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 306\n * @framerIntrinsicWidth 672\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"hteoHFbiy\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"vyx3P1YTh\":\"reviewText\",\"DyU9GjKot\":\"reviewerName\",\"PbUPX35ej\":\"position\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerHZKOF3t3K=withCSS(Component,css,\"framer-n2C5N\");export default FramerHZKOF3t3K;FramerHZKOF3t3K.displayName=\"Review\";FramerHZKOF3t3K.defaultProps={height:306,width:672};addPropertyControls(FramerHZKOF3t3K,{variant:{options:[\"y_cFFDosK\",\"hteoHFbiy\"],optionTitles:[\"Default\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},vyx3P1YTh:{defaultValue:\"SleekFolio is perfect for my portfolio. Its modern design beautifully showcases my work. User-friendly customization and responsiveness ensure seamless experiences on any device.\",displayTextArea:true,title:\"Review Text\",type:ControlType.String},DyU9GjKot:{defaultValue:\"James Reviwer\",displayTextArea:false,title:\"Reviewer Name\",type:ControlType.String},PbUPX35ej:{defaultValue:\"CEO at Facebook\",displayTextArea:false,title:\"Position\",type:ControlType.String}});addFonts(FramerHZKOF3t3K,[{explicitInter:true,fonts:[{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FOIKAJFLDFRPJ452NHBMMHCNDL4FUUBB/5AC3Y6FTG5H7IECKNZVIR7XI64O5YW5S/OB3CIWMGQGGYEGXRXPOVBXWAH4INE6T4.woff2\",weight:\"600\"},{family:\"Rubik\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/rubik/v28/iJWZBXyIfDnIV5PNhY1KTN7Z-Yh-2Y-1VU80V4bVkA.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHZKOF3t3K\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"hteoHFbiy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicHeight\":\"306\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"vyx3P1YTh\\\":\\\"reviewText\\\",\\\"DyU9GjKot\\\":\\\"reviewerName\\\",\\\"PbUPX35ej\\\":\\\"position\\\"}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"672\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./HZKOF3t3K.map","// Generated by Framer (f2c0341)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/v6ND40xS2HbptSxU6ecP/RKNayrmrHqu0Jyqv087u/Bc4ICXsiW.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/4GaA2uiXy3GOlflJdxj0/TxZncSrtTpZd34gPusB7/CTLFSihBl.js\";const PhosphorFonts=getFonts(Phosphor);const cycleOrder=[\"vIdLKIkWC\",\"h1lgpq9d_\"];const serializationHash=\"framer-2RkOy\";const variantClassNames={h1lgpq9d_:\"framer-v-kmd5ux\",vIdLKIkWC:\"framer-v-1thjcsp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Variant 2\":\"h1lgpq9d_\",Default:\"vIdLKIkWC\"};const getProps=({height,icon,id,statName,statValue,width,...props})=>{return{...props,HW8msjrQx:icon??props.HW8msjrQx??\"check circle\",SWOjpUxQ0:statName??props.SWOjpUxQ0??\"Design Experience\",variant:humanReadableVariantMap[props.variant]??props.variant??\"vIdLKIkWC\",X4xSbGXfQ:statValue??props.X4xSbGXfQ??\"Over 7+ graphic design\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,SWOjpUxQ0,X4xSbGXfQ,HW8msjrQx,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"vIdLKIkWC\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1thjcsp\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"vIdLKIkWC\",ref:refBinding,style:{...style},...addPropertyOverrides({h1lgpq9d_:{\"data-framer-name\":\"Variant 2\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-pzcg72\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"VCKm46QSI\",style:{backgroundColor:\"rgba(66, 198, 255, 0.25)\",borderBottomLeftRadius:28,borderBottomRightRadius:28,borderTopLeftRadius:28,borderTopRightRadius:28},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bwqpsl-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"faSX9Et5N-container\",name:\"Icon\",nodeId:\"faSX9Et5N\",rendersWithMotion:true,scopeId:\"OhO6xx60Y\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(102, 208, 250))\",height:\"100%\",iconSearch:HW8msjrQx,iconSelection:\"House\",id:\"faSX9Et5N\",layoutId:\"faSX9Et5N\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1svua2m\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"HpYnUnpRh\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dfocdb\",\"data-styles-preset\":\"CTLFSihBl\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 82))\"},children:\"Design Experience\"})}),className:\"framer-acs902\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FKyM8OZZa\",style:{\"--extracted-r6o4lv\":\"rgb(82, 82, 82)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:SWOjpUxQ0,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h1lgpq9d_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dfocdb\",\"data-styles-preset\":\"CTLFSihBl\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(82, 82, 82))\"},children:\"Design Experience\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1ffl8lf\",\"data-styles-preset\":\"Bc4ICXsiW\",children:\"Over 7+ graphic design\"})}),className:\"framer-lo5zsc\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"te5m2Ppae\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:X4xSbGXfQ,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({h1lgpq9d_:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-1ffl8lf\",\"data-styles-preset\":\"Bc4ICXsiW\",style:{\"--framer-text-alignment\":\"center\"},children:\"Over 7+ graphic design\"})})}},baseVariant,gestureVariant)})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-2RkOy.framer-zjd8v3, .framer-2RkOy .framer-zjd8v3 { display: block; }\",\".framer-2RkOy.framer-1thjcsp { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-2RkOy .framer-pzcg72 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-2RkOy .framer-bwqpsl-container { flex: none; height: 24px; position: relative; width: 24px; }\",\".framer-2RkOy .framer-1svua2m { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: min-content; }\",\".framer-2RkOy .framer-acs902, .framer-2RkOy .framer-lo5zsc { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-2RkOy.framer-v-kmd5ux.framer-1thjcsp { flex-direction: column; }\",\".framer-2RkOy.framer-v-kmd5ux .framer-1svua2m { align-content: center; align-items: center; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 47\n * @framerIntrinsicWidth 281.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"h1lgpq9d_\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"SWOjpUxQ0\":\"statName\",\"X4xSbGXfQ\":\"statValue\",\"HW8msjrQx\":\"icon\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerOhO6xx60Y=withCSS(Component,css,\"framer-2RkOy\");export default FramerOhO6xx60Y;FramerOhO6xx60Y.displayName=\"Statistic\";FramerOhO6xx60Y.defaultProps={height:47,width:281.5};addPropertyControls(FramerOhO6xx60Y,{variant:{options:[\"vIdLKIkWC\",\"h1lgpq9d_\"],optionTitles:[\"Default\",\"Variant 2\"],title:\"Variant\",type:ControlType.Enum},SWOjpUxQ0:{defaultValue:\"Design Experience\",displayTextArea:false,placeholder:\"\",title:\"Stat Name\",type:ControlType.String},X4xSbGXfQ:{defaultValue:\"Over 7+ graphic design\",displayTextArea:false,title:\"Stat Value\",type:ControlType.String},HW8msjrQx:{defaultValue:\"check circle\",placeholder:\"Menu, Wifi, Box…\",title:\"Icon\",type:ControlType.String}});addFonts(FramerOhO6xx60Y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOhO6xx60Y\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"281.5\",\"framerIntrinsicHeight\":\"47\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"SWOjpUxQ0\\\":\\\"statName\\\",\\\"X4xSbGXfQ\\\":\\\"statValue\\\",\\\"HW8msjrQx\\\":\\\"icon\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"h1lgpq9d_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (abd2353)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{cx,motion,withCSS,withV1StrokeFX}from\"framer\";import*as React from\"react\";import{forwardRef}from\"react\";const MotionPathWithV1StrokeFX=withV1StrokeFX(motion.path);const Base=/*#__PURE__*/forwardRef(function(props,ref){return /*#__PURE__*/_jsx(\"svg\",{...props,ref:ref,children:props.children});});const MotionSVG=motion(Base);const SVG=/*#__PURE__*/forwardRef((props,ref)=>{const{animated,layoutId,children,...rest}=props;return animated?/*#__PURE__*/_jsx(MotionSVG,{...rest,layoutId:layoutId,ref:ref,children:children}):/*#__PURE__*/_jsx(\"svg\",{...rest,ref:ref,children:children});});const transition={delay:0,duration:.6,ease:[0,0,1,1],type:\"tween\"};const getProps=({height,id,width,...props})=>{return{...props};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{style,className,layoutId,variant,...restProps}=getProps(props);return /*#__PURE__*/_jsxs(SVG,{...restProps,\"aria-label\":\"Vector\",className:cx(\"framer-45Od8\",className),layoutId:layoutId,ref:ref,role:\"presentation\",style:{...style},viewBox:\"0 0 45 50\",children:[/*#__PURE__*/_jsx(MotionPathWithV1StrokeFX,{d:\"M 27.365 22.5 C 27.365 22.5 7.13 14.589 0 0\",fill:\"transparent\",height:\"22.500000000000004px\",id:\"kAIX7JZcR\",pathLengthTransition:transition,stroke:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\",strokeDasharray:\"0\",strokeEffectGap:.5,strokeEffectLength:1,strokeEffectLoop:true,strokeEffectLoopType:\"continuous\",strokeEffectOffset:.5,strokeEffectTotalLength:36.12598419189453,strokeLinecap:\"round\",strokeLinejoin:\"miter\",strokeMiterlimit:4,strokeWidth:6,transform:\"translate(7.081 10.689)\",width:\"27.364864864864863px\"}),/*#__PURE__*/_jsx(MotionPathWithV1StrokeFX,{d:\"M 18.243 14.595 C 18.243 14.595 4.753 9.463 0 0\",fill:\"transparent\",height:\"14.594594594594867px\",id:\"cMG5JLUE8\",pathLengthTransition:transition,stroke:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\",strokeDasharray:\"0\",strokeEffectGap:.5,strokeEffectLength:1,strokeEffectLoop:true,strokeEffectLoopType:\"continuous\",strokeEffectOffset:.5,strokeEffectTotalLength:23.81951904296875,strokeLinecap:\"round\",strokeLinejoin:\"miter\",strokeMiterlimit:4,strokeWidth:6,transform:\"translate(9.203 35.12) rotate(-27 9.122 7.297)\",width:\"18.243243243243164px\"}),/*#__PURE__*/_jsx(MotionPathWithV1StrokeFX,{d:\"M 7.297 15.811 C 7.297 15.811 0 10.56 0 0\",fill:\"transparent\",height:\"15.810810810810812px\",id:\"hNirYURg9\",pathLengthTransition:transition,stroke:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\",strokeDasharray:\"0\",strokeEffectGap:.5,strokeEffectLength:1,strokeEffectLoop:true,strokeEffectLoopType:\"continuous\",strokeEffectOffset:.5,strokeEffectTotalLength:18.00322914123535,strokeLinecap:\"round\",strokeLinejoin:\"miter\",strokeMiterlimit:4,strokeWidth:6,transform:\"translate(31.446 5.649)\",width:\"7.297297297297472px\"})]});});const css=[\".framer-45Od8 { aspect-ratio: 0.9; display: block; width: 45px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicWidth 45\n * @framerIntrinsicHeight 50\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerImmutableVariables true\n * @framerVector {\"name\":\"Vector\",\"color\":{\"type\":\"static\",\"value\":\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\"},\"set\":{\"localId\":\"vectorSet/XiKx_KMZ8\",\"id\":\"XiKx_KMZ8\",\"moduleId\":\"5PAtD8Dm3GlaraiE12TE\"}}\n */const Icon=withCSS(Component,css,\"framer-45Od8\");export default Icon;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"50\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerImmutableVariables\":\"true\",\"framerVector\":\"{\\\"name\\\":\\\"Vector\\\",\\\"color\\\":{\\\"type\\\":\\\"static\\\",\\\"value\\\":\\\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\\\"},\\\"set\\\":{\\\"localId\\\":\\\"vectorSet/XiKx_KMZ8\\\",\\\"id\\\":\\\"XiKx_KMZ8\\\",\\\"moduleId\\\":\\\"5PAtD8Dm3GlaraiE12TE\\\"}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"45\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (5012657)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{cx,motion,withCSS,withV1StrokeFX}from\"framer\";import*as React from\"react\";import{forwardRef}from\"react\";const MotionPathWithV1StrokeFX=withV1StrokeFX(motion.path);const Base=/*#__PURE__*/forwardRef(function(props,ref){return /*#__PURE__*/_jsx(\"svg\",{...props,ref:ref,children:props.children});});const MotionSVG=motion(Base);const SVG=/*#__PURE__*/forwardRef((props,ref)=>{const{animated,layoutId,children,...rest}=props;return animated?/*#__PURE__*/_jsx(MotionSVG,{...rest,layoutId:layoutId,ref:ref,children:children}):/*#__PURE__*/_jsx(\"svg\",{...rest,ref:ref,children:children});});const transition={delay:0,duration:.6,ease:[0,0,1,1],type:\"tween\"};const getProps=({height,id,width,...props})=>{return{...props};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{style,className,layoutId,variant,...restProps}=getProps(props);return /*#__PURE__*/_jsxs(SVG,{...restProps,className:cx(\"framer-38G6d\",className),layoutId:layoutId,ref:ref,role:\"presentation\",style:{...style},viewBox:\"0 0 45 50\",children:[/*#__PURE__*/_jsx(MotionPathWithV1StrokeFX,{d:\"M 27.365 22.5 C 27.365 22.5 7.13 14.589 0 0\",fill:\"transparent\",height:\"22.500000000000004px\",id:\"PfeKszxfc\",pathLengthTransition:transition,stroke:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\",strokeDasharray:\"0\",strokeEffectGap:.5,strokeEffectLength:1,strokeEffectLoop:true,strokeEffectLoopType:\"continuous\",strokeEffectOffset:.5,strokeEffectTotalLength:36.12598419189453,strokeLinecap:\"round\",strokeLinejoin:\"miter\",strokeMiterlimit:4,strokeWidth:6,transform:\"translate(7.081 10.689)\",width:\"27.364864864864863px\"}),/*#__PURE__*/_jsx(MotionPathWithV1StrokeFX,{d:\"M 18.243 14.595 C 18.243 14.595 4.753 9.463 0 0\",fill:\"transparent\",height:\"14.594594594594867px\",id:\"Uf5vNgFTi\",pathLengthTransition:transition,stroke:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\",strokeDasharray:\"0\",strokeEffectGap:.5,strokeEffectLength:1,strokeEffectLoop:true,strokeEffectLoopType:\"continuous\",strokeEffectOffset:.5,strokeEffectTotalLength:23.81951904296875,strokeLinecap:\"round\",strokeLinejoin:\"miter\",strokeMiterlimit:4,strokeWidth:6,transform:\"translate(9.203 35.12) rotate(-27 9.122 7.297)\",width:\"18.243243243243164px\"}),/*#__PURE__*/_jsx(MotionPathWithV1StrokeFX,{d:\"M 7.297 15.811 C 7.297 15.811 0 10.56 0 0\",fill:\"transparent\",height:\"15.810810810810812px\",id:\"DJwGJLdQH\",pathLengthTransition:transition,stroke:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\",strokeDasharray:\"0\",strokeEffectGap:.5,strokeEffectLength:1,strokeEffectLoop:true,strokeEffectLoopType:\"continuous\",strokeEffectOffset:.5,strokeEffectTotalLength:18.00322914123535,strokeLinecap:\"round\",strokeLinejoin:\"miter\",strokeMiterlimit:4,strokeWidth:6,transform:\"translate(31.446 5.649)\",width:\"7.297297297297472px\"})]});});const css=[\".framer-38G6d { aspect-ratio: 0.9; display: block; width: 45px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicWidth 45\n * @framerIntrinsicHeight 50\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n * @framerImmutableVariables true\n * @framerVector {\"name\":\"Vector\",\"color\":{\"type\":\"static\",\"value\":\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\"},\"set\":{\"localId\":\"vectorSet/pMPSDeOCg\",\"id\":\"pMPSDeOCg\",\"moduleId\":\"m3VbGS5annPGBLlmkhWY\"}}\n */const Icon=withCSS(Component,css,\"framer-38G6d\");export default Icon;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Icon\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"45\",\"framerContractVersion\":\"1\",\"framerVector\":\"{\\\"name\\\":\\\"Vector\\\",\\\"color\\\":{\\\"type\\\":\\\"static\\\",\\\"value\\\":\\\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\\\"},\\\"set\\\":{\\\"localId\\\":\\\"vectorSet/pMPSDeOCg\\\",\\\"id\\\":\\\"pMPSDeOCg\\\",\\\"moduleId\\\":\\\"m3VbGS5annPGBLlmkhWY\\\"}}\",\"framerIntrinsicHeight\":\"50\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}","// Generated by Framer (b012016)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleCode,useLocaleInfo,useMetadata,useQueryData,useRouteElementId,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/qacJMtbrGDTpaTF4eVfx/Ticker.js\";import ConvertKit from\"https://framerusercontent.com/modules/O4nTVQCXY50llpKf7Pq5/jdU3ZspO1AnLl6ucDsHw/Input_ConvertKit.js\";import{Icon as Phosphor1}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import ChromaBackground from\"https://framerusercontent.com/modules/xaswehZWsdrg2vflyKZT/Waqb0D1mlp7yLK081MAZ/ChromaBGs.js\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/z9LFDX6PKECtSqS68OWD/SlideShow.js\";import DiscoveryAndDefine from\"#framer/local/canvasComponent/b2V8LTOED/b2V8LTOED.js\";import Cursor from\"#framer/local/canvasComponent/EzqMTeawh/EzqMTeawh.js\";import Review from\"#framer/local/canvasComponent/HZKOF3t3K/HZKOF3t3K.js\";import Footer from\"#framer/local/canvasComponent/jEDtVwaqo/jEDtVwaqo.js\";import Button from\"#framer/local/canvasComponent/l8BGx3ydp/l8BGx3ydp.js\";import Navigation from\"#framer/local/canvasComponent/lK8gco5Du/lK8gco5Du.js\";import Statistic from\"#framer/local/canvasComponent/OhO6xx60Y/OhO6xx60Y.js\";import Blog from\"#framer/local/collection/dtT5UnVAz/dtT5UnVAz.js\";import*as sharedStyle from\"#framer/local/css/Bc4ICXsiW/Bc4ICXsiW.js\";import*as sharedStyle6 from\"#framer/local/css/CTLFSihBl/CTLFSihBl.js\";import*as sharedStyle1 from\"#framer/local/css/cV2rOZ7x0/cV2rOZ7x0.js\";import*as sharedStyle4 from\"#framer/local/css/fggrKvdcJ/fggrKvdcJ.js\";import*as sharedStyle3 from\"#framer/local/css/GTgVTZPwV/GTgVTZPwV.js\";import*as sharedStyle5 from\"#framer/local/css/hE63EpOmp/hE63EpOmp.js\";import*as sharedStyle2 from\"#framer/local/css/IEtYMFrkY/IEtYMFrkY.js\";import Icon from\"#framer/local/vector/EMh5JSf1I/EMh5JSf1I.js\";import Icon1 from\"#framer/local/vector/GZHQqptwW/GZHQqptwW.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const PhosphorFonts=getFonts(Phosphor);const ContainerWithFX=withFX(Container);const StatisticFonts=getFonts(Statistic);const TickerFonts=getFonts(Ticker);const ContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Container));const ButtonFonts=getFonts(Button);const ChromaBackgroundFonts=getFonts(ChromaBackground);const IconFonts=getFonts(Icon);const Icon1Fonts=getFonts(Icon1);const DiscoveryAndDefineFonts=getFonts(DiscoveryAndDefine);const MotionSectionWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.section);const MotionSectionWithFX=withFX(motion.section);const Phosphor1Fonts=getFonts(Phosphor1);const ReviewFonts=getFonts(Review);const SlideshowFonts=getFonts(Slideshow);const MotionDivWithFX=withFX(motion.div);const ConvertKitFonts=getFonts(ConvertKit);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={ChwWhcB84:\"(max-width: 809px)\",gXySeoCgv:\"(min-width: 810px) and (max-width: 1200px)\",WQLkyLRf1:\"(min-width: 1201px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-XCxb5\";const variantClassNames={ChwWhcB84:\"framer-v-oeancu\",gXySeoCgv:\"framer-v-1w5t2hw\",WQLkyLRf1:\"framer-v-72rtr7\"};const transition1={delay:0,duration:10,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1.2,skewX:0,skewY:0,x:0,y:0};const transition2={delay:0,duration:3,ease:[0,0,1,1],type:\"tween\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-10};const transition3={damping:60,delay:.7,mass:1,stiffness:340,type:\"spring\"};const animation2={opacity:.47,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition3,x:0,y:0};const animation3={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:30};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:7};const transition4={damping:60,delay:.4,mass:1,stiffness:340,type:\"spring\"};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const transition5={damping:30,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition5,x:0,y:0};const animation7={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:40};const transition6={damping:30,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:40};const transition7={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,y:-12};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};const numberToString=(value,options={},activeLocale)=>{const fallbackLocale=\"en-US\";const locale=options.locale||activeLocale||fallbackLocale;const{useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits}=options;const formatOptions={useGrouping,notation,compactDisplay,style,currency,currencyDisplay,unit,unitDisplay,minimumFractionDigits,maximumFractionDigits,minimumIntegerDigits};const number=Number(value);try{return number.toLocaleString(locale,formatOptions);}catch{try{return number.toLocaleString(fallbackLocale,formatOptions);}catch{return number.toLocaleString();}}};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:40};const transition8={damping:30,delay:.15,mass:1,stiffness:400,type:\"spring\"};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:40};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"ChwWhcB84\",Tablet:\"gXySeoCgv\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const cursor={component:Cursor,variant:\"Eyj0pBt_8\"};const cursor1={component:Cursor,variant:\"cmG2NceDq\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,GuJAimSMnTIHEw_sqR,o0iLWe0htTIHEw_sqR,EPcnqL8KSTIHEw_sqR,udtAPF5mrTIHEw_sqR,oeq4Nj4khTIHEw_sqR,idTIHEw_sqR,...restProps}=getProps(props);const metadata=React.useMemo(()=>metadataProvider(undefined,activeLocale),[undefined,activeLocale]);useMetadata(metadata);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"ChwWhcB84\")return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"ChwWhcB84\")return false;return true;};const elementId=useRouteElementId(\"d3NdKo3gH\");const ref1=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"gXySeoCgv\")return true;return false;};const activeLocaleCode=useLocaleCode();const router=useRouter();useCustomCursors({r9c132:cursor,weja1s:{...cursor,variant:\"cmG2NceDq\"}});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),\"data-framer-cursor\":\"r9c132\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:77,width:componentViewport?.width||\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ndusjc-container\",layoutScroll:true,nodeId:\"PK3PdE0tz\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"ZeFVi0Chi\"},gXySeoCgv:{variant:\"ZeFVi0Chi\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"PK3PdE0tz\",layoutId:\"PK3PdE0tz\",style:{width:\"100%\"},variant:\"rDSkenzli\",vqyuObOR4:\"weja1s\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1u8cu6j\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",backgroundSize:.75,fit:\"tile\",intrinsicHeight:96,intrinsicWidth:96,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0),pixelHeight:96,pixelWidth:96,positionX:\"left\",positionY:\"top\",src:\"https://framerusercontent.com/images/c0EZxtMucSR6UOSZk2TBnWsqr4.svg\"},className:\"framer-1h8yo48\",\"data-framer-name\":\"Texture\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15kjsus\",\"data-framer-name\":\"Welcome Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ffl8lf\",\"data-styles-preset\":\"Bc4ICXsiW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(66, 198, 255))\"},children:\"Welcome!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ffl8lf\",\"data-styles-preset\":\"Bc4ICXsiW\",style:{\"--framer-text-color\":\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(66, 198, 255))\"},children:\"Welcome!\"})}),className:\"framer-mgjhl\",\"data-framer-name\":\"1st part\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+146+19+0),pixelHeight:1280,pixelWidth:1280,sizes:\"47px\",src:\"https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png\",srcSet:\"https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png 1280w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+158+0+0),pixelHeight:1280,pixelWidth:1280,sizes:\"47px\",src:\"https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png\",srcSet:\"https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png?scale-down-to=512 512w,https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YJtOxyUInrtPnchL310LaZPARJA.png 1280w\"},className:\"framer-q5xeet\",\"data-framer-name\":\"Profile Picture\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1ffl8lf\",\"data-styles-preset\":\"Bc4ICXsiW\",style:{\"--framer-text-color\":\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(66, 198, 255))\"},children:\"My name is Dena. 👋\"})}),className:\"framer-1mo1400\",\"data-framer-name\":\"2nd Part\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tdryxb\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1az4fed\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-c45xts\"}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kor7h0 hidden-72rtr7 hidden-1w5t2hw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1sh1jiq\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-uq30v3\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q9i58d-container hidden-oeancu\",isModuleExternal:true,nodeId:\"ZqueXVz0p\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-35},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 212, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"ZqueXVz0p\",layoutId:\"ZqueXVz0p\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-c229l5 hidden-72rtr7 hidden-1w5t2hw\"}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-w8txs2-container hidden-oeancu\",isModuleExternal:true,nodeId:\"tee2Mej05\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:18},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 212, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"tee2Mej05\",layoutId:\"tee2Mej05\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"I collaborate with brands to build bold visuals through brand strategy, design, and impactful content.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"53px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"I collaborate with brands to build bold visuals through brand strategy, design, and impactful content.\"})}),className:\"framer-w9gqsa\",\"data-framer-name\":\"H1\",fonts:[\"GF;Calistoga-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-177lh9r-container hidden-72rtr7 hidden-1w5t2hw\",isModuleExternal:true,nodeId:\"gz1snQU3o\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-35},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 212, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"gz1snQU3o\",layoutId:\"gz1snQU3o\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-f9wjor-container hidden-72rtr7 hidden-1w5t2hw\",isModuleExternal:true,nodeId:\"PAsd0rTI3\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:18},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 212, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"PAsd0rTI3\",layoutId:\"PAsd0rTI3\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xiv4j9-container hidden-72rtr7 hidden-1w5t2hw\",isModuleExternal:true,nodeId:\"vnyGwjynd\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:-35},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 212, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"vnyGwjynd\",layoutId:\"vnyGwjynd\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopPauseOffscreen:false,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1646mgx-container hidden-72rtr7 hidden-1w5t2hw\",isModuleExternal:true,nodeId:\"eGY1liWCT\",rendersWithMotion:true,scopeId:\"augiA20Il\",style:{rotate:18},children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 212, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Star\",id:\"eGY1liWCT\",layoutId:\"eGY1liWCT\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g6s2d7\",\"data-framer-name\":\"Stats\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{width:\"138px\",y:(componentViewport?.y||0)+0+0+146+410+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+158+195.3+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-ifusc1-container\",nodeId:\"tH0vcYKV0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"h1lgpq9d_\"}},children:/*#__PURE__*/_jsx(Statistic,{height:\"100%\",HW8msjrQx:\"paint\",id:\"tH0vcYKV0\",layoutId:\"tH0vcYKV0\",SWOjpUxQ0:\"8+ Years Experience as a\",variant:\"vIdLKIkWC\",width:\"100%\",X4xSbGXfQ:\"Brand Designer\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-135ezj2 hidden-oeancu\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{width:\"138px\",y:(componentViewport?.y||0)+0+0+146+410+0+115}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+158+195.3+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-a0746m-container\",nodeId:\"ywjVU2HYK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"h1lgpq9d_\"}},children:/*#__PURE__*/_jsx(Statistic,{height:\"100%\",HW8msjrQx:\"video\",id:\"ywjVU2HYK\",layoutId:\"ywjVU2HYK\",SWOjpUxQ0:\"10+ Years Experience as a\",variant:\"vIdLKIkWC\",width:\"100%\",X4xSbGXfQ:\"Content Creator\"})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-3259u8 hidden-oeancu\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{width:\"138px\",y:(componentViewport?.y||0)+0+0+146+410+0+230}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:47,y:(componentViewport?.y||0)+0+0+158+195.3+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nf8rm3-container\",nodeId:\"UGZ_vYhHa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"h1lgpq9d_\"}},children:/*#__PURE__*/_jsx(Statistic,{height:\"100%\",HW8msjrQx:\"palette\",id:\"UGZ_vYhHa\",layoutId:\"UGZ_vYhHa\",SWOjpUxQ0:\"4+ Years Experience as a\",variant:\"vIdLKIkWC\",width:\"100%\",X4xSbGXfQ:\"Art Director\"})})})})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__loop:animation1,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:.47,animate:animation2,className:\"framer-19losp2-container\",\"data-framer-appear-id\":\"19losp2\",\"data-framer-name\":\"Wave Transparent\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,name:\"Wave Transparent\",nodeId:\"jdySGRVJj\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:-6,height:\"100%\",hoverFactor:1,id:\"jdySGRVJj\",layoutId:\"jdySGRVJj\",name:\"Wave Transparent\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ubzb6\",\"data-framer-name\":\"Main Wave\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g2ts7j\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 32\"><path d=\"M 43.872 7.28 C 26.324 20.46 7.312 23.76 0 23.76 L 0 32 L 128 32 L 128 23.76 C 120.688 23.76 101.676 20.464 84.128 7.28 C 77.208 2.08 70.3 0.04 64 0 C 57.7 0.04 50.788 2.08 43.872 7.28 Z\" fill=\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(102, 208, 250))\"></path></svg>',svgContentId:8906505999,withExternalLayout:true})})],speed:40,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__loop:animation4,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"mirror\",__framer__loopTransition:transition2,__perspectiveFX:false,__targetOpacity:1,animate:animation5,className:\"framer-1ouw9rc-container\",\"data-framer-appear-id\":\"1ouw9rc\",\"data-framer-name\":\"Wave Solid\",initial:animation3,isAuthoredByUser:true,isModuleExternal:true,name:\"Wave Solid\",nodeId:\"eoSkSPyTT\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:-6,height:\"100%\",hoverFactor:1,id:\"eoSkSPyTT\",layoutId:\"eoSkSPyTT\",name:\"Wave Solid\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ubzb6\",\"data-framer-name\":\"Main Wave\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g2ts7j\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 32\"><path d=\"M 43.872 7.28 C 26.324 20.46 7.312 23.76 0 23.76 L 0 32 L 128 32 L 128 23.76 C 120.688 23.76 101.676 20.464 84.128 7.28 C 77.208 2.08 70.3 0.04 64 0 C 57.7 0.04 50.788 2.08 43.872 7.28 Z\" fill=\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(102, 208, 250))\"></path></svg>',svgContentId:8906505999,withExternalLayout:true})})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1a1ilig\",\"data-framer-name\":\"Contact CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+0+146+774+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+0+158+287.3+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-we6ili-container\",nodeId:\"dIDzRIzt8\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{fDiFJIlh6:\"var(--token-783c9c01-21bf-4403-bd1f-a410e07db715, rgb(247, 245, 240))\",height:\"100%\",id:\"dIDzRIzt8\",IStmjbXPh:\"arrow right\",layoutId:\"dIDzRIzt8\",oUiBojMlT:true,variant:\"PI1fRnEH2\",vBbiWP7wK:\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(MotionSectionWithOptimizedAppearEffect,{animate:animation6,className:\"framer-68tsvr\",\"data-framer-appear-id\":\"68tsvr\",\"data-framer-name\":\"Your offer\",initial:animation7,optimized:true,style:{transformPerspective:1200},children:[isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hf1pmy-container hidden-oeancu\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Jlv_y8uQK\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ChromaBackground,{height:\"100%\",id:\"Jlv_y8uQK\",layoutId:\"Jlv_y8uQK\",projectId:\"lHlDvoJDIXCxxXVqTNOC\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-177bgrc\",\"data-framer-name\":\"Main Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1itri7n\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pgq7bs\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-eededa\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-67a6d4c7-dcc5-4160-b0af-65e8355e2efa, rgb(255, 255, 255))\"},children:[\"I help businesses craft unique, contemporary visual identities that make people pay attention. From \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"brand design\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"art direction \"}),\"to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"packaging\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"content\"}),\", everything I create is carefully built to tell your story, connect with your audience, and support long-term growth.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"When your brand is clear, looks good, and tells a story, it drives real growth and meaningful connection.\"]})})},gXySeoCgv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"17px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-67a6d4c7-dcc5-4160-b0af-65e8355e2efa, rgb(255, 255, 255))\"},children:[\"I help businesses craft unique, contemporary visual identities that make people pay attention. From \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"brand design\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"art direction \"}),\"to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"packaging\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"content\"}),\", everything I create is carefully built to tell your story, connect with your audience, and support long-term growth.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"When your brand is clear, looks good, and tells a story, it drives real growth and meaningful connection.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"19px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-67a6d4c7-dcc5-4160-b0af-65e8355e2efa, rgb(255, 255, 255))\"},children:[\"I help businesses craft unique, contemporary visual identities that make people pay attention. From \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"brand design\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"art direction \"}),\"to \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"packaging\"}),\" and \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"content\"}),\", everything I create is carefully built to tell your story, connect with your audience, and support long-term growth.\",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"br\",{}),\"When your brand is clear, looks good, and tells a story, it drives real growth and meaningful connection.\"]})}),className:\"framer-15du3v0\",\"data-framer-name\":\"Body\",fonts:[\"FS;Manrope-bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"39px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-67a6d4c7-dcc5-4160-b0af-65e8355e2efa, rgb(255, 255, 255))\"},children:[\"Here's what my \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"5-step process\"}),\" looks like when we work together.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-67a6d4c7-dcc5-4160-b0af-65e8355e2efa, rgb(255, 255, 255))\"},children:[\"Here's what my \",/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"5-step process\"}),\" looks like when we work together.\"]})}),className:\"framer-1fr4pwz\",\"data-framer-name\":\"5 step process\",fonts:[\"GF;Calistoga-regular\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lpa9fm\"}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-zteih6 hidden-72rtr7 hidden-oeancu\"}),isDisplayed1()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-a2mud7 hidden-oeancu\",\"data-framer-name\":\"Graphic\",children:/*#__PURE__*/_jsx(Icon,{animated:false,className:\"framer-13qqxu0\",layoutId:\"qsjl7wEcc\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1blkfjq\",\"data-framer-name\":\"Graphic\",style:{rotate:-255},children:/*#__PURE__*/_jsx(Icon1,{animated:false,className:\"framer-1dl73x0\",layoutId:\"evizatdcD\"})}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-17yi50a hidden-72rtr7 hidden-1w5t2hw\",\"data-framer-name\":\"Graphic\",style:{rotate:-360},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-owe5h4\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 34 38\"><path d=\"M 26.026 25.224 C 26.026 25.224 10.737 19.211 5.35 8.124\" fill=\"transparent\" stroke-width=\"4.53\" stroke=\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\" stroke-linecap=\"round\"></path><path d=\"M 13.774 11.046 C 13.774 11.046 3.579 7.175 0 0\" transform=\"translate(6.958 26.714) rotate(-27 7 5.5)\" fill=\"transparent\" stroke-width=\"4.53\" stroke=\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\" stroke-linecap=\"round\"></path><path d=\"M 29.273 16.309 C 29.273 16.309 23.759 12.319 23.759 4.293\" fill=\"transparent\" stroke-width=\"4.53\" stroke=\"var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, rgb(255, 206, 0))\" stroke-linecap=\"round\"></path></svg>',svgContentId:9523005499,withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fh7rtu\",\"data-framer-name\":\"Offer Cards\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{width:\"358px\",y:(componentViewport?.y||0)+0+1062+44+0+0+0+0+467+0+0},gXySeoCgv:{y:(componentViewport?.y||0)+0+574.3+76+0+0+0+396+0+10.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,y:(componentViewport?.y||0)+0+574.3+76+0+0+0+341.5+0+75,children:/*#__PURE__*/_jsx(Container,{className:\"framer-utrhp6-container\",nodeId:\"IkPFfiNum\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{style:{width:\"100%\"},variant:\"polj8VgQo\"},gXySeoCgv:{variant:\"trjjtA4MU\"}},children:/*#__PURE__*/_jsx(DiscoveryAndDefine,{height:\"100%\",id:\"IkPFfiNum\",layoutId:\"IkPFfiNum\",variant:\"lDNrUuK8u\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+1062+44+0+0+0+0+467+0+315},gXySeoCgv:{y:(componentViewport?.y||0)+0+574.3+76+0+0+0+396+0+298.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,y:(componentViewport?.y||0)+0+574.3+76+0+0+0+341.5+0+387,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1t2jgw-container\",\"data-framer-name\":\"strategy and positioning\",name:\"strategy and positioning\",nodeId:\"uUnR0i1pk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"qmJAcABt7\"},gXySeoCgv:{variant:\"k1cyDEC_H\"}},children:/*#__PURE__*/_jsx(DiscoveryAndDefine,{height:\"100%\",id:\"uUnR0i1pk\",layoutId:\"uUnR0i1pk\",name:\"strategy and positioning\",variant:\"Y9HhhsiTs\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+1062+44+0+0+0+0+467+0+630},gXySeoCgv:{y:(componentViewport?.y||0)+0+574.3+76+0+0+0+396+0+586.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,y:(componentViewport?.y||0)+0+574.3+76+0+0+0+341.5+0+699,children:/*#__PURE__*/_jsx(Container,{className:\"framer-wx1w5e-container\",\"data-framer-name\":\"design and identity\",name:\"design and identity\",nodeId:\"Zc3SfN6Vz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"PV9PrDU2C\"},gXySeoCgv:{variant:\"XOlOqUxFx\"}},children:/*#__PURE__*/_jsx(DiscoveryAndDefine,{height:\"100%\",id:\"Zc3SfN6Vz\",layoutId:\"Zc3SfN6Vz\",name:\"design and identity\",variant:\"A6Z9hPsEz\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+1062+44+0+0+0+0+467+0+945},gXySeoCgv:{y:(componentViewport?.y||0)+0+574.3+76+0+0+0+396+0+874.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,y:(componentViewport?.y||0)+0+574.3+76+0+0+0+341.5+0+1011,children:/*#__PURE__*/_jsx(Container,{className:\"framer-hazqma-container\",\"data-framer-name\":\"content and assets\",name:\"content and assets\",nodeId:\"yjAY2zKNk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"v6D0trQON\"},gXySeoCgv:{variant:\"ifxqapMtt\"}},children:/*#__PURE__*/_jsx(DiscoveryAndDefine,{height:\"100%\",id:\"yjAY2zKNk\",layoutId:\"yjAY2zKNk\",name:\"content and assets\",variant:\"BDRVo4E5I\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+1062+44+0+0+0+0+467+0+1260},gXySeoCgv:{y:(componentViewport?.y||0)+0+574.3+76+0+0+0+396+0+1162.5}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:288,y:(componentViewport?.y||0)+0+574.3+76+0+0+0+341.5+0+1323,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19yad68-container\",\"data-framer-name\":\"launch and support\",name:\"launch and support\",nodeId:\"z39B6oSI1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"G9TNBDEvu\"},gXySeoCgv:{variant:\"LgtO0Tz4o\"}},children:/*#__PURE__*/_jsx(DiscoveryAndDefine,{height:\"100%\",id:\"z39B6oSI1\",layoutId:\"z39B6oSI1\",name:\"launch and support\",variant:\"W9Obyd2pu\",width:\"100%\"})})})})})]})]})})]}),/*#__PURE__*/_jsxs(MotionSectionWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-y7d9z2\",\"data-framer-name\":\"Projects Preview\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-3zr07h\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xubiet\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-169o71c\",\"data-styles-preset\":\"cV2rOZ7x0\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Brands I’ve Brought to Life\"})})}),className:\"framer-598shf\",\"data-framer-name\":\"Title\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{gXySeoCgv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14kn5xm\",\"data-styles-preset\":\"IEtYMFrkY\",style:{\"--framer-text-alignment\":\"center\"},children:\"Select visual identities designed to last and capture attention.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-14kn5xm\",\"data-styles-preset\":\"IEtYMFrkY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:\"Select visual identities designed to last and capture attention.\"})}),className:\"framer-1mt0pij\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fl9hig\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/gallery/227068793/3OH-Energy-Amazonian-Wellness-Energy-Drink\",motionChild:true,nodeId:\"uBB33QI7j\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-rg0g3e framer-lux5qc\",\"data-framer-name\":\"3.OH Energy\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+0+-5),pixelHeight:1601,pixelWidth:1080,positionX:\"center\",positionY:\"center\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/Ysg9WP83cPapPpSFabkrkLQDDNU.jpg\",srcSet:\"https://framerusercontent.com/images/Ysg9WP83cPapPpSFabkrkLQDDNU.jpg?scale-down-to=1024 690w,https://framerusercontent.com/images/Ysg9WP83cPapPpSFabkrkLQDDNU.jpg 1080w\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+0+-5),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg\",srcSet:\"https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+0+-5),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg\",srcSet:\"https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/0kbNPZn6rCC3eqOod42egDth0C8.jpg 3840w\"},className:\"framer-cju1sq\",\"data-framer-name\":\"Image with Zoom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yr6kiu\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sdsvxf\",\"data-framer-name\":\"Title and Icon\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fvv3xe\",\"data-styles-preset\":\"GTgVTZPwV\",style:{\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"3.OH Energy\"})}),className:\"framer-jv62ko\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+0+6+308.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+0+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+0+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"},className:\"framer-14hf78n\",\"data-framer-name\":\"Icon\"})})]})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/gallery/215929255/Lulley-Oral-Sleep-Strips-Supplement-Branding\",motionChild:true,nodeId:\"jWvIoOFu5\",openInNewTab:false,scopeId:\"augiA20Il\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-19z9q1 framer-lux5qc\",\"data-framer-name\":\"Lulley\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+425+-5),pixelHeight:2160,pixelWidth:3840,positionX:\"13%\",positionY:\"50.4%\",sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg\",srcSet:\"https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg 3840w\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+586+-5),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg\",srcSet:\"https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+586+-5),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg\",srcSet:\"https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/m9alojD0jA2kClZSRc8gQ1tD5I.jpg 3840w\"},className:\"framer-6dzvnq\",\"data-framer-name\":\"Image with Zoom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vrxp2v\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yl7tsd\",\"data-framer-name\":\"Title and Icon\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fvv3xe\",\"data-styles-preset\":\"GTgVTZPwV\",style:{\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"Lulley\"})}),className:\"framer-13kr5k\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+425+6+308.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+586+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+586+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"},className:\"framer-g9unou\",\"data-framer-name\":\"Icon\"})})]})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/gallery/210488263/Woman-With-Energy-Female-Boxing-Brand\",motionChild:true,nodeId:\"s9ih_BRLQ\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-13syf9z framer-lux5qc\",\"data-framer-name\":\"WWE\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+850+0),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg\",srcSet:\"https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg 3840w\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+1172+0),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg\",srcSet:\"https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg 3840w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+1172+0),pixelHeight:2160,pixelWidth:3840,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg\",srcSet:\"https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3HRRIge4kxbnGYkVy9JCqa1U.jpg 3840w\"},className:\"framer-17aqrqs\",\"data-framer-name\":\"Image with Zoom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-18ovxg3\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-120w3rx\",\"data-framer-name\":\"Title and Icon\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fvv3xe\",\"data-styles-preset\":\"GTgVTZPwV\",style:{\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"Women With Energy\"})}),className:\"framer-17y9se0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+850+6+308.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+1172+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+1172+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"},className:\"framer-1my9j9e\",\"data-framer-name\":\"Icon\"})})]})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/gallery/102637925/KALON-Functional-Wellness-Drink-Branding\",motionChild:true,nodeId:\"jp4Osb5uH\",openInNewTab:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1jy8qpb framer-lux5qc\",\"data-framer-name\":\"Kalon\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+1275+0),pixelHeight:3111,pixelWidth:5328,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/jzHLhfl2iTr8u0gZydQovO2jVU.jpg\",srcSet:\"https://framerusercontent.com/images/jzHLhfl2iTr8u0gZydQovO2jVU.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/jzHLhfl2iTr8u0gZydQovO2jVU.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/jzHLhfl2iTr8u0gZydQovO2jVU.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/jzHLhfl2iTr8u0gZydQovO2jVU.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/jzHLhfl2iTr8u0gZydQovO2jVU.jpg 5328w\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+1758+0),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg\",srcSet:\"https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg 6000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+1758+0),pixelHeight:4e3,pixelWidth:6e3,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg\",srcSet:\"https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=2048 2048w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg?scale-down-to=4096 4096w,https://framerusercontent.com/images/3ky3izE9nQ6KdCwsaf4NmL4dIB4.jpg 6000w\"},className:\"framer-rn8o4d\",\"data-framer-name\":\"Image with Zoom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-yn380g\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lp0vu5\",\"data-framer-name\":\"Title and Icon\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fvv3xe\",\"data-styles-preset\":\"GTgVTZPwV\",style:{\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"KALON\"})}),className:\"framer-1vdel22\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+1275+6+308.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+1758+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+1758+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"},className:\"framer-1qqhh1b\",\"data-framer-name\":\"Icon\"})})]})})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/gallery/206540203/Year-Of-The-Dragon-Lunar-New-Year-Branding\",motionChild:true,nodeId:\"fUBA7ItWw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1l792zc framer-lux5qc\",\"data-framer-name\":\"YOTD\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+1700+0),pixelHeight:1365,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg\",srcSet:\"https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg 2048w\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+2344+0),pixelHeight:1365,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg\",srcSet:\"https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg 2048w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+2344+0),pixelHeight:1365,pixelWidth:2048,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg\",srcSet:\"https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/ya7MHqM4ZXntSEFOS0z3af1to0.jpg 2048w\"},className:\"framer-yntm94\",\"data-framer-name\":\"Image with Zoom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mt81cp\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-199nt0l\",\"data-framer-name\":\"Title and Icon\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fvv3xe\",\"data-styles-preset\":\"GTgVTZPwV\",style:{\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"Year Of The Dragon\"})}),className:\"framer-17cgkby\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+1700+6+308.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+2344+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+2344+6+469.8+24+0+4.1),pixelHeight:18,pixelWidth:18,src:\"https://framerusercontent.com/images/kX0saU9P1gkTTwnYXUMf8dyj04E.svg\"},className:\"framer-1q82288\",\"data-framer-name\":\"Icon\"})})]})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14triwv\",\"data-framer-name\":\"DINOCAT\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3165+70+190+0+2125+0),pixelHeight:4167,pixelWidth:4167,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png\",srcSet:\"https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png 4167w\"}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2557.3+70+168+0+2930+0),pixelHeight:4167,pixelWidth:4167,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png\",srcSet:\"https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png 4167w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2716.3+70+165+0+2930+0),pixelHeight:4167,pixelWidth:4167,sizes:`calc(${componentViewport?.width||\"100vw\"} - 85px)`,src:\"https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png\",srcSet:\"https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=512 512w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png?scale-down-to=4096 4096w,https://framerusercontent.com/images/YpMnbMnO2pzLc7Ba3kFHnLPnAD0.png 4167w\"},className:\"framer-xmbe4k\",\"data-framer-name\":\"Image with Zoom\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-175q1ty\",\"data-framer-name\":\"Details\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-18c2vu0\",\"data-framer-name\":\"Title and Icon\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fvv3xe\",\"data-styles-preset\":\"GTgVTZPwV\",style:{\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"DINOCAT (Coming Soon)\"})}),className:\"framer-12r81vp\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1fepmu2\",\"data-framer-name\":\"Blog\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1d7zj6r\",\"data-framer-name\":\"BG bottom\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gch7tr\",\"data-framer-name\":\"Header\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"35px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Behind the Pixels: Let's Talk Design & Creator Life \"}),\"✍️🎥\"]})})},gXySeoCgv:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Behind the Pixels: Let's Talk Design & Creator Life \"}),\"✍️🎥\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h3\",{style:{\"--font-selector\":\"R0Y7Q2FsaXN0b2dhLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Calistoga\", sans-serif',\"--framer-font-size\":\"41px\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Behind the Pixels: Let's Talk Design & Creator Life \"}),\"✍️🎥\"]})}),className:\"framer-xzjkuy\",\"data-framer-name\":\"Title\",fonts:[\"GF;Calistoga-regular\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"p\",{className:\"framer-styles-preset-14kn5xm\",\"data-styles-preset\":\"IEtYMFrkY\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(38, 38, 38)\"},children:[\"From sharing my journey as a creative through \",/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ytGvIXsSG\"},motionChild:true,nodeId:\"raTShRqyM\",openInNewTab:false,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l7y3fu\",\"data-styles-preset\":\"fggrKvdcJ\",children:\"blogs\"})}),\" and \",/*#__PURE__*/_jsx(Link,{href:\"https://www.youtube.com/@DenaNguyen\",motionChild:true,nodeId:\"raTShRqyM\",openInNewTab:true,relValues:[],scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1l7y3fu\",\"data-styles-preset\":\"fggrKvdcJ\",children:\"YouTube\"})}),\", to giving design tips, advice, and creating educational content, I find fulfillment in being able to educate, entertain, and inspire others through these formats.\"]})}),className:\"framer-lfe4pk\",\"data-framer-name\":\"Body\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hy9m6r\",\"data-framer-name\":\"Blog Posts\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"TIHEw_sqR\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},select:[{collection:\"TIHEw_sqR\",name:\"GuJAimSMn\",type:\"Identifier\"},{collection:\"TIHEw_sqR\",name:\"o0iLWe0ht\",type:\"Identifier\"},{collection:\"TIHEw_sqR\",name:\"EPcnqL8KS\",type:\"Identifier\"},{collection:\"TIHEw_sqR\",name:\"udtAPF5mr\",type:\"Identifier\"},{collection:\"TIHEw_sqR\",name:\"oeq4Nj4kh\",type:\"Identifier\"},{collection:\"TIHEw_sqR\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({EPcnqL8KS:EPcnqL8KSTIHEw_sqR,GuJAimSMn:GuJAimSMnTIHEw_sqR,id:idTIHEw_sqR,o0iLWe0ht:o0iLWe0htTIHEw_sqR,oeq4Nj4kh:oeq4Nj4khTIHEw_sqR,udtAPF5mr:udtAPF5mrTIHEw_sqR},index)=>{GuJAimSMnTIHEw_sqR??=\"\";EPcnqL8KSTIHEw_sqR??=\"\";oeq4Nj4khTIHEw_sqR??=0;const textContent=toDateString(udtAPF5mrTIHEw_sqR,activeLocaleCode);const textContent1=numberToString(oeq4Nj4khTIHEw_sqR,{locale:\"\",notation:\"standard\",style:\"decimal\"},activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:`TIHEw_sqR-${idTIHEw_sqR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{GuJAimSMn:GuJAimSMnTIHEw_sqR},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{GuJAimSMn:GuJAimSMnTIHEw_sqR},webPageId:\"qLCGIwu7S\"},motionChild:true,nodeId:\"y2xuJlYBW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yj2qsx framer-lux5qc\",\"data-border\":true,\"data-framer-cursor\":\"weja1s\",\"data-framer-name\":\"Post\",whileHover:animation10,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6020+72+256.5+0+0+0+0),sizes:\"287.3926px\",...toResponsiveImage(o0iLWe0htTIHEw_sqR)}},gXySeoCgv:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6356.3+128+295.1+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 148px) / 3, 1px)`,...toResponsiveImage(o0iLWe0htTIHEw_sqR)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6512.3+128+286.7+0+0+0+0),sizes:`max((min(${componentViewport?.width||\"100vw\"}, 1200px) - 148px) / 3, 1px)`,...toResponsiveImage(o0iLWe0htTIHEw_sqR)},className:\"framer-eu25j9\",\"data-framer-name\":\"Thumbnail\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10wnr67\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1fqhi5y\",\"data-styles-preset\":\"hE63EpOmp\",style:{\"--framer-text-color\":\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\"},children:\"Ways to Land Clients & Make Money as a Graphic Designer\"})}),className:\"framer-4yq8vr\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],text:EPcnqL8KSTIHEw_sqR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-zqm8jr\",\"data-framer-name\":\"Divider\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u6zw7r\",\"data-framer-name\":\"Other\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dsohcq\",\"data-framer-name\":\"Date Published\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-he9cr7-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"ozejp6emz\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(163, 163, 163)\",height:\"100%\",iconSearch:\"calendar\",iconSelection:\"House\",id:\"ozejp6emz\",layoutId:\"ozejp6emz\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dfocdb\",\"data-styles-preset\":\"CTLFSihBl\",style:{\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"Feb 6, 2025\"})}),className:\"framer-1n2chuz\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],text:textContent,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n8gvsf\",\"data-framer-name\":\"Read Time\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ecmc2y-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"zmZ0_hGRp\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Phosphor1,{color:\"rgb(163, 163, 163)\",height:\"100%\",iconSearch:\"clock\",iconSelection:\"House\",id:\"zmZ0_hGRp\",layoutId:\"zmZ0_hGRp\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"fill\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e7ga9x\",\"data-framer-name\":\"Read Time\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dfocdb\",\"data-styles-preset\":\"CTLFSihBl\",style:{\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"10\"})}),className:\"framer-9aqg96\",\"data-framer-name\":\"Number\",fonts:[\"Inter\"],text:textContent1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dfocdb\",\"data-styles-preset\":\"CTLFSihBl\",style:{\"--framer-text-color\":\"rgb(23, 23, 23)\"},children:\"min\"})}),className:\"framer-v7a1sn\",\"data-framer-name\":\"Minutes\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})]})})})},idTIHEw_sqR);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-132d5gf\",\"data-framer-name\":\"Contact CTA\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+6020+72+1414.5+50+0},gXySeoCgv:{y:(componentViewport?.y||0)+0+6356.3+128+835.9+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:48,y:(componentViewport?.y||0)+0+6512.3+128+827.5+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jn3t1s-container\",\"data-framer-cursor\":\"weja1s\",nodeId:\"GUZMxFbtW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{fDiFJIlh6:\"var(--token-783c9c01-21bf-4403-bd1f-a410e07db715, rgb(247, 245, 240))\",height:\"100%\",id:\"GUZMxFbtW\",IStmjbXPh:\"arrow right\",layoutId:\"GUZMxFbtW\",oUiBojMlT:true,variant:\"nbDdeuMYY\",vBbiWP7wK:\"var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, rgb(25, 25, 25))\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-t4lo57-container\",\"data-framer-name\":\"Wave Teal\",isAuthoredByUser:true,isModuleExternal:true,name:\"Wave Teal\",nodeId:\"dseq93At9\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"right\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:-2,height:\"100%\",hoverFactor:.5,id:\"dseq93At9\",layoutId:\"dseq93At9\",name:\"Wave Teal\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1e0l5nt\",\"data-framer-name\":\"Transparent Teal Wave\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 32\"><path d=\"M 43.872 7.28 C 26.324 20.46 7.312 23.76 0 23.76 L 0 32 L 128 32 L 128 23.76 C 120.688 23.76 101.676 20.464 84.128 7.28 C 77.208 2.08 70.3 0.04 64 0 C 57.7 0.04 50.788 2.08 43.872 7.28 Z\" fill=\"var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, rgb(185, 234, 255))\"></path></svg>',svgContentId:10301481325,withExternalLayout:true})],speed:30,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1mhky8o\",\"data-framer-name\":\"Reviews and Newsletter\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-kazza5\",\"data-framer-name\":\"Reviews\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u0lxep-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"kqGwdm9_G\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{arrowOptions:{arrowFill:\"rgb(255, 255, 255)\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:29,arrowPaddingLeft:0,arrowPaddingRight:22,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:13,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/zxW4YtfnBLTWtc13HxKOCdzNYM.svg\",rightArrow:\"https://framerusercontent.com/images/eTqvUpk31ARgmR44aJDmDjFqlQ.svg\",showMouseControls:true},padding:32,paddingPerSide:false}},children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\",arrowGap:10,arrowPadding:20,arrowPaddingBottom:66,arrowPaddingLeft:0,arrowPaddingRight:50,arrowPaddingTop:0,arrowPosition:\"bottom-right\",arrowRadius:14,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:44,leftArrow:\"https://framerusercontent.com/images/zxW4YtfnBLTWtc13HxKOCdzNYM.svg\",rightArrow:\"https://framerusercontent.com/images/eTqvUpk31ARgmR44aJDmDjFqlQ.svg\",showMouseControls:true},autoPlayControl:false,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:0,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:50,height:\"100%\",id:\"kqGwdm9_G\",intervalControl:10,itemAmount:1,layoutId:\"kqGwdm9_G\",padding:0,paddingBottom:50,paddingLeft:50,paddingPerSide:true,paddingRight:50,paddingTop:50,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:310,width:\"686px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cfo6l0-container\",\"data-framer-name\":\"Justin Review\",inComponentSlot:true,name:\"Justin Review\",nodeId:\"xwe_W1TuN\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{DyU9GjKot:\"— Justin\",height:\"100%\",id:\"xwe_W1TuN\",layoutId:\"xwe_W1TuN\",name:\"Justin Review\",PbUPX35ej:\"3x Founder & COO\",style:{height:\"100%\",width:\"100%\"},variant:\"y_cFFDosK\",vyx3P1YTh:\"“I felt very excited to work with Dena as her portfolio and content are great. The job was accomplished swiftly and all deliverables were amazing. Dena was incredibly professional and communication was crystal clear about her vision and how it aligned with our brand. She gave great check-ins frequently and we never questioned anything during the process. Dena took our creatives to the next level and put her own twist on it, which is exactly what we wanted.”\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:310,width:\"686px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1x9patk-container\",\"data-framer-name\":\"Loryn Review\",inComponentSlot:true,name:\"Loryn Review\",nodeId:\"syzYK2ar1\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{DyU9GjKot:\"— Loryn\",height:\"100%\",id:\"syzYK2ar1\",layoutId:\"syzYK2ar1\",name:\"Loryn Review\",PbUPX35ej:\"Brand Strategist\",style:{height:\"100%\",width:\"100%\"},variant:\"y_cFFDosK\",vyx3P1YTh:'\"Dena is a wildly talented, dedicated designer with a radical ability to concept and consistently execute unique yet meaningful stylistic choices for every project she touches. I was consistently impressed by Dena\\'s ambition for perfecting her craft as a design student, and have been fortunate to work with her professionally as a member of my branding team since her graduation.\"',width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:310,width:\"686px\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1q0rv7o-container\",\"data-framer-name\":\"Alp Review\",inComponentSlot:true,name:\"Alp Review\",nodeId:\"d9ZHda4Rk\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Review,{DyU9GjKot:\"— Alp\",height:\"100%\",id:\"d9ZHda4Rk\",layoutId:\"d9ZHda4Rk\",name:\"Alp Review\",PbUPX35ej:\"CEO / Founder\",style:{height:\"100%\",width:\"100%\"},variant:\"y_cFFDosK\",vyx3P1YTh:\"“I can’t begin to describe how fantastic our brand's experience working with Dena was. Not only is she a complete professional, but the artwork, graphic design and brand strategy was jaw-dropping. She worked closely with us to make sure that we were satisfied with many revisions and we will be sure to utilize her whenever we need brand strategic work.\\\"\\n\",width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,delay:0,mass:1,stiffness:200,type:\"spring\"},width:\"100%\"})})})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__exit:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1bt7jx0\",\"data-framer-name\":\"Newsletter\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-171274i\",\"data-framer-name\":\"Texts\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBOb3cgSGVhZGxpbmUgRXh0cmFCb2xk\",\"--framer-font-family\":'\"Futura Now Headline ExtraBold\", \"Futura Now Headline ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, rgb(185, 234, 255))\"},children:\"Psst... I have a newsletter\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{style:{\"--font-selector\":\"Q1VTVE9NO0Z1dHVyYSBOb3cgSGVhZGxpbmUgRXh0cmFCb2xk\",\"--framer-font-family\":'\"Futura Now Headline ExtraBold\", \"Futura Now Headline ExtraBold Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, rgb(185, 234, 255))\"},children:\"Psst... I have a newsletter\"})}),className:\"framer-1ioezp7\",\"data-framer-name\":\"Title\",fonts:[\"CUSTOM;Futura Now Headline ExtraBold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"I'll occasionally share insights on graphic design, freelancing, my creative journey, and any insights I feel might be valuable. •⩊•\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7U3BhY2UgR3JvdGVzay1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Space Grotesk\", \"Space Grotesk Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.01em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, rgb(252, 252, 252))\"},children:\"I'll occasionally share insights on graphic design, freelancing, my creative journey, and any insights I feel might be valuable. •⩊•\"})}),className:\"framer-3nxbjs\",\"data-framer-name\":\"Subtitle\",fonts:[\"FS;Space Grotesk-semibold\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-550ztl\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-g7ewa2-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"cJx9s8DiG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{link:resolvedLinks[1]},gXySeoCgv:{link:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(ConvertKit,{button:{buttonFont:{fontFamily:'\"Manrope\", \"Manrope Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:800,letterSpacing:\"0em\",lineHeight:\"1em\"},buttonPadding:15,buttonPaddingBottom:15,buttonPaddingLeft:15,buttonPaddingPerSide:false,buttonPaddingRight:15,buttonPaddingTop:15,color:\"var(--token-7691355c-4408-449a-86a2-0d41a052714d, rgb(0, 0, 0))\",fill:\"var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, rgb(185, 234, 255))\",insetWhenDocked:5,isDocked:false,label:\"SUBSCRIBE\",shouldAppear:true,widthWhenDocked:100},convertkitAPI:\"b-SDRJinIjDMBNCKaqP9dQ\",convertkitFormID:\"7380372\",font:{fontFamily:'\"Manrope\", \"Manrope Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1em\"},gap:10,height:\"100%\",id:\"cJx9s8DiG\",input:{borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgb(235, 235, 235)\",fixedHeight:50,height:true,padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15,placeholder:\"name@email.com\",placeholderColor:\"rgba(0, 0, 0, 0.3)\"},layout:\"horizontal\",layoutId:\"cJx9s8DiG\",link:resolvedLinks[0],style:{width:\"100%\"},width:\"100%\"})})})})})})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{y:(componentViewport?.y||0)+0+8709.5},gXySeoCgv:{y:(componentViewport?.y||0)+0+8509.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:146,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+8186.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-19a2fj8-container\",nodeId:\"ZvNprcSzL\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{ChwWhcB84:{variant:\"eBPDl2YBr\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"ZvNprcSzL\",layoutId:\"ZvNprcSzL\",ljlMXevkF:\"weja1s\",style:{width:\"100%\"},variant:\"Qoc6gCnBF\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ij9o30-container\",\"data-framer-name\":\"Wave Solid\",isAuthoredByUser:true,isModuleExternal:true,name:\"Wave Solid\",nodeId:\"o_r5s3C3I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:-6,height:\"100%\",hoverFactor:1,id:\"o_r5s3C3I\",layoutId:\"o_r5s3C3I\",name:\"Wave Solid\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-ubzb6\",\"data-framer-name\":\"Main Wave\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1g2ts7j\",\"data-framer-name\":\"graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 128 32\"><path d=\"M 43.872 7.28 C 26.324 20.46 7.312 23.76 0 23.76 L 0 32 L 128 32 L 128 23.76 C 120.688 23.76 101.676 20.464 84.128 7.28 C 77.208 2.08 70.3 0.04 64 0 C 57.7 0.04 50.788 2.08 43.872 7.28 Z\" fill=\"var(--token-86aa3d9f-b2e1-47e8-91be-22b3cd5b3744, rgb(102, 208, 250))\"></path></svg>',svgContentId:8906505999,withExternalLayout:true})})],speed:25,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-XCxb5.framer-lux5qc, .framer-XCxb5 .framer-lux5qc { display: block; }\",\".framer-XCxb5.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, #fcfcfc); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1201px; }\",\".framer-XCxb5 .framer-ndusjc-container { flex: none; height: auto; left: 0px; position: fixed; right: 0px; top: 0px; z-index: 10; }\",\".framer-XCxb5 .framer-1u8cu6j { align-content: center; align-items: center; background-color: var(--token-b3ded62f-92b5-4ec8-b326-dbc7caadbab6, #fcfcfc); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 158px 0px 81px 0px; position: relative; width: 1405px; }\",\".framer-XCxb5 .framer-1h8yo48 { bottom: 0px; flex: none; left: -235px; mix-blend-mode: darken; opacity: 0.05; position: absolute; right: -282px; top: 0px; }\",\".framer-XCxb5 .framer-15kjsus { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-mgjhl, .framer-XCxb5 .framer-1mo1400 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XCxb5 .framer-q5xeet { aspect-ratio: 1 / 1; border-bottom-left-radius: 80px; border-bottom-right-radius: 80px; border-top-left-radius: 80px; border-top-right-radius: 80px; box-shadow: 0px 0px 0px -1px #262626; flex: none; height: var(--framer-aspect-ratio-supported, 47px); overflow: hidden; position: relative; width: 47px; will-change: var(--framer-will-change-override, transform); }\",\".framer-XCxb5 .framer-tdryxb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 886px; }\",\".framer-XCxb5 .framer-1az4fed { background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 58px; flex: none; height: 25px; left: 11px; overflow: hidden; position: absolute; width: 294px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-c45xts { background-color: var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, #ffd400); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 59px; flex: none; height: 25px; left: 508px; overflow: hidden; position: absolute; width: 353px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-1kor7h0 { background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 88px; flex: none; height: 18px; left: 35px; overflow: hidden; position: absolute; width: 142px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-1sh1jiq { background-color: var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, #ffd400); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 1px; flex: none; height: 25px; left: 86px; overflow: hidden; position: absolute; width: 170px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-uq30v3 { background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: -5px; flex: none; height: 30px; left: 367px; overflow: hidden; position: absolute; width: 426px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-1q9i58d-container { flex: none; height: 50px; left: calc(-3.49887133182842% - 43px / 2); position: absolute; top: calc(-14.285714285714263% - 50px / 2); width: 43px; z-index: 1; }\",\".framer-XCxb5 .framer-c229l5 { background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; bottom: 4px; flex: none; height: 22px; left: 101px; overflow: hidden; position: absolute; width: 136px; will-change: var(--framer-will-change-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-w8txs2-container { flex: none; height: 50px; left: calc(100.00000000000003% - 43px / 2); position: absolute; top: calc(111.81102362204727% - 50px / 2); width: 43px; z-index: 1; }\",\".framer-XCxb5 .framer-w9gqsa, .framer-XCxb5 .framer-1mt0pij { --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-XCxb5 .framer-177lh9r-container { flex: none; height: 39px; left: calc(16.51917404129796% - 34px / 2); position: absolute; top: calc(148.69281045751637% - 39px / 2); width: 34px; z-index: 1; }\",\".framer-XCxb5 .framer-f9wjor-container { flex: none; height: 39px; left: calc(82.00589970501477% - 34px / 2); position: absolute; top: calc(211.43790849673206% - 39px / 2); width: 34px; z-index: 1; }\",\".framer-XCxb5 .framer-1xiv4j9-container { flex: none; height: 39px; left: calc(4.129793510324506% - 34px / 2); position: absolute; top: calc(34.967320261437926% - 39px / 2); width: 34px; z-index: 1; }\",\".framer-XCxb5 .framer-1646mgx-container { flex: none; height: 39px; left: calc(95.28023598820062% - 34px / 2); position: absolute; top: calc(110.78431372549022% - 39px / 2); width: 34px; z-index: 1; }\",\".framer-XCxb5 .framer-g6s2d7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-ifusc1-container, .framer-XCxb5 .framer-a0746m-container, .framer-XCxb5 .framer-1nf8rm3-container, .framer-XCxb5 .framer-we6ili-container, .framer-XCxb5 .framer-utrhp6-container, .framer-XCxb5 .framer-1t2jgw-container, .framer-XCxb5 .framer-wx1w5e-container, .framer-XCxb5 .framer-hazqma-container, .framer-XCxb5 .framer-19yad68-container, .framer-XCxb5 .framer-1jn3t1s-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-XCxb5 .framer-135ezj2, .framer-XCxb5 .framer-3259u8 { align-self: stretch; background-color: #e6e3e0; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-XCxb5 .framer-19losp2-container { bottom: -38px; flex: none; height: 13%; left: -758px; opacity: 0.47; position: absolute; right: -605px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-XCxb5 .framer-ubzb6 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-1g2ts7j { background-color: rgba(0, 0, 0, 0); flex: none; height: 32px; position: relative; width: 128px; z-index: 0; }\",\".framer-XCxb5 .framer-1ouw9rc-container { bottom: -31px; flex: none; height: 13%; left: calc(53.46121768140119% - 189.90825688073394% / 2); position: absolute; width: 190%; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-XCxb5 .framer-1a1ilig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-68tsvr { align-content: center; align-items: center; background-color: #42c6ff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 37px; height: min-content; justify-content: center; overflow: visible; padding: 76px 0px 50px 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-XCxb5 .framer-hf1pmy-container { -webkit-mask: linear-gradient(0deg, #000000 0%, rgba(0, 0, 0, 0.47297) 97%, rgba(0,0,0,0) 100%) add; flex: none; height: 100%; left: calc(51.54038301415489% - 147.46044962531224% / 2); mask: linear-gradient(0deg, rgba(0,0,0,1) 0%, rgba(0, 0, 0, 0.47297) 97%, rgba(0,0,0,0) 100%) add; mix-blend-mode: screen; pointer-events: auto; position: absolute; top: calc(49.82229402261715% - 99.64458804523424% / 2); width: 147%; z-index: 0; }\",\".framer-XCxb5 .framer-177bgrc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 980px; }\",\".framer-XCxb5 .framer-1itri7n { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 2016px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-pgq7bs { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 353px; justify-content: center; overflow: hidden; padding: 15px 0px 15px 0px; position: relative; width: auto; }\",\".framer-XCxb5 .framer-eededa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 90px 0px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-15du3v0 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 940px; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-1fr4pwz { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 104px; position: relative; white-space: pre-wrap; width: 844px; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-1lpa9fm { background-color: var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, #ffd400); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 24px; left: 423px; overflow: hidden; position: absolute; top: 258px; width: 334px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-XCxb5 .framer-zteih6 { background-color: var(--token-460c9ca3-076f-458c-aa70-db178450c1b7, #ffd400); border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; flex: none; height: 24px; left: 95px; overflow: hidden; position: absolute; top: 301px; width: 175px; will-change: var(--framer-will-change-override, transform); z-index: -1; }\",\".framer-XCxb5 .framer-a2mud7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 98px; justify-content: center; left: -81px; overflow: hidden; padding: 0px; position: absolute; top: 165px; width: 256px; z-index: 1; }\",\".framer-XCxb5 .framer-13qqxu0, .framer-XCxb5 .framer-1dl73x0 { flex: none; height: var(--framer-aspect-ratio-supported, 50px); position: relative; width: 45px; }\",\".framer-XCxb5 .framer-1blkfjq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 184px; justify-content: center; overflow: hidden; padding: 0px; position: absolute; right: -30px; top: 127px; width: 170px; z-index: 1; }\",\".framer-XCxb5 .framer-17yi50a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 54px; justify-content: center; left: -5px; overflow: hidden; padding: 0px; position: absolute; top: 333px; width: 60px; z-index: 1; }\",\".framer-XCxb5 .framer-owe5h4 { flex: none; height: 38px; position: relative; width: 34px; }\",\".framer-XCxb5 .framer-fh7rtu { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: 1686px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: auto; }\",\".framer-XCxb5 .framer-y7d9z2 { 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: 70px 42px 70px 42px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-3zr07h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 165px; justify-content: center; overflow: hidden; padding: 0px 0px 53px 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-xubiet { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 99px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1117px; }\",\".framer-XCxb5 .framer-598shf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: 1px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-1fl9hig { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 25px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-rg0g3e, .framer-XCxb5 .framer-19z9q1, .framer-XCxb5 .framer-13syf9z, .framer-XCxb5 .framer-1jy8qpb, .framer-XCxb5 .framer-1l792zc { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 561px; justify-content: flex-end; overflow: hidden; padding: 6px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XCxb5 .framer-cju1sq, .framer-XCxb5 .framer-6dzvnq { bottom: 6px; flex: none; left: 0px; overflow: visible; position: absolute; right: 1px; top: -5px; z-index: 1; }\",\".framer-XCxb5 .framer-yr6kiu, .framer-XCxb5 .framer-1vrxp2v, .framer-XCxb5 .framer-18ovxg3, .framer-XCxb5 .framer-yn380g, .framer-XCxb5 .framer-1mt81cp, .framer-XCxb5 .framer-175q1ty { -webkit-backdrop-filter: blur(5px); align-content: flex-start; align-items: flex-start; backdrop-filter: blur(5px); background-color: rgba(0, 0, 0, 0.25); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 24px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-XCxb5 .framer-1sdsvxf, .framer-XCxb5 .framer-yl7tsd, .framer-XCxb5 .framer-120w3rx, .framer-XCxb5 .framer-1lp0vu5, .framer-XCxb5 .framer-199nt0l, .framer-XCxb5 .framer-18c2vu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-XCxb5 .framer-jv62ko, .framer-XCxb5 .framer-13kr5k, .framer-XCxb5 .framer-17y9se0, .framer-XCxb5 .framer-1vdel22, .framer-XCxb5 .framer-17cgkby, .framer-XCxb5 .framer-12r81vp { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-14hf78n, .framer-XCxb5 .framer-g9unou, .framer-XCxb5 .framer-1my9j9e, .framer-XCxb5 .framer-1qqhh1b, .framer-XCxb5 .framer-1q82288 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 23px); overflow: hidden; position: relative; width: 23px; }\",\".framer-XCxb5 .framer-17aqrqs, .framer-XCxb5 .framer-rn8o4d, .framer-XCxb5 .framer-yntm94, .framer-XCxb5 .framer-xmbe4k { bottom: 1px; flex: none; left: 0px; overflow: visible; position: absolute; right: 1px; top: 0px; z-index: 1; }\",\".framer-XCxb5 .framer-14triwv { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 23px; height: 561px; justify-content: flex-end; overflow: hidden; padding: 6px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XCxb5 .framer-1fepmu2 { align-content: center; align-items: center; background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 71px; height: min-content; justify-content: center; overflow: visible; padding: 128px 0px 75px 0px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-1d7zj6r { background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); bottom: 0px; flex: none; height: 759px; left: 0px; overflow: hidden; position: absolute; right: 0px; z-index: 0; }\",\".framer-XCxb5 .framer-1gch7tr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1002px; }\",\".framer-XCxb5 .framer-xzjkuy, .framer-XCxb5 .framer-4yq8vr { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-lfe4pk { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 757px; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-1hy9m6r { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(1px, 1fr)); height: min-content; justify-content: center; max-width: 1200px; padding: 0px 50px 0px 50px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-yj2qsx { --border-bottom-width: 4px; --border-color: var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, #191919); --border-left-width: 4px; --border-right-width: 4px; --border-style: solid; --border-top-width: 4px; align-content: center; align-items: center; align-self: start; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: wrap; gap: 0px; height: auto; justify-content: flex-start; justify-self: start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-XCxb5 .framer-eu25j9 { aspect-ratio: 1.3333333333333333 / 1; border-top-left-radius: 20px; border-top-right-radius: 20px; flex: none; height: var(--framer-aspect-ratio-supported, 263px); position: relative; width: 100%; }\",\".framer-XCxb5 .framer-10wnr67 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; min-width: 200px; padding: 24px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-zqm8jr { background-color: #e6e6e6; flex: none; height: 1px; overflow: hidden; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-u6zw7r { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-dsohcq, .framer-XCxb5 .framer-n8gvsf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-he9cr7-container, .framer-XCxb5 .framer-ecmc2y-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-XCxb5 .framer-1n2chuz, .framer-XCxb5 .framer-9aqg96, .framer-XCxb5 .framer-v7a1sn { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-XCxb5 .framer-e7ga9x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-132d5gf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-XCxb5 .framer-t4lo57-container { flex: none; height: 52px; left: -339px; position: absolute; right: -243px; top: -41px; z-index: 0; }\",\".framer-XCxb5 .framer-1e0l5nt { height: 32px; position: relative; width: 128px; z-index: 0; }\",\".framer-XCxb5 .framer-1mhky8o { display: grid; flex: none; gap: 24px; grid-auto-rows: 446px; grid-template-columns: repeat(11, minmax(1px, 1fr)); grid-template-rows: repeat(1, 446px); height: min-content; justify-content: center; overflow: visible; padding: 50px 20px 100px 20px; position: relative; width: 1132px; }\",\".framer-XCxb5 .framer-kazza5 { align-content: center; align-items: center; align-self: start; background-color: var(--token-cddb0307-68fb-4982-b73d-68fa95ecf134, #b9eaff); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; grid-column: span 6; height: 100%; justify-content: center; justify-self: start; padding: 0px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-u0lxep-container { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-1cfo6l0-container, .framer-XCxb5 .framer-1x9patk-container, .framer-XCxb5 .framer-1q0rv7o-container { height: 310px; position: relative; width: 686px; }\",\".framer-XCxb5 .framer-1bt7jx0 { align-content: center; align-items: center; align-self: start; background-color: var(--token-f70e52bc-25b9-4851-b4bd-578c0a60e147, #191919); border-bottom-left-radius: 30px; border-bottom-right-radius: 30px; border-top-left-radius: 30px; border-top-right-radius: 30px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; grid-column: span 5; height: 100%; justify-content: space-between; justify-self: start; overflow: hidden; padding: 50px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-XCxb5 .framer-171274i { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-1ioezp7 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-3nxbjs { --framer-paragraph-spacing: 16px; flex: none; height: auto; opacity: 0.7; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-XCxb5 .framer-550ztl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 140px 0px 140px 0px; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-g7ewa2-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-XCxb5 .framer-19a2fj8-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-XCxb5 .framer-1ij9o30-container { bottom: 130px; flex: none; height: 64px; left: -170px; position: absolute; right: -245px; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-XCxb5[data-border=\"true\"]::after, .framer-XCxb5 [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (max-width: 809px) { .framer-XCxb5.framer-72rtr7 { width: 390px; } .framer-XCxb5 .framer-ndusjc-container, .framer-XCxb5 .framer-1h8yo48 { order: 0; } .framer-XCxb5 .framer-1u8cu6j { gap: 19px; height: 1062px; order: 1; padding: 146px 24px 75px 24px; width: min-content; } .framer-XCxb5 .framer-15kjsus, .framer-XCxb5 .framer-1t2jgw-container { order: 1; } .framer-XCxb5 .framer-tdryxb { align-content: unset; align-items: unset; display: grid; gap: 100px; grid-auto-rows: 200px; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(2, 200px); height: 306px; order: 2; width: 339px; } .framer-XCxb5 .framer-1az4fed { bottom: unset; height: 18px; left: 191px; order: 1; top: calc(53.59477124183009% - 18px / 2); width: 109px; } .framer-XCxb5 .framer-c45xts { bottom: 178px; height: 18px; left: 63px; order: 3; width: 213px; } .framer-XCxb5 .framer-1kor7h0, .framer-XCxb5 .framer-wx1w5e-container { order: 2; } .framer-XCxb5 .framer-1sh1jiq { bottom: 89px; height: 18px; left: 186px; order: 4; width: 126px; } .framer-XCxb5 .framer-uq30v3 { bottom: 46px; height: 22px; left: 121px; order: 5; width: 173px; } .framer-XCxb5 .framer-c229l5, .framer-XCxb5 .framer-17yi50a { order: 6; } .framer-XCxb5 .framer-w9gqsa { align-self: start; height: 1px; justify-self: start; order: 0; width: 1fr; z-index: 1; } .framer-XCxb5 .framer-177lh9r-container { order: 9; } .framer-XCxb5 .framer-f9wjor-container { order: 10; } .framer-XCxb5 .framer-1xiv4j9-container { order: 11; } .framer-XCxb5 .framer-1646mgx-container { order: 12; } .framer-XCxb5 .framer-g6s2d7 { align-content: unset; align-items: unset; display: grid; gap: 0px; grid-auto-rows: 115px; grid-template-columns: repeat(1, minmax(1px, 1fr)); grid-template-rows: repeat(3, 115px); order: 3; width: 138px; } .framer-XCxb5 .framer-ifusc1-container { align-self: center; justify-self: center; width: 100%; } .framer-XCxb5 .framer-a0746m-container, .framer-XCxb5 .framer-1nf8rm3-container { align-self: start; justify-self: start; width: 100%; } .framer-XCxb5 .framer-19losp2-container { bottom: -35px; height: 85px; order: 4; right: -899px; } .framer-XCxb5 .framer-1ouw9rc-container { bottom: -27px; height: 84px; left: calc(53.48837209302327% - 723.5px / 2); order: 5; width: 724px; } .framer-XCxb5 .framer-1a1ilig { flex-direction: column; gap: 20px; order: 6; width: 157px; } .framer-XCxb5 .framer-68tsvr { gap: 0px; order: 2; padding: 44px 24px 44px 24px; } .framer-XCxb5 .framer-177bgrc { flex-direction: column; gap: 48px; width: 100%; } .framer-XCxb5 .framer-1itri7n { gap: 42px; height: min-content; padding: 0px 20px 0px 20px; } .framer-XCxb5 .framer-pgq7bs { gap: 20px; height: min-content; order: 0; } .framer-XCxb5 .framer-eededa { padding: 0px 0px 18px 0px; } .framer-XCxb5 .framer-15du3v0 { flex: 1 0 0px; height: 318px; width: 1px; } .framer-XCxb5 .framer-1fr4pwz { height: auto; width: 316px; } .framer-XCxb5 .framer-1lpa9fm { height: 22px; left: calc(50.561797752809014% - 266px / 2); order: 1; top: 430px; width: 266px; } .framer-XCxb5 .framer-1blkfjq { height: 54px; order: 5; right: -6px; top: 337px; width: 60px; } .framer-XCxb5 .framer-fh7rtu { align-self: unset; gap: 27px; height: min-content; order: 2; width: 310px; } .framer-XCxb5 .framer-utrhp6-container { order: 0; width: 358px; } .framer-XCxb5 .framer-hazqma-container, .framer-XCxb5 .framer-y7d9z2 { order: 3; } .framer-XCxb5 .framer-19yad68-container { order: 4; } .framer-XCxb5 .framer-3zr07h { height: min-content; padding: 0px 0px 37px 0px; } .framer-XCxb5 .framer-xubiet { gap: 22px; height: min-content; width: min-content; } .framer-XCxb5 .framer-598shf { flex: none; height: 79px; width: 301px; } .framer-XCxb5 .framer-1mt0pij { height: 52px; width: 301px; } .framer-XCxb5 .framer-rg0g3e { height: 400px; order: 0; } .framer-XCxb5 .framer-19z9q1 { height: 400px; order: 1; } .framer-XCxb5 .framer-13syf9z { height: 400px; order: 2; } .framer-XCxb5 .framer-1jy8qpb { height: 400px; order: 3; } .framer-XCxb5 .framer-1l792zc { height: 400px; order: 4; } .framer-XCxb5 .framer-14triwv { height: 400px; order: 6; } .framer-XCxb5 .framer-1fepmu2 { gap: 48px; order: 6; padding: 72px 24px 48px 24px; } .framer-XCxb5 .framer-1gch7tr, .framer-XCxb5 .framer-lfe4pk { width: 100%; } .framer-XCxb5 .framer-1hy9m6r { grid-template-columns: repeat(1, minmax(1px, 1fr)); height: 1110px; max-width: 1189px; width: 113%; } .framer-XCxb5 .framer-yj2qsx { grid-column: span 1; height: min-content; } .framer-XCxb5 .framer-eu25j9 { height: var(--framer-aspect-ratio-supported, 216px); width: 287px; } .framer-XCxb5 .framer-10wnr67 { width: 291px; } .framer-XCxb5 .framer-132d5gf { flex-direction: column; gap: 20px; padding: 50px; width: 100%; } .framer-XCxb5 .framer-1mhky8o { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; order: 7; width: min-content; } .framer-XCxb5 .framer-kazza5 { align-self: unset; height: 629px; width: min-content; } .framer-XCxb5 .framer-u0lxep-container { width: 333px; } .framer-XCxb5 .framer-1bt7jx0 { align-self: unset; gap: 32px; height: min-content; justify-content: center; padding: 24px; width: 321px; } .framer-XCxb5 .framer-550ztl { padding: 20px 0px 20px 0px; } .framer-XCxb5 .framer-19a2fj8-container { order: 8; } .framer-XCxb5 .framer-1ij9o30-container { bottom: 374px; left: -95px; order: 9; right: -77px; }}\",\"@media (min-width: 810px) and (max-width: 1200px) { .framer-XCxb5.framer-72rtr7 { width: 810px; } .framer-XCxb5 .framer-ndusjc-container, .framer-XCxb5 .framer-13qqxu0, .framer-XCxb5 .framer-1dl73x0, .framer-XCxb5 .framer-utrhp6-container, .framer-XCxb5 .framer-1d7zj6r { order: 0; } .framer-XCxb5 .framer-1u8cu6j, .framer-XCxb5 .framer-1t2jgw-container, .framer-XCxb5 .framer-1bt7jx0 { order: 1; } .framer-XCxb5 .framer-tdryxb { width: 657px; } .framer-XCxb5 .framer-1az4fed { bottom: 56px; left: 0px; width: 366px; } .framer-XCxb5 .framer-c45xts { bottom: 114px; left: 152px; width: 281px; } .framer-XCxb5 .framer-1sh1jiq { bottom: 57px; left: 378px; } .framer-XCxb5 .framer-uq30v3 { left: 111px; } .framer-XCxb5 .framer-1q9i58d-container { left: -11px; top: -70px; } .framer-XCxb5 .framer-w8txs2-container { aspect-ratio: 0.86 / 1; bottom: -16px; height: var(--framer-aspect-ratio-supported, 53px); left: 628px; top: unset; } .framer-XCxb5 .framer-68tsvr, .framer-XCxb5 .framer-zteih6, .framer-XCxb5 .framer-wx1w5e-container, .framer-XCxb5 .framer-1hy9m6r { order: 2; } .framer-XCxb5 .framer-177bgrc { width: 100%; } .framer-XCxb5 .framer-1itri7n { height: min-content; } .framer-XCxb5 .framer-pgq7bs { height: 396px; order: 0; padding: 0px 0px 75px 0px; } .framer-XCxb5 .framer-eededa { order: 0; padding: 0px 0px 46px 0px; } .framer-XCxb5 .framer-15du3v0 { width: 599px; } .framer-XCxb5 .framer-1fr4pwz { order: 1; width: 590px; } .framer-XCxb5 .framer-1lpa9fm { left: 466px; order: 1; top: 249px; width: 150px; } .framer-XCxb5 .framer-a2mud7 { height: 89px; left: 49px; order: 3; top: 178px; width: 54px; } .framer-XCxb5 .framer-1blkfjq { height: 52px; left: 604px; order: 4; right: unset; top: 197px; width: 106px; } .framer-XCxb5 .framer-fh7rtu { gap: 0px; height: 1461px; order: 6; } .framer-XCxb5 .framer-hazqma-container, .framer-XCxb5 .framer-y7d9z2, .framer-XCxb5 .framer-132d5gf { order: 3; } .framer-XCxb5 .framer-19yad68-container, .framer-XCxb5 .framer-1fepmu2, .framer-XCxb5 .framer-t4lo57-container { order: 4; } .framer-XCxb5 .framer-3zr07h { height: 168px; } .framer-XCxb5 .framer-1gch7tr { order: 1; width: 638px; } .framer-XCxb5 .framer-lfe4pk { width: 600px; } .framer-XCxb5 .framer-eu25j9 { height: var(--framer-aspect-ratio-supported, 166px); } .framer-XCxb5 .framer-1mhky8o { grid-template-columns: repeat(5, minmax(1px, 1fr)); grid-template-rows: repeat(2, 446px); order: 7; width: 701px; } .framer-XCxb5 .framer-kazza5 { grid-column: span 5; order: 0; } .framer-XCxb5 .framer-19a2fj8-container { order: 8; } .framer-XCxb5 .framer-1ij9o30-container { order: 9; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8382\n * @framerIntrinsicWidth 1201\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ChwWhcB84\":{\"layout\":[\"fixed\",\"auto\"]},\"gXySeoCgv\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"d3NdKo3gH\":{\"pattern\":\":d3NdKo3gH\",\"name\":\"stats\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-XCxb5\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:8382,width:1201};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Calistoga\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/calistoga/v17/6NUU8F2OJg6MeR7l4e0vscYAwdRZfw.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Futura Now Headline ExtraBold\",source:\"custom\",url:\"https://framerusercontent.com/assets/fTjYTY7ZaxWnqBDEvKPGoTdbUU.woff2\"},{family:\"Space Grotesk\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/FOIKAJFLDFRPJ452NHBMMHCNDL4FUUBB/5AC3Y6FTG5H7IECKNZVIR7XI64O5YW5S/OB3CIWMGQGGYEGXRXPOVBXWAH4INE6T4.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7EWHG4AMROQSXDCQTDPGBVASATB7CED2/TJSQTK5FHJ2MYKML5IXF2G6YTGFJLTYL/K4ZMLVLHYIFVTTTWGVOTVGOFUUX7NVGI.woff2\",weight:\"800\"}]},...NavigationFonts,...PhosphorFonts,...StatisticFonts,...TickerFonts,...ButtonFonts,...ChromaBackgroundFonts,...IconFonts,...Icon1Fonts,...DiscoveryAndDefineFonts,...Phosphor1Fonts,...ReviewFonts,...SlideshowFonts,...ConvertKitFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ChwWhcB84\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gXySeoCgv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"8382\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicWidth\":\"1201\",\"framerContractVersion\":\"1\",\"framerScrollSections\":\"{\\\"d3NdKo3gH\\\":{\\\"pattern\\\":\\\":d3NdKo3gH\\\",\\\"name\\\":\\\"stats\\\"}}\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}