{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/J5njDOzTk1Tqm8Z8xaXZ/4Jea5UdLbFpGwGNySbIo/Contact.js", "ssg:https://framerusercontent.com/modules/buU646EoGsB7w3XaEIvg/kuarFbn4lqIYN38hbtXr/componentPresets.js", "ssg:https://framerusercontent.com/modules/XSZYFd5dDNhOQaEaOTl4/CL39SverAdPI97iA5iWN/UTIqx9hoS.js", "ssg:https://framerusercontent.com/modules/2jSii1wPqo3MDkmGmMyI/wy227DVq82sT2fjCRdCD/WYYEyUzkU.js", "ssg:https://framerusercontent.com/modules/L1G4tT5P4DeKbtsER7l7/pISdS7Li5QlvBHPew67I/v6Tip84Rj.js", "ssg:https://framerusercontent.com/modules/15OuDvg9MAM6RHa5Hyhx/nYxX6BsF1FKoAQZmKUHz/onnQzogOs.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";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[\"File\"]=\"file\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[\"time\",\"week\",\"number\",\"date\",\"datetime-local\"].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[errorMessage,setErrorMessage]=useState(\"\");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);setError(false);setErrorMessage(\"\");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=>{const inputElement=event.target;if(inputElement.type===\"file\"){const file=inputElement.files[0];if(file&&file.size>20*1024*1024){setError(true);formControls.start(\"error\");inputElement.value=\"\";setErrorMessage(\"Attachments cannot be larger than 20MB. Please reduce the file size and try again.\");return;}}setErrorMessage(\"\");setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);},[]);const handleSubmit=useCallback(async event=>{event.preventDefault();if(isLoading)return;setLoading(true);setErrorMessage(\"\");setError(false);const headers=new Headers(extraHeaders||{});headers.append(\"Content-Type\",\"application/json\");const formData=new FormData(event.target);const bodyObject=Object.fromEntries(formData.entries());Object.assign(bodyObject,extraFields);const requestOptions={method:method,headers:headers,body:formData,mode:\"no-cors\"};try{const response=await fetch(url,requestOptions);const statusCode=response.status;setLoading(false);event.target.reset();setFocus(null);if(redirectAs===\"link\")window.location.href=\"/success\";if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}catch(error){setErrorMessage(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,0,0,0],transition:{duration:0}}};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 fileInput=input=>{const[fileInputs,setFileInputs]=useState([input]);const handleFileChange=(event,index)=>{if(event.target.type===\"file\"&&event.target.files.length>0){const file=event.target.files[0];const MAX_SIZE_MB=20*1024*1024;if(file.size<=MAX_SIZE_MB){setFileInputs(prevInputs=>{const newInputs=[...prevInputs];if(newInputs.length<5){newInputs.push({...input,required:false});}return newInputs;});}else{alert(\"File size exceeds 20 MB. Please select a smaller file.\");}}if(handleChange){handleChange(event);}};return /*#__PURE__*/_jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),fileInputs.map((fileInput,index)=>/*#__PURE__*/_jsx(motion.input,{name:`${fileInput.name}${index>0?`-${index}`:\"\"}`,type:fileInput.type,defaultValue:fileInput.value,placeholder:fileInput.placeholder,className:`${VERSION} framer-custom-input`,onChange:event=>handleFileChange(event,index),onFocus:event=>handleFocus(event,fileInput),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:index===0?fileInput.required:false,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles),marginBottom:index<fileInputs.length-1?\"10px\":\"0\"},variants:inputVariants,initial:false,animate:getFocus===fileInput.name?\"focused\":\"default\",transition:{duration:.3},min:fileInput.min,max:fileInput.max,step:fileInput.step},index))]});};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:\"26px\",minHeight:\"200px\",fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles),resize:\"none\"},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===\"select\"){inputElement=selectInput(input);}else if(input.type===\"textarea\"){inputElement=textareaInput(input);}else if(input.type===\"checkbox\"){inputElement=checkboxInput(input);}else if(input.type===\"radio\"){inputElement=radioInput(input);}else if(input.type===\"file\"){inputElement=fileInput(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\",name:\"fa-form-1\",// action=\"https://webhook.frontapp.com/forms/aa92212e5b38ded3023c/bnCZ71jRcRJfhWnCkbpYBOUWJD9w-ZEmdpsXFL5w9Xr1YB8q0Z3_RlXpFr640CtmoRq7HdUYYG4_yVO5NxH47CfJoxTPGwhB4NHm9HHlt0lDhPDTK5SctcubZMuD\"\nencType:\"multipart/form-data\",\"accept-charset\":\"utf-8\",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__*/_jsxs(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\",gap:`${styles.form.columnGap}px`},children:[isError&&errorMessage&&/*#__PURE__*/_jsxs(\"div\",{style:{color:\"#bb2731\",fontSize:16},children:[\"An error occured: \",errorMessage]}),/*#__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:[\"multipart/form-data\",\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"multipart\",\"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:\"text\",required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:\"email\",required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:\"select\",required:false,options:[]},{name:\"body\",label:\"Message\",placeholder:\"\",type:\"textarea\",required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:\"checkbox\",required:false}]};export default BaseForm;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"300\",\"framerDisableUnlink\":\"*\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"40\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Contact.map", "// Generated by Framer (7f988a2)\nexport const props={lTD3nRdgF:{borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,isMixedBorderRadius:false,isRed:true,topLeftRadius:0,topRightRadius:0},t7z_GWVn2:{borderRadius:15,bottomLeftRadius:15,bottomRightRadius:15,darkTheme:\"framerDark\",font:{fontFamily:'\"Fragment Mono\", monospace',fontSize:\"14px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.5em\"},isMixedBorderRadius:false,lightTheme:\"framerLight\",padding:30,paddingBottom:30,paddingLeft:30,paddingPerSide:false,paddingRight:30,paddingTop:30,theme:\"framerDark\",themeMode:\"Static\",topLeftRadius:15,topRightRadius:15}};export const fonts={t7z_GWVn2:[{explicitInter:true,fonts:[{family:\"Fragment Mono\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}]}]};\nexport const __FramerMetadata__ = {\"exports\":{\"props\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"Inter-Bold\",\"Inter-Black\",\"Inter-BlackItalic\",\"Inter-BoldItalic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-ext-XOTVL7ZR.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Bold.cyrillic-6LOMBC2V.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-ext-WXWSJXLB.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Bold.greek-YRST7ODZ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Bold.latin-ext-BASA5UL3.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Bold.latin-UCM45LQF.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Bold.vietnamese-OEVJMXEP.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-ext-TU4ITVTR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Black.cyrillic-JX7CGTYD.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ext-LS3GCBFI.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Black.greek-ZWCJHBP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Black.latin-ext-BZLEUMX6.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Black.latin-TETRYDF7.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Black.vietnamese-RXQCC3EJ.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-ext-TRM4ITYR.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BlackItalic.cyrillic-FPHIQVZS.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-ext-JTGUUSP5.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.greek-LUNA3RFO.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-ext-KU7ICFYH.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BlackItalic.latin-FRVXWQSB.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BlackItalic.vietnamese-2Q7MQKJX.woff2\",weight:\"900\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-ext-PEYDHC3S.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-BoldItalic.cyrillic-7EIL6JWG.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-ext-3DJOYQMH.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.greek-TJBTLTT7.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-ext-FVPCPRBJ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-BoldItalic.latin-5ZFQS4XK.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-BoldItalic.vietnamese-W2625PGF.woff2\",weight:\"700\"}]}];export const css=['.framer-SCWyk .framer-styles-preset-rktywn:not(.rich-text-wrapper), .framer-SCWyk .framer-styles-preset-rktywn.rich-text-wrapper h6 { --framer-font-family: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", sans-serif; --framer-font-family-bold-italic: \"Inter\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 700; --framer-font-weight-bold: 900; --framer-font-weight-bold-italic: 900; --framer-font-weight-italic: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-SCWyk\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-Y9I6U .framer-styles-preset-gvuh2d {  }\"];export const className=\"framer-Y9I6U\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;TWK Lausanne 300\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"TWK Lausanne 300\",source:\"custom\",url:\"https://framerusercontent.com/assets/16E19wBzFNgVy2JS8Oo2AV0HY.otf\"}]}];export const css=['.framer-03Xr3 .framer-styles-preset-1v54m51:not(.rich-text-wrapper), .framer-03Xr3 .framer-styles-preset-1v54m51.rich-text-wrapper p { --framer-font-family: \"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: 0em; --framer-line-height: 145%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: rgba(255, 255, 255, 0.64); --framer-text-decoration: none; --framer-text-transform: none; }'];export const className=\"framer-03Xr3\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (90417e1)\nvar _componentPresets_fonts,_componentPresets_fonts1;import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentPresetsProvider,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromComponentPreset,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as componentPresets from\"https://framerusercontent.com/modules/buU646EoGsB7w3XaEIvg/kuarFbn4lqIYN38hbtXr/componentPresets.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/mltG5cBZ1T2j2jYM8euk/8n8pSUyTpubrx2NyUPgj/h1GNplcc9.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/aOO6ekYLjk3Y1XQpM73I/TLylkr9q2KkSwxVfeJto/OkyWOV_FL.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/ueBPJoQJB9nmRlYkzPoo/m7Hewx28J1d96FMtVnAO/plfjnnf3e.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/XSZYFd5dDNhOQaEaOTl4/CL39SverAdPI97iA5iWN/UTIqx9hoS.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/L1G4tT5P4DeKbtsER7l7/pISdS7Li5QlvBHPew67I/v6Tip84Rj.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/2jSii1wPqo3MDkmGmMyI/wy227DVq82sT2fjCRdCD/WYYEyUzkU.js\";import Button from\"https://framerusercontent.com/modules/etZnCA1g0hedtz9nLUX6/xF4oAimahs29ym0D0GNX/GypPrpWV3.js\";const ButtonFonts=getFonts(Button);const cycleOrder=[\"r7NbM0obz\",\"bzJ8cFrZQ\",\"fgdLwoO07\"];const serializationHash=\"framer-hyI4X\";const variantClassNames={bzJ8cFrZQ:\"framer-v-1wdmwkz\",fgdLwoO07:\"framer-v-m4gw0n\",r7NbM0obz:\"framer-v-1xpao7n\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"r7NbM0obz\",Mobile:\"fgdLwoO07\",Tablet:\"bzJ8cFrZQ\"};const getProps=({attribution,bgImage,buttonText,height,id,link,subTitle,title,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_humanReadableVariantMap_props_variant,_ref5;return{...props,cdFP2ygFl:(_ref=title!==null&&title!==void 0?title:props.cdFP2ygFl)!==null&&_ref!==void 0?_ref:\"Explore our themes\",CfHTNcd0a:(_ref1=buttonText!==null&&buttonText!==void 0?buttonText:props.CfHTNcd0a)!==null&&_ref1!==void 0?_ref1:\"Discover our themes\",cTnytBaG9:link!==null&&link!==void 0?link:props.cTnytBaG9,gvmjeFBWO:(_ref2=bgImage!==null&&bgImage!==void 0?bgImage:props.gvmjeFBWO)!==null&&_ref2!==void 0?_ref2:{src:\"https://framerusercontent.com/images/nOKN5PHWKkvZuyJZZzYaoWHzvI.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/nOKN5PHWKkvZuyJZZzYaoWHzvI.png?scale-down-to=512 512w,https://framerusercontent.com/images/nOKN5PHWKkvZuyJZZzYaoWHzvI.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/nOKN5PHWKkvZuyJZZzYaoWHzvI.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/nOKN5PHWKkvZuyJZZzYaoWHzvI.png 2784w\"},JexfuxaHb:(_ref3=attribution!==null&&attribution!==void 0?attribution:props.JexfuxaHb)!==null&&_ref3!==void 0?_ref3:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{children:[\"Photography kindly provided by \",/*#__PURE__*/_jsx(Link,{href:\"https://context-theme-chic.myshopify.com/products/helix-moss\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"Mlouye\"})}),\". A featured partner of our Context theme.\"]})}),RhUDP1_o3:(_ref4=subTitle!==null&&subTitle!==void 0?subTitle:props.RhUDP1_o3)!==null&&_ref4!==void 0?_ref4:\"Infinitely flexible and loaded with powerful features, our themes offer endless possibilities to take your brand to the next level.\",variant:(_ref5=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref5!==void 0?_ref5:\"r7NbM0obz\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,gvmjeFBWO,cdFP2ygFl,RhUDP1_o3,CfHTNcd0a,cTnytBaG9,JexfuxaHb,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"r7NbM0obz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"bzJ8cFrZQ\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"fgdLwoO07\")return false;return true;};const isDisplayed2=()=>{if(baseVariant===\"fgdLwoO07\")return true;return false;};const isDisplayed3=()=>{if(baseVariant===\"bzJ8cFrZQ\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1xpao7n\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"r7NbM0obz\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-e1791326-4b01-4337-b1f7-8ad7decea87c, rgb(247, 247, 247))\",...style},...addPropertyOverrides({bzJ8cFrZQ:{\"data-framer-name\":\"Tablet\"},fgdLwoO07:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1920,intrinsicWidth:2784,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:1920,pixelWidth:2784,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(gvmjeFBWO)},className:\"framer-1baflb0\",\"data-framer-name\":\"Frame 2609716\",layoutDependency:layoutDependency,layoutId:\"I0:6436;0:7400\",...addPropertyOverrides({fgdLwoO07:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:1920,intrinsicWidth:2784,loading:getLoadingLazyAtYPosition(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0),pixelHeight:1920,pixelWidth:2784,sizes:\"1151px\",...toResponsiveImage(gvmjeFBWO),...{positionX:\"center\",positionY:\"bottom\"}}}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1v5owd3\",\"data-framer-name\":\"Frame 2609772\",layoutDependency:layoutDependency,layoutId:\"I0:6436;0:7404\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Fabriqu\\xe9 au Canada \\xb7 Made in Canada\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1b48c8dd-f8d2-4621-a650-da4892113ec7, rgba(255, 255, 255, 0.64)))\"},children:\"\\xa9 2024 Fluorescent Design Inc.\"})]}),className:\"framer-ap93q1\",\"data-framer-name\":\"Fabriqu\\xe9 au Canada \\xb7 Made in Canada \\xa9 2021 Fluorescent Design Inc.\",fonts:[\"CUSTOM;TWK Lausanne 300\"],layoutDependency:layoutDependency,layoutId:\"I0:6436;0:7427\",style:{\"--extracted-2gxw0f\":\"var(--token-1b48c8dd-f8d2-4621-a650-da4892113ec7, rgba(255, 255, 255, 0.64))\",\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fgdLwoO07:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Fabriqu\\xe9 au Canada \\xb7 Made in Canada\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1b48c8dd-f8d2-4621-a650-da4892113ec7, rgba(255, 255, 255, 0.64)))\"},children:\"\\xa9 2024 Fluorescent Design Inc.\"})]}),transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Fluorescent Design Inc. is a digital design company specializing in eCommerce templates, apps and services. Our products have been used and enjoyed by millions of people, numbered among them organizations like MoMA, Newsweek, Tesla, Yale and The White House. This page is encrypted.\"})}),className:\"framer-q6a6cn\",\"data-framer-name\":\"Fluorescent Design Inc. is a digital design company specializing in eCommerce templates, apps and services. Our products have been used and enjoyed by millions of people, numbered among them organizations like MoMA, Newsweek, Tesla, Yale and The White House. This page is encrypted.\",fonts:[\"CUSTOM;TWK Lausanne 300\"],layoutDependency:layoutDependency,layoutId:\"I0:6436;0:7428\",style:{\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),isDisplayed2()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Fluorescent Design Inc. is a digital design company specializing in eCommerce templates, apps and services. Our products have been used and enjoyed by millions of people, numbered among them organizations like MoMA, Newsweek, Tesla, Yale and The White House. This page is encrypted.\"})}),className:\"framer-zikj1q\",\"data-framer-name\":\"Fluorescent Design Inc. is a digital design company specializing in eCommerce templates, apps and services. Our products have been used and enjoyed by millions of people, numbered among them organizations like MoMA, Newsweek, Tesla, Yale and The White House. This page is encrypted.\",fonts:[\"CUSTOM;TWK Lausanne 300\"],layoutDependency:layoutDependency,layoutId:\"rmALCdxzN\",style:{\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fgdLwoO07:{transformTemplate:transformTemplate1}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1tv8jd7\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:189,layoutDependency:layoutDependency,layoutId:\"I0:6436;0:7405\",svg:'<svg width=\"189\" height=\"32\" viewBox=\"0 0 189 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_30_8839)\">\\n<mask id=\"mask0_30_8839\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"189\" height=\"32\">\\n<path d=\"M188.235 0H0V32H188.235V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_30_8839)\">\\n<path d=\"M114.565 24.1537C115.157 24.6117 116.019 24.8808 117.069 24.8808C120.489 24.8808 122.858 20.0341 122.858 16.7219C122.858 15.1871 122.266 13.4637 120.354 13.4637C118.523 13.4637 116.126 15.8065 115.4 19.7107L114.565 24.1537ZM112.141 31.1937L114.726 17.2981C115.05 15.6015 115.292 14.1134 115.453 12.719H116.557L116.154 15.5077H116.207C117.365 13.7649 118.981 12.5332 120.704 12.5332C123.155 12.5332 124.07 14.5603 124.07 16.6877C124.07 21.0496 121.081 26.0663 116.961 26.0663C115.696 26.0663 114.861 25.6166 114.376 25.6166H114.323L113.299 31.1937H112.141ZM134.572 13.6523C134.276 13.5445 133.818 13.4637 133.01 13.4637C129.294 13.4637 126.386 17.6104 126.359 21.6767C126.332 23.3729 126.817 24.8808 128.567 24.8808C130.668 24.8808 133.037 21.7303 133.656 18.3912L134.572 13.6523ZM132.849 25.9649C132.821 24.9192 132.983 23.8734 133.172 22.4794H133.118C131.637 25.2681 129.994 26.0632 128.298 26.0632C126.332 26.0632 125.147 24.3681 125.147 22.052C125.147 17.6362 128.298 12.4803 133.306 12.4803C134.222 12.4803 135.245 12.5946 135.918 12.8372L134.545 19.94C134.087 22.3634 133.926 24.5709 133.979 25.9649H132.849ZM136.753 25.9649L138.396 17.1071C138.719 15.4645 138.907 14.1134 139.015 12.719H140.066C139.985 13.7649 139.877 14.462 139.715 15.8564H139.769C140.55 14.1134 141.843 12.5999 143.458 12.5999C143.62 12.5999 143.808 12.5472 143.943 12.5472L143.7 13.746C143.593 13.7191 143.458 13.6993 143.27 13.6993C141.573 13.6993 139.688 16.4123 139.15 19.2397L137.911 25.9649H136.753ZM149.247 9.88682L148.682 12.719H151.725L151.509 13.7649H148.466L147.039 21.4364C146.877 22.2981 146.77 22.957 146.77 23.6566C146.77 24.4105 147.12 24.8613 147.928 24.8613C148.359 24.8613 148.628 24.8307 148.87 24.7497L148.951 25.6906C148.601 25.7979 148.143 25.8781 147.685 25.8781C146.15 25.8781 145.558 24.8543 145.558 23.7776C145.558 23.0772 145.639 22.4331 145.854 21.4369L147.308 13.7649H145.45L145.639 12.719H147.524L147.955 10.4006L149.247 9.88682ZM151.563 25.9649L153.286 16.6762C153.582 15.1413 153.744 13.7649 153.852 12.719H154.956L154.579 15.5077H154.632C155.764 13.7649 157.379 12.5201 159.156 12.5201C160.422 12.5201 162.038 13.288 162.038 15.7381C162.038 16.3847 161.93 17.1761 161.795 17.8764L160.314 25.9649H159.156L160.664 17.8565C160.772 17.2643 160.853 16.5619 160.853 15.8891C160.853 14.5426 160.314 13.5319 158.725 13.5319C157.002 13.5319 154.552 15.8306 153.986 18.9542L152.721 25.9649H151.563ZM171.94 15.2948C171.94 14.1099 171.109 13.4637 169.897 13.4637C167.904 13.4637 166.138 15.6179 165.331 18.4184C168.696 18.4452 171.94 17.8799 171.94 15.3216V15.2948ZM171.381 24.9076C170.708 25.3657 169.47 25.8774 167.854 25.8774C164.838 25.8774 163.788 23.5077 163.788 21.03C163.788 17.3141 166.4 12.4405 170.089 12.4405C172.216 12.4405 173.105 13.8137 173.105 15.2678C173.105 18.553 169.335 19.4683 165.107 19.4415C164.972 20.0341 164.946 21.7303 165.215 22.6729C165.673 24.1268 166.669 24.854 168.042 24.854C169.47 24.854 170.439 24.3423 171.031 23.9923L171.381 24.9076ZM173.886 25.9649L175.528 17.1071C175.851 15.4645 176.04 14.1134 176.148 12.719H177.198C177.117 13.7649 177.009 14.462 176.848 15.8564H176.902C177.683 14.1134 178.975 12.5999 180.59 12.5999C180.752 12.5999 180.941 12.5472 181.075 12.5472L180.833 13.746C180.725 13.7191 180.59 13.6993 180.402 13.6993C178.706 13.6993 176.821 16.4123 176.282 19.2397L175.044 25.9649H173.886ZM180.671 24.1268C181.129 24.4768 181.991 24.854 182.933 24.854C184.63 24.854 185.787 23.642 185.787 22.1612C185.787 20.8686 185.249 20.0878 184.037 19.307C182.745 18.4722 182.045 17.3141 182.045 16.1028C182.045 14.0831 183.687 12.4406 185.976 12.4406C186.864 12.4406 187.726 12.7096 188.103 13.006L187.672 14.0022C187.269 13.76 186.595 13.4637 185.841 13.4637C184.279 13.4637 183.23 14.5677 183.23 15.887C183.23 17.099 183.93 17.7722 184.98 18.4993C186.218 19.3338 186.972 20.5187 186.972 21.838C186.972 24.45 185.061 25.8774 182.826 25.8774C181.667 25.8774 180.644 25.4462 180.214 25.0963L180.671 24.1268Z\" fill=\"white\"/>\\n<path d=\"M10.0695 10.7906C10.0438 10.7904 10.0182 10.7885 9.99278 10.7849C9.69753 10.7435 9.45038 10.4765 9.44097 10.1882C9.43156 9.90626 9.2597 3.264 13.1549 1.75322C14.1378 1.37186 15.0309 1.4576 15.8086 2.008C16.7438 2.66993 17.4256 3.97685 17.8352 5.89195C18.1249 7.24621 18.1716 8.41289 18.1737 8.46165C18.1845 8.7503 17.9537 8.95181 17.6585 8.91172C17.3629 8.872 17.1144 8.60565 17.1036 8.31736C17.0569 7.11407 16.6403 3.78296 15.2899 2.82748C14.8573 2.52179 14.3337 2.49459 13.6895 2.74456C10.3508 4.03962 10.509 10.2758 10.5112 10.3384C10.5195 10.601 10.3275 10.7906 10.0695 10.7906Z\" fill=\"#33AC42\"/>\\n<path d=\"M18.3902 4.25352L3.32546 8.91827C3.32546 8.91827 2.67887 9.10199 2.52725 9.28392C2.36066 9.48364 2.32856 10.0222 2.32856 10.0222L0 27.9841L17.4814 31.2594L18.8278 4.23855C18.635 4.20053 18.438 4.24232 18.3902 4.25352Z\" fill=\"#33AC42\"/>\\n<path d=\"M23.6104 6.57456C23.6104 6.57456 23.585 6.43649 23.5065 6.38595C23.4284 6.33541 23.343 6.32562 23.343 6.32562L20.8753 6.1419L19.0596 4.33767C18.9917 4.28496 18.9119 4.25428 18.8305 4.23828L17.4844 31.2591L26.9564 29.2091L23.6104 6.57456Z\" fill=\"#73FA1B\"/>\\n<path d=\"M12.1659 19.2667C11.8982 18.9062 11.5862 18.5891 11.2568 18.3084C10.9319 18.0317 10.5907 17.7904 10.2563 17.5764C10.0183 17.4276 9.81159 17.284 9.63653 17.1438C9.4626 17.004 9.31935 16.867 9.20603 16.7296C9.09385 16.5926 9.01084 16.4553 8.95822 16.3145C8.9054 16.176 8.88169 16.028 8.88858 15.8798C8.89723 15.677 8.94222 15.4932 9.01921 15.331C9.09693 15.1686 9.20825 15.0246 9.3458 14.9083C9.48528 14.7891 9.65469 14.6936 9.84989 14.6239C10.0469 14.5539 10.2704 14.5099 10.5175 14.4952C10.776 14.4802 11.0353 14.4862 11.2928 14.5131C11.5426 14.5388 11.7794 14.5824 11.9993 14.6364C12.2214 14.6908 12.4263 14.7557 12.6104 14.824C12.7764 14.8855 12.9392 14.9551 13.0984 15.0325L14.2644 11.5577C14.0915 11.4693 13.881 11.388 13.638 11.3193C13.3975 11.2514 13.1256 11.196 12.8276 11.1579C12.5113 11.1183 12.1927 11.0995 11.8739 11.1018C11.5198 11.1037 11.1662 11.1279 10.8152 11.1743C10.0194 11.2786 9.30081 11.4988 8.67276 11.8126C8.06194 12.1176 7.53253 12.5138 7.09676 12.9834C6.66634 13.448 6.32479 13.9876 6.08905 14.5754C5.85093 15.1652 5.70881 15.8208 5.67803 16.5316C5.65921 16.9565 5.70213 17.3474 5.79446 17.7079C5.88716 18.0703 6.03079 18.404 6.21309 18.7121C6.39719 19.0241 6.62166 19.3106 6.87512 19.5754C7.13168 19.844 7.41818 20.0911 7.72283 20.318C7.97102 20.4997 8.18053 20.6703 8.35521 20.8362C8.53121 21.0032 8.67098 21.1648 8.77836 21.3257C8.88604 21.4879 8.96067 21.6488 9.00632 21.8154C9.05234 21.982 9.06909 22.1539 9.06109 22.3362C9.053 22.5185 9.01403 22.689 8.94467 22.8399C8.87531 22.9909 8.77592 23.1223 8.64801 23.2259C8.52076 23.3291 8.36528 23.4047 8.1826 23.4462C8.00171 23.487 7.79502 23.4938 7.56349 23.4598C7.30138 23.4212 7.03681 23.3455 6.77996 23.2468C6.5265 23.1496 6.27973 23.03 6.04895 22.901C5.83208 22.7794 5.62161 22.6468 5.41836 22.5036C5.25043 22.3859 5.08783 22.2608 4.93102 22.1286L4.13281 24.7778C4.26486 24.9472 4.43323 25.1162 4.63163 25.2797C4.8321 25.445 5.06316 25.6049 5.31898 25.7538C5.57799 25.9047 5.86241 26.0444 6.16575 26.1669C6.48236 26.295 6.80798 26.3998 7.13996 26.4803C7.14564 26.4817 7.15135 26.483 7.15709 26.484C7.16269 26.4858 7.16837 26.4872 7.17413 26.4882C7.17993 26.4895 7.18577 26.4907 7.19163 26.4917C7.19729 26.4932 7.20297 26.4946 7.20867 26.4959C7.93196 26.6556 8.63361 26.6946 9.28801 26.6072C9.96218 26.5168 10.5816 26.2928 11.1164 25.9316C11.6632 25.562 12.1171 25.052 12.4466 24.4033C12.7797 23.7459 12.981 22.954 13.0211 22.0348C13.0454 21.4726 12.9677 20.9624 12.8146 20.4999C12.6624 20.0411 12.4371 19.632 12.1659 19.2667Z\" fill=\"white\"/>\\n<path d=\"M6.40281 9.87249C6.37739 9.8725 6.352 9.87061 6.32686 9.86684C6.25838 9.85701 6.19251 9.83379 6.13301 9.7985C6.07351 9.76321 6.02155 9.71654 5.98008 9.66117C5.93862 9.60579 5.90847 9.54279 5.89136 9.47576C5.87425 9.40873 5.87052 9.33898 5.88037 9.27051C5.92084 8.98844 6.92018 2.34627 11.0816 0.83512C12.1319 0.453755 13.0096 0.539873 13.6904 1.09018C14.5088 1.75183 14.9599 3.05875 15.0321 4.97413C15.0829 6.32849 14.924 7.49479 14.9174 7.54392C14.8977 7.68201 14.8241 7.80668 14.7127 7.89062C14.6013 7.97457 14.4612 8.01096 14.323 7.99183C14.1848 7.9727 14.0599 7.8996 13.9755 7.78854C13.8911 7.67748 13.8541 7.53751 13.8727 7.39926C14.0383 6.19635 14.2091 2.86524 13.027 1.90976C12.6485 1.60406 12.1294 1.57686 11.4413 1.82646C7.87425 3.12152 6.93307 9.35766 6.92394 9.42035C6.90584 9.54572 6.84322 9.6604 6.74754 9.74342C6.65186 9.82644 6.52949 9.87225 6.40281 9.87249Z\" fill=\"#33AC42\"/>\\n<path d=\"M37.9976 18.0735C37.053 17.5607 36.567 17.1288 36.567 16.5348C36.567 15.7791 37.2419 15.2934 38.2943 15.2934C39.266 15.2934 40.1027 15.5633 40.6155 15.8063L41.4792 13.1612C40.8856 12.8101 39.7789 12.5404 38.3483 12.5404C35.0824 12.5404 32.8424 14.4025 32.8424 17.0208C32.8424 18.505 33.8951 19.6389 35.2985 20.4483C36.4321 21.0961 36.8368 21.5552 36.8368 22.23C36.8368 22.9316 36.27 23.4985 35.2177 23.4985C34.0568 23.5253 32.8424 23.0394 32.1675 22.6887L31.25 25.3338C31.9518 25.8193 33.3824 26.2244 34.9206 26.2513C38.2675 26.2785 40.6695 24.6049 40.6695 21.6363C40.6695 20.0436 39.4551 18.9101 37.9976 18.0735ZM51.3306 12.5136C49.6842 12.5136 48.3889 13.2962 47.3902 14.4837L47.3362 14.4565L48.7668 6.98047H45.0421L41.4252 26.0086H45.1502L46.3915 19.5041C46.8774 17.0476 48.1459 15.5364 49.3336 15.5364C50.1701 15.5364 50.4943 16.1029 50.4943 16.913C50.4943 17.4255 50.44 18.0463 50.3322 18.5594L48.9289 26.0086H52.6534L54.1109 18.3164C54.2726 17.5067 54.3807 16.5347 54.3807 15.8872C54.3807 13.7821 53.2739 12.5136 51.3306 12.5136ZM60.9665 23.4176C59.698 23.4176 59.158 22.3377 59.158 20.9884C59.158 18.8561 60.2648 15.3744 62.289 15.3744C63.6116 15.3744 64.0434 16.508 64.0434 17.6144C64.0434 19.9088 62.9366 23.4176 60.9665 23.4176ZM62.8018 12.5136C58.3214 12.5136 55.3525 16.562 55.3525 21.0692C55.3525 23.9572 57.1338 26.2785 60.4805 26.2785C64.8801 26.2785 67.849 22.3377 67.849 17.7224C67.849 15.0505 66.2835 12.5136 62.8018 12.5136ZM73.8143 23.4713C73.1395 23.4713 72.6806 23.2555 72.2756 22.9316L72.8965 19.45C73.3284 17.1288 74.5428 15.5902 75.8385 15.5902C76.972 15.5902 77.3227 16.6429 77.3227 17.6416C77.3227 20.0436 75.8921 23.4713 73.8143 23.4713ZM77.3767 12.5136C75.8921 12.5136 74.4351 13.323 73.436 14.7267H73.3824L73.5981 12.7293H70.3054C70.1433 14.0786 69.8467 16.1301 69.5496 17.6684L66.9586 31.2987H70.6833L71.7088 25.7925H71.7897C72.2215 26.0623 73.0584 26.2785 73.9761 26.2785C78.3486 26.2785 81.2095 21.7981 81.2095 17.2637C81.2095 14.7536 80.1027 12.5136 77.3767 12.5136ZM86.5268 7.16936C85.3395 7.16936 84.3948 8.11402 84.3948 9.32852C84.3948 10.4354 85.0962 11.191 86.1489 11.191H86.2029C87.3634 11.191 88.3624 10.4081 88.3893 9.03158C88.3893 7.95205 87.6604 7.16936 86.5268 7.16936ZM81.3175 26.0086H85.0425L87.5795 12.8102H83.8279L81.3175 26.0086Z\" fill=\"white\"/>\\n<mask id=\"mask1_30_8839\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"88\" y=\"6\" width=\"22\" height=\"26\">\\n<path d=\"M88.2812 6.71094H109.9V31.9801H88.2812V6.71094Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_30_8839)\">\\n<path d=\"M97.0535 12.7841H94.4623L94.5973 12.1633C94.8131 10.8948 95.5688 9.76111 96.8104 9.76111C97.296 9.76111 97.6742 9.84205 97.9977 9.95009L98.7265 7.03527C98.2948 6.84628 97.6202 6.71094 96.7023 6.71094C95.3798 6.71094 94.0572 7.08911 93.0586 7.95264C91.79 9.03216 91.1965 10.5976 90.8996 12.1632L90.7915 12.784H89.0641L88.5242 15.5908H90.2518L88.2812 26.0093H92.0062L93.9764 15.5909H96.5406L97.0535 12.7841Z\" fill=\"white\"/>\\n</g>\\n<mask id=\"mask2_30_8839\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"88\" y=\"6\" width=\"22\" height=\"26\">\\n<path d=\"M88.2812 6.71094H109.9V31.9801H88.2812V6.71094Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_30_8839)\">\\n<path d=\"M106.011 12.8125L103.743 18.7234C103.203 20.154 102.934 20.9906 102.637 21.8813H102.583C102.529 21.0178 102.421 20.0728 102.259 18.7506L101.665 12.8125H97.7514L99.9917 24.9313C100.046 25.2012 100.019 25.3629 99.9105 25.5519C99.4786 26.3888 98.7501 27.1985 97.8863 27.7921C97.1846 28.3049 96.4021 28.6288 95.7812 28.8449L96.8067 32.0027C97.5625 31.8406 99.128 31.2198 100.451 29.9785C102.151 28.3858 103.717 25.9296 105.336 22.5829L109.897 12.8126L106.011 12.8125Z\" fill=\"white\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_30_8839\">\\n<rect width=\"189\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]}),isDisplayed2()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1nxk83h\",\"data-framer-name\":\"Frame 98170\",layoutDependency:layoutDependency,layoutId:\"YGLBwWzc4\",transformTemplate:transformTemplate2,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-goi1kn\",\"data-styles-preset\":\"h1GNplcc9\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Explore our themes\"})}),className:\"framer-1pyv1z6\",\"data-framer-name\":\"Explore our themes.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"YedvfMvFy\",style:{\"--extracted-1of0zx5\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},text:cdFP2ygFl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dt7prx\",\"data-styles-preset\":\"plfjnnf3e\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Infinitely flexible and loaded with powerful features, Stiletto offers endless possibilities to take your luxury brand to the next level.\"})}),className:\"framer-7j6jba\",\"data-framer-name\":\"Infinitely flexible and loaded with powerful features, Stiletto offers endless possibilities to take your luxury brand to the next level.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mXc6p2xJE\",style:{\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\",opacity:.8},text:RhUDP1_o3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,...addPropertyOverrides({fgdLwoO07:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+(Math.max(0,(((componentViewport===null||componentViewport===void 0?void 0:componentViewport.height)||758)-0-0)/1)*1*.28398791540785523-159)+0+262}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-10clcwj-container\",layoutDependency:layoutDependency,layoutId:\"oN2vSJVVm-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"oN2vSJVVm\",layoutId:\"oN2vSJVVm\",PBBkFabex:false,sGfNOCH7F:cTnytBaG9,variant:\"uCBbjWaGh\",vveMaNRsx:CfHTNcd0a,width:\"100%\"})})})]}),isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-so244f\",\"data-framer-name\":\"Frame 98170\",layoutDependency:layoutDependency,layoutId:\"ehhFvPWCU\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-jv8vh2\",\"data-styles-preset\":\"OkyWOV_FL\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Explore our themes\"})}),className:\"framer-17ynpy6\",\"data-framer-name\":\"Explore our themes.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pKwc_YYFH\",style:{\"--extracted-gdpscs\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},text:cdFP2ygFl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dt7prx\",\"data-styles-preset\":\"plfjnnf3e\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Infinitely flexible and loaded with powerful features, our themes offer endless possibilities to take your brand to the next level.\"})}),className:\"framer-1ddizkv\",\"data-framer-name\":\"Infinitely flexible and loaded with powerful features, Stiletto offers endless possibilities to take your luxury brand to the next level.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"DDhwUYbao\",style:{\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\",opacity:.8},text:RhUDP1_o3,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:56,y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+960-839.6+0+317.6,...addPropertyOverrides({bzJ8cFrZQ:{y:((componentViewport===null||componentViewport===void 0?void 0:componentViewport.y)||0)+0+0+200+0+317.6}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1smscuc-container\",layoutDependency:layoutDependency,layoutId:\"S9Kt6bT5r-container\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"S9Kt6bT5r\",layoutId:\"S9Kt6bT5r\",PBBkFabex:false,sGfNOCH7F:cTnytBaG9,variant:\"azqXyJhJB\",vveMaNRsx:CfHTNcd0a,width:\"100%\",...addPropertyOverrides({bzJ8cFrZQ:{variant:\"rWVDxQkdA\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentPresetsProvider,{presets:{\"module:NEd4VmDdsxM3StIUbddO/bZxrMUxBPAhoXlARkK9C/YouTube.js:Youtube\":componentPresets.props[\"lTD3nRdgF\"]},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:JexfuxaHb,className:\"framer-1joidz4\",\"data-framer-name\":\"Infinitely flexible and loaded with powerful features, Stiletto offers endless possibilities to take your luxury brand to the next level.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"zobJVriSl\",style:{opacity:.8},stylesPresetsClassNames:{a:\"framer-styles-preset-aexbeb\",h1:\"framer-styles-preset-o3e5h0\",h2:\"framer-styles-preset-1m9bzi2\",h3:\"framer-styles-preset-ci2ngw\",h6:\"framer-styles-preset-rktywn\",img:\"framer-styles-preset-gvuh2d\",p:\"framer-styles-preset-1v54m51\"},variants:{bzJ8cFrZQ:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.8)\"}},verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1iiiz0z\",\"data-framer-name\":\"Frame 2609772\",layoutDependency:layoutDependency,layoutId:\"NdkqUz1D7\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Fabriqu\\xe9 au Canada \\xb7 Made in Canada\"}),/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", \"TWK Lausanne 300 Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-color\":\"var(--extracted-2gxw0f, var(--token-1b48c8dd-f8d2-4621-a650-da4892113ec7, rgba(255, 255, 255, 0.64)))\"},children:\"\\xa9 2024 Fluorescent Design Inc.\"})]}),className:\"framer-zish08\",\"data-framer-name\":\"Fabriqu\\xe9 au Canada \\xb7 Made in Canada \\xa9 2021 Fluorescent Design Inc.\",fonts:[\"CUSTOM;TWK Lausanne 300\"],layoutDependency:layoutDependency,layoutId:\"hNUXSvI_3\",style:{\"--extracted-2gxw0f\":\"var(--token-1b48c8dd-f8d2-4621-a650-da4892113ec7, rgba(255, 255, 255, 0.64))\",\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"Q1VTVE9NO1RXSyBMYXVzYW5uZSAzMDA=\",\"--framer-font-family\":'\"TWK Lausanne 300\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"145%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255)))\"},children:\"Fluorescent Design Inc. is a digital design company specializing in eCommerce templates, apps and services. Our products have been used and enjoyed by millions of people, numbered among them organizations like MoMA, Newsweek, Tesla, Yale and The White House. This page is encrypted.\"})}),className:\"framer-21th2d\",\"data-framer-name\":\"Fluorescent Design Inc. is a digital design company specializing in eCommerce templates, apps and services. Our products have been used and enjoyed by millions of people, numbered among them organizations like MoMA, Newsweek, Tesla, Yale and The White House. This page is encrypted.\",fonts:[\"CUSTOM;TWK Lausanne 300\"],layoutDependency:layoutDependency,layoutId:\"MmhSjvdFO\",style:{\"--extracted-r6o4lv\":\"var(--token-f21fbd69-75c3-4091-9552-57692c8974bd, rgb(255, 255, 255))\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1flmsp5\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:189,layoutDependency:layoutDependency,layoutId:\"QBGCvW9Lr\",svg:'<svg width=\"189\" height=\"32\" viewBox=\"0 0 189 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_30_8839)\">\\n<mask id=\"mask0_30_8839\" style=\"mask-type:luminance\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"189\" height=\"32\">\\n<path d=\"M188.235 0H0V32H188.235V0Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask0_30_8839)\">\\n<path d=\"M114.565 24.1537C115.157 24.6117 116.019 24.8808 117.069 24.8808C120.489 24.8808 122.858 20.0341 122.858 16.7219C122.858 15.1871 122.266 13.4637 120.354 13.4637C118.523 13.4637 116.126 15.8065 115.4 19.7107L114.565 24.1537ZM112.141 31.1937L114.726 17.2981C115.05 15.6015 115.292 14.1134 115.453 12.719H116.557L116.154 15.5077H116.207C117.365 13.7649 118.981 12.5332 120.704 12.5332C123.155 12.5332 124.07 14.5603 124.07 16.6877C124.07 21.0496 121.081 26.0663 116.961 26.0663C115.696 26.0663 114.861 25.6166 114.376 25.6166H114.323L113.299 31.1937H112.141ZM134.572 13.6523C134.276 13.5445 133.818 13.4637 133.01 13.4637C129.294 13.4637 126.386 17.6104 126.359 21.6767C126.332 23.3729 126.817 24.8808 128.567 24.8808C130.668 24.8808 133.037 21.7303 133.656 18.3912L134.572 13.6523ZM132.849 25.9649C132.821 24.9192 132.983 23.8734 133.172 22.4794H133.118C131.637 25.2681 129.994 26.0632 128.298 26.0632C126.332 26.0632 125.147 24.3681 125.147 22.052C125.147 17.6362 128.298 12.4803 133.306 12.4803C134.222 12.4803 135.245 12.5946 135.918 12.8372L134.545 19.94C134.087 22.3634 133.926 24.5709 133.979 25.9649H132.849ZM136.753 25.9649L138.396 17.1071C138.719 15.4645 138.907 14.1134 139.015 12.719H140.066C139.985 13.7649 139.877 14.462 139.715 15.8564H139.769C140.55 14.1134 141.843 12.5999 143.458 12.5999C143.62 12.5999 143.808 12.5472 143.943 12.5472L143.7 13.746C143.593 13.7191 143.458 13.6993 143.27 13.6993C141.573 13.6993 139.688 16.4123 139.15 19.2397L137.911 25.9649H136.753ZM149.247 9.88682L148.682 12.719H151.725L151.509 13.7649H148.466L147.039 21.4364C146.877 22.2981 146.77 22.957 146.77 23.6566C146.77 24.4105 147.12 24.8613 147.928 24.8613C148.359 24.8613 148.628 24.8307 148.87 24.7497L148.951 25.6906C148.601 25.7979 148.143 25.8781 147.685 25.8781C146.15 25.8781 145.558 24.8543 145.558 23.7776C145.558 23.0772 145.639 22.4331 145.854 21.4369L147.308 13.7649H145.45L145.639 12.719H147.524L147.955 10.4006L149.247 9.88682ZM151.563 25.9649L153.286 16.6762C153.582 15.1413 153.744 13.7649 153.852 12.719H154.956L154.579 15.5077H154.632C155.764 13.7649 157.379 12.5201 159.156 12.5201C160.422 12.5201 162.038 13.288 162.038 15.7381C162.038 16.3847 161.93 17.1761 161.795 17.8764L160.314 25.9649H159.156L160.664 17.8565C160.772 17.2643 160.853 16.5619 160.853 15.8891C160.853 14.5426 160.314 13.5319 158.725 13.5319C157.002 13.5319 154.552 15.8306 153.986 18.9542L152.721 25.9649H151.563ZM171.94 15.2948C171.94 14.1099 171.109 13.4637 169.897 13.4637C167.904 13.4637 166.138 15.6179 165.331 18.4184C168.696 18.4452 171.94 17.8799 171.94 15.3216V15.2948ZM171.381 24.9076C170.708 25.3657 169.47 25.8774 167.854 25.8774C164.838 25.8774 163.788 23.5077 163.788 21.03C163.788 17.3141 166.4 12.4405 170.089 12.4405C172.216 12.4405 173.105 13.8137 173.105 15.2678C173.105 18.553 169.335 19.4683 165.107 19.4415C164.972 20.0341 164.946 21.7303 165.215 22.6729C165.673 24.1268 166.669 24.854 168.042 24.854C169.47 24.854 170.439 24.3423 171.031 23.9923L171.381 24.9076ZM173.886 25.9649L175.528 17.1071C175.851 15.4645 176.04 14.1134 176.148 12.719H177.198C177.117 13.7649 177.009 14.462 176.848 15.8564H176.902C177.683 14.1134 178.975 12.5999 180.59 12.5999C180.752 12.5999 180.941 12.5472 181.075 12.5472L180.833 13.746C180.725 13.7191 180.59 13.6993 180.402 13.6993C178.706 13.6993 176.821 16.4123 176.282 19.2397L175.044 25.9649H173.886ZM180.671 24.1268C181.129 24.4768 181.991 24.854 182.933 24.854C184.63 24.854 185.787 23.642 185.787 22.1612C185.787 20.8686 185.249 20.0878 184.037 19.307C182.745 18.4722 182.045 17.3141 182.045 16.1028C182.045 14.0831 183.687 12.4406 185.976 12.4406C186.864 12.4406 187.726 12.7096 188.103 13.006L187.672 14.0022C187.269 13.76 186.595 13.4637 185.841 13.4637C184.279 13.4637 183.23 14.5677 183.23 15.887C183.23 17.099 183.93 17.7722 184.98 18.4993C186.218 19.3338 186.972 20.5187 186.972 21.838C186.972 24.45 185.061 25.8774 182.826 25.8774C181.667 25.8774 180.644 25.4462 180.214 25.0963L180.671 24.1268Z\" fill=\"white\"/>\\n<path d=\"M10.0695 10.7906C10.0438 10.7904 10.0182 10.7885 9.99278 10.7849C9.69753 10.7435 9.45038 10.4765 9.44097 10.1882C9.43156 9.90626 9.2597 3.264 13.1549 1.75322C14.1378 1.37186 15.0309 1.4576 15.8086 2.008C16.7438 2.66993 17.4256 3.97685 17.8352 5.89195C18.1249 7.24621 18.1716 8.41289 18.1737 8.46165C18.1845 8.7503 17.9537 8.95181 17.6585 8.91172C17.3629 8.872 17.1144 8.60565 17.1036 8.31736C17.0569 7.11407 16.6403 3.78296 15.2899 2.82748C14.8573 2.52179 14.3337 2.49459 13.6895 2.74456C10.3508 4.03962 10.509 10.2758 10.5112 10.3384C10.5195 10.601 10.3275 10.7906 10.0695 10.7906Z\" fill=\"#33AC42\"/>\\n<path d=\"M18.3902 4.25352L3.32546 8.91827C3.32546 8.91827 2.67887 9.10199 2.52725 9.28392C2.36066 9.48364 2.32856 10.0222 2.32856 10.0222L0 27.9841L17.4814 31.2594L18.8278 4.23855C18.635 4.20053 18.438 4.24232 18.3902 4.25352Z\" fill=\"#33AC42\"/>\\n<path d=\"M23.6104 6.57456C23.6104 6.57456 23.585 6.43649 23.5065 6.38595C23.4284 6.33541 23.343 6.32562 23.343 6.32562L20.8753 6.1419L19.0596 4.33767C18.9917 4.28496 18.9119 4.25428 18.8305 4.23828L17.4844 31.2591L26.9564 29.2091L23.6104 6.57456Z\" fill=\"#73FA1B\"/>\\n<path d=\"M12.1659 19.2667C11.8982 18.9062 11.5862 18.5891 11.2568 18.3084C10.9319 18.0317 10.5907 17.7904 10.2563 17.5764C10.0183 17.4276 9.81159 17.284 9.63653 17.1438C9.4626 17.004 9.31935 16.867 9.20603 16.7296C9.09385 16.5926 9.01084 16.4553 8.95822 16.3145C8.9054 16.176 8.88169 16.028 8.88858 15.8798C8.89723 15.677 8.94222 15.4932 9.01921 15.331C9.09693 15.1686 9.20825 15.0246 9.3458 14.9083C9.48528 14.7891 9.65469 14.6936 9.84989 14.6239C10.0469 14.5539 10.2704 14.5099 10.5175 14.4952C10.776 14.4802 11.0353 14.4862 11.2928 14.5131C11.5426 14.5388 11.7794 14.5824 11.9993 14.6364C12.2214 14.6908 12.4263 14.7557 12.6104 14.824C12.7764 14.8855 12.9392 14.9551 13.0984 15.0325L14.2644 11.5577C14.0915 11.4693 13.881 11.388 13.638 11.3193C13.3975 11.2514 13.1256 11.196 12.8276 11.1579C12.5113 11.1183 12.1927 11.0995 11.8739 11.1018C11.5198 11.1037 11.1662 11.1279 10.8152 11.1743C10.0194 11.2786 9.30081 11.4988 8.67276 11.8126C8.06194 12.1176 7.53253 12.5138 7.09676 12.9834C6.66634 13.448 6.32479 13.9876 6.08905 14.5754C5.85093 15.1652 5.70881 15.8208 5.67803 16.5316C5.65921 16.9565 5.70213 17.3474 5.79446 17.7079C5.88716 18.0703 6.03079 18.404 6.21309 18.7121C6.39719 19.0241 6.62166 19.3106 6.87512 19.5754C7.13168 19.844 7.41818 20.0911 7.72283 20.318C7.97102 20.4997 8.18053 20.6703 8.35521 20.8362C8.53121 21.0032 8.67098 21.1648 8.77836 21.3257C8.88604 21.4879 8.96067 21.6488 9.00632 21.8154C9.05234 21.982 9.06909 22.1539 9.06109 22.3362C9.053 22.5185 9.01403 22.689 8.94467 22.8399C8.87531 22.9909 8.77592 23.1223 8.64801 23.2259C8.52076 23.3291 8.36528 23.4047 8.1826 23.4462C8.00171 23.487 7.79502 23.4938 7.56349 23.4598C7.30138 23.4212 7.03681 23.3455 6.77996 23.2468C6.5265 23.1496 6.27973 23.03 6.04895 22.901C5.83208 22.7794 5.62161 22.6468 5.41836 22.5036C5.25043 22.3859 5.08783 22.2608 4.93102 22.1286L4.13281 24.7778C4.26486 24.9472 4.43323 25.1162 4.63163 25.2797C4.8321 25.445 5.06316 25.6049 5.31898 25.7538C5.57799 25.9047 5.86241 26.0444 6.16575 26.1669C6.48236 26.295 6.80798 26.3998 7.13996 26.4803C7.14564 26.4817 7.15135 26.483 7.15709 26.484C7.16269 26.4858 7.16837 26.4872 7.17413 26.4882C7.17993 26.4895 7.18577 26.4907 7.19163 26.4917C7.19729 26.4932 7.20297 26.4946 7.20867 26.4959C7.93196 26.6556 8.63361 26.6946 9.28801 26.6072C9.96218 26.5168 10.5816 26.2928 11.1164 25.9316C11.6632 25.562 12.1171 25.052 12.4466 24.4033C12.7797 23.7459 12.981 22.954 13.0211 22.0348C13.0454 21.4726 12.9677 20.9624 12.8146 20.4999C12.6624 20.0411 12.4371 19.632 12.1659 19.2667Z\" fill=\"white\"/>\\n<path d=\"M6.40281 9.87249C6.37739 9.8725 6.352 9.87061 6.32686 9.86684C6.25838 9.85701 6.19251 9.83379 6.13301 9.7985C6.07351 9.76321 6.02155 9.71654 5.98008 9.66117C5.93862 9.60579 5.90847 9.54279 5.89136 9.47576C5.87425 9.40873 5.87052 9.33898 5.88037 9.27051C5.92084 8.98844 6.92018 2.34627 11.0816 0.83512C12.1319 0.453755 13.0096 0.539873 13.6904 1.09018C14.5088 1.75183 14.9599 3.05875 15.0321 4.97413C15.0829 6.32849 14.924 7.49479 14.9174 7.54392C14.8977 7.68201 14.8241 7.80668 14.7127 7.89062C14.6013 7.97457 14.4612 8.01096 14.323 7.99183C14.1848 7.9727 14.0599 7.8996 13.9755 7.78854C13.8911 7.67748 13.8541 7.53751 13.8727 7.39926C14.0383 6.19635 14.2091 2.86524 13.027 1.90976C12.6485 1.60406 12.1294 1.57686 11.4413 1.82646C7.87425 3.12152 6.93307 9.35766 6.92394 9.42035C6.90584 9.54572 6.84322 9.6604 6.74754 9.74342C6.65186 9.82644 6.52949 9.87225 6.40281 9.87249Z\" fill=\"#33AC42\"/>\\n<path d=\"M37.9976 18.0735C37.053 17.5607 36.567 17.1288 36.567 16.5348C36.567 15.7791 37.2419 15.2934 38.2943 15.2934C39.266 15.2934 40.1027 15.5633 40.6155 15.8063L41.4792 13.1612C40.8856 12.8101 39.7789 12.5404 38.3483 12.5404C35.0824 12.5404 32.8424 14.4025 32.8424 17.0208C32.8424 18.505 33.8951 19.6389 35.2985 20.4483C36.4321 21.0961 36.8368 21.5552 36.8368 22.23C36.8368 22.9316 36.27 23.4985 35.2177 23.4985C34.0568 23.5253 32.8424 23.0394 32.1675 22.6887L31.25 25.3338C31.9518 25.8193 33.3824 26.2244 34.9206 26.2513C38.2675 26.2785 40.6695 24.6049 40.6695 21.6363C40.6695 20.0436 39.4551 18.9101 37.9976 18.0735ZM51.3306 12.5136C49.6842 12.5136 48.3889 13.2962 47.3902 14.4837L47.3362 14.4565L48.7668 6.98047H45.0421L41.4252 26.0086H45.1502L46.3915 19.5041C46.8774 17.0476 48.1459 15.5364 49.3336 15.5364C50.1701 15.5364 50.4943 16.1029 50.4943 16.913C50.4943 17.4255 50.44 18.0463 50.3322 18.5594L48.9289 26.0086H52.6534L54.1109 18.3164C54.2726 17.5067 54.3807 16.5347 54.3807 15.8872C54.3807 13.7821 53.2739 12.5136 51.3306 12.5136ZM60.9665 23.4176C59.698 23.4176 59.158 22.3377 59.158 20.9884C59.158 18.8561 60.2648 15.3744 62.289 15.3744C63.6116 15.3744 64.0434 16.508 64.0434 17.6144C64.0434 19.9088 62.9366 23.4176 60.9665 23.4176ZM62.8018 12.5136C58.3214 12.5136 55.3525 16.562 55.3525 21.0692C55.3525 23.9572 57.1338 26.2785 60.4805 26.2785C64.8801 26.2785 67.849 22.3377 67.849 17.7224C67.849 15.0505 66.2835 12.5136 62.8018 12.5136ZM73.8143 23.4713C73.1395 23.4713 72.6806 23.2555 72.2756 22.9316L72.8965 19.45C73.3284 17.1288 74.5428 15.5902 75.8385 15.5902C76.972 15.5902 77.3227 16.6429 77.3227 17.6416C77.3227 20.0436 75.8921 23.4713 73.8143 23.4713ZM77.3767 12.5136C75.8921 12.5136 74.4351 13.323 73.436 14.7267H73.3824L73.5981 12.7293H70.3054C70.1433 14.0786 69.8467 16.1301 69.5496 17.6684L66.9586 31.2987H70.6833L71.7088 25.7925H71.7897C72.2215 26.0623 73.0584 26.2785 73.9761 26.2785C78.3486 26.2785 81.2095 21.7981 81.2095 17.2637C81.2095 14.7536 80.1027 12.5136 77.3767 12.5136ZM86.5268 7.16936C85.3395 7.16936 84.3948 8.11402 84.3948 9.32852C84.3948 10.4354 85.0962 11.191 86.1489 11.191H86.2029C87.3634 11.191 88.3624 10.4081 88.3893 9.03158C88.3893 7.95205 87.6604 7.16936 86.5268 7.16936ZM81.3175 26.0086H85.0425L87.5795 12.8102H83.8279L81.3175 26.0086Z\" fill=\"white\"/>\\n<mask id=\"mask1_30_8839\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"88\" y=\"6\" width=\"22\" height=\"26\">\\n<path d=\"M88.2812 6.71094H109.9V31.9801H88.2812V6.71094Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask1_30_8839)\">\\n<path d=\"M97.0535 12.7841H94.4623L94.5973 12.1633C94.8131 10.8948 95.5688 9.76111 96.8104 9.76111C97.296 9.76111 97.6742 9.84205 97.9977 9.95009L98.7265 7.03527C98.2948 6.84628 97.6202 6.71094 96.7023 6.71094C95.3798 6.71094 94.0572 7.08911 93.0586 7.95264C91.79 9.03216 91.1965 10.5976 90.8996 12.1632L90.7915 12.784H89.0641L88.5242 15.5908H90.2518L88.2812 26.0093H92.0062L93.9764 15.5909H96.5406L97.0535 12.7841Z\" fill=\"white\"/>\\n</g>\\n<mask id=\"mask2_30_8839\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"88\" y=\"6\" width=\"22\" height=\"26\">\\n<path d=\"M88.2812 6.71094H109.9V31.9801H88.2812V6.71094Z\" fill=\"white\"/>\\n</mask>\\n<g mask=\"url(#mask2_30_8839)\">\\n<path d=\"M106.011 12.8125L103.743 18.7234C103.203 20.154 102.934 20.9906 102.637 21.8813H102.583C102.529 21.0178 102.421 20.0728 102.259 18.7506L101.665 12.8125H97.7514L99.9917 24.9313C100.046 25.2012 100.019 25.3629 99.9105 25.5519C99.4786 26.3888 98.7501 27.1985 97.8863 27.7921C97.1846 28.3049 96.4021 28.6288 95.7812 28.8449L96.8067 32.0027C97.5625 31.8406 99.128 31.2198 100.451 29.9785C102.151 28.3858 103.717 25.9296 105.336 22.5829L109.897 12.8126L106.011 12.8125Z\" fill=\"white\"/>\\n</g>\\n</g>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_30_8839\">\\n<rect width=\"189\" height=\"32\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-hyI4X.framer-amxas5, .framer-hyI4X .framer-amxas5 { display: block; }\",\".framer-hyI4X.framer-1xpao7n { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1440px; }\",\".framer-hyI4X .framer-1baflb0 { aspect-ratio: 1.45 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 993px); overflow: hidden; position: relative; width: 100%; }\",\".framer-hyI4X .framer-1v5owd3 { align-content: flex-start; align-items: flex-start; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 124px; justify-content: space-between; left: 0px; overflow: visible; padding: 0px 50px 0px 50px; position: absolute; right: 0px; }\",\".framer-hyI4X .framer-ap93q1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-hyI4X .framer-q6a6cn { flex: none; height: auto; max-width: 700px; position: relative; white-space: pre-wrap; width: 700px; word-break: break-word; word-wrap: break-word; }\",\".framer-hyI4X .framer-zikj1q { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 329px; word-break: break-word; word-wrap: break-word; }\",\".framer-hyI4X .framer-1tv8jd7 { flex: none; height: 32px; position: relative; width: 189px; }\",\".framer-hyI4X .framer-1nxk83h { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px 16px 0px 16px; position: absolute; top: 28%; width: 391px; }\",\".framer-hyI4X .framer-1pyv1z6, .framer-hyI4X .framer-7j6jba, .framer-hyI4X .framer-17ynpy6, .framer-hyI4X .framer-1ddizkv, .framer-hyI4X .framer-1joidz4 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-hyI4X .framer-10clcwj-container, .framer-hyI4X .framer-1smscuc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-hyI4X .framer-so244f { align-content: center; align-items: center; bottom: 330px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px; position: absolute; width: 720px; }\",\".framer-hyI4X .framer-1iiiz0z { bottom: 38px; flex: none; height: 140px; left: calc(50.00000000000002% - 730px / 2); overflow: visible; position: absolute; width: 730px; }\",\".framer-hyI4X .framer-zish08 { bottom: 0px; flex: none; height: auto; left: 0px; position: absolute; white-space: pre; width: auto; }\",\".framer-hyI4X .framer-21th2d { bottom: 60px; flex: none; height: auto; left: 0px; max-width: 501px; position: absolute; white-space: pre-wrap; width: 501px; word-break: break-word; word-wrap: break-word; }\",\".framer-hyI4X .framer-1flmsp5 { bottom: 0px; flex: none; height: 32px; position: absolute; right: 0px; width: 189px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hyI4X.framer-1xpao7n, .framer-hyI4X .framer-1nxk83h, .framer-hyI4X .framer-so244f { gap: 0px; } .framer-hyI4X.framer-1xpao7n > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-hyI4X.framer-1xpao7n > :first-child, .framer-hyI4X .framer-1nxk83h > :first-child, .framer-hyI4X .framer-so244f > :first-child { margin-top: 0px; } .framer-hyI4X.framer-1xpao7n > :last-child, .framer-hyI4X .framer-1nxk83h > :last-child, .framer-hyI4X .framer-so244f > :last-child { margin-bottom: 0px; } .framer-hyI4X .framer-1nxk83h > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-hyI4X .framer-so244f > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }\",\".framer-hyI4X.framer-v-1wdmwkz.framer-1xpao7n { width: 810px; }\",\".framer-hyI4X.framer-v-1wdmwkz .framer-1baflb0 { aspect-ratio: 0.9239904988123515 / 1; height: var(--framer-aspect-ratio-supported, 877px); }\",\".framer-hyI4X.framer-v-1wdmwkz .framer-so244f { bottom: unset; top: 200px; }\",\".framer-hyI4X.framer-v-m4gw0n.framer-1xpao7n { align-content: center; align-items: center; height: 758px; overflow: hidden; width: 390px; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-1baflb0 { aspect-ratio: 1.4245049504950495 / 1; flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 758px); width: 1151px; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-1v5owd3 { bottom: 67px; display: block; height: 256px; left: calc(49.95655951346657% - 390px / 2); padding: unset; right: unset; width: 390px; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-ap93q1 { bottom: 63px; left: 50%; position: absolute; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-zikj1q { left: 50%; position: absolute; top: 0px; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-1tv8jd7 { bottom: 0px; left: calc(49.720670391061475% - 189px / 2); position: absolute; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-1pyv1z6 { order: 0; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-7j6jba { order: 1; }\",\".framer-hyI4X.framer-v-m4gw0n .framer-10clcwj-container { order: 2; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-hyI4X.framer-v-m4gw0n .framer-1v5owd3 { gap: 0px; } .framer-hyI4X.framer-v-m4gw0n .framer-1v5owd3 > *, .framer-hyI4X.framer-v-m4gw0n .framer-1v5owd3 > :first-child, .framer-hyI4X.framer-v-m4gw0n .framer-1v5owd3 > :last-child { margin: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 993\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"bzJ8cFrZQ\":{\"layout\":[\"fixed\",\"auto\"]},\"fgdLwoO07\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"gvmjeFBWO\":\"bgImage\",\"cdFP2ygFl\":\"title\",\"RhUDP1_o3\":\"subTitle\",\"CfHTNcd0a\":\"buttonText\",\"cTnytBaG9\":\"link\",\"JexfuxaHb\":\"attribution\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FrameronnQzogOs=withCSS(Component,css,\"framer-hyI4X\");export default FrameronnQzogOs;FrameronnQzogOs.displayName=\"Section / Footer\";FrameronnQzogOs.defaultProps={height:993,width:1440};addPropertyControls(FrameronnQzogOs,{variant:{options:[\"r7NbM0obz\",\"bzJ8cFrZQ\",\"fgdLwoO07\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},gvmjeFBWO:{__defaultAssetReference:\"data:framer/asset-reference,nOKN5PHWKkvZuyJZZzYaoWHzvI.png?originalFilename=Frame+2609718.png&preferredSize=auto\",title:\"Bg Image\",type:ControlType.ResponsiveImage},cdFP2ygFl:{defaultValue:\"Explore our themes\",displayTextArea:false,title:\"Title\",type:ControlType.String},RhUDP1_o3:{defaultValue:\"Infinitely flexible and loaded with powerful features, our themes offer endless possibilities to take your brand to the next level.\",displayTextArea:false,title:\"Sub Title\",type:ControlType.String},CfHTNcd0a:{defaultValue:\"Discover our themes\",displayTextArea:false,title:\"Button - Text\",type:ControlType.String},cTnytBaG9:{title:\"Link\",type:ControlType.Link},JexfuxaHb:{defaultValue:'<p>Photography kindly provided by <a data-framer-link=\"Link:{&quot;url&quot;:&quot;https://context-theme-chic.myshopify.com/products/helix-moss&quot;,&quot;type&quot;:&quot;url&quot;}\" data-framer-open-in-new-tab=\"\">Mlouye</a>. A featured partner of our Context theme.</p>',title:\"Attribution\",type:ControlType.RichText}});addFonts(FrameronnQzogOs,[{explicitInter:true,fonts:[{family:\"TWK Lausanne 300\",source:\"custom\",url:\"https://framerusercontent.com/assets/16E19wBzFNgVy2JS8Oo2AV0HY.otf\"},{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\"}]},...ButtonFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...((_componentPresets_fonts=componentPresets.fonts)===null||_componentPresets_fonts===void 0?void 0:_componentPresets_fonts[\"lTD3nRdgF\"])?getFontsFromComponentPreset((_componentPresets_fonts1=componentPresets.fonts)===null||_componentPresets_fonts1===void 0?void 0:_componentPresets_fonts1[\"lTD3nRdgF\"]):[]],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameronnQzogOs\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"bzJ8cFrZQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fgdLwoO07\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"gvmjeFBWO\\\":\\\"bgImage\\\",\\\"cdFP2ygFl\\\":\\\"title\\\",\\\"RhUDP1_o3\\\":\\\"subTitle\\\",\\\"CfHTNcd0a\\\":\\\"buttonText\\\",\\\"cTnytBaG9\\\":\\\"link\\\",\\\"JexfuxaHb\\\":\\\"attribution\\\"}\",\"framerIntrinsicHeight\":\"993\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__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", "errorMessage", "setErrorMessage", "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", "inputElement", "file", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "formData", "bodyObject", "requestOptions", "statusCode", "window", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "fileInput", "fileInputs", "setFileInputs", "handleFileChange", "index", "MAX_SIZE_MB", "prevInputs", "newInputs", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "isRequired", "Contact_default", "props", "fonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "_componentPresets_fonts", "_componentPresets_fonts1", "ButtonFonts", "getFonts", "GypPrpWV3_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "transformTemplate2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "attribution", "bgImage", "buttonText", "height", "id", "link", "subTitle", "title", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_humanReadableVariantMap_props_variant", "_ref5", "u", "Link", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "gvmjeFBWO", "cdFP2ygFl", "RhUDP1_o3", "CfHTNcd0a", "cTnytBaG9", "JexfuxaHb", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "Image2", "getLoadingLazyAtYPosition", "RichText2", "SVG", "ComponentViewportProvider", "ComponentPresetsProvider", "css", "FrameronnQzogOs", "withCSS", "onnQzogOs_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "getFontsFromComponentPreset"]
}
