{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/lqs76bbJMP0XGQQZpTfS/tJX20kyOb0DULiBuZKQ8/BaseForm.js", "ssg:https://framerusercontent.com/modules/pdLPT98LCQkS8WfqCmF2/XFDHHzGo09BzADjdejbi/ND6XVLnoy.js", "ssg:https://framerusercontent.com/modules/e3biUfzSDNgHOrbZpdkQ/3zJFoElxti3boKVFYR2H/LKea8G53p.js"],
  "sourcesContent": ["/*\nMIT License\nCopyright \u00A9 Joel Whitaker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall the\nauthors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the Software or the use or other dealings in the\nSoftware.\n*/ 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\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[FieldType.Time,FieldType.Week,FieldType.Number,FieldType.Date,FieldType.DateTimeLocal,].includes(type);}/**\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 * BASEFORM\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const BaseForm=withCSS(function BaseForm({url,method,contentType,redirectAs,link,inputs,button,styles,extraHeaders,extraFields,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(null);if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const headers=new Headers;if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}const formData=new FormData(event.target);let requestOptions={method:method,headers:headers};if(method===\"get\"){// Add form fields to URL for GET requests\nconst urlSearchParams=new URLSearchParams;for(const[name,value1]of formData){urlSearchParams.append(name,value1.toString());}const queryString=urlSearchParams.toString();url+=queryString?`?${queryString}`:\"\";}else{headers.append(\"Content-Type\",contentType);if(contentType===\"application/json\"){headers.append(\"accept\",\"application/json\");}if(contentType===\"application/x-www-form-urlencoded\"){const urlSearchParams1=new URLSearchParams;for(const[name1,value2]of formData){urlSearchParams1.append(name1,value2.toString());}if(extraFields){for(const[key1,value3]of Object.entries(extraFields)){urlSearchParams1.append(key1,value3.toString());}}requestOptions[\"body\"]=urlSearchParams1.toString();}else if(contentType===\"application/json\"){const bodyObject={};for(const[name2,value4]of formData){bodyObject[name2]=value4;}if(extraFields){for(const[key2,value5]of Object.entries(extraFields)){bodyObject[key2]=value5;}}requestOptions[\"body\"]=JSON.stringify(bodyObject);}}fetch(url,requestOptions).then(response=>{const statusCode=response.status;const contentType=response.headers.get(\"content-type\");if(contentType&&contentType.includes(\"application/json\")){return response.json().then(data=>({statusCode,data}));}else if(contentType&&contentType.includes(\"text/plain\")){return response.text().then(data=>({statusCode,data}));}else{throw new Error(\"Unsupported response type\");}}).then(({statusCode,data})=>{if(statusCode>=200&&statusCode<300){// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}else{// Handle errors\nlet errorMessage=\"An error occurred submitting the form\";throw new Error(errorMessage);}}).catch(error=>{console.error(error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.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(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/ _jsxs(\"label\",{htmlFor:input.name,style:{marginBottom:\"0.375rem\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:[input.label,requiredFlag(input.required)]});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/ _jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/ _jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===FieldType.Select){inputElement=selectInput(input);}else if(input.type===FieldType.TextArea){inputElement=textareaInput(input);}else if(input.type===FieldType.Checkbox){inputElement=checkboxInput(input);}else if(input.type===FieldType.Radio){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:styles.button.fontWeight,fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/ _jsx(Spinner,{color:styles.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.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};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\"})]})})});};const basePropertyControls={url:{title:\"Url\",type:ControlType.String},method:{type:ControlType.Enum,defaultValue:\"post\",options:[\"get\",\"post\",\"put\",\"patch\",\"delete\"],optionTitles:[\"Get\",\"Post\",\"Put\",\"Patch\",\"Delete\"]},contentType:{type:ControlType.Enum,defaultValue:\"application/json\",options:[\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"json\",\"x-www-form-urlencoded\"],hidden:props=>props.method===\"get\"},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},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\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#fff\"},columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},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:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},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}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",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\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,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:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\",],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},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},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}}}}}}}};addPropertyControls(BaseForm,basePropertyControls);const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}function requiredFlag(isRequired){if(isRequired){return /*#__PURE__*/ _jsx(\"span\",{children:\"*\"});}return null;}BaseForm.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"name\",label:\"Name\",placeholder:\"Jane\",type:FieldType.Text,required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:FieldType.Email,required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:FieldType.Select,required:false,options:[]},{name:\"message\",label:\"Message\",placeholder:\"\",type:FieldType.TextArea,required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:FieldType.Checkbox,required:false},]};export default BaseForm;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaseForm.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Inter-500\",\"GF;Inter-700\"]);export const fonts=[{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZ1rib2Bg-4.woff2\",weight:\"500\"},{family:\"Inter\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"}];export const css=['.framer-bcfxq .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-bcfxq .framer-styles-preset-p4sgmx.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0.5px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #0e1728; --framer-text-decoration: none; --framer-text-transform: uppercase; }','@media (max-width: 1199px) and (min-width: 810px) { .framer-bcfxq .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-bcfxq .framer-styles-preset-p4sgmx.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0.5px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #0e1728; --framer-text-decoration: none; --framer-text-transform: uppercase; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-bcfxq .framer-styles-preset-p4sgmx:not(.rich-text-wrapper), .framer-bcfxq .framer-styles-preset-p4sgmx.rich-text-wrapper p { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 10px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-letter-spacing: 0.5px; --framer-line-height: 140%; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #0e1728; --framer-text-decoration: none; --framer-text-transform: uppercase; } }'];export const className=\"framer-bcfxq\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (315fd46)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useRouter,withCSS,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import BaseForm from\"https://framerusercontent.com/modules/lqs76bbJMP0XGQQZpTfS/tJX20kyOb0DULiBuZKQ8/BaseForm.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/CAjjxbTJBxHwH1MagCef/Phosphor.js\";import Button from\"#framer/local/canvasComponent/beqLwtpNS/beqLwtpNS.js\";import SectionBadge from\"#framer/local/canvasComponent/DT9isorhv/DT9isorhv.js\";import Footer from\"#framer/local/canvasComponent/zOCvedWwi/zOCvedWwi.js\";import*as sharedStyle4 from\"#framer/local/css/i59KN99_1/i59KN99_1.js\";import*as sharedStyle from\"#framer/local/css/LlxBF921R/LlxBF921R.js\";import*as sharedStyle2 from\"#framer/local/css/ND6XVLnoy/ND6XVLnoy.js\";import*as sharedStyle3 from\"#framer/local/css/uSwC03676/uSwC03676.js\";import*as sharedStyle1 from\"#framer/local/css/YAP816Y5n/YAP816Y5n.js\";import metadataProvider from\"#framer/local/webPageMetadata/LKea8G53p/LKea8G53p.js\";const PhosphorFonts=getFonts(Phosphor);const ButtonFonts=getFonts(Button);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const SectionBadgeFonts=getFonts(SectionBadge);const RichTextWithOptimizedAppearEffect=withOptimizedAppearEffect(RichText);const BaseFormFonts=getFonts(BaseForm);const FooterFonts=getFonts(Footer);const cycleOrder=[\"RGLoV87n_\",\"Pfmj_gyqI\",\"osvmGswmQ\"];const breakpoints={osvmGswmQ:\"(max-width: 809px)\",Pfmj_gyqI:\"(min-width: 810px) and (max-width: 1199px)\",RGLoV87n_:\"(min-width: 1200px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-jcAYO\";const variantClassNames={osvmGswmQ:\"framer-v-vc50w9\",Pfmj_gyqI:\"framer-v-1iundp7\",RGLoV87n_:\"framer-v-kui291\"};const transition1={damping:40,delay:.3,mass:1,stiffness:300,type:\"spring\"};const animation={opacity:1,rotate:12,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:12,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};const transition2={damping:70,delay:.2,mass:1,stiffness:450,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,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:20};const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"RGLoV87n_\",Phone:\"osvmGswmQ\",Tablet:\"Pfmj_gyqI\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"RGLoV87n_\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-jcAYO`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-jcAYO`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"Pfmj_gyqI\",\"osvmGswmQ\"].includes(baseVariant))return true;return false;};const isDisplayed1=()=>{if(!isBrowser())return true;if([\"Pfmj_gyqI\",\"osvmGswmQ\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"osvmGswmQ\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"RGLoV87n_\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-kui291\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"nav\",{className:\"framer-19wm04\",\"data-border\":true,\"data-framer-name\":\"Navigation Bar\",name:\"Navigation Bar\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m8p3ct\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-88ldrk\",\"data-framer-name\":\"Top\",name:\"Top\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dnhq1n\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1m1mu84 framer-f5oytu\",\"data-framer-name\":\"Logo\",name:\"Logo\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mqjz8\",\"data-framer-name\":\"slice_logo_positive\",layout:\"position\",name:\"slice_logo_positive\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 130 48\"><g id=\"ss12700889334_1\"><path d=\"M 24 48 C 10.745 48 0 48 0 48 L 0 0 C 0 0 10.745 0 24 0 L 40 0 C 53.255 0 64 0 64 0 L 64 48 C 64 48 53.255 48 40 48 Z\" fill=\"transparent\"></path><path d=\"M 24 48 C 10.745 48 0 48 0 48 L 0 0 C 0 0 10.745 0 24 0 L 40 0 C 53.255 0 64 0 64 0 L 64 48 C 64 48 53.255 48 40 48 Z\" fill=\"rgb(235,235,235)\"></path><path d=\"M 0 6.643 L 0 17.893 L 22.5 29.143 L 0 40.393 L 0 51.643 L 22.5 40.393 L 22.5 51.643 L 45 40.393 L 45 17.893 L 22.5 6.643 L 22.5 17.893 Z M 22.5 17.893 L 22.5 40.393 L 45 29.143 Z\" fill=\"rgb(0,0,0)\"></path></g><path d=\"M 80.749 34.39 C 79.389 34.39 78.158 34.152 77.057 33.675 C 75.957 33.198 75.051 32.514 74.34 31.621 C 73.638 30.728 73.192 29.675 73.001 28.462 L 76.251 27.968 C 76.433 28.696 76.749 29.324 77.2 29.853 C 77.65 30.373 78.197 30.772 78.838 31.049 C 79.488 31.318 80.19 31.452 80.944 31.452 C 81.594 31.458 82.24 31.352 82.855 31.14 C 83.445 30.923 83.917 30.611 84.272 30.204 C 84.636 29.797 84.818 29.316 84.818 28.761 C 84.818 28.241 84.649 27.808 84.311 27.461 C 83.973 27.106 83.449 26.82 82.738 26.603 L 77.902 25.173 C 77.211 24.98 76.544 24.71 75.913 24.367 C 75.315 24.037 74.799 23.548 74.366 22.898 C 73.941 22.239 73.729 21.403 73.729 20.389 C 73.729 19.219 74.028 18.222 74.626 17.399 C 75.224 16.567 76.039 15.943 77.07 15.527 C 78.11 15.111 79.276 14.907 80.567 14.916 C 82.5 14.933 84.107 15.419 85.39 16.372 C 86.681 17.317 87.535 18.656 87.951 20.389 L 84.584 20.974 C 84.46 20.354 84.178 19.776 83.765 19.297 C 83.367 18.821 82.858 18.45 82.283 18.218 C 81.696 17.965 81.063 17.837 80.424 17.841 C 79.809 17.841 79.241 17.945 78.721 18.153 C 78.201 18.353 77.785 18.634 77.473 18.998 C 77.175 19.34 77.013 19.779 77.018 20.233 C 77.018 20.857 77.261 21.333 77.746 21.663 C 78.24 21.983 78.899 22.253 79.722 22.469 L 83.076 23.405 C 83.96 23.648 84.749 23.934 85.442 24.263 C 86.135 24.583 86.751 25.095 87.288 25.797 C 87.825 26.499 88.094 27.417 88.094 28.553 C 88.094 29.801 87.756 30.867 87.08 31.751 C 86.413 32.626 85.52 33.285 84.402 33.727 C 83.284 34.169 82.066 34.39 80.749 34.39 Z M 90.128 14.89 L 93.261 14.89 L 93.261 34 L 90.128 34 Z M 96.375 14.955 L 99.508 14.955 L 99.508 17.828 L 96.375 17.828 Z M 96.375 19.96 L 99.508 19.96 L 99.508 34 L 96.375 34 Z M 108.459 34.39 C 107.046 34.39 105.82 34.074 104.78 33.441 C 103.755 32.806 102.933 31.89 102.414 30.802 C 101.868 29.675 101.591 28.402 101.582 26.98 C 101.582 25.55 101.864 24.276 102.427 23.158 C 102.99 22.031 103.792 21.152 104.832 20.519 C 105.881 19.886 107.103 19.57 108.498 19.57 C 109.555 19.57 110.513 19.752 111.371 20.116 C 112.2 20.459 112.935 20.993 113.516 21.676 C 114.097 22.343 114.495 23.136 114.712 24.055 L 111.592 24.9 C 111.358 24.155 110.955 23.57 110.383 23.145 C 109.831 22.724 109.153 22.5 108.459 22.508 C 107.28 22.508 106.392 22.915 105.794 23.73 C 105.205 24.545 104.906 25.628 104.897 26.98 C 104.906 28.358 105.213 29.45 105.82 30.256 C 106.427 31.053 107.306 31.452 108.459 31.452 C 109.274 31.452 109.924 31.27 110.409 30.906 C 110.894 30.533 111.263 29.974 111.514 29.229 L 114.712 29.944 C 114.279 31.374 113.52 32.474 112.437 33.246 C 111.354 34.009 110.028 34.39 108.459 34.39 Z M 118.47 27.851 C 118.592 29.012 118.96 29.905 119.575 30.529 C 120.199 31.144 121.04 31.452 122.097 31.452 C 122.86 31.452 123.523 31.283 124.086 30.945 C 124.65 30.598 125.083 30.1 125.386 29.45 L 128.48 30.386 C 128.138 31.199 127.634 31.933 126.998 32.544 C 126.376 33.141 125.643 33.609 124.84 33.922 C 124.023 34.236 123.154 34.395 122.279 34.39 C 120.875 34.39 119.632 34.082 118.548 33.467 C 117.478 32.865 116.599 31.972 116.013 30.893 C 115.415 29.793 115.116 28.54 115.116 27.136 C 115.116 25.619 115.407 24.293 115.987 23.158 C 116.577 22.014 117.4 21.13 118.457 20.506 C 119.515 19.882 120.728 19.57 122.097 19.57 C 123.449 19.57 124.619 19.869 125.607 20.467 C 126.595 21.065 127.354 21.919 127.882 23.028 C 128.411 24.128 128.675 25.424 128.675 26.915 C 128.675 27.21 128.662 27.522 128.636 27.851 Z M 122.227 22.313 C 120.147 22.313 118.921 23.37 118.548 25.485 L 125.464 25.485 C 125.326 24.393 124.992 23.591 124.463 23.08 C 123.943 22.569 123.198 22.313 122.227 22.313 Z\" fill=\"rgb(0,0,0)\"></path></svg>',svgContentId:12700889334,tabIndex:1,withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-6iz7xi-container hidden-kui291\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"rgb(14, 23, 40)\",height:\"100%\",iconSearch:\"House\",iconSelection:\"List\",id:\"FfURCy9P9\",layoutId:\"FfURCy9P9\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"regular\",width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-j1v5nl hidden-1iundp7 hidden-vc50w9\",\"data-framer-name\":\"Navigation\",name:\"Navigation\",children:[/*#__PURE__*/_jsx(Link,{href:{hash:\":W6jgFvve7\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-15ougd2 framer-f5oytu\",\"data-framer-name\":\"Menu Item - Hover\",name:\"Menu Item - Hover\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"How it works\"})}),className:\"framer-zn3djs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":IWCo8hwJH\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-x30inc framer-f5oytu\",\"data-framer-name\":\"Menu Item\",name:\"Menu Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"Simulator\"})}),className:\"framer-hm9mkp\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":NRPgC1QcM\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-zba60l framer-f5oytu\",\"data-framer-name\":\"Menu Item\",name:\"Menu Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"Benefits\"})}),className:\"framer-we4dzh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":Fzvi32zRv\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-f6g46f framer-f5oytu\",\"data-framer-name\":\"Menu Item\",name:\"Menu Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"Features\"})}),className:\"framer-1yfeojq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(Link,{href:{hash:\":jHvmshmHM\",webPageId:\"augiA20Il\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-161qd4l framer-f5oytu\",\"data-framer-name\":\"Menu Item\",name:\"Menu Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"FAQs\"})}),className:\"framer-1pdo91q\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7k3jvn hidden-1iundp7 hidden-vc50w9\",\"data-framer-name\":\"Bottom\",name:\"Bottom\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"LKea8G53p\"},openInNewTab:false,smoothScroll:true,children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1j7yreh framer-f5oytu\",\"data-framer-name\":\"Menu Item\",name:\"Menu Item\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-d36q30\",\"data-styles-preset\":\"LlxBF921R\",children:\"Contact us\"})}),className:\"framer-lmuq89\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1twoehk-container\",children:/*#__PURE__*/_jsx(Button,{C9KNBU1Ed:\"var(--token-20608b9f-0145-4a1e-b971-ee948ebbb015, rgb(255, 255, 255))\",cQv2O8Mvt:\"https://andrea-montini.lemonsqueezy.com/checkout/buy/04b5d2dc-d357-4133-93d1-c707cdfb2c1c\",GP85vQ4AC:true,height:\"100%\",id:\"Mya7Rae0m\",layoutId:\"Mya7Rae0m\",PmrixLNYY:false,sgSfyIETC:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",sq67Ol4a3:\"Get this Template\",variant:\"PB0K3N1D2\",width:\"100%\"})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-3exav3\",\"data-framer-name\":\"Hero\",name:\"Hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-y4e4g8\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3ax645\",\"data-framer-name\":\"Col\",name:\"Col\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gv9ji5\",\"data-framer-name\":\"Text Content\",name:\"Text Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eufq5h\",\"data-framer-name\":\"Heading\",name:\"Heading\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1gn7b59 hidden-vc50w9\",\"data-framer-appear-id\":\"1gn7b59\",\"data-framer-name\":\"circle-doodle\",initial:animation1,name:\"circle-doodle\",optimized:true,style:{rotate:12,transformPerspective:1200},children:/*#__PURE__*/_jsx(SVG,{className:\"framer-sp6szo\",\"data-framer-name\":\"doodle-circle\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:112,intrinsicWidth:258,name:\"doodle-circle\",svg:'<svg width=\"258\" height=\"112\" viewBox=\"0 0 258 112\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_2532_2550)\">\\n<path d=\"M93.1836 20.3056C92.4367 20.6092 92.8418 20.9621 92.7532 21.1016C93.9495 20.4205 93.114 20.1907 93.1836 20.3056Z\" fill=\"#F9CF01\"/>\\n<path d=\"M105.153 13.8476L104.982 14.1348C105.546 13.7081 106.128 13.347 106.71 12.9531C106.191 13.2485 105.666 13.5193 105.16 13.8394L105.153 13.8476Z\" fill=\"#F9CF01\"/>\\n<path d=\"M116.895 9.88483C116.262 9.63045 115.192 9.99151 114.021 10.4592C113.433 10.6972 112.819 10.9434 112.217 11.1814C111.622 11.4357 111.034 11.6491 110.496 11.7558L110.11 11.6819L109.312 12.6995C110.572 12.2153 111.983 11.485 113.344 11.0008C114.699 10.4839 115.971 10.0325 116.895 9.87662V9.88483Z\" fill=\"#F9CF01\"/>\\n<path d=\"M123.504 9.99991C123.061 9.76194 124.821 9.35985 122.017 10.2707C122.162 10.2707 122.206 10.2789 122.295 10.2871C122.548 10.2133 122.903 10.123 123.504 9.99991Z\" fill=\"#F9CF01\"/>\\n<path d=\"M122.301 10.2949C121.06 10.6396 123.162 10.3688 122.301 10.2949V10.2949Z\" fill=\"#F9CF01\"/>\\n<path d=\"M128.03 8.67813C127.492 8.89969 126.954 9.10483 126.422 9.3346C126.789 9.44128 128.264 9.18689 127.739 9.44128C129.41 8.9161 129.036 8.79301 128.03 8.66992V8.67813Z\" fill=\"#F9CF01\"/>\\n<path d=\"M129.517 7.71875L128.675 8.03057C128.84 8.07981 129.068 8.0634 129.517 7.71875Z\" fill=\"#F9CF01\"/>\\n<path d=\"M126.897 8.67859L128.675 8.02212C128.416 7.93185 128.353 7.66106 127.853 8.29291C127.966 8.0057 127.637 8.32573 126.89 8.67038L126.897 8.67859Z\" fill=\"#F9CF01\"/>\\n<path d=\"M125.852 8.79274C124.902 8.84198 123.693 9.03071 125.301 8.30859C122.168 9.24407 122.725 9.72821 125.852 8.79274Z\" fill=\"#F9CF01\"/>\\n<path d=\"M117.345 8.81836L116.066 8.94145L115.053 9.55689C115.56 9.25327 117.471 9.06454 117.345 8.81836Z\" fill=\"#F9CF01\"/>\\n<path d=\"M138.392 7.15255C138.481 6.9474 137.785 6.75046 137.639 6.53711L136.43 6.95561C137.076 6.98023 138.278 6.89817 138.386 7.15255H138.392Z\" fill=\"#F9CF01\"/>\\n<path d=\"M137.638 6.53576L139.449 5.91211C137.803 6.15008 137.518 6.34702 137.638 6.53576Z\" fill=\"#F9CF01\"/>\\n<path d=\"M129.688 6.69184L126.763 7.98837L130.27 6.56055L129.688 6.69184Z\" fill=\"#F9CF01\"/>\\n<path d=\"M145.405 6.20089L144.398 6.75889L146.209 5.88086L145.405 6.20089Z\" fill=\"#F9CF01\"/>\\n<path d=\"M150.071 5.63402C149.318 6.05252 151.16 6.15099 150.356 6.4382C151.615 6.27408 152.685 5.8802 153.647 5.52734C152.615 5.76531 151.514 5.81455 150.065 5.63402H150.071Z\" fill=\"#F9CF01\"/>\\n<path d=\"M155.274 4.99414C154.761 5.12543 154.229 5.31417 153.647 5.52752C154.191 5.40444 154.729 5.24032 155.274 4.99414Z\" fill=\"#F9CF01\"/>\\n<path d=\"M142.594 5.55081C142.746 5.64928 143.044 5.90366 144.088 5.90366L143.322 5.46875C143.101 5.49337 142.848 5.51799 142.594 5.55081Z\" fill=\"#F9CF01\"/>\\n<path d=\"M143.291 5.46216L143.316 5.47857C144.108 5.39651 144.652 5.33907 144.886 5.31445C144.684 5.33086 144.203 5.3801 143.291 5.46216Z\" fill=\"#F9CF01\"/>\\n<path d=\"M142.411 5.57625C142.481 5.57625 142.525 5.55997 142.595 5.55997C142.519 5.51929 142.475 5.50301 142.411 5.57625Z\" fill=\"#F9CF01\"/>\\n<path d=\"M134.562 6.18245C135.613 5.71471 137.847 5.01721 135.607 4.94336C134.866 5.42751 136.145 5.47674 134.562 6.18245Z\" fill=\"#F9CF01\"/>\\n<path d=\"M141.456 5.02734C140.797 5.05196 140.139 5.14223 139.487 5.20787C139.538 5.33917 139.911 5.47867 139.386 5.71664C140.076 5.48687 140.766 5.22429 141.456 5.02734Z\" fill=\"#F9CF01\"/>\\n<path d=\"M142.405 4.74805L141.455 5.02705L142.183 4.98602L142.405 4.74805Z\" fill=\"#F9CF01\"/>\\n<path d=\"M151.887 4.77207C152.723 4.47666 153.653 4.3864 154.704 4.26331C153.578 4.24689 152.406 4.28792 151.305 4.37819C151.16 4.55872 150.685 4.88695 151.887 4.77207Z\" fill=\"#F9CF01\"/>\\n<path d=\"M147.703 4.97736C147.76 4.96109 147.836 4.93667 147.887 4.92854C147.766 4.89599 147.671 4.89599 147.703 4.97736Z\" fill=\"#F9CF01\"/>\\n<path d=\"M165.054 3.95897C164.996 3.92642 164.946 3.89388 164.888 3.86133C164.876 3.89388 164.869 3.91829 164.85 3.95083H165.054V3.95897Z\" fill=\"#F9CF01\"/>\\n<path d=\"M151.109 4.28722C150.254 4.2544 149.761 4.41852 149.286 4.62366C149.913 4.51699 150.584 4.43493 151.305 4.36928C151.375 4.28722 151.381 4.23799 151.109 4.28722Z\" fill=\"#F9CF01\"/>\\n<path d=\"M158.148 4.6325C157.705 4.54224 157.205 4.46018 156.673 4.39453C157.11 4.54224 157.996 4.772 158.148 4.6325Z\" fill=\"#F9CF01\"/>\\n<path d=\"M148.184 5.03516C148.14 5.04329 148.102 5.05957 148.057 5.0677C148.343 5.14907 148.305 5.10839 148.184 5.03516Z\" fill=\"#F9CF01\"/>\\n<path d=\"M148.184 5.03529C148.615 4.92862 148.95 4.77271 149.286 4.625C148.773 4.71526 148.298 4.78912 147.893 4.92041C148.001 4.94503 148.108 4.98606 148.184 5.03529Z\" fill=\"#F9CF01\"/>\\n<path d=\"M168.225 0.603516C168.067 1.08766 165.82 1.52258 163.876 0.989193C161.965 1.34205 163.237 2.9504 164.889 3.86126C164.946 3.6479 164.946 3.45096 166.902 3.18017C166.225 2.90937 162.566 2.5319 164.212 2.09699C166.807 1.85902 166.339 2.28572 167.598 2.54831C166.528 1.94108 170.909 1.67028 170.364 0.800457C169.599 0.87431 168.839 0.997399 168.073 1.08766C168.029 0.948163 168.864 0.73481 168.231 0.603516H168.225Z\" fill=\"#F9CF01\"/>\\n<path d=\"M161.173 3.85352L160.375 3.94378C161.287 4.00122 161.945 4.14893 163.148 4.51819C164.477 4.28843 164.756 4.1079 164.844 3.95199L162.869 3.90275L160.895 3.93557L161.167 3.85352H161.173Z\" fill=\"#F9CF01\"/>\\n<path d=\"M156.78 4.0739C157.388 3.52411 159.312 3.2287 158.116 2.69531C155.755 2.82661 156.476 3.18767 155.077 3.49128C158.875 3.19587 153.995 3.81952 156.748 4.01646C156.008 4.13134 155.337 4.17237 154.704 4.26264C155.387 4.26264 156.052 4.32829 156.672 4.40214C156.634 4.39393 156.615 4.38573 156.584 4.36932H156.565C156.4 4.31187 156.343 4.27084 156.527 4.30367C156.54 4.30367 156.584 4.29546 156.603 4.28726C156.628 4.2134 156.691 4.14776 156.767 4.08211C157.869 4.14776 156.945 4.2134 156.603 4.28726C156.59 4.31187 156.565 4.33649 156.559 4.36932H156.571L160.363 3.94261C159.559 3.90158 158.552 3.94261 156.767 4.0739H156.78Z\" fill=\"#F9CF01\"/>\\n<path d=\"M137.518 3.47513C137.638 3.49974 137.638 3.54077 137.651 3.5736C137.892 3.46692 137.98 3.40948 137.518 3.47513Z\" fill=\"#F9CF01\"/>\\n<path d=\"M139.114 3.52539C138.842 3.64848 138.633 3.89466 137.734 3.99313C136.943 3.96851 137.715 3.73874 137.658 3.57463C137.126 3.80439 135.803 4.27213 137.525 4.2393L137.784 4.12442C139.329 4.05057 141.348 4.3788 141.089 4.5101C140.601 4.08339 140.183 3.82901 139.12 3.52539H139.114Z\" fill=\"#F9CF01\"/>\\n<path d=\"M148.07 3.40145L151.228 2.89269L149.583 2.56445L149.678 2.83525C147.861 2.86807 148.272 3.1799 148.063 3.40966L148.07 3.40145Z\" fill=\"#F9CF01\"/>\\n<path d=\"M165.414 4.22156L164.997 4.77956L166.82 4L165.414 4.22156Z\" fill=\"#F9CF01\"/>\\n<path d=\"M169.522 4.18203L169.364 4.66618C169.725 4.56771 170.092 4.46924 170.453 4.39539C170.142 4.31333 169.832 4.23948 169.522 4.17383V4.18203Z\" fill=\"#F9CF01\"/>\\n<path d=\"M136.613 108.545L135.676 108.783C136.119 108.693 136.404 108.619 136.613 108.545Z\" fill=\"#F9CF01\"/>\\n<path d=\"M143.43 107.854L143.582 107.6C143.278 107.764 143.152 107.879 143.43 107.854Z\" fill=\"#F9CF01\"/>\\n<path d=\"M253.115 51.4629C252.925 52.226 252.615 52.9892 252.463 53.539C252.305 54.0888 252.172 54.4252 252.406 54.3924L252.887 54.0313C252.887 52.9564 253.013 52.1604 253.115 51.4629Z\" fill=\"#F9CF01\"/>\\n<path d=\"M198.209 93.4542C198.342 93.4624 198.488 93.4788 198.627 93.487C198.918 93.208 199.191 92.9372 199.431 92.6992C199.064 92.929 198.646 93.1834 198.209 93.4542Z\" fill=\"#F9CF01\"/>\\n<path d=\"M197.658 95.9062C197.051 95.9965 196.437 96.0293 195.829 96.0868C196.247 96.0868 196.842 96.054 197.658 95.9062Z\" fill=\"#F9CF01\"/>\\n<path d=\"M99.2855 110.48L98.1714 110.989C99.8994 111.038 99.1399 110.743 99.2855 110.48Z\" fill=\"#F9CF01\"/>\\n<path d=\"M211.243 10.4422C212.338 10.9838 213.218 11.3612 214.002 11.632C212.699 10.9099 211.679 10.1057 211.243 10.4422Z\" fill=\"#F9CF01\"/>\\n<path d=\"M138.942 102.611C138.379 102.767 138.138 102.899 138.163 103.022C138.746 102.866 139.069 102.734 138.942 102.611Z\" fill=\"#F9CF01\"/>\\n<path d=\"M217.243 12.7406C217.06 12.6175 216.87 12.519 216.68 12.4124C215.838 12.2236 215.003 11.9939 214.009 11.6328C214.965 12.1826 216.072 12.7078 217.243 12.7406Z\" fill=\"#F9CF01\"/>\\n<path d=\"M14.1614 35.8143C14.2627 35.7733 14.3766 35.7159 14.4715 35.6912C14.4715 35.6092 14.3449 35.6912 14.1614 35.8143Z\" fill=\"#F9CF01\"/>\\n<path d=\"M53.5268 32.4922C53.1406 32.5166 52.5203 32.5166 51.9253 32.5166C52.2101 32.5573 52.6975 32.5573 53.5268 32.4922Z\" fill=\"#F9CF01\"/>\\n<path d=\"M186.006 5.65756C185.138 5.57619 185.866 5.69824 186.006 5.65756V5.65756Z\" fill=\"#F9CF01\"/>\\n<path d=\"M181.91 3.09891C182.1 3.05788 182.246 2.99223 182.277 2.86914C182.195 2.99223 182.068 3.05788 181.91 3.09891Z\" fill=\"#F9CF01\"/>\\n<path d=\"M226.295 12.994C226.295 12.994 226.339 13.0186 226.365 13.0268C226.149 12.8135 226.181 12.8463 226.295 12.994Z\" fill=\"#F9CF01\"/>\\n<path d=\"M184.72 5.24023C185.043 5.34691 185.41 5.45359 185.815 5.55206C185.638 5.48641 185.309 5.38794 184.72 5.24023Z\" fill=\"#F9CF01\"/>\\n<path d=\"M184.879 5.5102C184.581 5.43635 184.347 5.41173 184.126 5.37891C184.012 5.46097 184.107 5.5102 184.879 5.5102Z\" fill=\"#F9CF01\"/>\\n<path d=\"M187.214 5.79696C186.721 5.73952 186.259 5.64925 185.815 5.55078C185.98 5.60822 186.05 5.64925 186.005 5.66566C186.259 5.69849 186.619 5.73952 187.214 5.80516V5.79696Z\" fill=\"#F9CF01\"/>\\n<path d=\"M36.9429 100.175C36.886 100.142 36.8227 100.109 36.7657 100.068C35.8542 99.994 36.2403 100.101 36.9429 100.175Z\" fill=\"#F9CF01\"/>\\n<path d=\"M243.633 76.6149C243.672 76.5823 243.684 76.5579 243.716 76.5254C243.678 76.5498 243.627 76.5742 243.589 76.5905L243.633 76.6068V76.6149Z\" fill=\"#F9CF01\"/>\\n<path d=\"M240.86 78.9295C241.892 77.5345 242.613 77.1406 243.594 76.5991L242.088 75.918C241.702 76.9191 241.29 77.9366 240.866 78.9377L240.86 78.9295Z\" fill=\"#F9CF01\"/>\\n<path d=\"M120.263 109.841L122.51 110.235C119.832 111.129 117.864 110.924 119.991 111.523C120.13 110.669 122.301 110.587 124.472 110.399C126.643 110.202 128.814 110.005 128.928 109.16L130.416 109.406C129.992 109.422 129.929 109.521 129.511 109.537C132.41 110.111 131.581 108.216 135.271 108.117C136.556 108.117 137.467 108.257 136.607 108.544L139.436 107.83C140.272 107.773 140.082 108.085 139.252 108.142L143.601 107.551L143.569 107.6C143.873 107.436 144.367 107.215 144.873 107.01C145.373 106.788 145.886 106.567 146.222 106.435C147.342 106.517 145.684 106.69 145.981 106.854L148.355 106.115C149.368 106.411 147.412 107.108 145.741 107.28C148.114 108.626 147.703 106.583 152.634 106.87L150.38 107.404C151.925 108.134 153.678 107.568 156.305 107.756C155.666 107.576 151.02 107.01 153.596 106.238C154.343 106.247 155.324 106.214 156.691 105.615C156.761 106.205 158.122 105.82 159.831 105.483L159.793 106.288C161.629 105.738 161.439 105.368 162.496 104.819C164.572 104.531 165.066 105.065 165.616 105.483C168.94 104.983 163.224 104.966 167.117 104.047C169.895 103.768 171.788 103.046 175.004 101.889C176.96 101.75 174.731 102.431 175.447 102.513C175.985 102.185 176.529 101.873 177.061 101.52C177.479 101.43 177.371 101.659 177.314 101.766C178.707 101.175 177.327 100.962 179.536 100.199C180.011 99.1976 184.321 100.305 186.948 98.6561C187.663 98.6807 186.695 99.2223 186.948 99.4602C190.638 97.7534 190.126 98.0816 193.088 96.3502L195.823 96.104C194.797 96.0958 194.88 95.7347 195.475 95.2424C196.07 94.75 197.177 94.11 198.196 93.4699C197.462 93.4043 196.835 93.3633 196.424 93.355L199.779 91.8452C200.216 91.8452 199.918 92.2144 199.418 92.715C199.64 92.5755 199.848 92.4442 200.013 92.3293C201.292 92.2144 200.741 92.8627 199.943 93.5766C199.494 93.552 199.051 93.5274 198.614 93.5028C197.848 94.2413 197.146 95.0126 197.405 95.4065C197.614 95.2424 198.032 95.029 198.5 94.8321C198.298 95.029 198.177 95.185 198.298 95.2342C198.431 95.2752 198.76 94.988 199.285 94.6105L200.228 95.2096L200.355 94.8075L204.976 93.8802C205.742 93.4043 206.476 92.9119 207.223 92.4114C207.963 91.8862 208.723 91.3446 209.54 90.7948C211.173 89.7034 213.046 88.5956 215.547 87.5042C214.426 88.5792 215.502 88.612 215.597 89.367C214.04 89.0962 211.73 91.123 209.058 91.919C210.451 91.5005 210.223 91.96 209.9 92.2144L214.458 89.8019C214.483 90.4419 215.559 89.8922 216.844 89.6952C215.661 88.891 220.148 87.5371 221.959 86.4046C222.174 86.7493 221.813 87.3401 219.471 88.1771C222.237 88.0294 222.44 85.461 225.124 85.2066C224.56 85.4446 224.244 85.5102 224.067 85.7974C224.681 85.3543 225.814 84.8784 226.706 84.5911C227.599 84.2957 228.251 84.1809 227.915 84.5173L227.358 84.7635C229.244 84.0414 232.093 82.7859 234.479 81.4319C236.866 80.0943 238.765 78.6501 238.866 78.0182C238.948 78.1249 238.79 79.4378 238.632 79.7661C240.448 77.4438 242.157 75.0149 243.645 72.4792C243.563 73.0619 244.234 73.4311 244.62 73.9645C245 74.4897 245.088 75.2282 243.715 76.533C244.601 76.0324 245.721 75.3759 247.291 73.5952C246.683 74.0055 245.36 73.6937 246.076 72.9962C247.304 72.5203 247.709 72.2741 248.171 71.9869C248.392 71.8228 248.633 71.6505 248.987 71.3961C249.348 71.1499 249.823 70.8052 250.513 70.2637C250.082 70.6411 249.905 70.3047 249.969 69.7303C250 69.4431 250.095 69.0902 250.253 68.7291C250.399 68.3517 250.602 67.966 250.88 67.6132C250.823 67.9906 251.754 68.4501 251.418 69.0984L251.924 67.925L252.361 66.6859C252.633 65.8571 252.95 65.1021 253.127 64.2323C252.76 65.4386 253.766 65.1186 254.526 64.2898C254.425 64.3718 254.494 64.1667 254.665 63.7974C254.754 63.6169 254.862 63.3871 254.982 63.1327C255.089 62.8619 255.203 62.5583 255.33 62.2465C255.57 61.6146 255.849 60.9253 256.064 60.3017C256.241 59.6534 256.381 59.0872 256.444 58.7344L256.045 59.7601L255.843 60.2689L255.602 60.753C255.665 60.5889 255.729 60.4248 255.792 60.2607C255.836 60.0965 255.881 59.9324 255.919 59.7765C256.001 59.4647 256.064 59.1611 256.121 58.8821C256.235 58.3159 256.324 57.8153 256.349 57.3476C256.368 56.3957 256.298 55.6325 256.216 54.894C255.976 53.4005 255.722 52.0137 255.64 49.273C255.754 49.593 256.102 49.9869 256.431 49.9541C256.735 49.9212 257.128 49.4043 257.014 47.9026C256.843 47.5908 256.564 47.0902 256.21 46.4501C255.83 45.8347 255.349 45.1126 254.874 44.3166C254.387 43.5288 253.792 42.7083 253.292 41.822C253.007 41.3953 252.722 40.9604 252.456 40.5009C252.19 40.0495 251.956 39.5736 251.678 39.1141L251.621 38.154C251.102 37.1775 250.462 36.2994 249.867 35.4132C250.272 35.7168 250.829 36.1846 251.488 36.7918C252.083 37.4401 252.817 38.195 253.488 39.0895C254.134 40.0003 254.849 40.9604 255.374 41.9943C255.646 42.5031 255.925 43.0037 256.159 43.4878C256.368 43.9884 256.564 44.4643 256.729 44.9074C256.545 42.659 257.039 44.1443 256.172 40.9686C256.128 39.7049 257.09 42.5113 257.292 43.5042C257.204 42.8313 257.014 42.2241 256.874 41.5758C256.71 40.944 256.59 40.2793 256.387 39.6803C255.988 38.4576 255.634 37.2021 255.134 36.0451C255.026 36.2174 254.798 36.004 254.507 35.5937C254.361 35.3886 254.203 35.1342 254.039 34.8634C253.861 34.6008 253.672 34.3218 253.482 34.0346C253.102 33.4684 252.728 32.9104 252.425 32.5329C252.114 32.1637 251.868 31.9996 251.798 32.1555C252.184 32.6314 252.507 33.1812 252.849 33.7146C253.184 34.2562 253.551 34.7649 253.861 35.3394C254.482 36.4882 255.134 37.6206 255.653 38.8761C255.533 39.0402 255.273 38.9007 254.931 38.5315C254.754 38.3509 254.577 38.1047 254.349 37.834C254.121 37.5632 253.874 37.2513 253.621 36.8903C253.368 36.5374 253.102 36.1435 252.83 35.725C252.532 35.3229 252.235 34.8962 251.937 34.4367C251.367 33.5012 250.69 32.5658 250.095 31.5236C249.652 30.2681 251.45 31.3677 251.57 31.1215C251.102 30.6866 248.69 27.634 248.481 27.2155C248.994 27.6094 249.468 28.0689 249.95 28.5367C249.272 27.2976 248.399 26.6903 247.57 25.96C247.158 25.5826 246.715 25.2543 246.285 24.8112C245.848 24.3763 245.43 23.8101 244.974 23.1372C244.253 22.374 243.183 20.1092 242.816 20.4292C243.696 22.3248 242.544 24.9343 241.474 24.7702C241.36 24.6307 240.493 23.6049 239.562 22.4889C238.594 21.4304 237.568 20.2241 237.188 19.7235C236.676 18.944 237.321 18.8947 238.005 18.8865C238.682 18.8865 239.385 18.9604 238.948 18.2465C238.815 18.3942 237.973 18.1152 237.632 17.9839C236.853 17.2207 238.246 17.6146 236.347 16.4084C235.739 16.9499 232.53 13.9056 235.207 16.474C233.296 15.5139 233.302 15.0954 231.093 13.8645C231.365 14.2994 230.726 14.4636 229.783 14.4225C229.314 14.4061 228.77 14.3323 228.219 14.2256C227.668 14.1271 227.111 13.9958 226.624 13.8235C226.795 13.6758 226.44 13.2081 226.269 12.9947C222.396 11.1238 220.345 9.94211 216.616 8.61276C216.313 8.30093 214.553 7.43931 215.388 7.35726C214.819 7.31623 214.268 7.44752 213.103 7.09467C210.983 5.68325 215.717 7.80037 214.16 6.41358C214.04 6.62693 213.255 6.55308 212.293 6.39717C211.325 6.26587 210.173 6.05252 209.318 5.97046C209.71 6.84028 213.122 7.21776 214.831 7.47214C214.635 8.48967 211.584 8.57993 207.596 8.01373C204.438 7.44752 206.343 7.01261 205.78 7.01261C199.899 5.49452 200.538 7.53779 195.728 5.92122C193.848 4.90369 195.785 4.60007 195.399 4.05028C198.006 4.28825 199.31 5.16628 201.045 5.57658C200.342 5.31399 199.646 5.01858 198.943 4.78881C199.792 4.72316 201.52 4.98575 202.431 5.37964C201.652 4.89549 199.159 4.24722 196.272 3.73846C194.829 3.45946 193.297 3.15584 191.841 2.86863C190.379 2.62245 188.986 2.35987 187.847 2.06445C187.005 2.17113 185.575 2.20395 186.227 2.56501L187.695 2.67169C188.993 3.3856 184.897 3.02454 186.72 3.53331C184.745 3.59075 182.517 4.02566 179.789 3.45946L179.308 2.65528C179.359 2.88504 181.08 3.27072 181.872 3.11481C180.707 3.36098 177.7 1.65416 176.396 2.61425C177.036 2.81119 177.669 3.03275 178.302 3.27072C176.32 3.46766 173.877 4.20619 171.453 3.82872C172.541 4.6329 172.016 3.77128 173.719 4.73137C172.984 4.14875 174.542 4.23902 175.978 4.32107C177.422 4.37031 178.745 4.53443 177.567 3.84513C179.289 5.01858 180.612 4.55905 182.865 5.64222C182.808 5.38784 182.08 5.09243 184.1 5.40425C184.195 5.33861 184.416 5.26475 184.562 5.22372C184.625 5.24013 184.644 5.24834 184.695 5.25655C184.657 5.24013 184.625 5.23193 184.587 5.21552C184.676 5.1909 184.688 5.18269 184.549 5.19911C184.074 5.04319 183.688 4.87908 183.536 4.72316C184.587 4.19799 187.822 4.73137 188.942 4.56725C190.138 4.85446 188.41 4.7806 189.05 5.13346L190.721 4.92011C190.835 5.47811 193.829 6.3069 190.968 6.20022C191.816 6.3069 192.664 6.49564 193.506 6.65976C194.968 7.24237 197.006 7.74293 198.298 7.75114C199.475 8.08758 201.38 7.8332 200.292 8.00552L204.298 8.58814L204.317 8.73585C208.198 9.70414 212.489 9.94211 216.654 12.4285C217.958 12.7649 219.326 13.0604 221.402 14.0861L221.699 14.7097C222.528 14.9559 223.699 15.6206 224.763 16.1704C225.814 16.7612 226.763 17.2618 227.175 17.1879C227.839 18.2219 229.7 19.264 231.682 20.3718C233.65 21.5042 235.758 22.7105 236.954 23.769L237.29 23.3013C237.72 23.6378 238.144 23.966 238.587 24.286C239.018 24.6225 239.448 24.9589 239.898 25.3036C240.816 25.96 241.721 26.7478 242.784 27.6012L242.923 27.0432C243.867 27.7489 244.93 28.9388 245.924 30.424C246.956 31.8765 247.924 33.6325 248.943 35.3065C248.671 35.1999 248.19 34.33 247.899 33.6407C248.798 35.9958 250.038 38.0391 251.152 40.2301C252.222 42.4211 253.058 44.8172 253.07 47.1148C253.317 48.1816 253.399 49.0022 253.311 49.7817C253.311 49.6833 253.298 49.5848 253.285 49.5109C253.285 49.6258 253.285 49.7899 253.285 49.9623C253.222 50.4546 253.146 50.947 253.089 51.4804C253.184 51.029 253.26 50.5859 253.292 50.2002C253.304 50.6269 253.336 51.1521 253.368 51.7429C253.355 52.3256 253.349 52.9574 253.361 53.5975C253.19 53.7534 253.051 53.9011 252.861 54.0406C252.849 54.1391 252.842 54.2211 252.83 54.3196C252.475 55.4438 252.887 55.3371 253.33 54.7709C253.298 55.411 253.311 56.0264 253.33 56.5106C252.842 56.8716 252.703 57.6594 252.538 58.5292C252.298 59.3498 252.026 60.2443 251.45 60.6135C251.45 60.8515 251.292 61.3192 251.07 61.9183C250.956 62.2137 250.829 62.5419 250.696 62.8866C250.532 63.2066 250.355 63.543 250.184 63.8795C249.538 65.2663 248.734 66.5546 248.81 67.1946C248.709 67.129 248.449 67.3506 248.861 66.85C248.392 67.3177 247.943 67.7937 247.5 68.2532C247.044 68.7045 246.652 69.2133 246.285 69.7303L245.538 69.5005C245.012 70.436 244.424 71.3058 243.822 72.2002C242.265 72.8649 241.626 73.0372 242.733 71.5192C241.297 73.1275 240.619 73.6445 240.024 74.1286C239.429 74.6128 238.891 75.0395 237.543 76.3196V75.7944C236.486 76.4263 234.941 77.9608 234.163 77.9116C232.821 78.1167 229.776 79.5445 226.174 81.038C222.554 82.4576 218.446 84.1644 215.104 84.9686C216.68 85.8877 211.932 85.4528 211.907 86.6098C211.457 86.4211 210.508 86.5688 211.502 85.8959C208.236 87.414 206.406 87.2252 204.26 88.85C203.811 88.6449 204.881 88.1361 204.501 88.054C204.248 88.2099 203.494 88.6859 203.102 88.5956C202.722 88.5136 203.539 88.1607 204.039 87.8489C200.627 89.0059 200.475 90.1383 200.406 91.1723C198.576 91.279 197.728 91.6236 196.582 92.6575C195.911 92.5098 194.842 92.5016 196.962 91.7385C195.753 92.0749 189.505 93.3879 189.512 94.2003C189.1 94.11 187.815 94.627 187.512 94.7993C184.79 95.5132 184.53 95.4393 181.865 96.1943L182.625 96.1368C181.707 97.3267 180.428 96.8918 178.283 97.5401L178.333 97.4252C175.814 97.7124 175.282 97.8847 174.763 98.0652C174.244 98.2458 173.731 98.4099 171.225 98.5412L171.567 99.0664C171.263 100.396 167.129 99.2879 164.325 100.281L165.395 100.437C163.876 101.142 160.837 99.493 159.261 99.6079C158.907 99.5587 159.78 99.3371 160.249 99.173C156.077 99.1484 159.799 100.035 156.761 100.749C156.16 100.437 157.381 99.5669 155.324 99.8541C154.273 99.6818 149.463 102.045 146.582 101.651C147.228 101.881 147.867 102.119 146.462 102.554C145.918 102.661 145.272 102.685 144.576 102.693C143.88 102.669 143.139 102.636 142.405 102.611C140.936 102.57 139.512 102.644 138.55 103.26C138.265 103.202 138.157 103.128 138.138 103.054C137.309 103.276 135.955 103.522 134.689 103.801C133.423 104.08 132.233 104.318 131.739 104.638C130.099 102.71 121.339 106.394 121.307 104.425L116.148 104.72L116.281 104.523C114.629 104.523 113.515 104.646 112.667 104.827C111.819 104.983 111.236 105.213 110.66 105.442C109.894 105.319 110.451 105.139 110.515 105.04C105.685 104.663 105.217 104.794 101.159 105.68L100.741 105.057C100.191 105.221 98.45 104.925 96.2535 104.663C94.057 104.392 91.4174 104.211 89.0437 104.367C89.0944 104.302 89.1957 104.187 89.5691 104.129C86.8979 104.31 83.733 103.686 80.9858 103.268C78.2449 102.767 75.9219 102.48 74.8774 103.489L71.339 103.686C75.8649 104.31 70.5984 104.581 72.4404 105.131C70.6364 105.114 67.8703 103.924 70.0667 104.105L70.4022 104.252C71.2821 103.227 64.8066 103.087 64.9902 102.324C62.7684 102.02 60.5529 101.733 58.3691 101.323C56.1853 100.929 54.0268 100.47 51.8936 99.9772C47.6273 99.0007 43.4749 97.8601 39.4491 96.621C39.7086 97.0067 39.9618 97.4006 40.2276 97.778C39.2845 97.4908 38.3476 97.1708 37.4108 96.8672C36.7145 96.4158 36.55 95.8825 38.5502 96.5307C37.5881 95.7347 35.1257 95.8414 35.0181 96.0138C33.1065 95.1439 33.5496 95.0044 34.3092 95.0701C35.0688 95.1275 36.1575 95.2998 35.5625 95.0865C35.0181 94.9306 34.4738 94.7583 33.9357 94.5777L34.2775 94.8157C32.9039 94.6598 32.6824 95.0537 30.3467 94.0033C28.9035 93.2073 29.72 93.1663 29.1503 92.8627C29.1693 92.8052 28.9857 92.6822 28.2768 92.4278C27.1437 91.8944 26.0487 91.279 24.9409 90.6799L26.074 92.0339C24.4725 91.6072 22.9407 90.2942 24.2383 91.9026C23.2952 90.6881 20.2315 88.8582 17.4653 86.7001C14.6928 84.6076 12.2748 82.0966 11.8317 81.3088C9.92644 79.8071 8.36929 77.731 6.83746 74.8836C6.98304 75.2775 7.00203 75.696 6.81214 75.7042C6.62224 75.7206 6.2108 75.3185 5.59047 73.9973C6.36271 74.0137 5.86898 72.7747 5.31195 71.1499C4.74226 69.5333 4.18523 67.4408 4.40045 66.1853C4.33715 67.2767 3.80544 65.3729 3.54591 63.5266C3.40665 62.6075 3.3307 61.7213 3.24208 61.2618C3.1408 60.8023 3.00787 60.753 2.81164 61.59C2.83063 60.3673 2.99521 60.3427 3.12814 60.3838C3.27373 60.4248 3.43197 60.5315 3.61554 59.6698C3.51426 56.9045 4.34348 53.8765 5.86898 51.2834C6.58426 49.9459 7.52741 48.756 8.4769 47.5579C9.48968 46.4173 10.5278 45.2767 11.6608 44.2181C11.6418 43.972 10.7113 44.4151 11.5659 43.2416C12.047 43.0037 12.5533 42.8231 13.0471 42.6344C13.5408 42.4457 14.0282 42.2569 14.5409 42.1174C15.0093 41.7235 15.117 41.2886 15.3701 40.8701C15.6297 40.468 16.0474 40.0988 17.0982 39.8444C16.7817 39.8444 16.2943 39.8444 16.9526 39.352C22.2444 36.7672 27.8084 34.6501 33.6066 33.4766C39.3984 32.2868 45.3675 31.9914 51.21 32.9925C49.6275 32.574 50.6783 32.5329 51.8936 32.5165C51.1087 32.4181 51.9126 31.9832 51.7607 31.6877C53.4001 31.9749 55.0396 32.2704 56.6727 32.5904C57.5842 31.7944 61.9581 32.7299 62.4962 31.9749L60.9264 32.0488C63.0342 31.2118 58.0653 29.8906 58.3881 28.7254C56.0397 29.6855 52.2228 26.9858 48.3552 28.5531C47.5007 28.3233 49.0768 28.1592 48.6211 27.8966C47.6463 28.4136 46.4689 28.5367 44.2724 28.4218L44.5193 28.2823C41.4303 28.4792 39.2212 28.6269 36.9171 28.7746C34.6067 28.9552 32.1887 29.1111 28.7009 29.8414L29.3022 30.2845C27.8084 30.5799 27.4729 30.5143 26.7513 30.5799C25.9854 31.2692 27.0171 30.9574 28.0742 30.6784C29.1377 30.424 30.2137 30.1861 29.5175 30.8671C28.454 30.5143 25.8398 31.2282 23.3585 32.1555C20.8645 33.0417 18.5224 34.2234 17.6806 33.9279C15.5031 35.126 18.5098 34.1823 16.3513 35.3968H15.6613L15.2815 36.1517C13.87 36.9395 13.0218 37.0462 12.8509 36.8164C13.199 36.6031 13.7687 36.0615 14.1295 35.8153C13.6358 35.9958 13.0787 36.3487 12.509 36.7426C12.2242 36.9395 11.933 37.1529 11.6482 37.3744C11.3697 37.6124 11.0975 37.8504 10.8316 38.0801C9.75553 38.9828 8.91999 39.9757 8.59083 40.1644C9.26813 39.6557 9.92011 39.0895 10.6164 38.6545C9.93277 39.229 9.26813 39.9347 8.56551 40.5829C7.90088 41.3215 7.1856 41.9779 6.53362 42.8067C5.17902 44.3494 3.91938 46.1876 2.84962 48.2062C1.76088 50.2084 0.937997 52.5225 0.456925 54.853C-0.0304761 57.1917 -0.119095 59.5714 0.077132 61.7049L0.273359 61.0484C0.380967 62.6732 0.539214 63.7728 0.646822 64.6508C0.76076 65.5289 0.836719 66.1771 0.931667 66.85C0.982306 67.1864 1.03295 67.5229 1.08991 67.9004C1.15954 68.2696 1.24816 68.6717 1.34944 69.1312C1.58365 70.0421 1.91913 71.2073 2.57744 72.7172L2.44451 72.5203C3.10915 73.6445 3.91305 75.1462 4.72327 76.6725C4.24853 76.0488 4.48907 76.8202 4.73593 77.5177C4.9828 78.207 5.20434 78.8634 4.55869 78.051C5.43855 79.3476 6.03989 80.0779 6.445 80.5456C6.84379 81.0216 7.07799 81.2185 7.26789 81.358C7.64768 81.637 7.90721 81.7027 9.40106 82.8269L9.73654 83.8444C10.8253 84.5009 10.9709 84.4681 13.0661 86.3554C11.1987 85.0343 14.0725 88.2017 11.9267 86.7657C13.889 89.3095 15.7942 90.4502 17.2944 91.2872C18.0414 91.7385 18.7187 92.0831 19.32 92.5016C19.915 92.9119 20.4214 93.4371 20.8708 94.0854C22.2128 94.151 21.181 93.4289 20.0479 92.6165C19.4782 92.2226 18.8642 91.8287 18.4781 91.5744C18.0983 91.3036 17.9401 91.1641 18.2692 91.3282C17.4084 90.2614 20.3898 91.7303 21.8646 92.6986C22.6369 93.1417 23.1559 93.9377 24.0168 94.7993C24.4472 95.2342 24.9536 95.7101 25.6056 96.2107C26.2639 96.6784 27.0741 97.1544 28.0869 97.6221C27.6818 97.4252 27.6311 97.5072 27.2324 97.3103C27.9476 97.8273 28.7325 98.0488 29.5428 98.295C30.3593 98.5576 31.2075 98.8448 32.1 99.4438C33.3217 99.132 34.556 100.387 35.0561 99.5505C33.7775 99.2141 32.5115 98.7873 31.2329 98.3853C33.4357 98.9515 35.6385 98.6232 39.0819 100.199C38.7718 100.305 37.6704 100.232 36.9171 100.15C37.9046 100.74 38.949 100.601 39.9808 101.175C39.4997 102.07 35.3093 100.002 32.8596 99.8459C33.8914 100.675 37.3728 100.666 36.0056 101.307C36.9741 100.929 37.9868 101.274 39.1452 101.717C40.3036 102.111 41.6075 102.636 43.1014 102.472L42.8292 102.997C43.2913 103.013 44.2661 102.989 45.089 103.202L43.4812 103.571C45.8739 103.522 47.8615 105.172 50.1276 105.278C45.4814 104.326 49.1718 104.376 47.2665 103.53C50.1656 103.76 50.9378 104.285 51.7987 104.901C52.6532 105.516 53.6027 106.214 56.8246 106.608C55.9447 106.55 53.5964 105.697 54.9826 105.672C56.1916 106.009 57.7804 106.484 58.502 106.911C62.7684 107.404 57.9007 106.23 59.749 106.132C61.1353 107.034 61.8632 106.132 63.7432 106.156L63.7052 106.747C68.5159 107.781 65.0851 105.688 69.4021 106.747L67.5031 107.313L69.7882 107.412L69.2692 108.019C71.7821 107.806 72.5417 107.986 74.9661 108.429C74.428 107.953 75.3459 107.387 77.498 107.584C78.9412 108.085 76.6435 108.068 79.6945 108.282C78.9855 108.585 78.207 108.971 76.9093 108.298C76.7638 108.479 76.2067 108.602 76.0611 108.782C77.6183 109.332 80.03 109.291 81.1377 109.357C80.7136 109.316 80.2072 109.233 79.9477 109.119C81.4352 108.979 82.9227 108.774 84.4103 108.61C85.1002 108.881 84.5369 109.02 83.9798 109.16C84.8787 109.16 85.5117 108.922 86.8283 108.954C86.4675 109.414 86.5308 109.915 84.6571 110.021L88.8982 109.759C89.1703 109.988 91.044 110.473 90.4933 110.62C92.8354 111.031 96.2661 109.874 99.3615 110.358C99.526 110.267 99.8489 110.185 100.507 110.144C101.963 110.267 103.343 110.415 104.786 110.489C106.229 110.563 107.742 110.538 109.47 110.202L111.439 111.063C114.148 110.85 108.774 109.997 113.275 109.627C116.458 109.233 114.477 110.317 115.604 110.522C117.186 110.029 119.921 109.037 122.871 109.627C121.902 109.824 121.143 109.726 120.237 109.824L120.263 109.841ZM153.533 106.23C152.9 106.443 151.653 107.01 151.153 106.722C151.83 105.943 152.419 106.189 153.533 106.23ZM203.165 93.035C202.735 93.3797 202.001 93.511 201.146 93.5602C201.728 93.3222 202.399 93.1253 203.165 93.035ZM195.525 6.66796C195.525 6.66796 195.569 6.66796 195.595 6.65155C196.975 7.1439 196.487 6.95517 195.525 6.66796ZM192.632 5.87199C192.329 5.89661 192.341 5.98687 192.461 6.09355C192.677 5.97867 193.335 6.09355 194.082 6.27408C193.892 6.08534 193.525 5.90481 192.639 5.87199H192.632ZM28.8275 92.9119L29.3212 93.3058C28.0742 92.9037 28.4477 92.9119 28.8275 92.9119Z\" fill=\"#F9CF01\"/>\\n<path d=\"M197.741 95.6204C197.545 95.5794 197.475 95.4891 197.418 95.3906C197.19 95.5712 197.203 95.6778 197.741 95.6204Z\" fill=\"#F9CF01\"/>\\n<path d=\"M99.4893 110.391H99.3877C99.3306 110.415 99.2988 110.448 99.2861 110.48L99.4893 110.391Z\" fill=\"#F9CF01\"/>\\n<path d=\"M238.012 17.2129C238.537 17.6724 238.803 17.9842 238.961 18.2468C239.043 18.1484 238.854 17.8365 238.012 17.2129Z\" fill=\"#F9CF01\"/>\\n<path d=\"M177.011 5.03371C177.644 5.0173 178.27 5.03371 178.897 5.04191C177.986 4.98447 177.669 4.82035 177.213 4.69727C177.251 4.83677 177.599 5.05832 177.011 5.03371Z\" fill=\"#F9CF01\"/>\\n<path d=\"M160.591 1.03906C160.312 1.12112 160.002 1.07189 159.724 1.15395L159.806 1.42474C160.99 1.3673 161.819 1.11292 160.591 1.03906Z\" fill=\"#F9CF01\"/>\\n<path d=\"M175.333 2.9758C175.2 2.46704 174.004 2.58192 172.668 2.60654C172.751 2.60654 172.826 2.60654 172.902 2.61474C172.491 3.29583 173.915 3.13171 175.333 2.9758Z\" fill=\"#F9CF01\"/>\\n<path d=\"M172.365 2.60588C171.953 2.60588 171.535 2.60588 171.137 2.55664C170.978 2.82744 171.63 2.6387 172.365 2.60588Z\" fill=\"#F9CF01\"/>\\n<path d=\"M188.886 5.65005C188.272 5.43669 188.443 6.23266 188.107 5.97828C187.354 6.51166 192.329 5.78955 188.886 5.65005Z\" fill=\"#F9CF01\"/>\\n<path d=\"M174.314 1.27539L174.77 1.91545L175.536 1.45592L174.314 1.27539Z\" fill=\"#F9CF01\"/>\\n<path d=\"M184.821 2.58216L182.701 2.21289C182.726 2.31957 182.454 2.35239 182.118 2.3688C183.429 2.51651 184.859 2.77089 184.821 2.58216Z\" fill=\"#F9CF01\"/>\\n<path d=\"M182.118 2.3667C181.435 2.29347 180.783 2.24465 180.403 2.30974C180.77 2.33415 181.568 2.39111 182.118 2.3667Z\" fill=\"#F9CF01\"/>\\n<path d=\"M177.238 1.23438C177.447 1.28361 177.656 1.34926 177.865 1.4149L179.365 1.60364C178.656 1.48055 177.947 1.34105 177.238 1.24258V1.23438Z\" fill=\"#F9CF01\"/>\\n<path d=\"M207.489 6.97916C208.255 7.12687 209.027 7.25816 209.793 7.43049C210.059 7.29099 209.464 6.97916 208.597 6.83966C208.027 6.83966 207.166 6.69195 207.489 6.98737V6.97916Z\" fill=\"#F9CF01\"/>\\n<path d=\"M200.779 3.67189C201.387 3.94268 201.412 4.09039 201.735 4.36939L201.906 3.63086L200.779 3.67189Z\" fill=\"#F9CF01\"/>\\n<path d=\"M207.527 5.08355C207.786 4.93584 210.964 5.37896 208.033 4.64863C207.767 4.78813 205.438 4.35322 207.527 5.08355Z\" fill=\"#F9CF01\"/>\\n<path d=\"M240.36 21.4212C240.195 21.2817 240.018 21.1504 239.847 21.0273L239.41 22.1516L240.354 21.4294L240.36 21.4212Z\" fill=\"#F9CF01\"/>\\n<path d=\"M257.856 54.7299C258.116 52.6948 257.976 52.4322 257.856 52.2353C257.73 52.0302 257.616 51.8907 257.717 50.0772C257.59 49.6094 257.552 50.3562 257.508 51.0865C257.489 51.8168 257.369 52.5389 257.305 52.0548C257.35 53.2528 257.305 54.1719 257.35 54.6642C257.362 55.1484 257.483 55.2222 257.869 54.7217L257.856 54.7299Z\" fill=\"#F9CF01\"/>\\n<path d=\"M257.293 52.0621C257.28 51.6765 257.204 51.2744 257.14 50.8477C257.21 51.5287 257.273 51.857 257.293 52.0621Z\" fill=\"#F9CF01\"/>\\n<path d=\"M59.9895 33.3524L61.7555 33.6888L60.6225 33.2129L59.9895 33.3524Z\" fill=\"#F9CF01\"/>\\n<path d=\"M63.4146 32.5664L63.8133 33.387L64.8957 32.7141C64.4906 32.7305 63.7121 32.7633 63.4146 32.5746V32.5664Z\" fill=\"#F9CF01\"/>\\n<path d=\"M158.622 107.033L158.736 106.82C158.438 106.664 158.021 106.721 157.185 106.836L158.616 107.041L158.622 107.033Z\" fill=\"#F9CF01\"/>\\n<path d=\"M134.41 109.562L134.828 109.537L134.012 108.889L134.41 109.562Z\" fill=\"#F9CF01\"/>\\n<path d=\"M114.066 111.62C114.901 111.62 115.876 111.423 116.712 111.423C114.901 111.62 113.825 110.734 114.066 111.62Z\" fill=\"#F9CF01\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_2532_2550\">\\n<rect width=\"258\" height=\"111.239\" fill=\"white\" transform=\"translate(0 0.380859)\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a34kwq-container\",children:/*#__PURE__*/_jsx(SectionBadge,{height:\"100%\",HR6VvY__G:\"JOIN THE CLUB\",id:\"jmVW49hDA\",layoutId:\"jmVW49hDA\",SJkB94Ng6:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithOptimizedAppearEffect,{__fromCanvasComponent:true,animate:animation2,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-3nqyhf\",\"data-styles-preset\":\"YAP816Y5n\",children:\"Get smart and start saving today\"})}),className:\"framer-1y23ma7\",\"data-framer-appear-id\":\"1y23ma7\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],initial:animation3,name:\"Heading\",optimized:true,style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t5en4y hidden-vc50w9\",\"data-framer-name\":\"Logos\",name:\"Logos\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-p4sgmx\",\"data-styles-preset\":\"ND6XVLnoy\",style:{\"--framer-text-color\":\"var(--token-74d082d8-5281-4f19-a0d0-ebb46a43a417, rgb(82, 82, 82))\"},children:\"TRUSTED BY\"})}),className:\"framer-klsxlg\",\"data-framer-name\":\"Supporting text\",fonts:[\"Inter\"],name:\"Supporting text\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12yflmu\",\"data-framer-name\":\"Logos Row\",name:\"Logos Row\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h34auy\",\"data-framer-name\":\"Logo Col\",name:\"Logo Col\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1wt872f\",\"data-framer-name\":\"facebook\",fill:\"black\",intrinsicHeight:22,intrinsicWidth:115,name:\"facebook\",svg:'<svg width=\"115\" height=\"22\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><g clip-path=\"url(#b)\"><path d=\"M7.722 21.661H3.426V10.984H.5V7.507h2.926V5.034C3.426 2.102 4.72 0 9.004 0c.906 0 2.329.182 2.329.182V3.41H9.839c-1.522 0-2.117.462-2.117 1.738v2.359h3.554l-.316 3.477H7.722v10.677Zm9.856-14.432c-.062 0-.127.003-.19.004-3.984 0-5.806 2.988-5.806 7.228 0 5.343 2.364 7.481 5.837 7.481 1.987 0 3.292-.834 4.086-2.39v2.11h4.085V7.509h-4.085v2.176c-.648-1.4-1.99-2.439-3.927-2.456Zm1.039 3.345c1.673 0 2.677 1.163 2.677 3.143l.004 2.021c0 1.334-.829 2.894-2.681 2.894-2.846 0-2.77-3.064-2.77-4.085 0-3.434 1.516-3.973 2.77-3.973Zm8.623 4.012c0-1.72-.082-7.347 7.271-7.347 2.952 0 4.185.935 4.185.935l-.991 3.064s-1.231-.676-2.835-.676c-2.054 0-3.365 1.188-3.365 3.277l.002 1.498c0 2.008 1.265 3.348 3.367 3.348 1.461 0 2.808-.682 2.808-.682l.988 3s-1.127.941-4.138.941c-7.002 0-7.292-5.049-7.292-7.358Zm35.412-7.353c3.983 0 5.834 2.988 5.834 7.228 0 5.343-2.364 7.481-5.837 7.481-1.986 0-3.455-.834-4.249-2.39v2.11l-4.034-.001V.43l4.283-.372v9.436c.619-1.651 2.65-2.261 4.003-2.261Zm-1.201 3.341c-1.673 0-2.802 1.163-2.802 3.143l-.004 2.021c-.002 1.334.782 2.894 2.806 2.894 2.847 0 2.771-3.064 2.771-4.085 0-3.434-1.517-3.973-2.771-3.973ZM46.128 7.245c-4.518 0-6.903 2.456-6.903 6.821v.811c0 5.665 3.349 7.123 7.342 7.123 3.882 0 5.639-1.082 5.639-1.082l-.802-2.883s-2.067.877-4.323.877c-2.339 0-3.345-.595-3.603-2.836h9.07v-2.313c0-4.735-2.677-6.518-6.42-6.518Zm.109 2.887c1.563 0 2.577.956 2.521 3.173h-5.272c.091-2.334 1.184-3.173 2.751-3.173Zm30.79-2.906c-4.639 0-7.082 2.606-7.082 7.278 0 6.41 4.211 7.442 7.09 7.442 4.215 0 7.02-2.263 7.02-7.384 0-5.329-3.154-7.336-7.028-7.336Zm-.058 3.36c2.04 0 2.848 1.522 2.848 3.255v1.49c0 2.099-1.131 3.313-2.856 3.313-1.613 0-2.747-1.136-2.747-3.313v-1.49c0-2.323 1.349-3.255 2.755-3.255Zm15.619-3.36c-4.639 0-7.082 2.606-7.082 7.278 0 6.41 4.21 7.442 7.09 7.442 4.215 0 7.019-2.263 7.019-7.384 0-5.329-3.153-7.336-7.027-7.336Zm-.058 3.36c2.04 0 2.848 1.522 2.848 3.255v1.49c0 2.099-1.131 3.313-2.856 3.313-1.613 0-2.747-1.136-2.747-3.313v-1.49c0-2.323 1.349-3.255 2.755-3.255Zm8.704 11.075V.43l4.296-.372v14.23l4.262-6.781h4.537l-4.446 7.023 4.617 7.131h-4.55l-4.42-6.924v6.924h-4.296Z\" fill=\"#A3A3A3\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h114v22H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h114v22H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-w4h951\",\"data-framer-name\":\"notion\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:112,name:\"notion\",svg:'<svg width=\"112\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\" fill=\"#A3A3A3\"><path d=\"M48.102 24.071V13.017h.196l7.972 11.054h2.509V7.838H55.99v11.026h-.195L47.824 7.838h-2.51v16.233h2.788Zm18.566.25c3.679 0 5.937-2.394 5.937-6.404 0-3.98-2.258-6.404-5.937-6.404-3.652 0-5.938 2.423-5.938 6.404.028 4.01 2.258 6.404 5.938 6.404Zm0-2.339c-1.952 0-3.067-1.475-3.067-4.065 0-2.56 1.115-4.065 3.067-4.065 1.95 0 3.066 1.504 3.066 4.065 0 2.59-1.115 4.065-3.066 4.065Zm8.474-13.225v3.091H73.19v2.227h1.952v6.71c0 2.395 1.115 3.341 3.958 3.341a7.79 7.79 0 0 0 1.477-.139v-2.172c-.334.028-.557.056-.947.056-1.171 0-1.701-.529-1.701-1.754v-6.042h2.648v-2.227h-2.648v-3.09h-2.787Zm7.108 15.314h2.788V11.764H82.25v12.307Zm1.394-14.339c.92 0 1.672-.752 1.672-1.67 0-.948-.752-1.699-1.672-1.699-.92 0-1.673.751-1.673 1.698 0 .92.753 1.671 1.673 1.671Zm9.03 14.59c3.68 0 5.939-2.395 5.939-6.405 0-3.98-2.258-6.404-5.938-6.404-3.651 0-5.937 2.423-5.937 6.404 0 4.01 2.23 6.404 5.937 6.404Zm0-2.34c-1.95 0-3.065-1.475-3.065-4.065 0-2.56 1.115-4.065 3.066-4.065 1.924 0 3.067 1.504 3.067 4.065-.028 2.59-1.143 4.065-3.067 4.065Zm7.584 2.09h2.787v-7.157c0-1.81 1.059-2.95 2.704-2.95 1.701 0 2.481.945 2.481 2.811v7.295h2.788v-7.963c0-2.952-1.506-4.595-4.237-4.595-1.84 0-3.067.836-3.652 2.228h-.195v-1.977h-2.704c.028 0 .028 12.307.028 12.307ZM6.272 6.26c.946.758 1.288.698 3.06.579l16.69-.996c.362 0 .06-.36-.06-.4l-2.779-1.971c-.523-.398-1.248-.876-2.597-.756L4.44 3.89c-.584.06-.705.358-.463.577L6.272 6.26Zm1.007 3.845v17.369c0 .936.463 1.274 1.53 1.215l18.34-1.056c1.068-.06 1.188-.697 1.188-1.454V8.929c0-.756-.302-1.174-.946-1.114L8.225 8.93c-.705.06-.946.418-.946 1.175Zm18.099.936c.121.518 0 1.056-.524 1.116l-.885.179v12.827c-.765.398-1.47.637-2.074.637-.946 0-1.188-.298-1.893-1.175l-5.778-8.983v8.685l1.832.398s0 1.056-1.469 1.056l-4.067.239c-.121-.24 0-.817.403-.937l1.067-.298V13.312l-1.47-.12c-.121-.517.181-1.274 1.007-1.334l4.368-.3 6.02 9.084v-8.027l-1.53-.18c-.121-.637.362-1.115.946-1.175l4.047-.22ZM3.091 2.297l16.811-1.215c2.053-.18 2.597-.06 3.885.877l5.356 3.724c.885.638 1.187.817 1.187 1.514v20.456c0 1.275-.463 2.03-2.113 2.15L8.708 30.98c-1.248.06-1.832-.12-2.476-.936l-3.966-5.08c-.705-.935-1.007-1.632-1.007-2.45V4.33c0-1.056.483-1.912 1.832-2.032Z\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h111v31H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-hvraef\",\"data-framer-name\":\"ideo\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:107,name:\"ideo\",svg:'<svg width=\"107\" height=\"24\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M93.546 0c-6.718 0-12.173 5.37-12.173 12s5.455 12 12.173 12 12.174-5.37 12.174-12-5.456-12-12.174-12ZM.5.963v3.889h9.093v14.333H.5v3.89h22.12v-3.89h-9.056V4.852h9.056V.962H.5Zm27.985 0v22.073h10.614c6.867-.074 11.58-4.888 11.58-11.073 0-6.11-4.639-10.815-11.394-11h-10.8Zm27.019 0v22.111h22.343v-3.889H59.512v-5.222h14.29v-3.89h-14.29v-5.22h18.335V.962H55.504Zm38.042 3.222c4.38 0 7.98 3.519 7.98 7.852s-3.6 7.851-7.98 7.851c-4.379 0-7.979-3.518-7.979-7.851s3.563-7.852 7.979-7.852Zm-61.09.593h6.717c4.343.111 7.201 3.148 7.201 7.259-.037 4.148-2.895 7.148-7.275 7.222h-6.643V4.778Z\" fill=\"#A3A3A3\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h106v24H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7dj7fx\",\"data-framer-name\":\"Logo Col\",name:\"Logo Col\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1582j9d\",\"data-framer-name\":\"gumroad\",fill:\"black\",intrinsicHeight:32,intrinsicWidth:147,name:\"gumroad\",svg:'<svg width=\"147\" height=\"32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><g clip-path=\"url(#b)\"><path d=\"M101.22 8.334c-2.258 0-4.494 2.111-4.733 5.133V8.578H93.23v14.755h3.3V16.2c0-2 1.39-4.822 4.712-4.822V8.334h-.022Zm34.59 12.643v-10.11h1.911c2.54 0 4.625 1.622 4.625 4.977 0 3.333-2.063 5.133-4.625 5.133h-1.911Zm-3.279 2.356h5.58c3.431 0 7.644-2.289 7.644-7.489 0-5.133-4.213-7.244-7.644-7.244h-5.58v14.733ZM120.046 16c0-2.689 1.346-4.889 3.583-4.889 2.149 0 3.343 2.2 3.343 4.889 0 2.688-1.194 4.888-3.343 4.888-2.215 0-3.583-2.2-3.583-4.888Zm-3.344.155c0 4.4 2.236 7.489 5.732 7.489 2.541 0 4.061-1.711 4.864-4.489v4.178h3.257V8.578h-3.257v3.911c-.716-2.6-2.236-4.155-4.625-4.155-3.583.022-5.971 3.355-5.971 7.821Zm-74.325 7.511c-4.061 0-6.449-3.333-6.449-7.488 0-4.311 2.627-7.822 7.643-7.822 5.168 0 6.927 3.577 7.014 5.622H46.85c-.087-1.134-1.042-2.845-3.344-2.845-2.475 0-4.06 2.2-4.06 4.889s1.585 4.889 4.06 4.889c2.236 0 3.192-1.8 3.583-3.578h-3.583v-1.467h7.513v7.467h-3.301V18.6c-.239 1.711-1.281 5.066-5.341 5.066Zm15.33 0c-3.105 0-5.016-2.111-5.016-6.355V8.6h3.344v8.711c0 2.2 1.042 3.266 2.779 3.266 3.431 0 4.69-4.311 4.69-7.333V8.6h3.344v14.733h-3.257v-5.467c-.63 3.022-2.389 5.8-5.884 5.8ZM86.846 8.334c-2.844 0-4.647 2.822-5.233 5.421-.109-3.488-1.78-5.421-4.473-5.421-2.323 0-4.473 2.111-5.037 5.466V8.578h-3.257v14.755h3.3v-5.289c0-1.311.543-6.688 3.865-6.688 2.15 0 2.367 1.977 2.367 4.71v7.267h3.3v-5.289c0-1.311.565-6.688 3.887-6.688 2.15 0 2.367 1.977 2.367 4.71v7.267h3.3V14.6c.022-4.178-1.433-6.266-4.386-6.266Zm21.453 0c-4.278 0-7.166 3.422-7.166 7.666 0 4.666 2.758 7.666 7.166 7.666 4.277 0 7.23-3.422 7.23-7.666-.021-4.667-2.822-7.666-7.23-7.666Zm0 12.71c-2.497 0-4.104-2.156-4.104-5.044 0-2.889 1.607-5.044 4.104-5.044 2.475 0 4.039 2.155 4.039 5.044 0 2.888-1.564 5.044-4.039 5.044Z\" fill=\"#A3A3A3\"/><path d=\"M1.41 16c0-7.6 6.013-13.762 13.428-13.762C22.254 2.238 28.266 8.4 28.266 16c0 7.6-6.012 13.762-13.428 13.762C7.423 29.762 1.41 23.6 1.41 16Z\" stroke=\"#A3A3A3\" stroke-width=\"1.57\" stroke-miterlimit=\"10\"/><path d=\"M13.67 22.918c-3.94 0-6.24-3.216-6.24-7.255 0-4.188 2.556-7.554 7.408-7.554 4.999 0 6.714 3.478 6.787 5.423h-3.612c-.073-1.122-.985-2.768-3.248-2.768-2.371 0-3.94 2.132-3.94 4.712 0 2.618 1.532 4.712 3.94 4.712 2.153 0 3.102-1.72 3.467-3.478h-3.503v-1.42h7.297v7.254h-3.211v-4.562c-.22 1.72-1.204 4.936-5.144 4.936Z\" fill=\"#A3A3A3\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h146v31H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h146v31H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1ols84y\",\"data-framer-name\":\"coinbase\",fill:\"black\",intrinsicHeight:26,intrinsicWidth:140,name:\"coinbase\",svg:'<svg width=\"140\" height=\"26\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><path d=\"M28.409 7.48c-5.024 0-8.949 3.859-8.949 9.026 0 5.166 3.826 8.993 8.949 8.993 5.122 0 9.015-3.893 9.015-9.026 0-5.101-3.826-8.993-9.015-8.993Zm.034 14.295c-2.861 0-4.957-2.248-4.957-5.268 0-3.054 2.062-5.301 4.923-5.301 2.894 0 4.989 2.281 4.989 5.3 0 3.02-2.095 5.27-4.955 5.27Zm10.078-10.369h2.495v13.759h3.992V7.815h-6.487v3.591Zm-29.106-.202c2.096 0 3.759 1.309 4.39 3.255h4.226c-.766-4.16-4.159-6.98-8.582-6.98C4.425 7.48.5 11.34.5 16.508c0 5.168 3.826 8.993 8.949 8.993 4.324 0 7.783-2.819 8.549-7.014h-4.193c-.598 1.946-2.261 3.29-4.358 3.29-2.894 0-4.923-2.25-4.923-5.27.002-3.053 1.997-5.302 4.891-5.302Zm104.949 3.625-2.927-.436c-1.397-.2-2.395-.67-2.395-1.779 0-1.208 1.298-1.811 3.061-1.811 1.929 0 3.16.838 3.426 2.214h3.859c-.433-3.49-3.094-5.536-7.185-5.536-4.225 0-7.019 2.181-7.019 5.268 0 2.952 1.83 4.665 5.521 5.201l2.928.436c1.431.2 2.229.772 2.229 1.846 0 1.376-1.397 1.946-3.326 1.946-2.363 0-3.693-.973-3.893-2.45h-3.925c.367 3.39 2.994 5.772 7.784 5.772 4.358 0 7.251-2.014 7.251-5.47 0-3.087-2.095-4.698-5.389-5.201ZM43.012.668c-1.463 0-2.562 1.073-2.562 2.55 0 1.476 1.097 2.549 2.562 2.549 1.464 0 2.562-1.073 2.562-2.55 0-1.476-1.098-2.55-2.562-2.55Zm58.579 13.087c0-3.758-2.262-6.274-7.052-6.274-4.523 0-7.052 2.316-7.551 5.873h3.959c.199-1.376 1.264-2.517 3.526-2.517 2.03 0 3.027.906 3.027 2.014 0 1.443-1.83 1.811-4.092 2.046-3.06.336-6.852 1.41-6.852 5.436 0 3.122 2.296 5.134 5.955 5.134 2.861 0 4.657-1.208 5.556-3.121.133 1.71 1.397 2.819 3.16 2.819h2.329v-3.59h-1.963v-7.82h-.002Zm-3.925 4.363c0 2.316-1.996 4.027-4.425 4.027-1.497 0-2.761-.638-2.761-1.98 0-1.71 2.03-2.18 3.892-2.381 1.797-.168 2.795-.57 3.294-1.343v1.677ZM76.477 7.48c-2.23 0-4.092.94-5.423 2.516V.5h-3.992v24.665h3.925v-2.282c1.331 1.644 3.228 2.617 5.49 2.617 4.79 0 8.416-3.825 8.416-8.993S81.2 7.479 76.477 7.479Zm-.599 14.295c-2.861 0-4.957-2.248-4.957-5.268 0-3.02 2.129-5.301 4.99-5.301 2.894 0 4.923 2.248 4.923 5.3 0 3.02-2.095 5.27-4.956 5.27ZM57.515 7.48c-2.594 0-4.292 1.073-5.289 2.583V7.815h-3.959v17.348h3.991v-9.428c0-2.652 1.663-4.53 4.125-4.53 2.296 0 3.725 1.643 3.725 4.026v9.934H64.1V14.93c.001-4.363-2.227-7.45-6.585-7.45Zm81.266 8.457c0-4.966-3.592-8.456-8.416-8.456-5.123 0-8.882 3.892-8.882 9.026 0 5.403 4.025 8.993 8.948 8.993 4.159 0 7.419-2.484 8.25-6.006h-4.159c-.599 1.543-2.062 2.416-4.025 2.416-2.562 0-4.491-1.611-4.923-4.43h13.206v-1.543h.001Zm-12.974-1.343c.633-2.417 2.429-3.59 4.491-3.59 2.262 0 3.992 1.308 4.391 3.59h-8.882Z\" fill=\"#A3A3A3\"/></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5 .5)\" d=\"M0 0h139v25H0z\"/></clipPath></defs></svg>',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-14lw9zd\",\"data-framer-name\":\"zapier\",fill:\"black\",intrinsicHeight:38,intrinsicWidth:77,name:\"zapier\",svg:'<svg width=\"77\" height=\"38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><g clip-path=\"url(#a)\"><g clip-path=\"url(#b)\"><path d=\"m.5 29.899 7.892-13.333H1.43a6.865 6.865 0 0 1-.077-1.265 6.958 6.958 0 0 1 .077-1.266h11.219l.148.422-7.97 13.333h7.437c.064.418.09.842.077 1.266.016.395-.01.792-.077 1.181H.578L.5 29.899Zm22.673-10.294c.087-.967-.225-1.926-.851-2.616a3.774 3.774 0 0 0-2.554-.76c-.648.011-1.294.068-1.935.169-.576.091-1.146.232-1.702.422a5.042 5.042 0 0 1-.541-2.532 9.139 9.139 0 0 1 2.167-.506c.767-.14 1.544-.197 2.322-.169 1.579-.108 3.143.4 4.41 1.434 1.006.929 1.547 2.532 1.547 4.641v10.21l-2.476.506a17.27 17.27 0 0 1-2.941.253 11.971 11.971 0 0 1-2.553-.253 4.714 4.714 0 0 1-1.935-.928 4.11 4.11 0 0 1-1.238-1.603 5.54 5.54 0 0 1-.465-2.363 4.606 4.606 0 0 1 .541-2.363 4.076 4.076 0 0 1 1.393-1.687 7.745 7.745 0 0 1 2.012-1.013 7.522 7.522 0 0 1 2.399-.337 8.172 8.172 0 0 1 1.547.084c.387 0 .697.084 1.006.084v-.675l-.153.002Zm0 3.038a6.014 6.014 0 0 1-1.083-.162c-.465 0-.852-.084-1.161-.084a4.487 4.487 0 0 0-2.786.76c-.62.522-.967 1.341-.928 2.194-.09.95.332 1.87 1.083 2.363.332.203.703.319 1.083.337.358.067.721.096 1.084.084.465.014.931-.014 1.393-.084l1.237-.253v-5.147l.078-.008Zm6.036-8.608c.232 0 .387-.084.618-.084h1.238c.232 0 .387.084.619.084.042.137.068.279.077.422 0 .253.077.422.077.675 0 .253.077.507.077.76-.002.145.024.288.077.421l.697-1.012c.3-.327.638-.611 1.006-.844a5.796 5.796 0 0 1 2.94-.843 5.623 5.623 0 0 1 2.399.506 4.982 4.982 0 0 1 1.927 1.519 7.5 7.5 0 0 1 1.238 2.532c.327 1.176.484 2.4.464 3.628.124 2.408-.626 4.773-2.089 6.582-1.393 1.603-3.334 2.363-5.88 2.363a6.91 6.91 0 0 1-1.316-.084 14.53 14.53 0 0 1-1.16-.253v7.51c-.232 0-.465.084-.774.084h-1.393c-.232 0-.464-.084-.696-.084V14.035h-.146Zm2.862 13.671a6.02 6.02 0 0 0 1.161.338c.512.077 1.03.105 1.547.084a4.854 4.854 0 0 0 1.927-.338 3.342 3.342 0 0 0 1.47-1.097 6.312 6.312 0 0 0 1.006-1.941c.265-.9.396-1.84.387-2.785a8.579 8.579 0 0 0-.852-4.05c-.6-1.028-1.671-1.612-2.786-1.519a4.06 4.06 0 0 0-1.393.253c-.44.182-.837.47-1.16.844-.371.41-.661.898-.852 1.434a5.682 5.682 0 0 0-.309 2.101v6.667l-.146.009Zm14.084-11.232h-1.927a1.356 1.356 0 0 1-.077-.59v-1.349c0-.253.077-.422.077-.59h4.721v16.37c-.232 0-.465.084-.697.084h-1.393c-.232 0-.465-.084-.696-.084l-.008-13.841Zm9.054 6.497c.077 1.772.465 3.122 1.237 3.882.988.916 2.267 1.371 3.56 1.265a10.345 10.345 0 0 0 3.947-.759c.187.368.318.767.387 1.181.089.444.141.896.155 1.35a7.743 7.743 0 0 1-2.089.674c-.841.176-1.704.261-2.553.253a8.467 8.467 0 0 1-3.483-.59 8.318 8.318 0 0 1-2.399-1.856 7.24 7.24 0 0 1-1.393-2.7 11.82 11.82 0 0 1-.464-3.376c.004-1.137.133-2.262.387-3.375a7.832 7.832 0 0 1 1.315-2.7 8.061 8.061 0 0 1 2.167-1.856 6.675 6.675 0 0 1 3.25-.76c1.774-.084 3.485.725 4.642 2.194a5.987 5.987 0 0 1 1.161 2.363c.29.98.422 2.008.386 3.038v.929c0 .338-.077.59-.077.844l-10.136-.001Zm7.429-2.363a5.923 5.923 0 0 0-.232-1.687 7.808 7.808 0 0 0-.619-1.434 3.241 3.241 0 0 0-1.083-1.013 3.036 3.036 0 0 0-1.548-.338c-1.017-.056-2.007.376-2.708 1.182a6.23 6.23 0 0 0-1.161 3.291l7.351-.001Zm6.035-6.581c.232 0 .387-.084.619-.084h1.238c.232 0 .386.084.618.084.1.413.152.839.155 1.266.063.446.089.898.077 1.349a5.16 5.16 0 0 1 1.625-1.856 4.227 4.227 0 0 1 2.554-.759h.465a.542.542 0 0 1 .386.084c0 .161.077.421.077.589v.675c.013.256-.013.513-.077.76 0 .253-.077.506-.077.759-.148 0-.309-.084-.464-.084h-.387c-.5-.005-.997.081-1.47.253a3.246 3.246 0 0 0-1.316.844 4.189 4.189 0 0 0-.928 1.687 8.805 8.805 0 0 0-.31 2.701v8.11c-.232 0-.465.084-.696.084h-1.394c-.232 0-.541-.084-.773-.084v-16.37l.078-.008ZM51.726 4.416H48.87l2.012-2.194c-.148-.253-.31-.421-.465-.674a4.65 4.65 0 0 1-.618-.59l-2.018 2.191V.103a2.41 2.41 0 0 0-.774-.084 2.2 2.2 0 0 0-.773.084v3.122L44.144.946c-.24.151-.45.351-.619.591-.148.253-.387.422-.541.675l2.012 2.194h-2.795l-.077.843c-.017.287.009.575.077.852h2.863L42.975 8.38c.306.5.7.932 1.16 1.265l2.012-2.194v3.123c.253.069.513.098.774.084a2.2 2.2 0 0 0 .773-.084V7.451l2.012 2.194c.24-.15.451-.351.619-.59.199-.206.38-.432.541-.675L48.87 6.188h2.864c.063-.276.089-.56.077-.844a3.49 3.49 0 0 0-.077-.93l-.008.002Zm-3.56.844a4.545 4.545 0 0 1-.155 1.097 2.052 2.052 0 0 1-1.007.162 3.566 3.566 0 0 1-1.006-.17 2.611 2.611 0 0 1-.148-1.097 4.56 4.56 0 0 1 .155-1.098 2.063 2.063 0 0 1 1.007-.161 3.56 3.56 0 0 1 1.006.17c.089.358.141.726.155 1.097h-.007Z\" fill=\"#A3A3A3\"/></g></g><defs><clipPath id=\"a\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h76v38H0z\"/></clipPath><clipPath id=\"b\"><path fill=\"#fff\" transform=\"translate(.5)\" d=\"M0 0h76v38H0z\"/></clipPath></defs></svg>',withExternalLayout:true})]})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1go6dfv\",\"data-framer-name\":\"Form Content\",name:\"Form Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a7hmar\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-7ao5oi\",\"data-framer-name\":\"Col\",name:\"Col\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-4vbysm\",\"data-styles-preset\":\"uSwC03676\",children:\"First, create your Account\"})}),className:\"framer-5dc88g\",\"data-framer-name\":\"Heading\",fonts:[\"Inter\"],name:\"Heading\",verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-2xifn3 hidden-1iundp7 hidden-vc50w9\",\"data-framer-name\":\"Line 17\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:3,intrinsicWidth:482,name:\"Line 17\",svg:'<svg width=\"482\" height=\"3\" viewBox=\"-1 -1 482 3\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<line y1=\"0.5\" x2=\"480\" y2=\"0.5\" stroke=\"#A3A3A3\" stroke-dasharray=\"2 2\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__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-1kc91gj-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{osvmGswmQ:{inputs:[{gridColumn:\"2\",label:\"First Name\",max:\"\",min:\"\",name:\"first_name\",options:[],placeholder:\"Jane\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Last Name\",max:\"\",min:\"\",name:\"last_name\",options:[],placeholder:\"Doe\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Email\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"jane@example.com\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Password\",max:\"\",min:\"\",name:\"password\",options:[],placeholder:\"Choose password\",required:true,step:0,type:\"password\",value:\"\"}],link:resolvedLinks[2]},Pfmj_gyqI:{link:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(BaseForm,{button:{label:\"Join the waitlist\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"afWu0ntAm\",inputs:[{gridColumn:\"1\",label:\"First Name\",max:\"\",min:\"\",name:\"first_name\",options:[],placeholder:\"Jane\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"Last Name\",max:\"\",min:\"\",name:\"last_name\",options:[],placeholder:\"Doe\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Email\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"jane@example.com\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Password\",max:\"\",min:\"\",name:\"password\",options:[],placeholder:\"Choose password\",required:true,step:0,type:\"password\",value:\"\"}],layoutId:\"afWu0ntAm\",link:resolvedLinks[0],method:\"post\",redirectAs:\"link\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:48,color:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",fill:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"15px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.1em\"},padding:15,paddingBottom:15,paddingLeft:15,paddingPerSide:false,paddingRight:15,paddingTop:15},form:{columnGap:16,columns:\"2\",fill:\"var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, rgb(255, 255, 255))\",rowGap:24},input:{borderObject:{borderColor:\"var(--token-479b6b4d-3d07-497b-97b0-0d6ab5f0ea7d, rgb(212, 212, 212))\",borderWidth:1},borderRadius:8,color:\"rgb(0, 0, 0)\",fill:\"rgba(235, 235, 235, 0)\",focusObject:{focusColor:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",focusWidthFrom:0,focusWidthTo:2},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},padding:14,paddingBottom:14,paddingLeft:14,paddingPerSide:false,paddingRight:14,paddingTop:14,placeholderColor:\"var(--token-3a259a41-0d00-4102-a2f3-6fc26ea1e8f1, rgb(115, 115, 115))\"},label:{borderObject:{borderColor:\"rgba(200, 200, 200, 0.5)\",borderWidth:0},borderRadius:8,color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"-0.01em\",lineHeight:\"120%\",textAlign:\"left\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:\"\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11mtfgo\",\"data-framer-name\":\"Col\",name:\"Col\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cu1tgn\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-7359ii\",\"data-framer-name\":\"icon-wrapper\",name:\"icon-wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5o79i4-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"tjpjP9Q4y\",layoutId:\"tjpjP9Q4y\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",children:\"Risk free\"})}),className:\"framer-1ar5r73\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-266gtj\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-inqgit\",\"data-framer-name\":\"icon-wrapper\",name:\"icon-wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-18eqvwy-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"yxqRxqi5e\",layoutId:\"yxqRxqi5e\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",children:\"Cancel anytime\"})}),className:\"framer-6c0797\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-169dp65\",\"data-framer-name\":\"Item\",name:\"Item\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-o7a1om\",\"data-framer-name\":\"icon-wrapper\",name:\"icon-wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-jg5uto-container\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-33722da1-56ef-4815-82ed-442105eb06b1, rgb(0, 0, 0))\",height:\"100%\",iconSearch:\"House\",iconSelection:\"Check\",id:\"FiZ8poPj8\",layoutId:\"FiZ8poPj8\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-qemwmo\",\"data-styles-preset\":\"i59KN99_1\",children:\"24/7 Support\"})}),className:\"framer-mzyl6x\",\"data-framer-name\":\"Text\",fonts:[\"Inter\"],name:\"Text\",verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-awzvyi-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{osvmGswmQ:{variant:\"SNdDeBgez\"},Pfmj_gyqI:{variant:\"RLYNC0Q6p\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"r_wf_iQMn\",layoutId:\"r_wf_iQMn\",style:{width:\"100%\"},variant:\"DlUIdAQW0\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-jcAYO { background: white; }`,\".framer-jcAYO.framer-f5oytu, .framer-jcAYO .framer-f5oytu { display: block; }\",\".framer-jcAYO.framer-kui291 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-jcAYO .framer-19wm04 { --border-bottom-width: 1px; --border-color: var(--token-0c4a7810-dbb7-4735-ac98-cf66fd324474, #ebebeb); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 16px 60px 16px 60px; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 10; }\",\".framer-jcAYO .framer-m8p3ct { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jcAYO .framer-88ldrk { 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-jcAYO .framer-1dnhq1n { 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-jcAYO .framer-1m1mu84 { align-content: center; align-items: center; border-bottom-left-radius: 50px; border-bottom-right-radius: 50px; border-top-left-radius: 50px; border-top-right-radius: 50px; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jcAYO .framer-mqjz8 { flex: none; height: 48px; position: relative; width: 130px; }\",\".framer-jcAYO .framer-6iz7xi-container { flex: none; height: 30px; position: relative; width: 30px; }\",\".framer-jcAYO .framer-j1v5nl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jcAYO .framer-15ougd2, .framer-jcAYO .framer-x30inc, .framer-jcAYO .framer-zba60l, .framer-jcAYO .framer-f6g46f, .framer-jcAYO .framer-161qd4l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 14px 10px 14px 10px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jcAYO .framer-zn3djs, .framer-jcAYO .framer-hm9mkp, .framer-jcAYO .framer-we4dzh, .framer-jcAYO .framer-1yfeojq, .framer-jcAYO .framer-1pdo91q, .framer-jcAYO .framer-lmuq89 { flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-jcAYO .framer-7k3jvn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jcAYO .framer-1j7yreh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 29px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-jcAYO .framer-1twoehk-container, .framer-jcAYO .framer-1a34kwq-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-jcAYO .framer-3exav3 { align-content: center; align-items: center; background-color: var(--token-afc428eb-83f4-4256-aa82-c07d2f223ccd, #f9f7f2); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: visible; padding: 180px 0px 80px 0px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-y4e4g8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1280px; overflow: visible; padding: 0px 32px 0px 32px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-3ax645 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-jcAYO .framer-1gv9ji5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 32px 0px 0px; position: relative; width: 1px; }\",\".framer-jcAYO .framer-1eufq5h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-1gn7b59 { bottom: -31px; flex: none; height: 106px; left: calc(46.42857142857145% - 192px / 2); overflow: hidden; position: absolute; width: 192px; z-index: 0; }\",\".framer-jcAYO .framer-sp6szo { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-jcAYO .framer-1y23ma7 { --framer-paragraph-spacing: 72px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-jcAYO .framer-1t5en4y { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-klsxlg { --framer-paragraph-spacing: 16px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jcAYO .framer-12yflmu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-h34auy, .framer-jcAYO .framer-7dj7fx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-1wt872f { aspect-ratio: 5.2272727272727275 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 22px); position: relative; width: 115px; }\",\".framer-jcAYO .framer-w4h951 { aspect-ratio: 3.5 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 32px); position: relative; width: 112px; }\",\".framer-jcAYO .framer-hvraef { aspect-ratio: 4.458333333333333 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 107px; }\",\".framer-jcAYO .framer-1582j9d { flex: none; height: 32px; position: relative; width: 147px; }\",\".framer-jcAYO .framer-1ols84y { aspect-ratio: 5.384615384615385 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 26px); position: relative; width: 140px; }\",\".framer-jcAYO .framer-14lw9zd { aspect-ratio: 2.026315789473684 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 38px); position: relative; width: 77px; }\",\".framer-jcAYO .framer-1go6dfv { align-content: center; align-items: center; background-color: var(--token-8c47652b-dea5-4767-a9f2-5d952dcce49a, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 40px; position: relative; width: 1px; }\",\".framer-jcAYO .framer-a7hmar { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 16px 0px 16px; position: relative; width: 1px; }\",\".framer-jcAYO .framer-7ao5oi { 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: min-content; }\",\".framer-jcAYO .framer-5dc88g { --framer-paragraph-spacing: 30px; align-self: stretch; flex: none; height: auto; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-jcAYO .framer-2xifn3 { flex: none; height: 2px; position: relative; width: 444px; }\",\".framer-jcAYO .framer-1kc91gj-container { flex: none; height: auto; position: relative; width: 444px; }\",\".framer-jcAYO .framer-11mtfgo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-jcAYO .framer-1cu1tgn, .framer-jcAYO .framer-169dp65 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-jcAYO .framer-7359ii, .framer-jcAYO .framer-inqgit, .framer-jcAYO .framer-o7a1om { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-2e606580-c5cb-45c2-a66e-07cb8dbe5a38, #feea58); border-bottom-left-radius: 70px; border-bottom-right-radius: 70px; border-top-left-radius: 70px; border-top-right-radius: 70px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 28px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 28px; will-change: var(--framer-will-change-override, transform); }\",\".framer-jcAYO .framer-5o79i4-container, .framer-jcAYO .framer-18eqvwy-container, .framer-jcAYO .framer-jg5uto-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-jcAYO .framer-1ar5r73, .framer-jcAYO .framer-mzyl6x { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-jcAYO .framer-266gtj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-jcAYO .framer-6c0797 { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 119px; word-break: break-word; word-wrap: break-word; }\",\".framer-jcAYO .framer-awzvyi-container { flex: none; height: auto; position: relative; width: 1200px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jcAYO.framer-kui291, .framer-jcAYO .framer-19wm04, .framer-jcAYO .framer-88ldrk, .framer-jcAYO .framer-1dnhq1n, .framer-jcAYO .framer-1m1mu84, .framer-jcAYO .framer-j1v5nl, .framer-jcAYO .framer-15ougd2, .framer-jcAYO .framer-x30inc, .framer-jcAYO .framer-zba60l, .framer-jcAYO .framer-f6g46f, .framer-jcAYO .framer-161qd4l, .framer-jcAYO .framer-7k3jvn, .framer-jcAYO .framer-1j7yreh, .framer-jcAYO .framer-3exav3, .framer-jcAYO .framer-y4e4g8, .framer-jcAYO .framer-3ax645, .framer-jcAYO .framer-1gv9ji5, .framer-jcAYO .framer-1eufq5h, .framer-jcAYO .framer-1t5en4y, .framer-jcAYO .framer-12yflmu, .framer-jcAYO .framer-h34auy, .framer-jcAYO .framer-7dj7fx, .framer-jcAYO .framer-1go6dfv, .framer-jcAYO .framer-a7hmar, .framer-jcAYO .framer-7ao5oi, .framer-jcAYO .framer-11mtfgo, .framer-jcAYO .framer-1cu1tgn, .framer-jcAYO .framer-7359ii, .framer-jcAYO .framer-266gtj, .framer-jcAYO .framer-inqgit, .framer-jcAYO .framer-169dp65, .framer-jcAYO .framer-o7a1om { gap: 0px; } .framer-jcAYO.framer-kui291 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-jcAYO.framer-kui291 > :first-child, .framer-jcAYO .framer-15ougd2 > :first-child, .framer-jcAYO .framer-x30inc > :first-child, .framer-jcAYO .framer-zba60l > :first-child, .framer-jcAYO .framer-f6g46f > :first-child, .framer-jcAYO .framer-161qd4l > :first-child, .framer-jcAYO .framer-1j7yreh > :first-child, .framer-jcAYO .framer-3exav3 > :first-child, .framer-jcAYO .framer-1gv9ji5 > :first-child, .framer-jcAYO .framer-1eufq5h > :first-child, .framer-jcAYO .framer-1t5en4y > :first-child, .framer-jcAYO .framer-12yflmu > :first-child, .framer-jcAYO .framer-a7hmar > :first-child, .framer-jcAYO .framer-7ao5oi > :first-child { margin-top: 0px; } .framer-jcAYO.framer-kui291 > :last-child, .framer-jcAYO .framer-15ougd2 > :last-child, .framer-jcAYO .framer-x30inc > :last-child, .framer-jcAYO .framer-zba60l > :last-child, .framer-jcAYO .framer-f6g46f > :last-child, .framer-jcAYO .framer-161qd4l > :last-child, .framer-jcAYO .framer-1j7yreh > :last-child, .framer-jcAYO .framer-3exav3 > :last-child, .framer-jcAYO .framer-1gv9ji5 > :last-child, .framer-jcAYO .framer-1eufq5h > :last-child, .framer-jcAYO .framer-1t5en4y > :last-child, .framer-jcAYO .framer-12yflmu > :last-child, .framer-jcAYO .framer-a7hmar > :last-child, .framer-jcAYO .framer-7ao5oi > :last-child { margin-bottom: 0px; } .framer-jcAYO .framer-19wm04 > *, .framer-jcAYO .framer-1m1mu84 > *, .framer-jcAYO .framer-7359ii > *, .framer-jcAYO .framer-inqgit > *, .framer-jcAYO .framer-o7a1om > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-jcAYO .framer-19wm04 > :first-child, .framer-jcAYO .framer-88ldrk > :first-child, .framer-jcAYO .framer-1dnhq1n > :first-child, .framer-jcAYO .framer-1m1mu84 > :first-child, .framer-jcAYO .framer-j1v5nl > :first-child, .framer-jcAYO .framer-7k3jvn > :first-child, .framer-jcAYO .framer-y4e4g8 > :first-child, .framer-jcAYO .framer-3ax645 > :first-child, .framer-jcAYO .framer-h34auy > :first-child, .framer-jcAYO .framer-7dj7fx > :first-child, .framer-jcAYO .framer-1go6dfv > :first-child, .framer-jcAYO .framer-11mtfgo > :first-child, .framer-jcAYO .framer-1cu1tgn > :first-child, .framer-jcAYO .framer-7359ii > :first-child, .framer-jcAYO .framer-266gtj > :first-child, .framer-jcAYO .framer-inqgit > :first-child, .framer-jcAYO .framer-169dp65 > :first-child, .framer-jcAYO .framer-o7a1om > :first-child { margin-left: 0px; } .framer-jcAYO .framer-19wm04 > :last-child, .framer-jcAYO .framer-88ldrk > :last-child, .framer-jcAYO .framer-1dnhq1n > :last-child, .framer-jcAYO .framer-1m1mu84 > :last-child, .framer-jcAYO .framer-j1v5nl > :last-child, .framer-jcAYO .framer-7k3jvn > :last-child, .framer-jcAYO .framer-y4e4g8 > :last-child, .framer-jcAYO .framer-3ax645 > :last-child, .framer-jcAYO .framer-h34auy > :last-child, .framer-jcAYO .framer-7dj7fx > :last-child, .framer-jcAYO .framer-1go6dfv > :last-child, .framer-jcAYO .framer-11mtfgo > :last-child, .framer-jcAYO .framer-1cu1tgn > :last-child, .framer-jcAYO .framer-7359ii > :last-child, .framer-jcAYO .framer-266gtj > :last-child, .framer-jcAYO .framer-inqgit > :last-child, .framer-jcAYO .framer-169dp65 > :last-child, .framer-jcAYO .framer-o7a1om > :last-child { margin-right: 0px; } .framer-jcAYO .framer-88ldrk > *, .framer-jcAYO .framer-h34auy > *, .framer-jcAYO .framer-7dj7fx > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-jcAYO .framer-1dnhq1n > *, .framer-jcAYO .framer-1go6dfv > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jcAYO .framer-j1v5nl > *, .framer-jcAYO .framer-11mtfgo > *, .framer-jcAYO .framer-1cu1tgn > *, .framer-jcAYO .framer-266gtj > *, .framer-jcAYO .framer-169dp65 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-jcAYO .framer-15ougd2 > *, .framer-jcAYO .framer-x30inc > *, .framer-jcAYO .framer-zba60l > *, .framer-jcAYO .framer-f6g46f > *, .framer-jcAYO .framer-161qd4l > *, .framer-jcAYO .framer-1j7yreh > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-jcAYO .framer-7k3jvn > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-jcAYO .framer-3exav3 > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-jcAYO .framer-y4e4g8 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-jcAYO .framer-3ax645 > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-jcAYO .framer-1gv9ji5 > * { margin: 0px; margin-bottom: calc(120px / 2); margin-top: calc(120px / 2); } .framer-jcAYO .framer-1eufq5h > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-jcAYO .framer-1t5en4y > *, .framer-jcAYO .framer-7ao5oi > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jcAYO .framer-12yflmu > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-jcAYO .framer-a7hmar > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\"@media (min-width: 1200px) { .framer-jcAYO .hidden-kui291 { display: none !important; } }\",`@media (min-width: 810px) and (max-width: 1199px) { .framer-jcAYO .hidden-1iundp7 { display: none !important; } .${metadata.bodyClassName}-framer-jcAYO { background: white; } .framer-jcAYO.framer-kui291 { width: 810px; } .framer-jcAYO .framer-19wm04 { gap: 0px; padding: 16px 24px 16px 24px; } .framer-jcAYO .framer-88ldrk { flex: 1 0 0px; width: 1px; } .framer-jcAYO .framer-1dnhq1n { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; } .framer-jcAYO .framer-1m1mu84 { order: 0; width: 50px; } .framer-jcAYO .framer-6iz7xi-container { height: 28px; order: 2; width: 28px; } .framer-jcAYO .framer-3exav3 { padding: 120px 0px 80px 0px; } .framer-jcAYO .framer-y4e4g8 { padding: 0px 24px 0px 24px; } .framer-jcAYO .framer-3ax645 { overflow: visible; padding: 0px; } .framer-jcAYO .framer-1gv9ji5, .framer-jcAYO .framer-a7hmar { padding: 0px; } .framer-jcAYO .framer-1gn7b59 { bottom: 25px; height: 96px; left: 112px; width: 174px; } .framer-jcAYO .framer-12yflmu { flex-direction: row; } .framer-jcAYO .framer-h34auy, .framer-jcAYO .framer-7dj7fx { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; width: 1px; } .framer-jcAYO .framer-1go6dfv { padding: 24px; } .framer-jcAYO .framer-7ao5oi, .framer-jcAYO .framer-1kc91gj-container, .framer-jcAYO .framer-awzvyi-container { width: 100%; } .framer-jcAYO .framer-5dc88g { align-self: unset; width: 100%; } .framer-jcAYO .framer-11mtfgo { flex-direction: column; gap: 12px; } .framer-jcAYO .framer-1cu1tgn, .framer-jcAYO .framer-169dp65 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jcAYO .framer-19wm04, .framer-jcAYO .framer-1dnhq1n, .framer-jcAYO .framer-12yflmu, .framer-jcAYO .framer-h34auy, .framer-jcAYO .framer-7dj7fx, .framer-jcAYO .framer-11mtfgo { gap: 0px; } .framer-jcAYO .framer-19wm04 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jcAYO .framer-19wm04 > :first-child, .framer-jcAYO .framer-12yflmu > :first-child { margin-left: 0px; } .framer-jcAYO .framer-19wm04 > :last-child, .framer-jcAYO .framer-12yflmu > :last-child { margin-right: 0px; } .framer-jcAYO .framer-1dnhq1n > *, .framer-jcAYO .framer-1dnhq1n > :first-child, .framer-jcAYO .framer-1dnhq1n > :last-child { margin: 0px; } .framer-jcAYO .framer-12yflmu > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-jcAYO .framer-h34auy > *, .framer-jcAYO .framer-7dj7fx > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-jcAYO .framer-h34auy > :first-child, .framer-jcAYO .framer-7dj7fx > :first-child, .framer-jcAYO .framer-11mtfgo > :first-child { margin-top: 0px; } .framer-jcAYO .framer-h34auy > :last-child, .framer-jcAYO .framer-7dj7fx > :last-child, .framer-jcAYO .framer-11mtfgo > :last-child { margin-bottom: 0px; } .framer-jcAYO .framer-11mtfgo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}`,`@media (max-width: 809px) { .framer-jcAYO .hidden-vc50w9 { display: none !important; } .${metadata.bodyClassName}-framer-jcAYO { background: white; } .framer-jcAYO.framer-kui291 { width: 390px; } .framer-jcAYO .framer-19wm04 { gap: 0px; padding: 16px 24px 16px 24px; } .framer-jcAYO .framer-88ldrk { flex: 1 0 0px; width: 1px; } .framer-jcAYO .framer-1dnhq1n { flex: 1 0 0px; gap: unset; justify-content: space-between; width: 1px; } .framer-jcAYO .framer-1m1mu84 { order: 0; width: 50px; } .framer-jcAYO .framer-6iz7xi-container { height: 28px; order: 2; width: 28px; } .framer-jcAYO .framer-3exav3 { padding: 120px 0px 80px 0px; } .framer-jcAYO .framer-y4e4g8 { padding: 0px 20px 0px 20px; } .framer-jcAYO .framer-3ax645 { flex-direction: column; gap: 56px; padding: 0px; } .framer-jcAYO .framer-1gv9ji5 { flex: none; gap: 80px; order: 0; padding: 0px; width: 100%; } .framer-jcAYO .framer-1eufq5h { order: 0; } .framer-jcAYO .framer-1go6dfv { flex: none; order: 1; padding: 24px; width: 100%; } .framer-jcAYO .framer-a7hmar { padding: 0px; } .framer-jcAYO .framer-7ao5oi, .framer-jcAYO .framer-1kc91gj-container, .framer-jcAYO .framer-awzvyi-container { width: 100%; } .framer-jcAYO .framer-5dc88g { align-self: unset; width: 100%; } .framer-jcAYO .framer-11mtfgo { flex-direction: column; gap: 12px; } .framer-jcAYO .framer-1cu1tgn, .framer-jcAYO .framer-169dp65 { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-jcAYO .framer-19wm04, .framer-jcAYO .framer-1dnhq1n, .framer-jcAYO .framer-3ax645, .framer-jcAYO .framer-1gv9ji5, .framer-jcAYO .framer-11mtfgo { gap: 0px; } .framer-jcAYO .framer-19wm04 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-jcAYO .framer-19wm04 > :first-child { margin-left: 0px; } .framer-jcAYO .framer-19wm04 > :last-child { margin-right: 0px; } .framer-jcAYO .framer-1dnhq1n > *, .framer-jcAYO .framer-1dnhq1n > :first-child, .framer-jcAYO .framer-1dnhq1n > :last-child { margin: 0px; } .framer-jcAYO .framer-3ax645 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-jcAYO .framer-3ax645 > :first-child, .framer-jcAYO .framer-1gv9ji5 > :first-child, .framer-jcAYO .framer-11mtfgo > :first-child { margin-top: 0px; } .framer-jcAYO .framer-3ax645 > :last-child, .framer-jcAYO .framer-1gv9ji5 > :last-child, .framer-jcAYO .framer-11mtfgo > :last-child { margin-bottom: 0px; } .framer-jcAYO .framer-1gv9ji5 > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-jcAYO .framer-11mtfgo > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-jcAYO[data-border=\"true\"]::after, .framer-jcAYO [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 1311\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Pfmj_gyqI\":{\"layout\":[\"fixed\",\"auto\"]},\"osvmGswmQ\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerLKea8G53p=withCSS(Component,css,\"framer-jcAYO\");export default FramerLKea8G53p;FramerLKea8G53p.displayName=\"Page\";FramerLKea8G53p.defaultProps={height:1311,width:1200};addFonts(FramerLKea8G53p,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...PhosphorFonts,...ButtonFonts,...SectionBadgeFonts,...BaseFormFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerLKea8G53p\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerResponsiveScreen\":\"\",\"framerIntrinsicWidth\":\"1200\",\"framerIntrinsicHeight\":\"1311\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pfmj_gyqI\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"osvmGswmQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FieldType", "isExternalURL", "url", "hasMinMaxStep", "type", "VERSION", "BaseForm", "withCSS", "method", "contentType", "redirectAs", "link", "inputs", "button", "styles", "extraHeaders", "extraFields", "style", "onSubmit", "isError", "setError", "ye", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "key", "value", "formData", "requestOptions", "urlSearchParams", "name", "value1", "queryString", "urlSearchParams1", "name1", "value2", "key1", "value3", "bodyObject", "name2", "value4", "key2", "value5", "response", "statusCode", "data", "errorMessage", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "isRequired", "BaseForm_default", "fontStore", "fonts", "css", "className", "PhosphorFonts", "getFonts", "Icon", "ButtonFonts", "beqLwtpNS_default", "MotionDivWithOptimizedAppearEffect", "withOptimizedAppearEffect", "motion", "SectionBadgeFonts", "DT9isorhv_default", "RichTextWithOptimizedAppearEffect", "RichText2", "BaseFormFonts", "BaseForm_default", "FooterFonts", "zOCvedWwi_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "transition2", "animation2", "animation3", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Link", "SVG", "ComponentViewportProvider", "Container", "Icon", "RichText2", "x", "beqLwtpNS_default", "MotionDivWithOptimizedAppearEffect", "DT9isorhv_default", "RichTextWithOptimizedAppearEffect", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "BaseForm_default", "zOCvedWwi_default", "css", "FramerLKea8G53p", "withCSS", "LKea8G53p_default", "addFonts", "PhosphorFonts", "ButtonFonts", "SectionBadgeFonts", "BaseFormFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
