{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/nOf2qMetDbubGodrD7DE/2PvOzsgZGVDN6zHV5deK/BaseForm.js", "ssg:https://framerusercontent.com/modules/xXiDuuObCv5SCN9QqMh9/Ip3QTZgLVrQLmk7MSPSe/qtK9XjX5l.js", "ssg:https://framerusercontent.com/modules/8aLrHGBX5nRYge8dvyvc/1grzlFUG3EP90PoUKNcl/knBY_FT7f.js", "ssg:https://framerusercontent.com/modules/81eNCgpfgEw3d9ry5FXR/MOtxSgDgROBZqBsLnXWW/augiA20Il.js"],
  "sourcesContent": ["/*\nMIT License\nCopyright \u00A9 Joel Whitaker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall the\nauthors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the Software or the use or other dealings in the\nSoftware.\n*/ import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[FieldType.Time,FieldType.Week,FieldType.Number,FieldType.Date,FieldType.DateTimeLocal,].includes(type);}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */ const VERSION=\"v1\";/**\n * BASEFORM\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const BaseForm=withCSS(function BaseForm({url,method,contentType,redirectAs,link,inputs,button,styles,extraHeaders,extraFields,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(null);if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const headers=new Headers;if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}const formData=new FormData(event.target);let requestOptions={method:method,headers:headers};if(method===\"get\"){// Add form fields to URL for GET requests\nconst urlSearchParams=new URLSearchParams;for(const[name,value1]of formData){urlSearchParams.append(name,value1.toString());}const queryString=urlSearchParams.toString();url+=queryString?`?${queryString}`:\"\";}else{headers.append(\"Content-Type\",contentType);if(contentType===\"application/json\"){headers.append(\"accept\",\"application/json\");}if(contentType===\"application/x-www-form-urlencoded\"){const urlSearchParams1=new URLSearchParams;for(const[name1,value2]of formData){urlSearchParams1.append(name1,value2.toString());}if(extraFields){for(const[key1,value3]of Object.entries(extraFields)){urlSearchParams1.append(key1,value3.toString());}}requestOptions[\"body\"]=urlSearchParams1.toString();}else if(contentType===\"application/json\"){const bodyObject={};for(const[name2,value4]of formData){bodyObject[name2]=value4;}if(extraFields){for(const[key2,value5]of Object.entries(extraFields)){bodyObject[key2]=value5;}}requestOptions[\"body\"]=JSON.stringify(bodyObject);}}fetch(url,requestOptions).then(response=>{const statusCode=response.status;const contentType=response.headers.get(\"content-type\");if(contentType&&contentType.includes(\"application/json\")){return response.json().then(data=>({statusCode,data}));}else if(contentType&&contentType.includes(\"text/plain\")){return response.text().then(data=>({statusCode,data}));}else{throw new Error(\"Unsupported response type\");}}).then(({statusCode,data})=>{if(statusCode>=200&&statusCode<300){// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}else{// Handle errors\nlet errorMessage=\"An error occurred submitting the form\";throw new Error(errorMessage);}}).catch(error=>{console.error(error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/ _jsxs(\"label\",{htmlFor:input.name,style:{marginBottom:\"0.375rem\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:[input.label,requiredFlag(input.required)]});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/ _jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/ _jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===FieldType.Select){inputElement=selectInput(input);}else if(input.type===FieldType.TextArea){inputElement=textareaInput(input);}else if(input.type===FieldType.Checkbox){inputElement=checkboxInput(input);}else if(input.type===FieldType.Radio){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:styles.button.fontWeight,fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/ _jsx(Spinner,{color:styles.button.color})})]})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`,]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};return /*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/ _jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};const basePropertyControls={url:{title:\"Url\",type:ControlType.String},method:{type:ControlType.Enum,defaultValue:\"post\",options:[\"get\",\"post\",\"put\",\"patch\",\"delete\"],optionTitles:[\"Get\",\"Post\",\"Put\",\"Patch\",\"Delete\"]},contentType:{type:ControlType.Enum,defaultValue:\"application/json\",options:[\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"json\",\"x-www-form-urlencoded\"],hidden:props=>props.method===\"get\"},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#fff\"},columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\",],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}}}}};addPropertyControls(BaseForm,basePropertyControls);const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}function requiredFlag(isRequired){if(isRequired){return /*#__PURE__*/ _jsx(\"span\",{children:\"*\"});}return null;}BaseForm.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"name\",label:\"Name\",placeholder:\"Jane\",type:FieldType.Text,required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:FieldType.Email,required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:FieldType.Select,required:false,options:[]},{name:\"message\",label:\"Message\",placeholder:\"\",type:FieldType.TextArea,required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:FieldType.Checkbox,required:false},]};export default BaseForm;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaseForm.map", "// Generated by Framer (24d49ac)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/30ZuhhNSP5LXxmnNp5Ux/pAfjKZoAUBlbBKRk5TIh/Lq6naF4ir.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/sx96IxltTmWPdILf6HV8/yamk2CB6lx6fQZIfyWUL/wb8mevCIS.js\";const cycleOrder=[\"quX8VWDev\"];const serializationHash=\"framer-HnGsx\";const variantClassNames={quX8VWDev:\"framer-v-j8ayap\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({height,id,paragraph,title,width,...props})=>{var _ref,_ref1;return{...props,iUhQx2d1j:(_ref=paragraph!==null&&paragraph!==void 0?paragraph:props.iUhQx2d1j)!==null&&_ref!==void 0?_ref:\"Where we believe in the power of healing and growth. Our dedicated team of compassionate therapists is here to support you on your journey towards emotional well-being.\",qMJb6eG4G:(_ref1=title!==null&&title!==void 0?title:props.qMJb6eG4G)!==null&&_ref1!==void 0?_ref1:\"Soulful Sanctuary  Therapy Center\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,qMJb6eG4G,iUhQx2d1j,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"quX8VWDev\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.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__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-j8ayap\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"quX8VWDev\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-p0xpal\",\"data-styles-preset\":\"wb8mevCIS\",style:{\"--framer-text-color\":\"var(--extracted-gdpscs, var(--token-4cfda4c2-888f-475c-9be8-6b1e49d549a8, rgb(255, 255, 255)))\"},children:\"Soulful Sanctuary  Therapy Center\"})}),className:\"framer-n3yyti\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"FsRQ2aj03\",style:{\"--extracted-gdpscs\":\"var(--token-4cfda4c2-888f-475c-9be8-6b1e49d549a8, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:qMJb6eG4G,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-12yfz6j\",\"data-styles-preset\":\"Lq6naF4ir\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-37ee36ba-7fa0-4049-8777-6b44e64509ee, rgb(236, 249, 247)))\"},children:\"Where we believe in the power of healing and growth. Our dedicated team of compassionate therapists is here to support you on your journey towards emotional well-being and personal transformation.\"})}),className:\"framer-t59yc7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gEVMDv6za\",style:{\"--extracted-r6o4lv\":\"var(--token-37ee36ba-7fa0-4049-8777-6b44e64509ee, rgb(236, 249, 247))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:iUhQx2d1j,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HnGsx.framer-1omf7or, .framer-HnGsx .framer-1omf7or { display: block; }\",\".framer-HnGsx.framer-j8ayap { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 609px; }\",\".framer-HnGsx .framer-n3yyti, .framer-HnGsx .framer-t59yc7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HnGsx.framer-j8ayap { gap: 0px; } .framer-HnGsx.framer-j8ayap > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-HnGsx.framer-j8ayap > :first-child { margin-top: 0px; } .framer-HnGsx.framer-j8ayap > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 609\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"qMJb6eG4G\":\"title\",\"iUhQx2d1j\":\"paragraph\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqtK9XjX5l=withCSS(Component,css,\"framer-HnGsx\");export default FramerqtK9XjX5l;FramerqtK9XjX5l.displayName=\"Hero Content\";FramerqtK9XjX5l.defaultProps={height:280,width:609};addPropertyControls(FramerqtK9XjX5l,{qMJb6eG4G:{defaultValue:\"Soulful Sanctuary  Therapy Center\",displayTextArea:false,title:\"Title\",type:ControlType.String},iUhQx2d1j:{defaultValue:\"Where we believe in the power of healing and growth. Our dedicated team of compassionate therapists is here to support you on your journey towards emotional well-being.\",displayTextArea:false,title:\"Paragraph\",type:ControlType.String}});addFonts(FramerqtK9XjX5l,[{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-Regular.cyrillic-ext-CFTLRB35.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-Regular.cyrillic-KKLZBALH.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-ext-ULEBLIFV.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-Regular.greek-IRHSNFQB.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-Regular.latin-ext-VZDUGU3Q.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-Regular.latin-JLQMKCHE.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-Regular.vietnamese-QK7VSWXK.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqtK9XjX5l\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"609\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"qMJb6eG4G\\\":\\\"title\\\",\\\"iUhQx2d1j\\\":\\\"paragraph\\\"}\",\"framerIntrinsicHeight\":\"280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qtK9XjX5l.map", "// Generated by Framer (508aa67)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import Slideshow from\"https://framerusercontent.com/modules/zvkTOpMSuRzRhLzZZIwG/V6UPjHLBAvBWqyNKvY6M/SlideShow.js\";import HeroContent from\"https://framerusercontent.com/modules/xXiDuuObCv5SCN9QqMh9/Ip3QTZgLVrQLmk7MSPSe/qtK9XjX5l.js\";const HeroContentFonts=getFonts(HeroContent);const SlideshowFonts=getFonts(Slideshow);const cycleOrder=[\"n488GxRfq\",\"EPUe40ijt\",\"u4bM8adQ8\"];const serializationHash=\"framer-1TGh0\";const variantClassNames={EPUe40ijt:\"framer-v-j8j3kb\",n488GxRfq:\"framer-v-vsj118\",u4bM8adQ8:\"framer-v-x8l09s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Desktop:\"n488GxRfq\",Mobile:\"u4bM8adQ8\",Tablet:\"EPUe40ijt\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"n488GxRfq\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"n488GxRfq\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-vsj118\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"n488GxRfq\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EPUe40ijt:{\"data-framer-name\":\"Tablet\"},u4bM8adQ8:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tfocvj-container\",layoutDependency:layoutDependency,layoutId:\"RGfLnfNDT-container\",children:/*#__PURE__*/_jsx(Slideshow,{alignment:\"center\",arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:8,arrowPadding:20,arrowPaddingBottom:-88,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/E97b6JPdinZZrJnjXZT2my9oM.svg\",rightArrow:\"https://framerusercontent.com/images/dFQnB109e2G3Yz5qtIWI6DfwFYQ.svg\",showMouseControls:true},autoPlayControl:true,borderRadius:0,direction:\"left\",dragControl:false,effectsOptions:{effectsHover:true,effectsOpacity:1,effectsPerspective:1200,effectsRotate:0,effectsScale:1},fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:false},gap:24,height:\"100%\",id:\"RGfLnfNDT\",intervalControl:5,itemAmount:1,layoutId:\"RGfLnfNDT\",padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0,progressOptions:{dotsActiveOpacity:1,dotsBackground:\"rgba(0, 0, 0, 0.2)\",dotsBlur:0,dotsFill:\"rgb(255, 255, 255)\",dotsGap:10,dotsInset:10,dotSize:10,dotsOpacity:.5,dotsPadding:10,dotsRadius:50,showProgressDots:false},slots:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"570px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1amkrmj-container\",layoutDependency:layoutDependency,layoutId:\"nom18kHwC-container\",children:/*#__PURE__*/_jsx(HeroContent,{height:\"100%\",id:\"nom18kHwC\",iUhQx2d1j:\"Where we believe in the power of healing and growth. Our dedicated team of compassionate therapists is here to support you on your journey towards emotional well-being.\",layoutId:\"nom18kHwC\",qMJb6eG4G:\"Soulful Sanctuary  Therapy Center\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"593px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1injurb-container\",layoutDependency:layoutDependency,layoutId:\"Yhxpffm5z-container\",children:/*#__PURE__*/_jsx(HeroContent,{height:\"100%\",id:\"Yhxpffm5z\",iUhQx2d1j:\"Where we believe in the power of healing and growth. Our dedicated team of compassionate therapists is here to support you on your journey towards emotional well-being.\",layoutId:\"Yhxpffm5z\",qMJb6eG4G:\"Best Therapy Center In Town\",style:{width:\"100%\"},width:\"100%\"})})})],startFrom:0,style:{height:\"100%\",width:\"100%\"},transitionControl:{damping:40,stiffness:200,type:\"spring\"},width:\"100%\",...addPropertyOverrides({EPUe40ijt:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:8,arrowPadding:20,arrowPaddingBottom:-70,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/E97b6JPdinZZrJnjXZT2my9oM.svg\",rightArrow:\"https://framerusercontent.com/images/dFQnB109e2G3Yz5qtIWI6DfwFYQ.svg\",showMouseControls:true}},u4bM8adQ8:{arrowOptions:{arrowFill:\"rgba(0, 0, 0, 0)\",arrowGap:8,arrowPadding:20,arrowPaddingBottom:-60,arrowPaddingLeft:0,arrowPaddingRight:0,arrowPaddingTop:0,arrowPosition:\"bottom-left\",arrowRadius:40,arrowShouldFadeIn:false,arrowShouldSpace:false,arrowSize:40,leftArrow:\"https://framerusercontent.com/images/E97b6JPdinZZrJnjXZT2my9oM.svg\",rightArrow:\"https://framerusercontent.com/images/dFQnB109e2G3Yz5qtIWI6DfwFYQ.svg\",showMouseControls:true}}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1TGh0.framer-1kfu3d5, .framer-1TGh0 .framer-1kfu3d5 { display: block; }\",\".framer-1TGh0.framer-vsj118 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 593px; }\",\".framer-1TGh0 .framer-tfocvj-container { flex: 1 0 0px; height: 280px; position: relative; width: 1px; }\",\".framer-1TGh0 .framer-1amkrmj-container { height: auto; position: relative; width: 570px; }\",\".framer-1TGh0 .framer-1injurb-container { height: auto; position: relative; width: 593px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1TGh0.framer-vsj118 { gap: 0px; } .framer-1TGh0.framer-vsj118 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-1TGh0.framer-vsj118 > :first-child { margin-left: 0px; } .framer-1TGh0.framer-vsj118 > :last-child { margin-right: 0px; } }\",\".framer-1TGh0.framer-v-j8j3kb.framer-vsj118 { width: 566px; }\",\".framer-1TGh0.framer-v-j8j3kb .framer-tfocvj-container { flex: none; width: 566px; }\",\".framer-1TGh0.framer-v-x8l09s .framer-tfocvj-container { height: 285px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 280\n * @framerIntrinsicWidth 593\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"EPUe40ijt\":{\"layout\":[\"fixed\",\"auto\"]},\"u4bM8adQ8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerknBY_FT7f=withCSS(Component,css,\"framer-1TGh0\");export default FramerknBY_FT7f;FramerknBY_FT7f.displayName=\"Content Slide\";FramerknBY_FT7f.defaultProps={height:280,width:593};addPropertyControls(FramerknBY_FT7f,{variant:{options:[\"n488GxRfq\",\"EPUe40ijt\",\"u4bM8adQ8\"],optionTitles:[\"Desktop\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerknBY_FT7f,[{explicitInter:true,fonts:[]},...HeroContentFonts,...SlideshowFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerknBY_FT7f\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"593\",\"framerIntrinsicHeight\":\"280\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"EPUe40ijt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u4bM8adQ8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98479f1)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,useRouter,withCSS,withFX,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import BaseForm from\"https://framerusercontent.com/modules/nOf2qMetDbubGodrD7DE/2PvOzsgZGVDN6zHV5deK/BaseForm.js\";import FeaturedList from\"#framer/local/canvasComponent/Bvi_ErzCM/Bvi_ErzCM.js\";import SingleService from\"#framer/local/canvasComponent/cgKJZFCPF/cgKJZFCPF.js\";import TopBar from\"#framer/local/canvasComponent/HQVBBSfQO/HQVBBSfQO.js\";import Button from\"#framer/local/canvasComponent/i15jR01SZ/i15jR01SZ.js\";import CTA from\"#framer/local/canvasComponent/JIQB6KtzT/JIQB6KtzT.js\";import ContentSlide from\"#framer/local/canvasComponent/knBY_FT7f/knBY_FT7f.js\";import SingleBlog from\"#framer/local/canvasComponent/lXmK5VIHq/lXmK5VIHq.js\";import Slider from\"#framer/local/canvasComponent/LypK8vTSz/LypK8vTSz.js\";import Navbar from\"#framer/local/canvasComponent/PO5LzF375/PO5LzF375.js\";import FooterDark from\"#framer/local/canvasComponent/pvCWto690/pvCWto690.js\";import SingelTeam from\"#framer/local/canvasComponent/UZB1YPA3r/UZB1YPA3r.js\";import ButtonArea from\"#framer/local/canvasComponent/YIO0NPypJ/YIO0NPypJ.js\";import Service from\"#framer/local/collection/D4PyYdfQR/D4PyYdfQR.js\";import Blog from\"#framer/local/collection/Uxdd7GsD9/Uxdd7GsD9.js\";import*as sharedStyle from\"#framer/local/css/QVBuhJd1v/QVBuhJd1v.js\";import*as sharedStyle1 from\"#framer/local/css/RtnSLB_wg/RtnSLB_wg.js\";import*as sharedStyle2 from\"#framer/local/css/SU650517x/SU650517x.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const TopBarFonts=getFonts(TopBar);const NavbarFonts=getFonts(Navbar);const NavbarWithVariantAppearEffect=withVariantAppearEffect(Navbar);const ContentSlideFonts=getFonts(ContentSlide);const BaseFormFonts=getFonts(BaseForm);const MotionDivWithFX=withFX(motion.div);const SingleServiceFonts=getFonts(SingleService);const ButtonFonts=getFonts(Button);const FeaturedListFonts=getFonts(FeaturedList);const SingelTeamFonts=getFonts(SingelTeam);const SliderFonts=getFonts(Slider);const SingleBlogFonts=getFonts(SingleBlog);const CTAFonts=getFonts(CTA);const FooterDarkFonts=getFonts(FooterDark);const ButtonAreaFonts=getFonts(ButtonArea);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const breakpoints={C4dn32Vsi:\"(min-width: 768px) and (max-width: 1199px)\",dR3gXvr5D:\"(max-width: 767px)\",Qb4r8X0dl:\"(min-width: 1200px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Q1KyP\";const variantClassNames={C4dn32Vsi:\"framer-v-1os5dli\",dR3gXvr5D:\"framer-v-vzpogs\",Qb4r8X0dl:\"framer-v-1jv4vf6\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:150};const transition1={damping:60,delay:0,mass:1.2,stiffness:400,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition2={damping:30,delay:2,mass:1,stiffness:451,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:0};const animation2={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:150};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop \":\"WQLkyLRf1\",Laptop:\"Qb4r8X0dl\",Phone:\"dR3gXvr5D\",Tablet:\"C4dn32Vsi\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,YGfmaFYgffDEthZLz0,sHyc35yN_fDEthZLz0,p0rlUxkcmfDEthZLz0,TGD3EGrjQfDEthZLz0,idfDEthZLz0,YGfmaFYgfLV5ZoZ6V1,sHyc35yN_LV5ZoZ6V1,p0rlUxkcmLV5ZoZ6V1,TGD3EGrjQLV5ZoZ6V1,idLV5ZoZ6V1,YGfmaFYgfqvB5Sw8Xa,sHyc35yN_qvB5Sw8Xa,p0rlUxkcmqvB5Sw8Xa,TGD3EGrjQqvB5Sw8Xa,idqvB5Sw8Xa,YGfmaFYgfbB2eoWrmx,sHyc35yN_bB2eoWrmx,p0rlUxkcmbB2eoWrmx,TGD3EGrjQbB2eoWrmx,idbB2eoWrmx,E9bNCwH31ZmgBlXI12,RSFRBKGPhZmgBlXI12,cntcVwy36ZmgBlXI12,xXi53BbPbZmgBlXI12,ojzTF0JjLZmgBlXI12,idZmgBlXI12,...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(undefined,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-Q1KyP`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-Q1KyP`);};},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"dR3gXvr5D\")return false;return true;};const router=useRouter();const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-72rtr7\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-158bwwl hidden-vzpogs\",\"data-framer-name\":\"Top Bar \",name:\"Top Bar \",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,width:\"max(100vw - 60px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g5xw63-container\",\"data-framer-name\":\"Top Bar \",name:\"Top Bar \",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"i9LM0VvHK\"}},children:/*#__PURE__*/_jsx(TopBar,{height:\"100%\",id:\"yRgyq_89k\",layoutId:\"yRgyq_89k\",name:\"Top Bar \",style:{width:\"100%\"},variant:\"QOfxANV2I\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w2kj6\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-k3y90t\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"max(min(max(100vw - 60px, 1px), 768px), 1px)\"},dR3gXvr5D:{width:\"max(100vw, 1px)\",y:0},Qb4r8X0dl:{width:\"max(min(max(100vw - 60px, 1px), 1140px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:95,width:\"max(min(max(100vw - 60px, 1px), 1160px), 1px)\",y:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-88hap2-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"B2i4vFpmR\"},dR3gXvr5D:{__framer__animateOnce:false,__framer__obscuredVariantId:\"DJmdfCHCd\",__framer__scrollDirection:{direction:\"down\",target:\"DJmdfCHCd\"},__framer__threshold:0,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"DJmdfCHCd\",variant:\"tLtWymJxo\"},Qb4r8X0dl:{variant:\"fniFoDWy_\"}},children:/*#__PURE__*/_jsx(NavbarWithVariantAppearEffect,{height:\"100%\",id:\"IHgayY4tG\",layoutId:\"IHgayY4tG\",style:{width:\"100%\"},variant:\"niP1TQjI6\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{background:{alt:\"\",fit:\"fill\",pixelHeight:1740,pixelWidth:2880,positionX:\"31.4%\",positionY:\"95.4%\",src:\"https://framerusercontent.com/images/sEHksWEVOP2RzrmZtP1izxDX9E.png\"}},dR3gXvr5D:{background:{alt:\"Hero-BG\",fit:\"fill\",pixelHeight:1740,pixelWidth:2880,positionX:\"28.1%\",positionY:\"96.8%\",src:\"https://framerusercontent.com/images/sEHksWEVOP2RzrmZtP1izxDX9E.png\"}}},children:/*#__PURE__*/_jsx(Image,{as:\"header\",background:{alt:\"Hero-BG\",fit:\"fill\",pixelHeight:1740,pixelWidth:2880,positionX:\"53.1%\",positionY:\"16.5%\",src:\"https://framerusercontent.com/images/sEHksWEVOP2RzrmZtP1izxDX9E.png\"},className:\"framer-1nu4d25\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1no9mnq\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u1o15m\",\"data-framer-name\":\"Content Left\",name:\"Content Left\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.8)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max(min(100vw - 60px, 1140px) * 0.58 - 100px, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:280,width:\"max(min(100vw - 60px, 1160px) * 0.6034 - 120px, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-3rlgso-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"EPUe40ijt\"},dR3gXvr5D:{variant:\"u4bM8adQ8\"}},children:/*#__PURE__*/_jsx(ContentSlide,{height:\"100%\",id:\"eDsOCoreP\",layoutId:\"eDsOCoreP\",style:{width:\"100%\"},variant:\"n488GxRfq\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1wtwx14\",\"data-framer-name\":\"Content Right\",name:\"Content Right\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-fo9atu\",\"data-styles-preset\":\"QVBuhJd1v\",style:{\"--framer-text-color\":\"var(--token-4cfda4c2-888f-475c-9be8-6b1e49d549a8, rgb(255, 255, 255))\"},children:\"Book An Appointment Today\"})}),className:\"framer-1o242g2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8b5fij-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{dR3gXvr5D:{inputs:[{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"Email\",required:true,step:0,type:\"email\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[{text:\"Department\",value:\"\"},{text:\"Department 01\",value:\"\"},{text:\"Department 02\",value:\"\"}],placeholder:\"Date\",required:true,step:0,type:\"date\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"In - Person\",required:false,step:0,type:\"select\",value:\"\"}]}},children:/*#__PURE__*/_jsx(BaseForm,{button:{label:\"Book An Appointment\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"dbrP6RGvB\",inputs:[{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"Name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"Email\",required:true,step:0,type:\"email\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[{text:\"Department\",value:\"\"},{text:\"Department 01\",value:\"\"},{text:\"Department 02\",value:\"\"}],placeholder:\"Date\",required:true,step:0,type:\"date\",value:\"\"},{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[{text:\"01\",value:\"01\"},{text:\"02\",value:\"02\"},{text:\"03\",value:\"03\"},{text:\"04\",value:\"04\"},{text:\"05\",value:\"05\"}],placeholder:\"In - Person\",required:false,step:0,type:\"select\",value:\"\"}],layoutId:\"dbrP6RGvB\",method:\"post\",redirectAs:\"link\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderRadius:8,color:\"var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, rgb(6, 61, 51))\",fill:\"var(--token-fcfb2b81-59ce-434e-9855-10f903cb3795, rgb(139, 219, 205))\",font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.6em\"},padding:15,paddingBottom:14,paddingLeft:22,paddingPerSide:true,paddingRight:22,paddingTop:14},form:{columnGap:12,columns:\"2\",fill:\"rgba(135, 94, 53, 0)\",rowGap:12},input:{borderObject:{borderColor:\"rgba(255, 255, 255, 0.14)\",borderWidth:1},borderRadius:8,color:\"rgba(236, 249, 247, 0.6)\",fill:\"rgba(255, 255, 255, 0)\",focusObject:{focusColor:\"rgba(236, 249, 247, 0)\",focusWidthFrom:0,focusWidthTo:0},font:{fontFamily:'\"Plus Jakarta Sans\", \"Plus Jakarta Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.7em\"},padding:12,paddingBottom:8,paddingLeft:18,paddingPerSide:true,paddingRight:18,paddingTop:8,placeholderColor:\"rgba(236, 249, 247, 0.6)\"},label:{borderRadius:0,color:\"var(--token-a6b4efb6-453b-4547-a4dd-bcaf0262a542, rgb(66, 67, 67))\",fill:\"rgba(66, 67, 67, 0)\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"20px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.7em\",textAlign:\"left\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0}},url:\"\",width:\"100%\"})})})})]})]})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-3gli80\",\"data-framer-name\":\"Service Section\",name:\"Service Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1m0r98x\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-166hgnj\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1cwr9pa\",\"data-styles-preset\":\"RtnSLB_wg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, rgb(6, 61, 51))\"},children:\"Discover Our Services\"})}),className:\"framer-1jzb0r7\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9qndd\",\"data-styles-preset\":\"SU650517x\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4c5fb11-05bf-4bf3-8152-27be8b6c2731, rgb(56, 65, 63))\"},children:\"Our comprehensive offerings are designed to address your challenges and focus on  innovation and customer satisfaction unlock new opportunities.\"})}),className:\"framer-1wkegsg\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-3tn12j\",\"data-framer-name\":\"Service area\",name:\"Service area\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-13oklok\",\"data-framer-name\":\"List\",name:\"List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ahc2mw\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"fDEthZLz0\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},select:[{collection:\"fDEthZLz0\",name:\"YGfmaFYgf\",type:\"Identifier\"},{collection:\"fDEthZLz0\",name:\"sHyc35yN_\",type:\"Identifier\"},{collection:\"fDEthZLz0\",name:\"p0rlUxkcm\",type:\"Identifier\"},{collection:\"fDEthZLz0\",name:\"TGD3EGrjQ\",type:\"Identifier\"},{collection:\"fDEthZLz0\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection.map(({id:idfDEthZLz0,p0rlUxkcm:p0rlUxkcmfDEthZLz0,sHyc35yN_:sHyc35yN_fDEthZLz0,TGD3EGrjQ:TGD3EGrjQfDEthZLz0,YGfmaFYgf:YGfmaFYgffDEthZLz0},i)=>{YGfmaFYgffDEthZLz0!==null&&YGfmaFYgffDEthZLz0!==void 0?YGfmaFYgffDEthZLz0:YGfmaFYgffDEthZLz0=\"\";sHyc35yN_fDEthZLz0!==null&&sHyc35yN_fDEthZLz0!==void 0?sHyc35yN_fDEthZLz0:sHyc35yN_fDEthZLz0=\"\";TGD3EGrjQfDEthZLz0!==null&&TGD3EGrjQfDEthZLz0!==void 0?TGD3EGrjQfDEthZLz0:TGD3EGrjQfDEthZLz0=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`fDEthZLz0-${idfDEthZLz0}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TGD3EGrjQ:TGD3EGrjQfDEthZLz0},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ilswtw\",\"data-framer-name\":\"Service\",name:\"Service\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQfDEthZLz0},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQfDEthZLz0},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQfDEthZLz0},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQfDEthZLz0},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.8)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((min(100vw - 60px, 1140px) - 24px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:\"max((min(100vw - 60px, 1160px) - 24px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1a5jlu4-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"ZfllFvW7m\",w5IvgVp2H:resolvedLinks[2]},dR3gXvr5D:{variant:\"lxPuEFNuE\",w5IvgVp2H:resolvedLinks[3]},Qb4r8X0dl:{variant:\"ZfllFvW7m\",w5IvgVp2H:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(SingleService,{height:\"100%\",id:\"Zk5oflxmm\",layoutId:\"Zk5oflxmm\",SfB8DW3D8:YGfmaFYgffDEthZLz0,style:{width:\"100%\"},TLtftW309:sHyc35yN_fDEthZLz0,variant:\"DneCP8Qsr\",w5IvgVp2H:resolvedLinks[0],width:\"100%\",ZCCkfJ9Sw:toResponsiveImage(p0rlUxkcmfDEthZLz0)})})})})})})})})},idfDEthZLz0);})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1u3t7dr\",\"data-framer-name\":\"List\",name:\"List\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xze1uv\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"LV5ZoZ6V1\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:3},select:[{collection:\"LV5ZoZ6V1\",name:\"YGfmaFYgf\",type:\"Identifier\"},{collection:\"LV5ZoZ6V1\",name:\"sHyc35yN_\",type:\"Identifier\"},{collection:\"LV5ZoZ6V1\",name:\"p0rlUxkcm\",type:\"Identifier\"},{collection:\"LV5ZoZ6V1\",name:\"TGD3EGrjQ\",type:\"Identifier\"},{collection:\"LV5ZoZ6V1\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1.map(({id:idLV5ZoZ6V1,p0rlUxkcm:p0rlUxkcmLV5ZoZ6V1,sHyc35yN_:sHyc35yN_LV5ZoZ6V1,TGD3EGrjQ:TGD3EGrjQLV5ZoZ6V1,YGfmaFYgf:YGfmaFYgfLV5ZoZ6V1},i)=>{YGfmaFYgfLV5ZoZ6V1!==null&&YGfmaFYgfLV5ZoZ6V1!==void 0?YGfmaFYgfLV5ZoZ6V1:YGfmaFYgfLV5ZoZ6V1=\"\";sHyc35yN_LV5ZoZ6V1!==null&&sHyc35yN_LV5ZoZ6V1!==void 0?sHyc35yN_LV5ZoZ6V1:sHyc35yN_LV5ZoZ6V1=\"\";TGD3EGrjQLV5ZoZ6V1!==null&&TGD3EGrjQLV5ZoZ6V1!==void 0?TGD3EGrjQLV5ZoZ6V1:TGD3EGrjQLV5ZoZ6V1=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`LV5ZoZ6V1-${idLV5ZoZ6V1}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TGD3EGrjQ:TGD3EGrjQLV5ZoZ6V1},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-119zrxg\",\"data-framer-name\":\"Service\",name:\"Service\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQLV5ZoZ6V1},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQLV5ZoZ6V1},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQLV5ZoZ6V1},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQLV5ZoZ6V1},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"max((max(min(100vw - 60px, 768px) * 0.8, 1px) - 20px) / 2, 1px)\"},dR3gXvr5D:{height:544,width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((max((min(100vw - 60px, 1140px) - 24px) / 2, 1px) - 20px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:339,width:\"max((max((min(100vw - 60px, 1160px) - 24px) / 2, 1px) - 20px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-uaj9r9-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{w5IvgVp2H:resolvedLinks1[2]},dR3gXvr5D:{style:{width:\"100%\"},variant:\"V_YJpECE5\",w5IvgVp2H:resolvedLinks1[3]},Qb4r8X0dl:{variant:\"uGQGB14_Y\",w5IvgVp2H:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(SingleService,{height:\"100%\",id:\"WV3lLbBYE\",layoutId:\"WV3lLbBYE\",SfB8DW3D8:YGfmaFYgfLV5ZoZ6V1,style:{height:\"100%\",width:\"100%\"},TLtftW309:sHyc35yN_LV5ZoZ6V1,variant:\"zTPLHoH9U\",w5IvgVp2H:resolvedLinks1[0],width:\"100%\",ZCCkfJ9Sw:toResponsiveImage(p0rlUxkcmLV5ZoZ6V1)})})})})})})})})},idLV5ZoZ6V1);})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ao71k\",\"data-framer-name\":\"List\",name:\"List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1rjxqzb\",\"data-framer-name\":\"List\",name:\"List\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-dv8y60\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"qvB5Sw8Xa\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:1},select:[{collection:\"qvB5Sw8Xa\",name:\"YGfmaFYgf\",type:\"Identifier\"},{collection:\"qvB5Sw8Xa\",name:\"sHyc35yN_\",type:\"Identifier\"},{collection:\"qvB5Sw8Xa\",name:\"p0rlUxkcm\",type:\"Identifier\"},{collection:\"qvB5Sw8Xa\",name:\"TGD3EGrjQ\",type:\"Identifier\"},{collection:\"qvB5Sw8Xa\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2.map(({id:idqvB5Sw8Xa,p0rlUxkcm:p0rlUxkcmqvB5Sw8Xa,sHyc35yN_:sHyc35yN_qvB5Sw8Xa,TGD3EGrjQ:TGD3EGrjQqvB5Sw8Xa,YGfmaFYgf:YGfmaFYgfqvB5Sw8Xa},i)=>{YGfmaFYgfqvB5Sw8Xa!==null&&YGfmaFYgfqvB5Sw8Xa!==void 0?YGfmaFYgfqvB5Sw8Xa:YGfmaFYgfqvB5Sw8Xa=\"\";sHyc35yN_qvB5Sw8Xa!==null&&sHyc35yN_qvB5Sw8Xa!==void 0?sHyc35yN_qvB5Sw8Xa:sHyc35yN_qvB5Sw8Xa=\"\";TGD3EGrjQqvB5Sw8Xa!==null&&TGD3EGrjQqvB5Sw8Xa!==void 0?TGD3EGrjQqvB5Sw8Xa:TGD3EGrjQqvB5Sw8Xa=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`qvB5Sw8Xa-${idqvB5Sw8Xa}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TGD3EGrjQ:TGD3EGrjQqvB5Sw8Xa},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xg7qga\",\"data-framer-name\":\"Service\",name:\"Service\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQqvB5Sw8Xa},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQqvB5Sw8Xa},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQqvB5Sw8Xa},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQqvB5Sw8Xa},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"max((max(min(100vw - 60px, 768px) * 0.8, 1px) - 20px) / 2, 1px)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((max((min(100vw - 60px, 1140px) - 24px) / 2, 1px) - 20px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:\"max((max((min(100vw - 60px, 1160px) - 24px) / 2, 1px) - 20px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-7x9jkv-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{w5IvgVp2H:resolvedLinks2[2]},dR3gXvr5D:{variant:\"V_YJpECE5\",w5IvgVp2H:resolvedLinks2[3]},Qb4r8X0dl:{variant:\"uGQGB14_Y\",w5IvgVp2H:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(SingleService,{height:\"100%\",id:\"HwBDqWWT7\",layoutId:\"HwBDqWWT7\",SfB8DW3D8:YGfmaFYgfqvB5Sw8Xa,style:{width:\"100%\"},TLtftW309:sHyc35yN_qvB5Sw8Xa,variant:\"zTPLHoH9U\",w5IvgVp2H:resolvedLinks2[0],width:\"100%\",ZCCkfJ9Sw:toResponsiveImage(p0rlUxkcmqvB5Sw8Xa)})})})})})})})})},idqvB5Sw8Xa);})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1fardnl\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"bB2eoWrmx\",data:Service,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},offset:{type:\"LiteralValue\",value:5},select:[{collection:\"bB2eoWrmx\",name:\"YGfmaFYgf\",type:\"Identifier\"},{collection:\"bB2eoWrmx\",name:\"sHyc35yN_\",type:\"Identifier\"},{collection:\"bB2eoWrmx\",name:\"p0rlUxkcm\",type:\"Identifier\"},{collection:\"bB2eoWrmx\",name:\"TGD3EGrjQ\",type:\"Identifier\"},{collection:\"bB2eoWrmx\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3.map(({id:idbB2eoWrmx,p0rlUxkcm:p0rlUxkcmbB2eoWrmx,sHyc35yN_:sHyc35yN_bB2eoWrmx,TGD3EGrjQ:TGD3EGrjQbB2eoWrmx,YGfmaFYgf:YGfmaFYgfbB2eoWrmx},i)=>{YGfmaFYgfbB2eoWrmx!==null&&YGfmaFYgfbB2eoWrmx!==void 0?YGfmaFYgfbB2eoWrmx:YGfmaFYgfbB2eoWrmx=\"\";sHyc35yN_bB2eoWrmx!==null&&sHyc35yN_bB2eoWrmx!==void 0?sHyc35yN_bB2eoWrmx:sHyc35yN_bB2eoWrmx=\"\";TGD3EGrjQbB2eoWrmx!==null&&TGD3EGrjQbB2eoWrmx!==void 0?TGD3EGrjQbB2eoWrmx:TGD3EGrjQbB2eoWrmx=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`bB2eoWrmx-${idbB2eoWrmx}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{TGD3EGrjQ:TGD3EGrjQbB2eoWrmx},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v9ty15\",\"data-framer-name\":\"Service\",name:\"Service\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQbB2eoWrmx},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQbB2eoWrmx},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQbB2eoWrmx},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined},{href:{pathVariables:{TGD3EGrjQ:TGD3EGrjQbB2eoWrmx},webPageId:\"HnkrhouA3\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.8)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((min(100vw - 60px, 1140px) - 24px) / 2, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:544,width:\"max((min(100vw - 60px, 1160px) - 24px) / 2, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-111wvfa-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{w5IvgVp2H:resolvedLinks3[2]},dR3gXvr5D:{variant:\"lxPuEFNuE\",w5IvgVp2H:resolvedLinks3[3]},Qb4r8X0dl:{variant:\"ZfllFvW7m\",w5IvgVp2H:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(SingleService,{height:\"100%\",id:\"atx09AmcL\",layoutId:\"atx09AmcL\",SfB8DW3D8:YGfmaFYgfbB2eoWrmx,style:{width:\"100%\"},TLtftW309:sHyc35yN_bB2eoWrmx,variant:\"DneCP8Qsr\",w5IvgVp2H:resolvedLinks3[0],width:\"100%\",ZCCkfJ9Sw:toResponsiveImage(p0rlUxkcmbB2eoWrmx)})})})})})})})})},idbB2eoWrmx);})})})})})]})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-14z9lpk\",\"data-framer-name\":\"About Us Section\",name:\"About Us Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1u220kf\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-11xanog\",\"data-framer-name\":\"About Image\",name:\"About Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{background:{alt:\"Feature-Image\",fit:\"fill\",pixelHeight:1491,pixelWidth:1740,sizes:\"max(min(100vw - 60px, 768px) * 0.8, 1px)\",src:\"https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png\",srcSet:\"https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png 1740w\"}},dR3gXvr5D:{background:{alt:\"Feature-Image\",fit:\"fill\",pixelHeight:1491,pixelWidth:1740,sizes:\"max(min(100vw - 40px, 390px), 1px)\",src:\"https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png\",srcSet:\"https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png 1740w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Feature-Image\",fit:\"fill\",pixelHeight:1491,pixelWidth:1740,sizes:\"580px\",src:\"https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png\",srcSet:\"https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png?scale-down-to=512 512w,https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/7jApXDFppqRgBWyZM0E3T5EKneU.png 1740w\"},className:\"framer-ynbrjr\",\"data-framer-name\":\"Image\",name:\"Image\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hb23av\",\"data-framer-name\":\"About Content\",name:\"About Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-stp14t\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1cwr9pa\",\"data-styles-preset\":\"RtnSLB_wg\",style:{\"--framer-text-color\":\"var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, rgb(6, 61, 51))\"},children:\"Unveiling Our Vision\"})}),className:\"framer-1gedc3z\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9qndd\",\"data-styles-preset\":\"SU650517x\",style:{\"--framer-text-color\":\"var(--token-d4c5fb11-05bf-4bf3-8152-27be8b6c2731, rgb(56, 65, 63))\"},children:\"Mindfulness meditation offers a powerful way to cultivate awareness, reduce stress, and enhance overall well-being. Our mindfulness meditation sessions provide you with practical tools and techniques to integrate mindfulness into your daily life.\"})}),className:\"framer-2ijyq4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"E5wtrq8FL\"},implicitPathVariables:undefined},{href:{webPageId:\"E5wtrq8FL\"},implicitPathVariables:undefined},{href:{webPageId:\"E5wtrq8FL\"},implicitPathVariables:undefined},{href:{webPageId:\"E5wtrq8FL\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-b76nsr-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{K0_qpcveZ:resolvedLinks4[2]},dR3gXvr5D:{K0_qpcveZ:resolvedLinks4[3]},Qb4r8X0dl:{K0_qpcveZ:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"vQFvykrZg\",K0_qpcveZ:resolvedLinks4[0],layoutId:\"vQFvykrZg\",PGqcaohNS:false,tVy4GWVL2:\"Discover More\",variant:\"e6u1lN9FJ\",width:\"100%\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-4bphj\",\"data-framer-name\":\"Featured Section \",name:\"Featured Section \",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-17bbft0\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8v8hjf\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m4mikt\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1cwr9pa\",\"data-styles-preset\":\"RtnSLB_wg\",style:{\"--framer-text-color\":\"var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, rgb(6, 61, 51))\"},children:\"Building Bridges to Your Wellness\"})}),className:\"framer-13cwcib\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9qndd\",\"data-styles-preset\":\"SU650517x\",style:{\"--framer-text-color\":\"var(--token-d4c5fb11-05bf-4bf3-8152-27be8b6c2731, rgb(56, 65, 63))\"},children:\"Our comprehensive offerings are designed to address your challenges and focus on  innovation and customer satisfaction unlock to integrate mindfulness in daily life.\"})}),className:\"framer-1a4x2nb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"TySzEpOuX\"},implicitPathVariables:undefined},{href:{webPageId:\"TySzEpOuX\"},implicitPathVariables:undefined},{href:{webPageId:\"TySzEpOuX\"},implicitPathVariables:undefined},{href:{webPageId:\"TySzEpOuX\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kf1l4c-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{K0_qpcveZ:resolvedLinks5[2]},dR3gXvr5D:{K0_qpcveZ:resolvedLinks5[3]},Qb4r8X0dl:{K0_qpcveZ:resolvedLinks5[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ZGZM1Xvjf\",K0_qpcveZ:resolvedLinks5[0],layoutId:\"ZGZM1Xvjf\",PGqcaohNS:false,tVy4GWVL2:\"Book An Appointment\",variant:\"e6u1lN9FJ\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a1p3tr\",\"data-framer-name\":\"Featured List \",name:\"Featured List \",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"max(min(100vw - 60px, 768px) * 0.8, 1px)\"},dR3gXvr5D:{width:\"max(min(100vw - 40px, 390px), 1px)\"},Qb4r8X0dl:{width:\"max(min(100vw - 60px, 1140px) * 0.4491, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:390,width:\"max(min(100vw - 60px, 1160px) * 0.4414, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-bexmef-container\",children:/*#__PURE__*/_jsx(FeaturedList,{height:\"100%\",id:\"LxFPdj7HP\",layoutId:\"LxFPdj7HP\",style:{width:\"100%\"},variant:\"ARUp99nFZ\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-l1rh2k\",\"data-framer-name\":\"Team Section\",name:\"Team Section\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:256,pixelWidth:290,src:\"https://framerusercontent.com/images/9oGa9f2GVrfAY7Mp7ytEAeybE5U.svg\"},className:\"framer-1muo62c\",\"data-framer-name\":\"Shape\",name:\"Shape\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-pxy28j\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-c7smxu\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x1kqoi\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1cwr9pa\",\"data-styles-preset\":\"RtnSLB_wg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-4cfda4c2-888f-475c-9be8-6b1e49d549a8, rgb(255, 255, 255))\"},children:\"Meet Our Specialist\"})}),className:\"framer-17o6nz1\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9qndd\",\"data-styles-preset\":\"SU650517x\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-37ee36ba-7fa0-4049-8777-6b44e64509ee, rgb(236, 249, 247))\"},children:\"Meet the compassionate and experienced professionals who make up our dedicated team, committed to providing personalized support\"})}),className:\"framer-18f3hfa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mv7po2\",\"data-framer-name\":\"Team List\",name:\"Team List\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.31)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((min(100vw - 60px, 1140px) - 48px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:444,width:\"max((min(100vw - 60px, 1160px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-gsxoj6-container\",children:/*#__PURE__*/_jsx(SingelTeam,{fdncrMKui:\"4.9/5.0\",height:\"100%\",id:\"RoZOWgMf7\",layoutId:\"RoZOWgMf7\",nFB9_u40i:\"Phycologist\",sMRHYpoAt:\"Dr. Elina Wellies\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.31)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((min(100vw - 60px, 1140px) - 48px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:444,width:\"max((min(100vw - 60px, 1160px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1m5igpy-container\",children:/*#__PURE__*/_jsx(SingelTeam,{fdncrMKui:\"4.9/5.0\",height:\"100%\",id:\"odtvEttLY\",layoutId:\"odtvEttLY\",lDSHPUN9m:addImageAlt({src:\"https://framerusercontent.com/images/0ZgavgVhvgBfPizmWHalnx1RCPs.png\",srcSet:\"https://framerusercontent.com/images/0ZgavgVhvgBfPizmWHalnx1RCPs.png 728w\"},\"Team-Image\"),nFB9_u40i:\"Phycologist\",sMRHYpoAt:\"Dr. Johan Sayed\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.31)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((min(100vw - 60px, 1140px) - 48px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:444,width:\"max((min(100vw - 60px, 1160px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1qu1w00-container\",children:/*#__PURE__*/_jsx(SingelTeam,{fdncrMKui:\"4.9/5.0\",height:\"100%\",id:\"htg0L81bm\",layoutId:\"htg0L81bm\",lDSHPUN9m:addImageAlt({src:\"https://framerusercontent.com/images/wV8Y9Jsr93LeZ42UY8i5XOCRwA.png\",srcSet:\"https://framerusercontent.com/images/wV8Y9Jsr93LeZ42UY8i5XOCRwA.png 728w\"},\"Team-Image\"),nFB9_u40i:\"Phycologist\",sMRHYpoAt:\"Dr. Megan Wilson\",style:{width:\"100%\"},width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mqlyaf\",\"data-framer-name\":\"Button\",name:\"Button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"fOyREB0kC\"},implicitPathVariables:undefined},{href:{webPageId:\"fOyREB0kC\"},implicitPathVariables:undefined},{href:{webPageId:\"fOyREB0kC\"},implicitPathVariables:undefined},{href:{webPageId:\"fOyREB0kC\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:55,children:/*#__PURE__*/_jsx(Container,{className:\"framer-187hcl7-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{K0_qpcveZ:resolvedLinks6[2]},dR3gXvr5D:{K0_qpcveZ:resolvedLinks6[3]},Qb4r8X0dl:{K0_qpcveZ:resolvedLinks6[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"s1sdZjUYC\",K0_qpcveZ:resolvedLinks6[0],layoutId:\"s1sdZjUYC\",PGqcaohNS:false,tVy4GWVL2:\"View All Members\",variant:\"e6u1lN9FJ\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1lwspbw\",\"data-framer-name\":\"Testimonial Section\",name:\"Testimonial Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1rd1gai\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cikk75\",\"data-framer-name\":\"Section Title\",name:\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1cwr9pa\",\"data-styles-preset\":\"RtnSLB_wg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, rgb(6, 61, 51))\"},children:\"Words from Our Clients\"})}),className:\"framer-ywilnt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9qndd\",\"data-styles-preset\":\"SU650517x\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4c5fb11-05bf-4bf3-8152-27be8b6c2731, rgb(56, 65, 63))\"},children:\"Meet the compassionate and experiencedhealth challenging to your navigate, but our family on counseling sessions our express themselves and it work towards resolution.\"})}),className:\"framer-jt2jcl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-qcrcyq\",\"data-framer-name\":\"Testimonial Slider\",name:\"Testimonial Slider\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"max(min(100vw, 768px), 1px)\"},dR3gXvr5D:{width:\"max(min(100vw, 390px), 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:370,width:\"max(100vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-s1jqsl-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"GPkS5gjjc\"},dR3gXvr5D:{variant:\"orzSP6NMW\"},Qb4r8X0dl:{variant:\"M3EXe8lGX\"}},children:/*#__PURE__*/_jsx(Slider,{height:\"100%\",id:\"y4P1zsLoR\",layoutId:\"y4P1zsLoR\",style:{width:\"100%\"},variant:\"i6mAgPzvK\",width:\"100%\"})})})})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-1je2vzx\",\"data-framer-name\":\"Blog Section\",name:\"Blog Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-fqr50a\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ug6dmh\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1cwr9pa\",\"data-styles-preset\":\"RtnSLB_wg\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, rgb(6, 61, 51))\"},children:\"Our News & Articles\"})}),className:\"framer-skj6iw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1o9qndd\",\"data-styles-preset\":\"SU650517x\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-d4c5fb11-05bf-4bf3-8152-27be8b6c2731, rgb(56, 65, 63))\"},children:\"Our comprehensive offerings are designed to address your challenges and focus on  innovation and customer satisfaction unlock new opportunities.\"})}),className:\"framer-1mqlkav\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1swkfg2\",\"data-framer-name\":\"Blog area\",name:\"Blog area\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-z7gmv6\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"ZmgBlXI12\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:3},offset:{type:\"LiteralValue\",value:0},select:[{collection:\"ZmgBlXI12\",name:\"E9bNCwH31\",type:\"Identifier\"},{collection:\"ZmgBlXI12\",name:\"RSFRBKGPh\",type:\"Identifier\"},{collection:\"ZmgBlXI12\",name:\"cntcVwy36\",type:\"Identifier\"},{collection:\"ZmgBlXI12\",name:\"xXi53BbPb\",type:\"Identifier\"},{collection:\"ZmgBlXI12\",name:\"ojzTF0JjL\",type:\"Identifier\"},{collection:\"ZmgBlXI12\",name:\"id\",type:\"Identifier\"}]},children:(collection4,paginationInfo4,loadMore4)=>/*#__PURE__*/_jsx(_Fragment,{children:collection4.map(({cntcVwy36:cntcVwy36ZmgBlXI12,E9bNCwH31:E9bNCwH31ZmgBlXI12,id:idZmgBlXI12,ojzTF0JjL:ojzTF0JjLZmgBlXI12,RSFRBKGPh:RSFRBKGPhZmgBlXI12,xXi53BbPb:xXi53BbPbZmgBlXI12},i)=>{E9bNCwH31ZmgBlXI12!==null&&E9bNCwH31ZmgBlXI12!==void 0?E9bNCwH31ZmgBlXI12:E9bNCwH31ZmgBlXI12=\"\";cntcVwy36ZmgBlXI12!==null&&cntcVwy36ZmgBlXI12!==void 0?cntcVwy36ZmgBlXI12:cntcVwy36ZmgBlXI12=\"\";xXi53BbPbZmgBlXI12!==null&&xXi53BbPbZmgBlXI12!==void 0?xXi53BbPbZmgBlXI12:xXi53BbPbZmgBlXI12=\"\";ojzTF0JjLZmgBlXI12!==null&&ojzTF0JjLZmgBlXI12!==void 0?ojzTF0JjLZmgBlXI12:ojzTF0JjLZmgBlXI12=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`ZmgBlXI12-${idZmgBlXI12}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E9bNCwH31:E9bNCwH31ZmgBlXI12},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{E9bNCwH31:E9bNCwH31ZmgBlXI12},webPageId:\"wSdEgKZ3G\"},nodeId:\"OK_7BF7bX\",children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-11whf6n framer-lux5qc\",\"data-framer-name\":\"Blog\",name:\"Blog\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{width:\"calc(min(100vw - 60px, 768px) * 0.48)\"},dR3gXvr5D:{width:\"min(100vw - 40px, 390px)\"},Qb4r8X0dl:{width:\"max((max(min(100vw - 60px, 1140px), 1px) - 48px) / 3, 1px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:428,width:\"max((max(min(100vw - 60px, 1160px), 1px) - 48px) / 3, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xh0on4-container\",children:/*#__PURE__*/_jsx(SingleBlog,{FQXlHEJCN:cntcVwy36ZmgBlXI12,height:\"100%\",id:\"mVwEpfq4x\",layoutId:\"mVwEpfq4x\",op7ffx2W4:ojzTF0JjLZmgBlXI12,style:{width:\"100%\"},width:\"100%\",Wj3zAaTuC:toResponsiveImage(RSFRBKGPhZmgBlXI12),ZGTd0GSss:xXi53BbPbZmgBlXI12})})})})})})})},idZmgBlXI12);})})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cvtt1e\",\"data-framer-name\":\"CTA Section\",name:\"CTA Section\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:530,width:\"max(100vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-16uazib-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"RCGJ9XUu8\"},dR3gXvr5D:{variant:\"VamMZlONb\"},Qb4r8X0dl:{variant:\"i_ChxlVpd\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"DI192Hiqa\",layoutId:\"DI192Hiqa\",style:{width:\"100%\"},variant:\"BXEYjfb1F\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fx2rhf\",\"data-framer-name\":\"Footer Section\",name:\"Footer Section\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:568,width:\"max(100vw, 1px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nlkm6o-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C4dn32Vsi:{variant:\"c4MgA1Ls7\"},dR3gXvr5D:{variant:\"r5Am6iayE\"},Qb4r8X0dl:{variant:\"CVF2ppbpO\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"I7Svy3o11\",layoutId:\"I7Svy3o11\",name:\"Footer\",style:{width:\"100%\"},variant:\"e9oKzK5LE\",width:\"100%\"})})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:174,y:771,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation1,className:\"framer-14mud1p-container hidden-vzpogs\",\"data-framer-appear-id\":\"14mud1p\",\"data-framer-name\":\"Remove This Buy Promo\",initial:animation2,layoutScroll:true,name:\"Remove This Buy Promo\",optimized:true,style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(ButtonArea,{height:\"100%\",id:\"P7bmqP5U1\",layoutId:\"P7bmqP5U1\",name:\"Remove This Buy Promo\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-Q1KyP { background: white; }`,\".framer-Q1KyP.framer-lux5qc, .framer-Q1KyP .framer-lux5qc { display: block; }\",\".framer-Q1KyP.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-Q1KyP .framer-158bwwl { align-content: center; align-items: center; background-color: var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, #063d33); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 1; }\",\".framer-Q1KyP .framer-1g5xw63-container, .framer-Q1KyP .framer-88hap2-container, .framer-Q1KyP .framer-1a5jlu4-container, .framer-Q1KyP .framer-7x9jkv-container, .framer-Q1KyP .framer-111wvfa-container, .framer-Q1KyP .framer-bexmef-container, .framer-Q1KyP .framer-gsxoj6-container, .framer-Q1KyP .framer-1m5igpy-container, .framer-Q1KyP .framer-1qu1w00-container, .framer-Q1KyP .framer-s1jqsl-container, .framer-Q1KyP .framer-1xh0on4-container, .framer-Q1KyP .framer-16uazib-container, .framer-Q1KyP .framer-1nlkm6o-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-w2kj6 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px 30px 0px 30px; position: absolute; top: 55px; transform: translateX(-50%); width: 100%; z-index: 1; }\",\".framer-Q1KyP .framer-k3y90t { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-1nu4d25 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 450px 30px 200px 30px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1no9mnq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 120px; height: min-content; justify-content: center; max-width: 1160px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1u1o15m { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 10px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-3rlgso-container, .framer-Q1KyP .framer-8b5fij-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1wtwx14 { align-content: center; align-items: center; background-color: var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, #063d33); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 30px 44px 44px 44px; position: relative; width: 40%; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q1KyP .framer-1o242g2, .framer-Q1KyP .framer-1jzb0r7, .framer-Q1KyP .framer-1wkegsg, .framer-Q1KyP .framer-1gedc3z, .framer-Q1KyP .framer-2ijyq4, .framer-Q1KyP .framer-1a4x2nb, .framer-Q1KyP .framer-17o6nz1, .framer-Q1KyP .framer-18f3hfa, .framer-Q1KyP .framer-ywilnt, .framer-Q1KyP .framer-jt2jcl, .framer-Q1KyP .framer-skj6iw, .framer-Q1KyP .framer-1mqlkav { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q1KyP .framer-3gli80 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 115px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-fqr50a { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-166hgnj, .framer-Q1KyP .framer-ug6dmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 55%; }\",\".framer-Q1KyP .framer-3tn12j, .framer-Q1KyP .framer-mv7po2, .framer-Q1KyP .framer-1swkfg2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-13oklok, .framer-Q1KyP .framer-4ao71k { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-1ahc2mw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1ilswtw, .framer-Q1KyP .framer-v9ty15 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1u3t7dr, .framer-Q1KyP .framer-1rjxqzb { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1xze1uv, .framer-Q1KyP .framer-dv8y60 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-119zrxg { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: 339px; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-uaj9r9-container { flex: 1 0 0px; height: 100%; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-1xg7qga { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-1fardnl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-14z9lpk { align-content: center; align-items: center; background-color: var(--token-37ee36ba-7fa0-4049-8777-6b44e64509ee, #ecf9f7); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1u220kf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 73px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-11xanog { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Q1KyP .framer-ynbrjr { aspect-ratio: 1.1670020120724347 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 497px); position: relative; width: 580px; }\",\".framer-Q1KyP .framer-hb23av { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-stp14t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-b76nsr-container, .framer-Q1KyP .framer-kf1l4c-container, .framer-Q1KyP .framer-187hcl7-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Q1KyP .framer-4bphj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 130px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-17bbft0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 155px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-8v8hjf { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-1m4mikt { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-13cwcib { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\".framer-Q1KyP .framer-a1p3tr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 44%; }\",\".framer-Q1KyP .framer-l1rh2k { align-content: center; align-items: center; background-color: var(--token-955237e2-d592-4c6f-83c2-ccb3703d1290, #063d33); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 115px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1muo62c { aspect-ratio: 1.2077294685990339 / 1; bottom: -30px; flex: none; height: var(--framer-aspect-ratio-supported, 207px); position: absolute; right: -50px; width: 250px; z-index: 1; }\",\".framer-Q1KyP .framer-pxy28j { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1160px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-c7smxu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-x1kqoi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 50%; }\",\".framer-Q1KyP .framer-1mqlyaf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Q1KyP .framer-1lwspbw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 115px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1rd1gai { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-cikk75 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 49%; }\",\".framer-Q1KyP .framer-qcrcyq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-1je2vzx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 30px 130px 30px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-z7gmv6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",\".framer-Q1KyP .framer-11whf6n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 1px; }\",\".framer-Q1KyP .framer-1cvtt1e, .framer-Q1KyP .framer-fx2rhf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Q1KyP .framer-14mud1p-container { bottom: 55px; flex: none; height: auto; position: fixed; right: 9px; width: auto; z-index: 5; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1KyP.framer-72rtr7, .framer-Q1KyP .framer-158bwwl, .framer-Q1KyP .framer-w2kj6, .framer-Q1KyP .framer-k3y90t, .framer-Q1KyP .framer-1nu4d25, .framer-Q1KyP .framer-1no9mnq, .framer-Q1KyP .framer-1u1o15m, .framer-Q1KyP .framer-1wtwx14, .framer-Q1KyP .framer-3gli80, .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-166hgnj, .framer-Q1KyP .framer-3tn12j, .framer-Q1KyP .framer-13oklok, .framer-Q1KyP .framer-1ahc2mw, .framer-Q1KyP .framer-1ilswtw, .framer-Q1KyP .framer-1u3t7dr, .framer-Q1KyP .framer-1xze1uv, .framer-Q1KyP .framer-119zrxg, .framer-Q1KyP .framer-4ao71k, .framer-Q1KyP .framer-1rjxqzb, .framer-Q1KyP .framer-dv8y60, .framer-Q1KyP .framer-1xg7qga, .framer-Q1KyP .framer-1fardnl, .framer-Q1KyP .framer-v9ty15, .framer-Q1KyP .framer-14z9lpk, .framer-Q1KyP .framer-1u220kf, .framer-Q1KyP .framer-11xanog, .framer-Q1KyP .framer-hb23av, .framer-Q1KyP .framer-stp14t, .framer-Q1KyP .framer-4bphj, .framer-Q1KyP .framer-17bbft0, .framer-Q1KyP .framer-8v8hjf, .framer-Q1KyP .framer-1m4mikt, .framer-Q1KyP .framer-a1p3tr, .framer-Q1KyP .framer-l1rh2k, .framer-Q1KyP .framer-pxy28j, .framer-Q1KyP .framer-c7smxu, .framer-Q1KyP .framer-x1kqoi, .framer-Q1KyP .framer-mv7po2, .framer-Q1KyP .framer-1mqlyaf, .framer-Q1KyP .framer-1lwspbw, .framer-Q1KyP .framer-1rd1gai, .framer-Q1KyP .framer-cikk75, .framer-Q1KyP .framer-qcrcyq, .framer-Q1KyP .framer-1je2vzx, .framer-Q1KyP .framer-fqr50a, .framer-Q1KyP .framer-ug6dmh, .framer-Q1KyP .framer-1swkfg2, .framer-Q1KyP .framer-z7gmv6, .framer-Q1KyP .framer-11whf6n, .framer-Q1KyP .framer-1cvtt1e, .framer-Q1KyP .framer-fx2rhf { gap: 0px; } .framer-Q1KyP.framer-72rtr7 > *, .framer-Q1KyP .framer-14z9lpk > *, .framer-Q1KyP .framer-4bphj > *, .framer-Q1KyP .framer-l1rh2k > *, .framer-Q1KyP .framer-1lwspbw > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Q1KyP.framer-72rtr7 > :first-child, .framer-Q1KyP .framer-1nu4d25 > :first-child, .framer-Q1KyP .framer-1u1o15m > :first-child, .framer-Q1KyP .framer-1wtwx14 > :first-child, .framer-Q1KyP .framer-3gli80 > :first-child, .framer-Q1KyP .framer-1m0r98x > :first-child, .framer-Q1KyP .framer-166hgnj > :first-child, .framer-Q1KyP .framer-13oklok > :first-child, .framer-Q1KyP .framer-1ahc2mw > :first-child, .framer-Q1KyP .framer-4ao71k > :first-child, .framer-Q1KyP .framer-1fardnl > :first-child, .framer-Q1KyP .framer-14z9lpk > :first-child, .framer-Q1KyP .framer-hb23av > :first-child, .framer-Q1KyP .framer-stp14t > :first-child, .framer-Q1KyP .framer-4bphj > :first-child, .framer-Q1KyP .framer-8v8hjf > :first-child, .framer-Q1KyP .framer-1m4mikt > :first-child, .framer-Q1KyP .framer-l1rh2k > :first-child, .framer-Q1KyP .framer-pxy28j > :first-child, .framer-Q1KyP .framer-c7smxu > :first-child, .framer-Q1KyP .framer-x1kqoi > :first-child, .framer-Q1KyP .framer-1lwspbw > :first-child, .framer-Q1KyP .framer-1rd1gai > :first-child, .framer-Q1KyP .framer-cikk75 > :first-child, .framer-Q1KyP .framer-1je2vzx > :first-child, .framer-Q1KyP .framer-fqr50a > :first-child, .framer-Q1KyP .framer-ug6dmh > :first-child { margin-top: 0px; } .framer-Q1KyP.framer-72rtr7 > :last-child, .framer-Q1KyP .framer-1nu4d25 > :last-child, .framer-Q1KyP .framer-1u1o15m > :last-child, .framer-Q1KyP .framer-1wtwx14 > :last-child, .framer-Q1KyP .framer-3gli80 > :last-child, .framer-Q1KyP .framer-1m0r98x > :last-child, .framer-Q1KyP .framer-166hgnj > :last-child, .framer-Q1KyP .framer-13oklok > :last-child, .framer-Q1KyP .framer-1ahc2mw > :last-child, .framer-Q1KyP .framer-4ao71k > :last-child, .framer-Q1KyP .framer-1fardnl > :last-child, .framer-Q1KyP .framer-14z9lpk > :last-child, .framer-Q1KyP .framer-hb23av > :last-child, .framer-Q1KyP .framer-stp14t > :last-child, .framer-Q1KyP .framer-4bphj > :last-child, .framer-Q1KyP .framer-8v8hjf > :last-child, .framer-Q1KyP .framer-1m4mikt > :last-child, .framer-Q1KyP .framer-l1rh2k > :last-child, .framer-Q1KyP .framer-pxy28j > :last-child, .framer-Q1KyP .framer-c7smxu > :last-child, .framer-Q1KyP .framer-x1kqoi > :last-child, .framer-Q1KyP .framer-1lwspbw > :last-child, .framer-Q1KyP .framer-1rd1gai > :last-child, .framer-Q1KyP .framer-cikk75 > :last-child, .framer-Q1KyP .framer-1je2vzx > :last-child, .framer-Q1KyP .framer-fqr50a > :last-child, .framer-Q1KyP .framer-ug6dmh > :last-child { margin-bottom: 0px; } .framer-Q1KyP .framer-158bwwl > *, .framer-Q1KyP .framer-w2kj6 > *, .framer-Q1KyP .framer-k3y90t > *, .framer-Q1KyP .framer-11xanog > *, .framer-Q1KyP .framer-a1p3tr > *, .framer-Q1KyP .framer-1mqlyaf > *, .framer-Q1KyP .framer-qcrcyq > *, .framer-Q1KyP .framer-1cvtt1e > *, .framer-Q1KyP .framer-fx2rhf > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Q1KyP .framer-158bwwl > :first-child, .framer-Q1KyP .framer-w2kj6 > :first-child, .framer-Q1KyP .framer-k3y90t > :first-child, .framer-Q1KyP .framer-1no9mnq > :first-child, .framer-Q1KyP .framer-3tn12j > :first-child, .framer-Q1KyP .framer-1ilswtw > :first-child, .framer-Q1KyP .framer-1u3t7dr > :first-child, .framer-Q1KyP .framer-1xze1uv > :first-child, .framer-Q1KyP .framer-119zrxg > :first-child, .framer-Q1KyP .framer-1rjxqzb > :first-child, .framer-Q1KyP .framer-dv8y60 > :first-child, .framer-Q1KyP .framer-1xg7qga > :first-child, .framer-Q1KyP .framer-v9ty15 > :first-child, .framer-Q1KyP .framer-1u220kf > :first-child, .framer-Q1KyP .framer-11xanog > :first-child, .framer-Q1KyP .framer-17bbft0 > :first-child, .framer-Q1KyP .framer-a1p3tr > :first-child, .framer-Q1KyP .framer-mv7po2 > :first-child, .framer-Q1KyP .framer-1mqlyaf > :first-child, .framer-Q1KyP .framer-qcrcyq > :first-child, .framer-Q1KyP .framer-1swkfg2 > :first-child, .framer-Q1KyP .framer-z7gmv6 > :first-child, .framer-Q1KyP .framer-11whf6n > :first-child, .framer-Q1KyP .framer-1cvtt1e > :first-child, .framer-Q1KyP .framer-fx2rhf > :first-child { margin-left: 0px; } .framer-Q1KyP .framer-158bwwl > :last-child, .framer-Q1KyP .framer-w2kj6 > :last-child, .framer-Q1KyP .framer-k3y90t > :last-child, .framer-Q1KyP .framer-1no9mnq > :last-child, .framer-Q1KyP .framer-3tn12j > :last-child, .framer-Q1KyP .framer-1ilswtw > :last-child, .framer-Q1KyP .framer-1u3t7dr > :last-child, .framer-Q1KyP .framer-1xze1uv > :last-child, .framer-Q1KyP .framer-119zrxg > :last-child, .framer-Q1KyP .framer-1rjxqzb > :last-child, .framer-Q1KyP .framer-dv8y60 > :last-child, .framer-Q1KyP .framer-1xg7qga > :last-child, .framer-Q1KyP .framer-v9ty15 > :last-child, .framer-Q1KyP .framer-1u220kf > :last-child, .framer-Q1KyP .framer-11xanog > :last-child, .framer-Q1KyP .framer-17bbft0 > :last-child, .framer-Q1KyP .framer-a1p3tr > :last-child, .framer-Q1KyP .framer-mv7po2 > :last-child, .framer-Q1KyP .framer-1mqlyaf > :last-child, .framer-Q1KyP .framer-qcrcyq > :last-child, .framer-Q1KyP .framer-1swkfg2 > :last-child, .framer-Q1KyP .framer-z7gmv6 > :last-child, .framer-Q1KyP .framer-11whf6n > :last-child, .framer-Q1KyP .framer-1cvtt1e > :last-child, .framer-Q1KyP .framer-fx2rhf > :last-child { margin-right: 0px; } .framer-Q1KyP .framer-1nu4d25 > *, .framer-Q1KyP .framer-1u1o15m > *, .framer-Q1KyP .framer-3gli80 > *, .framer-Q1KyP .framer-1ahc2mw > *, .framer-Q1KyP .framer-1je2vzx > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q1KyP .framer-1no9mnq > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-Q1KyP .framer-1wtwx14 > *, .framer-Q1KyP .framer-hb23av > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-Q1KyP .framer-1m0r98x > *, .framer-Q1KyP .framer-c7smxu > *, .framer-Q1KyP .framer-fqr50a > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-Q1KyP .framer-166hgnj > *, .framer-Q1KyP .framer-1m4mikt > *, .framer-Q1KyP .framer-x1kqoi > *, .framer-Q1KyP .framer-cikk75 > *, .framer-Q1KyP .framer-ug6dmh > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-Q1KyP .framer-3tn12j > *, .framer-Q1KyP .framer-1u3t7dr > *, .framer-Q1KyP .framer-1rjxqzb > *, .framer-Q1KyP .framer-1xg7qga > *, .framer-Q1KyP .framer-mv7po2 > *, .framer-Q1KyP .framer-1swkfg2 > *, .framer-Q1KyP .framer-z7gmv6 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-Q1KyP .framer-13oklok > *, .framer-Q1KyP .framer-4ao71k > *, .framer-Q1KyP .framer-stp14t > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q1KyP .framer-1ilswtw > *, .framer-Q1KyP .framer-119zrxg > *, .framer-Q1KyP .framer-v9ty15 > *, .framer-Q1KyP .framer-11whf6n > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-Q1KyP .framer-1xze1uv > *, .framer-Q1KyP .framer-dv8y60 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-Q1KyP .framer-1fardnl > *, .framer-Q1KyP .framer-8v8hjf > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q1KyP .framer-1u220kf > * { margin: 0px; margin-left: calc(73px / 2); margin-right: calc(73px / 2); } .framer-Q1KyP .framer-17bbft0 > * { margin: 0px; margin-left: calc(155px / 2); margin-right: calc(155px / 2); } .framer-Q1KyP .framer-pxy28j > *, .framer-Q1KyP .framer-1rd1gai > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1439px) { .${metadata.bodyClassName}-framer-Q1KyP { background: white; } .framer-Q1KyP.framer-72rtr7 { width: 1200px; } .framer-Q1KyP .framer-k3y90t { max-width: 1140px; } .framer-Q1KyP .framer-1nu4d25 { padding: 175px 30px 155px 30px; } .framer-Q1KyP .framer-1no9mnq { gap: 100px; max-width: 1140px; } .framer-Q1KyP .framer-1wtwx14 { padding: 20px; width: 42%; } .framer-Q1KyP .framer-3gli80 { padding: 85px 30px 100px 30px; } .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-fqr50a { gap: 50px; max-width: 1140px; } .framer-Q1KyP .framer-166hgnj { width: 57%; } .framer-Q1KyP .framer-3tn12j { align-content: flex-start; align-items: flex-start; } .framer-Q1KyP .framer-13oklok { justify-content: flex-start; } .framer-Q1KyP .framer-14z9lpk, .framer-Q1KyP .framer-4bphj { padding: 100px 30px 100px 30px; } .framer-Q1KyP .framer-1u220kf { gap: 60px; max-width: 1140px; } .framer-Q1KyP .framer-17bbft0 { gap: 120px; max-width: 1140px; } .framer-Q1KyP .framer-13cwcib, .framer-Q1KyP .framer-17o6nz1, .framer-Q1KyP .framer-ywilnt { width: 85%; } .framer-Q1KyP .framer-a1p3tr { width: 45%; } .framer-Q1KyP .framer-l1rh2k { padding: 90px 30px 100px 30px; } .framer-Q1KyP .framer-1muo62c { bottom: -20px; height: var(--framer-aspect-ratio-supported, 165px); right: -30px; width: 200px; } .framer-Q1KyP .framer-pxy28j { gap: 45px; max-width: 1140px; } .framer-Q1KyP .framer-c7smxu { gap: 55px; } .framer-Q1KyP .framer-1lwspbw { padding: 90px 0px 70px 0px; } .framer-Q1KyP .framer-cikk75 { width: 58%; } .framer-Q1KyP .framer-1je2vzx { padding: 70px 30px 100px 30px; } .framer-Q1KyP .framer-ug6dmh { width: 60%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1KyP .framer-1no9mnq, .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-1u220kf, .framer-Q1KyP .framer-17bbft0, .framer-Q1KyP .framer-pxy28j, .framer-Q1KyP .framer-c7smxu, .framer-Q1KyP .framer-fqr50a { gap: 0px; } .framer-Q1KyP .framer-1no9mnq > * { margin: 0px; margin-left: calc(100px / 2); margin-right: calc(100px / 2); } .framer-Q1KyP .framer-1no9mnq > :first-child, .framer-Q1KyP .framer-1u220kf > :first-child, .framer-Q1KyP .framer-17bbft0 > :first-child { margin-left: 0px; } .framer-Q1KyP .framer-1no9mnq > :last-child, .framer-Q1KyP .framer-1u220kf > :last-child, .framer-Q1KyP .framer-17bbft0 > :last-child { margin-right: 0px; } .framer-Q1KyP .framer-1m0r98x > *, .framer-Q1KyP .framer-fqr50a > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Q1KyP .framer-1m0r98x > :first-child, .framer-Q1KyP .framer-pxy28j > :first-child, .framer-Q1KyP .framer-c7smxu > :first-child, .framer-Q1KyP .framer-fqr50a > :first-child { margin-top: 0px; } .framer-Q1KyP .framer-1m0r98x > :last-child, .framer-Q1KyP .framer-pxy28j > :last-child, .framer-Q1KyP .framer-c7smxu > :last-child, .framer-Q1KyP .framer-fqr50a > :last-child { margin-bottom: 0px; } .framer-Q1KyP .framer-1u220kf > * { margin: 0px; margin-left: calc(60px / 2); margin-right: calc(60px / 2); } .framer-Q1KyP .framer-17bbft0 > * { margin: 0px; margin-left: calc(120px / 2); margin-right: calc(120px / 2); } .framer-Q1KyP .framer-pxy28j > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-Q1KyP .framer-c7smxu > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-Q1KyP { background: white; } .framer-Q1KyP.framer-72rtr7 { width: 768px; } .framer-Q1KyP .framer-k3y90t { max-width: 768px; } .framer-Q1KyP .framer-1nu4d25 { padding: 150px 30px 150px 30px; } .framer-Q1KyP .framer-1no9mnq { align-content: center; align-items: center; flex-direction: column; gap: 40px; max-width: 768px; } .framer-Q1KyP .framer-1u1o15m { flex: none; order: 1; padding: 0px; width: 80%; } .framer-Q1KyP .framer-1wtwx14 { order: 0; width: 80%; } .framer-Q1KyP .framer-3gli80 { padding: 66px 30px 80px 30px; } .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-1rd1gai { gap: 45px; max-width: 768px; } .framer-Q1KyP .framer-166hgnj, .framer-Q1KyP .framer-a1p3tr, .framer-Q1KyP .framer-x1kqoi { width: 80%; } .framer-Q1KyP .framer-3tn12j { flex-direction: column; width: 80%; } .framer-Q1KyP .framer-13oklok, .framer-Q1KyP .framer-4ao71k { flex: none; width: 100%; } .framer-Q1KyP .framer-1rjxqzb { order: 1; } .framer-Q1KyP .framer-1fardnl { order: 0; } .framer-Q1KyP .framer-14z9lpk, .framer-Q1KyP .framer-4bphj, .framer-Q1KyP .framer-l1rh2k { padding: 70px 30px 80px 30px; } .framer-Q1KyP .framer-1u220kf { flex-direction: column; gap: 45px; max-width: 768px; } .framer-Q1KyP .framer-11xanog { order: 1; width: 80%; } .framer-Q1KyP .framer-ynbrjr { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 171px); width: 1px; } .framer-Q1KyP .framer-hb23av { flex: none; order: 0; width: 80%; } .framer-Q1KyP .framer-17bbft0 { flex-direction: column; gap: 50px; max-width: 768px; } .framer-Q1KyP .framer-8v8hjf { flex: none; width: 80%; } .framer-Q1KyP .framer-13cwcib, .framer-Q1KyP .framer-ug6dmh { width: 100%; } .framer-Q1KyP .framer-1muo62c { bottom: -20px; height: var(--framer-aspect-ratio-supported, 149px); right: -30px; width: 180px; } .framer-Q1KyP .framer-pxy28j { gap: 35px; max-width: 768px; } .framer-Q1KyP .framer-c7smxu { gap: 45px; } .framer-Q1KyP .framer-mv7po2 { flex-wrap: wrap; gap: 19px; } .framer-Q1KyP .framer-gsxoj6-container, .framer-Q1KyP .framer-1m5igpy-container, .framer-Q1KyP .framer-1qu1w00-container { flex: none; width: 31%; } .framer-Q1KyP .framer-1lwspbw { padding: 70px 0px 55px 0px; } .framer-Q1KyP .framer-cikk75 { max-width: unset; padding: 0px 30px 0px 30px; width: 100%; } .framer-Q1KyP .framer-1je2vzx { padding: 55px 30px 80px 30px; } .framer-Q1KyP .framer-fqr50a { gap: 40px; max-width: 768px; } .framer-Q1KyP .framer-1swkfg2 { flex-wrap: wrap; } .framer-Q1KyP .framer-z7gmv6 { align-content: center; align-items: center; flex-wrap: wrap; justify-content: center; } .framer-Q1KyP .framer-11whf6n { flex: none; width: 48%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1KyP .framer-1no9mnq, .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-3tn12j, .framer-Q1KyP .framer-1u220kf, .framer-Q1KyP .framer-17bbft0, .framer-Q1KyP .framer-pxy28j, .framer-Q1KyP .framer-c7smxu, .framer-Q1KyP .framer-mv7po2, .framer-Q1KyP .framer-1rd1gai, .framer-Q1KyP .framer-fqr50a { gap: 0px; } .framer-Q1KyP .framer-1no9mnq > *, .framer-Q1KyP .framer-fqr50a > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q1KyP .framer-1no9mnq > :first-child, .framer-Q1KyP .framer-1m0r98x > :first-child, .framer-Q1KyP .framer-3tn12j > :first-child, .framer-Q1KyP .framer-1u220kf > :first-child, .framer-Q1KyP .framer-17bbft0 > :first-child, .framer-Q1KyP .framer-pxy28j > :first-child, .framer-Q1KyP .framer-c7smxu > :first-child, .framer-Q1KyP .framer-1rd1gai > :first-child, .framer-Q1KyP .framer-fqr50a > :first-child { margin-top: 0px; } .framer-Q1KyP .framer-1no9mnq > :last-child, .framer-Q1KyP .framer-1m0r98x > :last-child, .framer-Q1KyP .framer-3tn12j > :last-child, .framer-Q1KyP .framer-1u220kf > :last-child, .framer-Q1KyP .framer-17bbft0 > :last-child, .framer-Q1KyP .framer-pxy28j > :last-child, .framer-Q1KyP .framer-c7smxu > :last-child, .framer-Q1KyP .framer-1rd1gai > :last-child, .framer-Q1KyP .framer-fqr50a > :last-child { margin-bottom: 0px; } .framer-Q1KyP .framer-1m0r98x > *, .framer-Q1KyP .framer-1u220kf > *, .framer-Q1KyP .framer-c7smxu > *, .framer-Q1KyP .framer-1rd1gai > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-Q1KyP .framer-3tn12j > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q1KyP .framer-17bbft0 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-Q1KyP .framer-pxy28j > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-Q1KyP .framer-mv7po2 > * { margin: 0px; margin-left: calc(19px / 2); margin-right: calc(19px / 2); } .framer-Q1KyP .framer-mv7po2 > :first-child { margin-left: 0px; } .framer-Q1KyP .framer-mv7po2 > :last-child { margin-right: 0px; } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-Q1KyP { background: white; } .framer-Q1KyP.framer-72rtr7 { width: 390px; } .framer-Q1KyP .framer-w2kj6 { padding: 0px; position: fixed; top: 0px; z-index: 9; } .framer-Q1KyP .framer-k3y90t { max-width: unset; } .framer-Q1KyP .framer-1nu4d25 { padding: 140px 20px 130px 20px; } .framer-Q1KyP .framer-1no9mnq { flex-direction: column; gap: 35px; max-width: 390px; } .framer-Q1KyP .framer-1u1o15m { flex: none; order: 1; padding: 0px; width: 100%; } .framer-Q1KyP .framer-1wtwx14 { gap: 25px; order: 0; padding: 20px; width: 100%; } .framer-Q1KyP .framer-3gli80, .framer-Q1KyP .framer-14z9lpk, .framer-Q1KyP .framer-4bphj, .framer-Q1KyP .framer-l1rh2k { padding: 50px 20px 60px 20px; } .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-fqr50a { gap: 35px; max-width: 390px; } .framer-Q1KyP .framer-166hgnj, .framer-Q1KyP .framer-13cwcib, .framer-Q1KyP .framer-a1p3tr, .framer-Q1KyP .framer-x1kqoi, .framer-Q1KyP .framer-ug6dmh { width: 100%; } .framer-Q1KyP .framer-3tn12j, .framer-Q1KyP .framer-1u3t7dr, .framer-Q1KyP .framer-mv7po2, .framer-Q1KyP .framer-1swkfg2 { flex-direction: column; } .framer-Q1KyP .framer-13oklok, .framer-Q1KyP .framer-4ao71k, .framer-Q1KyP .framer-1xg7qga, .framer-Q1KyP .framer-gsxoj6-container, .framer-Q1KyP .framer-1m5igpy-container, .framer-Q1KyP .framer-1qu1w00-container, .framer-Q1KyP .framer-11whf6n { flex: none; width: 100%; } .framer-Q1KyP .framer-1xze1uv, .framer-Q1KyP .framer-dv8y60, .framer-Q1KyP .framer-z7gmv6 { flex: none; flex-direction: column; width: 100%; } .framer-Q1KyP .framer-119zrxg { flex: none; height: min-content; width: 100%; } .framer-Q1KyP .framer-uaj9r9-container { height: auto; } .framer-Q1KyP .framer-1rjxqzb { flex-direction: column; order: 1; } .framer-Q1KyP .framer-1fardnl { order: 0; } .framer-Q1KyP .framer-1u220kf, .framer-Q1KyP .framer-17bbft0 { flex-direction: column; gap: 40px; max-width: 390px; } .framer-Q1KyP .framer-11xanog { order: 1; width: 100%; } .framer-Q1KyP .framer-ynbrjr { flex: 1 0 0px; height: var(--framer-aspect-ratio-supported, 171px); width: 1px; } .framer-Q1KyP .framer-hb23av { flex: none; gap: 25px; order: 0; width: 100%; } .framer-Q1KyP .framer-stp14t { gap: 20px; } .framer-Q1KyP .framer-8v8hjf { flex: none; gap: 30px; width: 100%; } .framer-Q1KyP .framer-1muo62c { bottom: -15px; height: var(--framer-aspect-ratio-supported, 99px); right: -15px; width: 120px; } .framer-Q1KyP .framer-pxy28j { gap: 25px; max-width: 390px; } .framer-Q1KyP .framer-c7smxu { gap: 35px; } .framer-Q1KyP .framer-1lwspbw { padding: 50px 0px 40px 0px; } .framer-Q1KyP .framer-1rd1gai { gap: 40px; max-width: 390px; } .framer-Q1KyP .framer-cikk75 { max-width: unset; padding: 0px 20px 0px 20px; width: 100%; } .framer-Q1KyP .framer-1je2vzx { padding: 30px 20px 60px 20px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-Q1KyP .framer-1no9mnq, .framer-Q1KyP .framer-1wtwx14, .framer-Q1KyP .framer-1m0r98x, .framer-Q1KyP .framer-3tn12j, .framer-Q1KyP .framer-1u3t7dr, .framer-Q1KyP .framer-1xze1uv, .framer-Q1KyP .framer-1rjxqzb, .framer-Q1KyP .framer-dv8y60, .framer-Q1KyP .framer-1u220kf, .framer-Q1KyP .framer-hb23av, .framer-Q1KyP .framer-stp14t, .framer-Q1KyP .framer-17bbft0, .framer-Q1KyP .framer-8v8hjf, .framer-Q1KyP .framer-pxy28j, .framer-Q1KyP .framer-c7smxu, .framer-Q1KyP .framer-mv7po2, .framer-Q1KyP .framer-1rd1gai, .framer-Q1KyP .framer-fqr50a, .framer-Q1KyP .framer-1swkfg2, .framer-Q1KyP .framer-z7gmv6 { gap: 0px; } .framer-Q1KyP .framer-1no9mnq > *, .framer-Q1KyP .framer-1m0r98x > *, .framer-Q1KyP .framer-c7smxu > *, .framer-Q1KyP .framer-fqr50a > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-Q1KyP .framer-1no9mnq > :first-child, .framer-Q1KyP .framer-1wtwx14 > :first-child, .framer-Q1KyP .framer-1m0r98x > :first-child, .framer-Q1KyP .framer-3tn12j > :first-child, .framer-Q1KyP .framer-1u3t7dr > :first-child, .framer-Q1KyP .framer-1xze1uv > :first-child, .framer-Q1KyP .framer-1rjxqzb > :first-child, .framer-Q1KyP .framer-dv8y60 > :first-child, .framer-Q1KyP .framer-1u220kf > :first-child, .framer-Q1KyP .framer-hb23av > :first-child, .framer-Q1KyP .framer-stp14t > :first-child, .framer-Q1KyP .framer-17bbft0 > :first-child, .framer-Q1KyP .framer-8v8hjf > :first-child, .framer-Q1KyP .framer-pxy28j > :first-child, .framer-Q1KyP .framer-c7smxu > :first-child, .framer-Q1KyP .framer-mv7po2 > :first-child, .framer-Q1KyP .framer-1rd1gai > :first-child, .framer-Q1KyP .framer-fqr50a > :first-child, .framer-Q1KyP .framer-1swkfg2 > :first-child, .framer-Q1KyP .framer-z7gmv6 > :first-child { margin-top: 0px; } .framer-Q1KyP .framer-1no9mnq > :last-child, .framer-Q1KyP .framer-1wtwx14 > :last-child, .framer-Q1KyP .framer-1m0r98x > :last-child, .framer-Q1KyP .framer-3tn12j > :last-child, .framer-Q1KyP .framer-1u3t7dr > :last-child, .framer-Q1KyP .framer-1xze1uv > :last-child, .framer-Q1KyP .framer-1rjxqzb > :last-child, .framer-Q1KyP .framer-dv8y60 > :last-child, .framer-Q1KyP .framer-1u220kf > :last-child, .framer-Q1KyP .framer-hb23av > :last-child, .framer-Q1KyP .framer-stp14t > :last-child, .framer-Q1KyP .framer-17bbft0 > :last-child, .framer-Q1KyP .framer-8v8hjf > :last-child, .framer-Q1KyP .framer-pxy28j > :last-child, .framer-Q1KyP .framer-c7smxu > :last-child, .framer-Q1KyP .framer-mv7po2 > :last-child, .framer-Q1KyP .framer-1rd1gai > :last-child, .framer-Q1KyP .framer-fqr50a > :last-child, .framer-Q1KyP .framer-1swkfg2 > :last-child, .framer-Q1KyP .framer-z7gmv6 > :last-child { margin-bottom: 0px; } .framer-Q1KyP .framer-1wtwx14 > *, .framer-Q1KyP .framer-hb23av > *, .framer-Q1KyP .framer-pxy28j > * { margin: 0px; margin-bottom: calc(25px / 2); margin-top: calc(25px / 2); } .framer-Q1KyP .framer-3tn12j > *, .framer-Q1KyP .framer-1u3t7dr > *, .framer-Q1KyP .framer-1rjxqzb > *, .framer-Q1KyP .framer-mv7po2 > *, .framer-Q1KyP .framer-1swkfg2 > *, .framer-Q1KyP .framer-z7gmv6 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-Q1KyP .framer-1xze1uv > *, .framer-Q1KyP .framer-dv8y60 > *, .framer-Q1KyP .framer-stp14t > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-Q1KyP .framer-1u220kf > *, .framer-Q1KyP .framer-17bbft0 > *, .framer-Q1KyP .framer-1rd1gai > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-Q1KyP .framer-8v8hjf > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7496\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Qb4r8X0dl\":{\"layout\":[\"fixed\",\"auto\"]},\"C4dn32Vsi\":{\"layout\":[\"fixed\",\"auto\"]},\"dR3gXvr5D\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-Q1KyP\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7496,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAopxhS2f3ZGMZpg.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_qU7NTxXUEKi4Rw.woff2\",weight:\"400\"},{family:\"Plus Jakarta Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/plusjakartasans/v8/LDIbaomQNQcsA88c7O9yZ4KMCoOg4IA6-91aHEjcWuA_d0nNTxXUEKi4Rw.woff2\",weight:\"600\"}]},...TopBarFonts,...NavbarFonts,...ContentSlideFonts,...BaseFormFonts,...SingleServiceFonts,...ButtonFonts,...FeaturedListFonts,...SingelTeamFonts,...SliderFonts,...SingleBlogFonts,...CTAFonts,...FooterDarkFonts,...ButtonAreaFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"7496\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Qb4r8X0dl\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C4dn32Vsi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dR3gXvr5D\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"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", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "key", "value", "formData", "requestOptions", "urlSearchParams", "name", "value1", "queryString", "urlSearchParams1", "name1", "value2", "key1", "value3", "bodyObject", "name2", "value4", "key2", "value5", "response", "statusCode", "data", "errorMessage", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "isRequired", "BaseForm_default", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "paragraph", "title", "width", "props", "_ref", "_ref1", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "qMJb6eG4G", "iUhQx2d1j", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "css", "FramerqtK9XjX5l", "withCSS", "qtK9XjX5l_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "HeroContentFonts", "getFonts", "qtK9XjX5l_default", "SlideshowFonts", "Slideshow", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "cx", "ComponentViewportProvider", "css", "FramerknBY_FT7f", "withCSS", "knBY_FT7f_default", "addPropertyControls", "ControlType", "addFonts", "TopBarFonts", "getFonts", "HQVBBSfQO_default", "NavbarFonts", "PO5LzF375_default", "NavbarWithVariantAppearEffect", "withVariantAppearEffect", "ContentSlideFonts", "knBY_FT7f_default", "BaseFormFonts", "BaseForm_default", "MotionDivWithFX", "withFX", "motion", "SingleServiceFonts", "cgKJZFCPF_default", "ButtonFonts", "i15jR01SZ_default", "FeaturedListFonts", "Bvi_ErzCM_default", "SingelTeamFonts", "UZB1YPA3r_default", "SliderFonts", "LypK8vTSz_default", "SingleBlogFonts", "lXmK5VIHq_default", "CTAFonts", "JIQB6KtzT_default", "FooterDarkFonts", "pvCWto690_default", "ButtonAreaFonts", "YIO0NPypJ_default", "ContainerWithOptimizedAppearEffect", "withOptimizedAppearEffect", "Container", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "addImageAlt", "image", "alt", "transition2", "animation1", "animation2", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "YGfmaFYgffDEthZLz0", "sHyc35yN_fDEthZLz0", "p0rlUxkcmfDEthZLz0", "TGD3EGrjQfDEthZLz0", "idfDEthZLz0", "YGfmaFYgfLV5ZoZ6V1", "sHyc35yN_LV5ZoZ6V1", "p0rlUxkcmLV5ZoZ6V1", "TGD3EGrjQLV5ZoZ6V1", "idLV5ZoZ6V1", "YGfmaFYgfqvB5Sw8Xa", "sHyc35yN_qvB5Sw8Xa", "p0rlUxkcmqvB5Sw8Xa", "TGD3EGrjQqvB5Sw8Xa", "idqvB5Sw8Xa", "YGfmaFYgfbB2eoWrmx", "sHyc35yN_bB2eoWrmx", "p0rlUxkcmbB2eoWrmx", "TGD3EGrjQbB2eoWrmx", "idbB2eoWrmx", "E9bNCwH31ZmgBlXI12", "RSFRBKGPhZmgBlXI12", "cntcVwy36ZmgBlXI12", "xXi53BbPbZmgBlXI12", "ojzTF0JjLZmgBlXI12", "idZmgBlXI12", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "ref1", "pe", "isDisplayed", "router", "useRouter", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "cx", "ComponentViewportProvider", "PropertyOverrides2", "Image2", "RichText2", "x", "ChildrenCanSuspend", "D4PyYdfQR_default", "collection", "paginationInfo", "loadMore", "l", "i", "PathVariablesContext", "ResolveLinks", "resolvedLinks", "collection1", "paginationInfo1", "loadMore1", "resolvedLinks1", "collection2", "paginationInfo2", "loadMore2", "resolvedLinks2", "collection3", "paginationInfo3", "loadMore3", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "Uxdd7GsD9_default", "collection4", "paginationInfo4", "loadMore4", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
