{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/eTOtSMvj9WFYuRuG8kAx/iSwVO4SOU3Gf12lWJt52/BaseForm.js", "ssg:https://framerusercontent.com/modules/M3dacfUPbjaGWmHBceZt/Kyf23iOO6zsQhDv5YvMo/zv1DRiYTI.js", "ssg:https://framerusercontent.com/modules/4mh31eXuVr19QvEqOU96/eDrCdj0uVAN74DPLPRfl/BcbBkgrWV.js", "ssg:https://framerusercontent.com/modules/edrq8IfMJcZ9gokKOv36/xXITiAZMassTwMyxodjv/OJ8dLGnlY.js", "ssg:https://framerusercontent.com/modules/CJCnOidYVkhjV4GMqDLG/fl0SHKAaLNRAFhDxLzYj/QHouzfw7w.js", "ssg:https://framerusercontent.com/modules/AwweEeKGEUBgswVckllj/W8L3vBZj2v2VJD8EApL4/xxtPlSF84.js", "ssg:https://framerusercontent.com/modules/52l6cvADCUOQEylDyEVl/3h9uxtE7EEaGAkHCnbOc/sLXwlxLKm.js"],
  "sourcesContent": ["/*\nMIT License\nCopyright \u00A9 Joel Whitaker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall the\nauthors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the Software or the use or other dealings in the\nSoftware.\n*/ import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[FieldType.Time,FieldType.Week,FieldType.Number,FieldType.Date,FieldType.DateTimeLocal,].includes(type);}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */ const VERSION=\"v1\";/**\n * BASEFORM\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const BaseForm=withCSS(function BaseForm({url,method,contentType,redirectAs,link,inputs,button,styles,extraHeaders,extraFields,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(null);if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const headers=new Headers;if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}const formData=new FormData(event.target);let requestOptions={method:method,headers:headers};if(method===\"get\"){// Add form fields to URL for GET requests\nconst urlSearchParams=new URLSearchParams;for(const[name,value1]of formData){urlSearchParams.append(name,value1.toString());}const queryString=urlSearchParams.toString();url+=queryString?`?${queryString}`:\"\";}else{headers.append(\"Content-Type\",contentType);if(contentType===\"application/json\"){headers.append(\"accept\",\"application/json\");}if(contentType===\"application/x-www-form-urlencoded\"){const urlSearchParams1=new URLSearchParams;for(const[name1,value2]of formData){urlSearchParams1.append(name1,value2.toString());}if(extraFields){for(const[key1,value3]of Object.entries(extraFields)){urlSearchParams1.append(key1,value3.toString());}}requestOptions[\"body\"]=urlSearchParams1.toString();}else if(contentType===\"application/json\"){const bodyObject={};for(const[name2,value4]of formData){bodyObject[name2]=value4;}if(extraFields){for(const[key2,value5]of Object.entries(extraFields)){bodyObject[key2]=value5;}}requestOptions[\"body\"]=JSON.stringify(bodyObject);}}fetch(url,requestOptions).then(response=>{const statusCode=response.status;const contentType=response.headers.get(\"content-type\");if(contentType&&contentType.includes(\"application/json\")){return response.json().then(data=>({statusCode,data}));}else if(contentType&&contentType.includes(\"text/plain\")){return response.text().then(data=>({statusCode,data}));}else{throw new Error(\"Unsupported response type\");}}).then(({statusCode,data})=>{if(statusCode>=200&&statusCode<300){// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}else{// Handle errors\nlet errorMessage=\"An error occurred submitting the form\";throw new Error(errorMessage);}}).catch(error=>{console.error(error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/ _jsxs(\"label\",{htmlFor:input.name,style:{marginBottom:\"0.375rem\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:[input.label,requiredFlag(input.required)]});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/ _jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/ _jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===FieldType.Select){inputElement=selectInput(input);}else if(input.type===FieldType.TextArea){inputElement=textareaInput(input);}else if(input.type===FieldType.Checkbox){inputElement=checkboxInput(input);}else if(input.type===FieldType.Radio){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:styles.button.fontWeight,fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/ _jsx(Spinner,{color:styles.button.color})})]})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`,]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};return /*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/ _jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};const basePropertyControls={url:{title:\"Url\",type:ControlType.String},method:{type:ControlType.Enum,defaultValue:\"post\",options:[\"get\",\"post\",\"put\",\"patch\",\"delete\"],optionTitles:[\"Get\",\"Post\",\"Put\",\"Patch\",\"Delete\"]},contentType:{type:ControlType.Enum,defaultValue:\"application/json\",options:[\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"json\",\"x-www-form-urlencoded\"],hidden:props=>props.method===\"get\"},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#fff\"},columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\",],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}}}}};addPropertyControls(BaseForm,basePropertyControls);const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}function requiredFlag(isRequired){if(isRequired){return /*#__PURE__*/ _jsx(\"span\",{children:\"*\"});}return null;}BaseForm.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"name\",label:\"Name\",placeholder:\"Jane\",type:FieldType.Text,required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:FieldType.Email,required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:FieldType.Select,required:false,options:[]},{name:\"message\",label:\"Message\",placeholder:\"\",type:FieldType.TextArea,required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:FieldType.Checkbox,required:false},]};export default BaseForm;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaseForm.map", "import{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-rdHOs .framer-styles-preset-1ca1lxr:not(.rich-text-wrapper), .framer-rdHOs .framer-styles-preset-1ca1lxr.rich-text-wrapper a { --framer-link-current-text-color: #ffffff; --framer-link-current-text-decoration: none; --framer-link-hover-text-color: #ffffff; --framer-link-hover-text-decoration: none; --framer-link-text-color: rgba(255, 255, 255, 0.4); --framer-link-text-decoration: none; }\"];export const className=\"framer-rdHOs\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (4b8bcae)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={JHhFoxYt1:{hover:true}};const cycleOrder=[\"JHhFoxYt1\"];const serializationHash=\"framer-xHqs1\";const variantClassNames={JHhFoxYt1:\"framer-v-v1h0s9\"};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,width,...props})=>{return{...props};};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:\"JHhFoxYt1\",enabledGestures,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(Link,{...addPropertyOverrides({\"JHhFoxYt1-hover\":{href:\"https://www.instagram.com/brandventure_design/\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-v1h0s9\",className,classNames)} framer-16h9wto`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"JHhFoxYt1\",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({\"JHhFoxYt1-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-mqkjdh\",\"data-framer-name\":\"Instagram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"m_A9JVL5j\",style:{opacity:1},svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.68687 1.29293C2.81245 1.29293 1.29293 2.81245 1.29293 4.68687V12.7677C1.29293 14.6421 2.81245 16.1616 4.68687 16.1616H12.7677C14.6421 16.1616 16.1616 14.6421 16.1616 12.7677V4.68687C16.1616 2.81245 14.6421 1.29293 12.7677 1.29293H4.68687ZM0 4.68687C0 2.09838 2.09838 0 4.68687 0H12.7677C15.3562 0 17.4545 2.09838 17.4545 4.68687V12.7677C17.4545 15.3562 15.3562 17.4545 12.7677 17.4545H4.68687C2.09838 17.4545 0 15.3562 0 12.7677V4.68687ZM12.6736 4.13471C12.6736 3.77767 12.963 3.48824 13.3201 3.48824H13.3276C13.6847 3.48824 13.9741 3.77767 13.9741 4.13471C13.9741 4.49174 13.6847 4.78117 13.3276 4.78117H13.3201C12.963 4.78117 12.6736 4.49174 12.6736 4.13471ZM9.15879 6.02669C8.59835 5.94359 8.02598 6.03931 7.52309 6.30026C7.02019 6.5612 6.61238 6.97407 6.35766 7.48014C6.10294 7.98622 6.01428 8.55972 6.10429 9.11909C6.1943 9.67846 6.4584 10.1952 6.85902 10.5958C7.25964 10.9964 7.77638 11.2605 8.33575 11.3506C8.89512 11.4406 9.46862 11.3519 9.9747 11.0972C10.4808 10.8425 10.8936 10.4346 11.1546 9.93175C11.4155 9.42886 11.5113 8.85649 11.4281 8.29605C11.3434 7.72439 11.077 7.19514 10.6683 6.78649C10.2597 6.37785 9.73045 6.11146 9.15879 6.02669ZM6.9276 5.15262C7.67189 4.76643 8.519 4.62475 9.34844 4.74775C10.1945 4.87321 10.9778 5.26746 11.5826 5.87226C12.1874 6.47706 12.5816 7.26034 12.7071 8.1064C12.8301 8.93585 12.6884 9.78295 12.3022 10.5272C11.916 11.2715 11.305 11.8751 10.556 12.2521C9.807 12.6291 8.95821 12.7603 8.13034 12.6271C7.30248 12.4938 6.5377 12.103 5.94478 11.5101C5.35186 10.9171 4.961 10.1524 4.82778 9.3245C4.69457 8.49664 4.82579 7.64784 5.20277 6.89885C5.57976 6.14986 6.18332 5.53882 6.9276 5.15262Z\" fill=\"#E8EDE9\"/>\\n</svg>\\n',variants:{\"JHhFoxYt1-hover\":{opacity:.4}},withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xHqs1.framer-16h9wto, .framer-xHqs1 .framer-16h9wto { display: block; }\",\".framer-xHqs1.framer-v1h0s9 { cursor: pointer; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-xHqs1 .framer-mqkjdh { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-xHqs1.framer-v-v1h0s9.hover.framer-v1h0s9 { text-decoration: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 20\n * @framerIntrinsicWidth 20\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"yHxBNb6Yb\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerBcbBkgrWV=withCSS(Component,css,\"framer-xHqs1\");export default FramerBcbBkgrWV;FramerBcbBkgrWV.displayName=\"Instagram\";FramerBcbBkgrWV.defaultProps={height:20,width:20};addFonts(FramerBcbBkgrWV,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerBcbBkgrWV\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"20\",\"framerIntrinsicWidth\":\"20\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"yHxBNb6Yb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BcbBkgrWV.map", "// Generated by Framer (4b8bcae)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={r2ulNkVkw:{hover:true}};const cycleOrder=[\"r2ulNkVkw\"];const serializationHash=\"framer-Rvco9\";const variantClassNames={r2ulNkVkw:\"framer-v-kv3ynd\"};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,width,...props})=>{return{...props};};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:\"r2ulNkVkw\",enabledGestures,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(Link,{...addPropertyOverrides({\"r2ulNkVkw-hover\":{href:\"https://www.behance.net/hajnihercz\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-kv3ynd\",className,classNames)} framer-1r7civp`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"r2ulNkVkw\",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:{opacity:1,...style},variants:{\"r2ulNkVkw-hover\":{opacity:.4}},...addPropertyOverrides({\"r2ulNkVkw-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-100ho93\",\"data-framer-name\":\"Behance\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"NKlYtfxiE\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 15\"><path d=\"M 6.824 0 C 7.5 0 8.126 0.053 8.698 0.21 C 9.271 0.315 9.74 0.525 10.157 0.786 C 10.574 1.048 10.886 1.416 11.094 1.887 C 11.303 2.359 11.407 2.937 11.407 3.565 C 11.407 4.299 11.251 4.928 10.886 5.399 C 10.574 5.872 10.053 6.291 9.428 6.605 C 10.313 6.868 10.99 7.34 11.407 7.968 C 11.824 8.598 12.084 9.384 12.084 10.275 C 12.084 11.01 11.927 11.638 11.667 12.163 C 11.407 12.687 10.99 13.159 10.521 13.473 C 10.011 13.811 9.448 14.059 8.855 14.207 C 8.23 14.365 7.605 14.47 6.98 14.47 L 0 14.47 L 0 0 Z M 6.406 5.871 C 6.979 5.871 7.449 5.714 7.813 5.452 C 8.177 5.191 8.334 4.718 8.334 4.141 C 8.334 3.827 8.281 3.512 8.177 3.303 C 8.073 3.093 7.917 2.935 7.709 2.779 C 7.497 2.66 7.268 2.571 7.031 2.517 C 6.771 2.464 6.511 2.464 6.198 2.464 L 3.177 2.464 L 3.177 5.872 Z M 6.563 12.058 C 6.876 12.058 7.188 12.005 7.449 11.953 C 7.709 11.9 7.97 11.796 8.177 11.638 C 8.389 11.485 8.567 11.288 8.698 11.062 C 8.802 10.8 8.907 10.485 8.907 10.118 C 8.907 9.384 8.698 8.859 8.282 8.493 C 7.865 8.178 7.292 8.021 6.615 8.021 L 3.177 8.021 L 3.177 12.059 Z M 16.616 12.005 C 17.032 12.424 17.657 12.634 18.491 12.634 C 19.063 12.634 19.585 12.477 20.001 12.216 C 20.418 11.901 20.679 11.586 20.782 11.271 L 23.335 11.271 C 22.918 12.529 22.293 13.421 21.46 13.997 C 20.626 14.522 19.636 14.836 18.439 14.836 C 17.672 14.839 16.912 14.696 16.199 14.417 C 15.557 14.176 14.984 13.78 14.532 13.264 C 14.048 12.781 13.69 12.187 13.491 11.533 C 13.23 10.852 13.125 10.118 13.125 9.279 C 13.125 8.493 13.23 7.759 13.491 7.077 C 13.741 6.42 14.112 5.815 14.585 5.294 C 15.053 4.823 15.626 4.404 16.251 4.141 C 16.946 3.862 17.689 3.719 18.439 3.722 C 19.324 3.722 20.106 3.88 20.782 4.246 C 21.46 4.613 21.98 5.033 22.396 5.662 C 22.814 6.239 23.127 6.92 23.335 7.654 C 23.439 8.388 23.49 9.122 23.439 9.96 L 15.886 9.96 C 15.886 10.8 16.199 11.586 16.616 12.006 M 19.897 6.501 C 19.533 6.135 18.96 5.925 18.282 5.925 C 17.884 5.919 17.491 6.009 17.136 6.187 C 16.824 6.345 16.616 6.554 16.407 6.764 C 16.216 6.967 16.089 7.222 16.043 7.498 C 15.99 7.76 15.938 7.969 15.938 8.179 L 20.626 8.179 C 20.522 7.393 20.261 6.869 19.897 6.501 Z M 15.313 0.996 L 21.147 0.996 L 21.147 2.412 L 15.314 2.412 Z\" fill=\"rgb(232,237,233)\"></path></svg>',svgContentId:4049899423,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Rvco9.framer-1r7civp, .framer-Rvco9 .framer-1r7civp { display: block; }\",\".framer-Rvco9.framer-kv3ynd { cursor: pointer; height: 18px; overflow: visible; position: relative; width: 24px; }\",\".framer-Rvco9 .framer-100ho93 { flex: none; height: 15px; left: calc(50.00000000000002% - 24px / 2); position: absolute; top: 2px; width: 24px; }\",\".framer-Rvco9.framer-v-kv3ynd.hover.framer-kv3ynd { text-decoration: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 24\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"rpsMdTzwe\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOJ8dLGnlY=withCSS(Component,css,\"framer-Rvco9\");export default FramerOJ8dLGnlY;FramerOJ8dLGnlY.displayName=\"Behance\";FramerOJ8dLGnlY.defaultProps={height:18,width:24};addFonts(FramerOJ8dLGnlY,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOJ8dLGnlY\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"rpsMdTzwe\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"24\",\"framerIntrinsicHeight\":\"18\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OJ8dLGnlY.map", "// Generated by Framer (4b8bcae)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={GkAEgcO7_:{hover:true}};const cycleOrder=[\"GkAEgcO7_\"];const serializationHash=\"framer-LQhdj\";const variantClassNames={GkAEgcO7_:\"framer-v-5jujj\"};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,width,...props})=>{return{...props};};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:\"GkAEgcO7_\",enabledGestures,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(Link,{...addPropertyOverrides({\"GkAEgcO7_-hover\":{href:\"https://www.linkedin.com/in/hajnalkahercz/\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-5jujj\",className,classNames)} framer-hg6vu1`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"GkAEgcO7_\",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:{opacity:1,...style},variants:{\"GkAEgcO7_-hover\":{opacity:.4}},...addPropertyOverrides({\"GkAEgcO7_-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-cxxj53\",\"data-framer-name\":\"LinkedIn\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"YIhiQFv9j\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.26306 5.8218V17.4372L9.68979 17.4245C9.62783 15.6815 9.68554 13.8263 9.68554 12.0706C9.68554 10.7095 9.70422 8.82454 11.7414 8.74202C13.8321 8.65781 13.8338 10.6032 13.8338 12.0255C13.8338 13.7931 13.8941 15.6679 13.8296 17.4228L17.3819 17.4372L17.3845 9.75174C17.4838 8.86112 16.9915 7.66513 16.6171 7.0901C16.1673 6.39853 15.3957 5.88475 14.5816 5.65082C12.8942 5.16596 11.2253 5.58447 10.0896 6.85021C9.9385 7.01864 9.8324 7.16836 9.69319 7.34359L9.6847 5.8235L6.26306 5.8218Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.342518 17.4511L0.515662 17.4545L3.7667 17.4537L3.92544 17.4511L3.93901 5.82638L0.342518 5.81956V17.4511Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.68693 0.0561794C1.06049 0.201638 0.647964 0.509573 0.380581 0.911923C-0.71017 2.55705 0.708238 4.6309 2.5519 4.25066C3.5722 4.04056 4.46178 3.00788 4.20458 1.72427C4.00171 0.711167 2.96697 -0.242394 1.68693 0.055328V0.0561794Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8296 17.4228C13.8363 17.4321 13.8515 17.4305 13.8566 17.4441L17.4158 17.4492C17.4862 16.8478 17.4515 9.88699 17.3845 9.75174L17.3819 17.4372L13.8296 17.4228Z\" fill=\"#E8EDE9\"/>\\n</svg>\\n',withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LQhdj.framer-hg6vu1, .framer-LQhdj .framer-hg6vu1 { display: block; }\",\".framer-LQhdj.framer-5jujj { cursor: pointer; height: 19px; overflow: visible; position: relative; width: 18px; }\",\".framer-LQhdj .framer-cxxj53 { flex: none; height: 18px; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-LQhdj.framer-v-5jujj.hover.framer-5jujj { text-decoration: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 19\n * @framerIntrinsicWidth 18\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"G4YXF8Tn3\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerQHouzfw7w=withCSS(Component,css,\"framer-LQhdj\");export default FramerQHouzfw7w;FramerQHouzfw7w.displayName=\"LinkedIn\";FramerQHouzfw7w.defaultProps={height:19,width:18};addFonts(FramerQHouzfw7w,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerQHouzfw7w\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"19\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"G4YXF8Tn3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"18\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./QHouzfw7w.map", "// Generated by Framer (4b8bcae)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={jPckzrEmv:{hover:true}};const cycleOrder=[\"jPckzrEmv\"];const serializationHash=\"framer-RejYb\";const variantClassNames={jPckzrEmv:\"framer-v-1syfqzc\"};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,width,...props})=>{return{...props};};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:\"jPckzrEmv\",enabledGestures,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(Link,{...addPropertyOverrides({\"jPckzrEmv-hover\":{href:\"https://dribbble.com/herczhajni\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-1syfqzc\",className,classNames)} framer-1t0u0k8`,\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"jPckzrEmv\",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:{opacity:1,...style},variants:{\"jPckzrEmv-hover\":{opacity:.4}},...addPropertyOverrides({\"jPckzrEmv-hover\":{\"data-framer-name\":undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SVG,{className:\"framer-l8uyq9\",\"data-framer-name\":\"Dribbble\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"KBTzDNjPK\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 8.727 0 C 3.91 0 0 3.91 0 8.727 C 0 13.545 3.91 17.454 8.727 17.454 C 13.536 17.454 17.454 13.545 17.454 8.727 C 17.454 3.91 13.536 0 8.727 0 Z M 14.492 4.023 C 15.566 5.332 16.16 6.968 16.176 8.661 C 15.931 8.614 13.47 8.112 10.989 8.424 C 10.933 8.301 10.885 8.169 10.829 8.036 C 10.674 7.672 10.51 7.312 10.337 6.957 C 13.081 5.84 14.331 4.231 14.492 4.023 Z M 8.727 1.287 C 10.621 1.287 12.353 1.998 13.669 3.162 C 13.536 3.35 12.409 4.856 9.759 5.85 C 8.538 3.607 7.184 1.77 6.976 1.486 C 7.55 1.352 8.138 1.285 8.727 1.287 Z M 5.557 1.988 C 6.555 3.372 7.478 4.81 8.321 6.295 C 4.837 7.223 1.76 7.203 1.43 7.203 C 1.669 6.074 2.167 5.017 2.883 4.112 C 3.598 3.208 4.514 2.481 5.557 1.988 Z M 1.268 8.736 L 1.268 8.509 C 1.591 8.518 5.206 8.566 8.926 7.449 C 9.144 7.865 9.343 8.291 9.532 8.717 C 9.437 8.746 9.333 8.774 9.239 8.802 C 5.395 10.042 3.35 13.43 3.18 13.715 C 1.949 12.349 1.268 10.575 1.268 8.736 Z M 8.727 16.186 C 7.07 16.189 5.46 15.636 4.155 14.616 C 4.288 14.341 5.803 11.425 10.005 9.958 C 10.024 9.949 10.034 9.949 10.052 9.939 C 10.761 11.767 11.294 13.66 11.643 15.589 C 10.722 15.986 9.73 16.189 8.727 16.186 Z M 12.882 14.908 C 12.807 14.454 12.409 12.277 11.434 9.598 C 13.773 9.229 15.817 9.835 16.072 9.92 C 15.913 10.927 15.548 11.889 14.999 12.747 C 14.45 13.606 13.729 14.341 12.882 14.908 Z\" fill=\"rgb(232,237,233)\"></path></svg>',svgContentId:3234090162,withExternalLayout:true})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-RejYb.framer-1t0u0k8, .framer-RejYb .framer-1t0u0k8 { display: block; }\",\".framer-RejYb.framer-1syfqzc { cursor: pointer; height: 18px; overflow: visible; position: relative; width: 18px; }\",\".framer-RejYb .framer-l8uyq9 { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-RejYb.framer-v-1syfqzc.hover.framer-1syfqzc { text-decoration: none; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 18\n * @framerIntrinsicWidth 18\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"o0D3C5xfp\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxxtPlSF84=withCSS(Component,css,\"framer-RejYb\");export default FramerxxtPlSF84;FramerxxtPlSF84.displayName=\"Dribbble\";FramerxxtPlSF84.defaultProps={height:18,width:18};addFonts(FramerxxtPlSF84,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxxtPlSF84\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"18\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"o0D3C5xfp\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"18\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xxtPlSF84.map", "// Generated by Framer (3fa6aa4)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,getFontsFromSharedStyle,Image,Link,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import BaseForm from\"https://framerusercontent.com/modules/eTOtSMvj9WFYuRuG8kAx/iSwVO4SOU3Gf12lWJt52/BaseForm.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/xzZwvenIcujOCV8lcqGb/SlySBKjSyStGq40Kqtty/aQYq5XV2J.js\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/uoLBiaXzYXQ3knmh59Ei/21bGKBaOa6SYYByre7Pw/BZS0OlZlp.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/t0piFeyf6GqqOFo22VP5/WGMnMWjPcn5eSRL3HWE4/gcGUzJ9mK.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/Bck1XdS27dpoQ4N9kj0y/lWuNsqvlmMXMo4gJlM8x/RwMbkSitF.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/NhS4txO4VYxX0eDoFHk1/XuiK0A8ChnGqfVkXlbvs/TZgiMWbrn.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/B39HZqikYYkKpGzKoUH8/uFZrMmGAi8IhmZ6aCzWN/wx3ArZqKP.js\";import*as sharedStyle6 from\"https://framerusercontent.com/modules/M3dacfUPbjaGWmHBceZt/Kyf23iOO6zsQhDv5YvMo/zv1DRiYTI.js\";import Instagram from\"https://framerusercontent.com/modules/4mh31eXuVr19QvEqOU96/eDrCdj0uVAN74DPLPRfl/BcbBkgrWV.js\";import Button2 from\"https://framerusercontent.com/modules/pqBxjhxdsoAyPOmhiRyF/xyFrgu2XVAVfVyeAod3M/gSt7k1kxp.js\";import Line from\"https://framerusercontent.com/modules/65FZbIrQGqq3JaFCmzVy/Rmv8y5BlJuIwOiY17EjM/mcladWSwd.js\";import Behance from\"https://framerusercontent.com/modules/edrq8IfMJcZ9gokKOv36/xXITiAZMassTwMyxodjv/OJ8dLGnlY.js\";import LinkedIn from\"https://framerusercontent.com/modules/CJCnOidYVkhjV4GMqDLG/fl0SHKAaLNRAFhDxLzYj/QHouzfw7w.js\";import Dribbble from\"https://framerusercontent.com/modules/AwweEeKGEUBgswVckllj/W8L3vBZj2v2VJD8EApL4/xxtPlSF84.js\";const LineFonts=getFonts(Line);const LineWithVariantAppearEffect=withVariantAppearEffect(Line);const BaseFormFonts=getFonts(BaseForm);const MotionDivWithFX=withFX(motion.div);const Button2Fonts=getFonts(Button2);const InstagramFonts=getFonts(Instagram);const BehanceFonts=getFonts(Behance);const DribbbleFonts=getFonts(Dribbble);const LinkedInFonts=getFonts(LinkedIn);const cycleOrder=[\"f_wzyYOd7\",\"l9PBldiPy\",\"crCPjaQse\",\"D9RkEwCxt\",\"yJA8wL8Gb\",\"CkD3_fQDr\",\"zpMM7sMy5\"];const serializationHash=\"framer-J123X\";const variantClassNames={CkD3_fQDr:\"framer-v-1rhjt4w\",crCPjaQse:\"framer-v-10bb2y0\",D9RkEwCxt:\"framer-v-14dm1zy\",f_wzyYOd7:\"framer-v-1i414yk\",l9PBldiPy:\"framer-v-1mcp5d2\",yJA8wL8Gb:\"framer-v-hxvjar\",zpMM7sMy5:\"framer-v-whnpbb\"};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 transition2={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const 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={\"Variant 1\":\"f_wzyYOd7\",\"Variant 2\":\"l9PBldiPy\",\"Variant 3\":\"crCPjaQse\",Mobile:\"zpMM7sMy5\",Tablet:\"CkD3_fQDr\"};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:\"f_wzyYOd7\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"f_wzyYOd7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onSubmitizu9gt=({overlay,paginationInfo})=>activeVariantCallback(async(...args)=>{overlay.show();});const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"crCPjaQse\")return false;return true;};const isDisplayed1=()=>{if([\"l9PBldiPy\",\"crCPjaQse\",\"D9RkEwCxt\",\"yJA8wL8Gb\"].includes(baseVariant))return false;return true;};const router=useRouter();const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed2=()=>{if([\"l9PBldiPy\",\"crCPjaQse\",\"D9RkEwCxt\",\"yJA8wL8Gb\"].includes(baseVariant))return true;return false;};const isDisplayed3=()=>{if([\"yJA8wL8Gb\",\"zpMM7sMy5\"].includes(baseVariant))return false;return true;};const isDisplayed4=()=>{if(baseVariant===\"yJA8wL8Gb\")return true;return false;};const isDisplayed5=()=>{if(baseVariant===\"zpMM7sMy5\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.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,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1i414yk\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"f_wzyYOd7\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(30, 30, 33)\",...style},...addPropertyOverrides({CkD3_fQDr:{\"data-framer-name\":\"Tablet\"},crCPjaQse:{\"data-framer-name\":\"Variant 3\"},D9RkEwCxt:{\"data-framer-name\":\"Tablet\"},l9PBldiPy:{\"data-framer-name\":\"Variant 2\"},yJA8wL8Gb:{\"data-framer-name\":\"Mobile\"},zpMM7sMy5:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-19xvql3\",\"data-framer-name\":\"Frame 12053\",layoutDependency:layoutDependency,layoutId:\"N7K8PpZqj\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1tl4lse\",\"data-styles-preset\":\"wx3ArZqKP\",children:\"Let\u2019s work together.\"})}),className:\"framer-1e4hjz7\",\"data-framer-name\":\"Let\u2019s work together.\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"N4vXAFMGl\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yJA8wL8Gb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1a99pr7\",\"data-styles-preset\":\"RwMbkSitF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let\u2019s work together.\"})})},zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h1,{className:\"framer-styles-preset-1a99pr7\",\"data-styles-preset\":\"RwMbkSitF\",style:{\"--framer-text-alignment\":\"center\"},children:\"Let\u2019s work together.\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10gqnwz\",\"data-framer-name\":\"Frame 12100\",layoutDependency:layoutDependency,layoutId:\"zJ5pzDMJY\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1fehz48\",\"data-framer-name\":\"Frame 12051\",layoutDependency:layoutDependency,layoutId:\"ZYNlnCAws\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 192px)`,...addPropertyOverrides({CkD3_fQDr:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px)`},D9RkEwCxt:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px)`},yJA8wL8Gb:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`},zpMM7sMy5:{width:`calc(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-170wef5-container\",layoutDependency:layoutDependency,layoutId:\"P4MAJDcn2-container\",children:/*#__PURE__*/_jsx(LineWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"QDNe2HMfu\",__framer__threshold:1,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"ngYj35VUs\",height:\"100%\",id:\"P4MAJDcn2\",layoutId:\"P4MAJDcn2\",style:{height:\"100%\",width:\"100%\"},variant:\"QDNe2HMfu\",width:\"100%\"})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tvvk9d\",layoutDependency:layoutDependency,layoutId:\"JBrbomiDD\",children:[isDisplayed1()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-wivney\",\"data-framer-name\":\"Content\",layoutDependency:layoutDependency,layoutId:\"XyU53mXi1\",children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1kc91gj-container\",id:`${layoutId}-1kc91gj`,layoutDependency:layoutDependency,layoutId:\"afWu0ntAm-container\",ref:ref2,children:[/*#__PURE__*/_jsx(BaseForm,{button:{label:\"Send enquiry\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"afWu0ntAm\",inputs:[{gridColumn:\"2\",label:\"Your name\",max:\"\",min:\"\",name:\"first_name\",options:[],placeholder:\"Enter your full name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Your email address\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"email@example.com\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"Your company (optional)\",max:\"\",min:\"\",name:\"company\",options:[{text:\"Design\",value:\"Design\"},{text:\"Development\",value:\"Development\"}],placeholder:\"Company name\",required:false,step:0,type:\"text\",value:\"\"},{gridColumn:\"1\",label:\"Website (optional)\",max:\"\",min:\"\",name:\"companywebsite\",options:[],placeholder:\"Website address\",required:false,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"What services are you interested in?\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"\",required:true,step:0,type:\"hidden\",value:\"\"},{gridColumn:\"1\",label:\"Branding design (logo+visual identity)\",max:\"\",min:\"\",name:\"branding\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Website design\",max:\"\",min:\"\",name:\"website\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Social media graphics\",max:\"\",min:\"\",name:\"socialmedia\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"UX/UI design\",max:\"\",min:\"\",name:\"uxui\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Packaging / Print design\",max:\"\",min:\"\",name:\"print\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Product design\",max:\"\",min:\"\",name:\"product\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Other graphic design\",max:\"\",min:\"\",name:\"othergraphic\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"2\",label:\"Your message\",max:\"\",min:\"\",name:\"message\",options:[],placeholder:\"Hey Hajni, can you help me with...\",required:true,step:0,type:\"textarea\",value:\"\"},{gridColumn:\"2\",label:\"Estimated budget\",max:\"\",min:\"\",name:\"budget\",options:[{text:\"Up to \\xa31k\",value:\"Up to \\xa31k\"},{text:\"\\xa31-5k\",value:\"\\xa31-5k\"},{text:\"\\xa35-10k\",value:\"\\xa35-10k\"},{text:\"\\xa310k+\",value:\"\\xa310k+\"}],placeholder:\" \",required:true,step:0,type:\"select\",value:\"\"}],layoutId:\"afWu0ntAm\",link:resolvedLinks[0],method:\"post\",onSubmit:onSubmitizu9gt({overlay}),redirectAs:\"overlay\",style:{maxWidth:\"100%\",width:\"100%\"},styles:{button:{align:\"flex-start\",borderRadius:96,color:\"rgb(0, 0, 0)\",fill:\"rgb(255, 255, 255)\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:32,paddingBottom:16,paddingLeft:32,paddingPerSide:true,paddingRight:32,paddingTop:16},form:{columnGap:24,columns:\"2\",fill:\"rgba(255, 255, 255, 0)\",rowGap:24},input:{borderObject:{borderColor:\"rgba(255, 255, 255, 0.5)\",borderWidth:1},borderRadius:4,color:\"rgb(133, 133, 133)\",fill:\"rgba(235, 235, 235, 0)\",focusObject:{focusColor:\"rgb(255, 255, 255)\",focusWidthFrom:0,focusWidthTo:2},font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"0em\",lineHeight:\"1em\"},padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16,placeholderColor:\"rgba(255, 255, 255, 0.4)\"},label:{borderRadius:8,color:\"rgb(255, 255, 255)\",fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1.6em\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:0}},url:\"https://submit-form.com/Kbzs5PWj1\",width:\"100%\",...addPropertyOverrides({CkD3_fQDr:{link:resolvedLinks[1]},zpMM7sMy5:{inputs:[{gridColumn:\"2\",label:\"Your name\",max:\"\",min:\"\",name:\"first_name\",options:[],placeholder:\"Enter your full name\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Your email address\",max:\"\",min:\"\",name:\"email\",options:[],placeholder:\"email@example.com\",required:true,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Your company (optional)\",max:\"\",min:\"\",name:\"company\",options:[{text:\"Design\",value:\"Design\"},{text:\"Development\",value:\"Development\"}],placeholder:\"Company name\",required:false,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"Website (optional)\",max:\"\",min:\"\",name:\"companywebsite\",options:[],placeholder:\"Website address\",required:false,step:0,type:\"text\",value:\"\"},{gridColumn:\"2\",label:\"What services are you interested in?\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"\",required:true,step:0,type:\"hidden\",value:\"\"},{gridColumn:\"1\",label:\"Branding design (logo+visual identity)\",max:\"\",min:\"\",name:\"branding\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Website design\",max:\"\",min:\"\",name:\"website\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Social media graphics\",max:\"\",min:\"\",name:\"socialmedia\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"UX/UI design\",max:\"\",min:\"\",name:\"uxui\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Packaging / Print design\",max:\"\",min:\"\",name:\"print\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Product design\",max:\"\",min:\"\",name:\"product\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"1\",label:\"Other graphic design\",max:\"\",min:\"\",name:\"othergraphic\",options:[],placeholder:\"\",required:false,step:0,type:\"checkbox\",value:\"\"},{gridColumn:\"2\",label:\"Your message\",max:\"\",min:\"\",name:\"message\",options:[],placeholder:\"Hey Hajni, can you help me with...\",required:true,step:0,type:\"textarea\",value:\"\"},{gridColumn:\"2\",label:\"Estimated budget\",max:\"\",min:\"\",name:\"budget\",options:[{text:\"Up to \\xa31k\",value:\"Up to \\xa31k\"},{text:\"\\xa31-5k\",value:\"\\xa31-5k\"},{text:\"\\xa35-10k\",value:\"\\xa35-10k\"},{text:\"\\xa310k+\",value:\"\\xa310k+\"}],placeholder:\" \",required:true,step:0,type:\"select\",value:\"\"}],link:resolvedLinks[2]}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref2,className:cx(serializationHash,classNames,...sharedStyleClassNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1kc91gj`,offsetX:0,offsetY:24,onDismiss:overlay.hide,placement:\"bottom\",portalSelector:\"#overlay\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(MotionDivWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-9n50om\",exit:animation,initial:animation2,layoutDependency:layoutDependency,layoutId:\"WuLNIBBwt\",ref:ref3,role:\"dialog\",style:{backgroundColor:\"rgba(159, 255, 125, 0.1)\",borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4,boxShadow:\"0px 10px 20px 0px rgba(0,0,0,0.05)\"},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://emojipedia.org/raising-hands\",openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{children:\"\uD83D\uDE4C\"})}),\" Thank you, I have received your message and will be in touch within 24 hours.\"]})}),className:\"framer-1rvoiqr\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"OGe5ebFg0\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},verticalAlignment:\"top\",withExternalLayout:true})})})})]})})})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:['By pressing \"Send enquiry\", you agree to our ',/*#__PURE__*/_jsx(Link,{href:{webPageId:\"uVHXk1oFA\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-o11cis\",\"data-styles-preset\":\"TZgiMWbrn\",children:\"Privacy Policy\"})}),\".\"]})}),className:\"framer-ezlrs\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"uKSDnqiIZ\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\"},verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tc9ya8\",layoutDependency:layoutDependency,layoutId:\"NsXHGaB7o\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`calc((min(max((${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 192px) * 0.2189, 240px), 360px) - 48px) * 0.7799)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"},className:\"framer-1fdwmxu\",\"data-framer-name\":\"Ellipse 31\",layoutDependency:layoutDependency,layoutId:\"V5Uphg05U\",style:{borderBottomLeftRadius:\"100%\",borderBottomRightRadius:\"100%\",borderTopLeftRadius:\"100%\",borderTopRightRadius:\"100%\"},...addPropertyOverrides({CkD3_fQDr:{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`calc(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px, 240px) * 0.22)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"}},crCPjaQse:{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`calc((max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 192px, 1px) - 48px) * 0.2004)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"}},D9RkEwCxt:{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 64px, 1px) * 0.4, 320px)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"}},l9PBldiPy:{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 192px, 1px) / 5.04, 320px)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"}},yJA8wL8Gb:{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 1px), 240px)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"}},zpMM7sMy5:{background:{alt:\"Hajni Hercz graphic designer Manchester United Kingdom\",fit:\"fill\",pixelHeight:831,pixelWidth:1440,positionX:\"43.7%\",positionY:\"21.3%\",sizes:`min(max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 240px) * 0.5881, 240px)`,src:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg\",srcSet:\"https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg?scale-down-to=1024 1024w,https://framerusercontent.com/images/8UBEknQEiUcEfiWatwKEMrOwHc4.jpg 1440w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-t2t4lg\",layoutDependency:layoutDependency,layoutId:\"FMQ2hcWST\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-8z9kgu\",layoutDependency:layoutDependency,layoutId:\"Zf8rtDcle\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":SqifYbJOW\",webPageId:\"p7Hd1mnmY\"},implicitPathVariables:undefined},{href:{hash:\":SqifYbJOW\",webPageId:\"p7Hd1mnmY\"},implicitPathVariables:undefined},{href:{hash:\":SqifYbJOW\",webPageId:\"p7Hd1mnmY\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({D9RkEwCxt:{width:\"143px\"},l9PBldiPy:{width:\"143px\"},yJA8wL8Gb:{width:`max(${(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\"} - 32px, 1px)`}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cjj963-container\",layoutDependency:layoutDependency,layoutId:\"U6apMxdp_-container\",style:{opacity:1},variants:{crCPjaQse:{opacity:0}},children:/*#__PURE__*/_jsx(Button2,{height:\"100%\",id:\"U6apMxdp_\",layoutId:\"U6apMxdp_\",style:{height:\"100%\",width:\"100%\"},t3M93LhvR:\"Enquiry form\",variant:\"c_nrpSvd2\",width:\"100%\",...addPropertyOverrides({D9RkEwCxt:{Gv71RD66l:resolvedLinks1[1]},l9PBldiPy:{Gv71RD66l:resolvedLinks1[0]},yJA8wL8Gb:{Gv71RD66l:resolvedLinks1[2],variant:\"dUcuOdKjN\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vikpem\",\"data-framer-name\":\"Contact\",layoutDependency:layoutDependency,layoutId:\"s2RDeTAcy\",style:{opacity:1},variants:{crCPjaQse:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"Contact\"})}),className:\"framer-c6o747\",\"data-framer-name\":\"SOCIALS\",fonts:[\"GF;DM Sans-300\"],layoutDependency:layoutDependency,layoutId:\"aywYmfHCh\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"Contact\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uigvmb\",layoutDependency:layoutDependency,layoutId:\"h4oHGCNVx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-60m835\",\"data-styles-preset\":\"BZS0OlZlp\",children:/*#__PURE__*/_jsx(Link,{href:\"mailto:herczhajni@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"herczhajni@gmail.com\"})})})}),className:\"framer-1ur3rqs\",\"data-framer-name\":\"SOCIALS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RjSDPMLgn\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yJA8wL8Gb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-60m835\",\"data-styles-preset\":\"BZS0OlZlp\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:herczhajni@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"herczhajni@gmail.com\"})})})})},zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-60m835\",\"data-styles-preset\":\"BZS0OlZlp\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:herczhajni@gmail.com\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"herczhajni@gmail.com\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+447549815213\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ca1lxr\",\"data-styles-preset\":\"zv1DRiYTI\",children:\"+44 75 498 15 213\"})})})}),className:\"framer-1la9b3i\",\"data-framer-name\":\"SOCIALS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"eSrPZ1nbp\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.6)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({yJA8wL8Gb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+447549815213\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ca1lxr\",\"data-styles-preset\":\"zv1DRiYTI\",children:\"+44 75 498 15 213\"})})})})},zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.6))\"},children:/*#__PURE__*/_jsx(Link,{href:\"tel:+447549815213\",openInNewTab:true,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1ca1lxr\",\"data-styles-preset\":\"zv1DRiYTI\",children:\"+44 75 498 15 213\"})})})})}},baseVariant,gestureVariant)})]})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v52jcf\",\"data-framer-name\":\"Socials\",layoutDependency:layoutDependency,layoutId:\"NYOu5EmOy\",style:{opacity:1},variants:{crCPjaQse:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOCIALS\"})}),className:\"framer-n9jvn4\",\"data-framer-name\":\"SOCIALS\",fonts:[\"GF;DM Sans-300\"],layoutDependency:layoutDependency,layoutId:\"qk_Cj21fx\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"SOCIALS\"})})}},baseVariant,gestureVariant)}),isDisplayed3()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-onqgpc\",layoutDependency:layoutDependency,layoutId:\"KzTXxR_jW\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"20px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fd5ax5-container\",layoutDependency:layoutDependency,layoutId:\"rmr7niat1-container\",children:/*#__PURE__*/_jsx(Instagram,{height:\"100%\",id:\"rmr7niat1\",layoutId:\"rmr7niat1\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"24px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dbuy8r-container\",layoutDependency:layoutDependency,layoutId:\"pEkoy8KuJ-container\",children:/*#__PURE__*/_jsx(Behance,{height:\"100%\",id:\"pEkoy8KuJ\",layoutId:\"pEkoy8KuJ\",style:{width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-tqh1jj-container\",layoutDependency:layoutDependency,layoutId:\"rluEF0T4A-container\",children:/*#__PURE__*/_jsx(Dribbble,{height:\"100%\",id:\"rluEF0T4A\",layoutId:\"rluEF0T4A\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{width:\"18px\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-11wxdi-container\",layoutDependency:layoutDependency,layoutId:\"vIxHziN2E-container\",children:/*#__PURE__*/_jsx(LinkedIn,{height:\"100%\",id:\"vIxHziN2E\",layoutId:\"vIxHziN2E\",style:{width:\"100%\"},width:\"100%\"})})})]}),isDisplayed4()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1tfxw8b\",\"data-framer-name\":\"Social-no-new-tab\",layoutDependency:layoutDependency,layoutId:\"BATCm28ia\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xa85mt\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"zLhDSNElI\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/brandventure_design/\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-fpgx63 framer-76vrtc\",\"data-framer-name\":\"Instagram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"CyJnXEb6M\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.68687 1.29293C2.81245 1.29293 1.29293 2.81245 1.29293 4.68687V12.7677C1.29293 14.6421 2.81245 16.1616 4.68687 16.1616H12.7677C14.6421 16.1616 16.1616 14.6421 16.1616 12.7677V4.68687C16.1616 2.81245 14.6421 1.29293 12.7677 1.29293H4.68687ZM0 4.68687C0 2.09838 2.09838 0 4.68687 0H12.7677C15.3562 0 17.4545 2.09838 17.4545 4.68687V12.7677C17.4545 15.3562 15.3562 17.4545 12.7677 17.4545H4.68687C2.09838 17.4545 0 15.3562 0 12.7677V4.68687ZM12.6736 4.13471C12.6736 3.77767 12.963 3.48824 13.3201 3.48824H13.3276C13.6847 3.48824 13.9741 3.77767 13.9741 4.13471C13.9741 4.49174 13.6847 4.78117 13.3276 4.78117H13.3201C12.963 4.78117 12.6736 4.49174 12.6736 4.13471ZM9.15879 6.02669C8.59835 5.94359 8.02598 6.03931 7.52309 6.30026C7.02019 6.5612 6.61238 6.97407 6.35766 7.48014C6.10294 7.98622 6.01428 8.55972 6.10429 9.11909C6.1943 9.67846 6.4584 10.1952 6.85902 10.5958C7.25964 10.9964 7.77638 11.2605 8.33575 11.3506C8.89512 11.4406 9.46862 11.3519 9.9747 11.0972C10.4808 10.8425 10.8936 10.4346 11.1546 9.93175C11.4155 9.42886 11.5113 8.85649 11.4281 8.29605C11.3434 7.72439 11.077 7.19514 10.6683 6.78649C10.2597 6.37785 9.73045 6.11146 9.15879 6.02669ZM6.9276 5.15262C7.67189 4.76643 8.519 4.62475 9.34844 4.74775C10.1945 4.87321 10.9778 5.26746 11.5826 5.87226C12.1874 6.47706 12.5816 7.26034 12.7071 8.1064C12.8301 8.93585 12.6884 9.78295 12.3022 10.5272C11.916 11.2715 11.305 11.8751 10.556 12.2521C9.807 12.6291 8.95821 12.7603 8.13034 12.6271C7.30248 12.4938 6.5377 12.103 5.94478 11.5101C5.35186 10.9171 4.961 10.1524 4.82778 9.3245C4.69457 8.49664 4.82579 7.64784 5.20277 6.89885C5.57976 6.14986 6.18332 5.53882 6.9276 5.15262Z\" fill=\"#E8EDE9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-hywvli\",\"data-framer-name\":\"Behance\",layoutDependency:layoutDependency,layoutId:\"xt5TBonQe\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/hajnihercz\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-fbnnov framer-76vrtc\",\"data-framer-name\":\"Behance\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"ynw9DzC1d\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 15\"><path d=\"M 6.824 0 C 7.5 0 8.126 0.053 8.698 0.21 C 9.271 0.315 9.74 0.525 10.157 0.786 C 10.574 1.048 10.886 1.416 11.094 1.887 C 11.303 2.359 11.407 2.937 11.407 3.565 C 11.407 4.299 11.251 4.928 10.886 5.399 C 10.574 5.872 10.053 6.291 9.428 6.605 C 10.313 6.868 10.99 7.34 11.407 7.968 C 11.824 8.598 12.084 9.384 12.084 10.275 C 12.084 11.01 11.927 11.638 11.667 12.163 C 11.407 12.687 10.99 13.159 10.521 13.473 C 10.011 13.811 9.448 14.059 8.855 14.207 C 8.23 14.365 7.605 14.47 6.98 14.47 L 0 14.47 L 0 0 Z M 6.406 5.871 C 6.979 5.871 7.449 5.714 7.813 5.452 C 8.177 5.191 8.334 4.718 8.334 4.141 C 8.334 3.827 8.281 3.512 8.177 3.303 C 8.073 3.093 7.917 2.935 7.709 2.779 C 7.497 2.66 7.268 2.571 7.031 2.517 C 6.771 2.464 6.511 2.464 6.198 2.464 L 3.177 2.464 L 3.177 5.872 Z M 6.563 12.058 C 6.876 12.058 7.188 12.005 7.449 11.953 C 7.709 11.9 7.97 11.796 8.177 11.638 C 8.389 11.485 8.567 11.288 8.698 11.062 C 8.802 10.8 8.907 10.485 8.907 10.118 C 8.907 9.384 8.698 8.859 8.282 8.493 C 7.865 8.178 7.292 8.021 6.615 8.021 L 3.177 8.021 L 3.177 12.059 Z M 16.616 12.005 C 17.032 12.424 17.657 12.634 18.491 12.634 C 19.063 12.634 19.585 12.477 20.001 12.216 C 20.418 11.901 20.679 11.586 20.782 11.271 L 23.335 11.271 C 22.918 12.529 22.293 13.421 21.46 13.997 C 20.626 14.522 19.636 14.836 18.439 14.836 C 17.672 14.839 16.912 14.696 16.199 14.417 C 15.557 14.176 14.984 13.78 14.532 13.264 C 14.048 12.781 13.69 12.187 13.491 11.533 C 13.23 10.852 13.125 10.118 13.125 9.279 C 13.125 8.493 13.23 7.759 13.491 7.077 C 13.741 6.42 14.112 5.815 14.585 5.294 C 15.053 4.823 15.626 4.404 16.251 4.141 C 16.946 3.862 17.689 3.719 18.439 3.722 C 19.324 3.722 20.106 3.88 20.782 4.246 C 21.46 4.613 21.98 5.033 22.396 5.662 C 22.814 6.239 23.127 6.92 23.335 7.654 C 23.439 8.388 23.49 9.122 23.439 9.96 L 15.886 9.96 C 15.886 10.8 16.199 11.586 16.616 12.006 M 19.897 6.501 C 19.533 6.135 18.96 5.925 18.282 5.925 C 17.884 5.919 17.491 6.009 17.136 6.187 C 16.824 6.345 16.616 6.554 16.407 6.764 C 16.216 6.967 16.089 7.222 16.043 7.498 C 15.99 7.76 15.938 7.969 15.938 8.179 L 20.626 8.179 C 20.522 7.393 20.261 6.869 19.897 6.501 Z M 15.313 0.996 L 21.147 0.996 L 21.147 2.412 L 15.314 2.412 Z\" fill=\"rgb(232,237,233)\"></path></svg>',svgContentId:12169824532,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-v28eb4\",\"data-framer-name\":\"Dribbble\",layoutDependency:layoutDependency,layoutId:\"O_qGWY77b\",children:/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/herczhajni\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1hrrb1g framer-76vrtc\",\"data-framer-name\":\"Dribbble\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"WGAospybb\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 8.727 0 C 3.91 0 0 3.91 0 8.727 C 0 13.545 3.91 17.454 8.727 17.454 C 13.536 17.454 17.454 13.545 17.454 8.727 C 17.454 3.91 13.536 0 8.727 0 Z M 14.492 4.023 C 15.566 5.332 16.16 6.968 16.176 8.661 C 15.931 8.614 13.47 8.112 10.989 8.424 C 10.933 8.301 10.885 8.169 10.829 8.036 C 10.674 7.672 10.51 7.312 10.337 6.957 C 13.081 5.84 14.331 4.231 14.492 4.023 Z M 8.727 1.287 C 10.621 1.287 12.353 1.998 13.669 3.162 C 13.536 3.35 12.409 4.856 9.759 5.85 C 8.538 3.607 7.184 1.77 6.976 1.486 C 7.55 1.352 8.138 1.285 8.727 1.287 Z M 5.557 1.988 C 6.555 3.372 7.478 4.81 8.321 6.295 C 4.837 7.223 1.76 7.203 1.43 7.203 C 1.669 6.074 2.167 5.017 2.883 4.112 C 3.598 3.208 4.514 2.481 5.557 1.988 Z M 1.268 8.736 L 1.268 8.509 C 1.591 8.518 5.206 8.566 8.926 7.449 C 9.144 7.865 9.343 8.291 9.532 8.717 C 9.437 8.746 9.333 8.774 9.239 8.802 C 5.395 10.042 3.35 13.43 3.18 13.715 C 1.949 12.349 1.268 10.575 1.268 8.736 Z M 8.727 16.186 C 7.07 16.189 5.46 15.636 4.155 14.616 C 4.288 14.341 5.803 11.425 10.005 9.958 C 10.024 9.949 10.034 9.949 10.052 9.939 C 10.761 11.767 11.294 13.66 11.643 15.589 C 10.722 15.986 9.73 16.189 8.727 16.186 Z M 12.882 14.908 C 12.807 14.454 12.409 12.277 11.434 9.598 C 13.773 9.229 15.817 9.835 16.072 9.92 C 15.913 10.927 15.548 11.889 14.999 12.747 C 14.45 13.606 13.729 14.341 12.882 14.908 Z\" fill=\"rgb(232,237,233)\"></path></svg>',svgContentId:11298919450,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d5iq0k\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"CS1MmNGME\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/hajnalkahercz/\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-b0krqt framer-76vrtc\",\"data-framer-name\":\"LinkedIn\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"eDXnwfZqG\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.26306 5.8218V17.4372L9.68979 17.4245C9.62783 15.6815 9.68554 13.8263 9.68554 12.0706C9.68554 10.7095 9.70422 8.82454 11.7414 8.74202C13.8321 8.65781 13.8338 10.6032 13.8338 12.0255C13.8338 13.7931 13.8941 15.6679 13.8296 17.4228L17.3819 17.4372L17.3845 9.75174C17.4838 8.86112 16.9915 7.66513 16.6171 7.0901C16.1673 6.39853 15.3957 5.88475 14.5816 5.65082C12.8942 5.16596 11.2253 5.58447 10.0896 6.85021C9.9385 7.01864 9.8324 7.16836 9.69319 7.34359L9.6847 5.8235L6.26306 5.8218Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.342518 17.4511L0.515662 17.4545L3.7667 17.4537L3.92544 17.4511L3.93901 5.82638L0.342518 5.81956V17.4511Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.68693 0.0561794C1.06049 0.201638 0.647964 0.509573 0.380581 0.911923C-0.71017 2.55705 0.708238 4.6309 2.5519 4.25066C3.5722 4.04056 4.46178 3.00788 4.20458 1.72427C4.00171 0.711167 2.96697 -0.242394 1.68693 0.055328V0.0561794Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8296 17.4228C13.8363 17.4321 13.8515 17.4305 13.8566 17.4441L17.4158 17.4492C17.4862 16.8478 17.4515 9.88699 17.3845 9.75174L17.3819 17.4372L13.8296 17.4228Z\" fill=\"#E8EDE9\"/>\\n</svg>\\n',withExternalLayout:true})})})]}),isDisplayed5()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-m5qojh\",\"data-framer-name\":\"Social-no-new-tab\",layoutDependency:layoutDependency,layoutId:\"XDIeFYZQU\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1vr9dyj\",\"data-framer-name\":\"Instagram\",layoutDependency:layoutDependency,layoutId:\"P0Eg7rUnf\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.instagram.com/brandventure_design/\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1imuw7j framer-76vrtc\",\"data-framer-name\":\"Instagram\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:20,layoutDependency:layoutDependency,layoutId:\"CjDzTAFlf\",svg:'<svg width=\"20\" height=\"20\" viewBox=\"-1 -1 20 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M4.68687 1.29293C2.81245 1.29293 1.29293 2.81245 1.29293 4.68687V12.7677C1.29293 14.6421 2.81245 16.1616 4.68687 16.1616H12.7677C14.6421 16.1616 16.1616 14.6421 16.1616 12.7677V4.68687C16.1616 2.81245 14.6421 1.29293 12.7677 1.29293H4.68687ZM0 4.68687C0 2.09838 2.09838 0 4.68687 0H12.7677C15.3562 0 17.4545 2.09838 17.4545 4.68687V12.7677C17.4545 15.3562 15.3562 17.4545 12.7677 17.4545H4.68687C2.09838 17.4545 0 15.3562 0 12.7677V4.68687ZM12.6736 4.13471C12.6736 3.77767 12.963 3.48824 13.3201 3.48824H13.3276C13.6847 3.48824 13.9741 3.77767 13.9741 4.13471C13.9741 4.49174 13.6847 4.78117 13.3276 4.78117H13.3201C12.963 4.78117 12.6736 4.49174 12.6736 4.13471ZM9.15879 6.02669C8.59835 5.94359 8.02598 6.03931 7.52309 6.30026C7.02019 6.5612 6.61238 6.97407 6.35766 7.48014C6.10294 7.98622 6.01428 8.55972 6.10429 9.11909C6.1943 9.67846 6.4584 10.1952 6.85902 10.5958C7.25964 10.9964 7.77638 11.2605 8.33575 11.3506C8.89512 11.4406 9.46862 11.3519 9.9747 11.0972C10.4808 10.8425 10.8936 10.4346 11.1546 9.93175C11.4155 9.42886 11.5113 8.85649 11.4281 8.29605C11.3434 7.72439 11.077 7.19514 10.6683 6.78649C10.2597 6.37785 9.73045 6.11146 9.15879 6.02669ZM6.9276 5.15262C7.67189 4.76643 8.519 4.62475 9.34844 4.74775C10.1945 4.87321 10.9778 5.26746 11.5826 5.87226C12.1874 6.47706 12.5816 7.26034 12.7071 8.1064C12.8301 8.93585 12.6884 9.78295 12.3022 10.5272C11.916 11.2715 11.305 11.8751 10.556 12.2521C9.807 12.6291 8.95821 12.7603 8.13034 12.6271C7.30248 12.4938 6.5377 12.103 5.94478 11.5101C5.35186 10.9171 4.961 10.1524 4.82778 9.3245C4.69457 8.49664 4.82579 7.64784 5.20277 6.89885C5.57976 6.14986 6.18332 5.53882 6.9276 5.15262Z\" fill=\"#E8EDE9\"/>\\n</svg>\\n',withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-s4m40x\",\"data-framer-name\":\"Behance\",layoutDependency:layoutDependency,layoutId:\"ZLt6VjPYK\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.behance.net/hajnihercz\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-o82c3 framer-76vrtc\",\"data-framer-name\":\"Behance\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"YTFcdeiSh\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 15\"><path d=\"M 6.824 0 C 7.5 0 8.126 0.053 8.698 0.21 C 9.271 0.315 9.74 0.525 10.157 0.786 C 10.574 1.048 10.886 1.416 11.094 1.887 C 11.303 2.359 11.407 2.937 11.407 3.565 C 11.407 4.299 11.251 4.928 10.886 5.399 C 10.574 5.872 10.053 6.291 9.428 6.605 C 10.313 6.868 10.99 7.34 11.407 7.968 C 11.824 8.598 12.084 9.384 12.084 10.275 C 12.084 11.01 11.927 11.638 11.667 12.163 C 11.407 12.687 10.99 13.159 10.521 13.473 C 10.011 13.811 9.448 14.059 8.855 14.207 C 8.23 14.365 7.605 14.47 6.98 14.47 L 0 14.47 L 0 0 Z M 6.406 5.871 C 6.979 5.871 7.449 5.714 7.813 5.452 C 8.177 5.191 8.334 4.718 8.334 4.141 C 8.334 3.827 8.281 3.512 8.177 3.303 C 8.073 3.093 7.917 2.935 7.709 2.779 C 7.497 2.66 7.268 2.571 7.031 2.517 C 6.771 2.464 6.511 2.464 6.198 2.464 L 3.177 2.464 L 3.177 5.872 Z M 6.563 12.058 C 6.876 12.058 7.188 12.005 7.449 11.953 C 7.709 11.9 7.97 11.796 8.177 11.638 C 8.389 11.485 8.567 11.288 8.698 11.062 C 8.802 10.8 8.907 10.485 8.907 10.118 C 8.907 9.384 8.698 8.859 8.282 8.493 C 7.865 8.178 7.292 8.021 6.615 8.021 L 3.177 8.021 L 3.177 12.059 Z M 16.616 12.005 C 17.032 12.424 17.657 12.634 18.491 12.634 C 19.063 12.634 19.585 12.477 20.001 12.216 C 20.418 11.901 20.679 11.586 20.782 11.271 L 23.335 11.271 C 22.918 12.529 22.293 13.421 21.46 13.997 C 20.626 14.522 19.636 14.836 18.439 14.836 C 17.672 14.839 16.912 14.696 16.199 14.417 C 15.557 14.176 14.984 13.78 14.532 13.264 C 14.048 12.781 13.69 12.187 13.491 11.533 C 13.23 10.852 13.125 10.118 13.125 9.279 C 13.125 8.493 13.23 7.759 13.491 7.077 C 13.741 6.42 14.112 5.815 14.585 5.294 C 15.053 4.823 15.626 4.404 16.251 4.141 C 16.946 3.862 17.689 3.719 18.439 3.722 C 19.324 3.722 20.106 3.88 20.782 4.246 C 21.46 4.613 21.98 5.033 22.396 5.662 C 22.814 6.239 23.127 6.92 23.335 7.654 C 23.439 8.388 23.49 9.122 23.439 9.96 L 15.886 9.96 C 15.886 10.8 16.199 11.586 16.616 12.006 M 19.897 6.501 C 19.533 6.135 18.96 5.925 18.282 5.925 C 17.884 5.919 17.491 6.009 17.136 6.187 C 16.824 6.345 16.616 6.554 16.407 6.764 C 16.216 6.967 16.089 7.222 16.043 7.498 C 15.99 7.76 15.938 7.969 15.938 8.179 L 20.626 8.179 C 20.522 7.393 20.261 6.869 19.897 6.501 Z M 15.313 0.996 L 21.147 0.996 L 21.147 2.412 L 15.314 2.412 Z\" fill=\"rgb(232,237,233)\"></path></svg>',svgContentId:12169824532,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rpwa12\",\"data-framer-name\":\"Dribbble\",layoutDependency:layoutDependency,layoutId:\"FaUcSI0BY\",children:/*#__PURE__*/_jsx(Link,{href:\"https://dribbble.com/herczhajni\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-1uk6oij framer-76vrtc\",\"data-framer-name\":\"Dribbble\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"Nv3kHPHAQ\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 18 18\"><path d=\"M 8.727 0 C 3.91 0 0 3.91 0 8.727 C 0 13.545 3.91 17.454 8.727 17.454 C 13.536 17.454 17.454 13.545 17.454 8.727 C 17.454 3.91 13.536 0 8.727 0 Z M 14.492 4.023 C 15.566 5.332 16.16 6.968 16.176 8.661 C 15.931 8.614 13.47 8.112 10.989 8.424 C 10.933 8.301 10.885 8.169 10.829 8.036 C 10.674 7.672 10.51 7.312 10.337 6.957 C 13.081 5.84 14.331 4.231 14.492 4.023 Z M 8.727 1.287 C 10.621 1.287 12.353 1.998 13.669 3.162 C 13.536 3.35 12.409 4.856 9.759 5.85 C 8.538 3.607 7.184 1.77 6.976 1.486 C 7.55 1.352 8.138 1.285 8.727 1.287 Z M 5.557 1.988 C 6.555 3.372 7.478 4.81 8.321 6.295 C 4.837 7.223 1.76 7.203 1.43 7.203 C 1.669 6.074 2.167 5.017 2.883 4.112 C 3.598 3.208 4.514 2.481 5.557 1.988 Z M 1.268 8.736 L 1.268 8.509 C 1.591 8.518 5.206 8.566 8.926 7.449 C 9.144 7.865 9.343 8.291 9.532 8.717 C 9.437 8.746 9.333 8.774 9.239 8.802 C 5.395 10.042 3.35 13.43 3.18 13.715 C 1.949 12.349 1.268 10.575 1.268 8.736 Z M 8.727 16.186 C 7.07 16.189 5.46 15.636 4.155 14.616 C 4.288 14.341 5.803 11.425 10.005 9.958 C 10.024 9.949 10.034 9.949 10.052 9.939 C 10.761 11.767 11.294 13.66 11.643 15.589 C 10.722 15.986 9.73 16.189 8.727 16.186 Z M 12.882 14.908 C 12.807 14.454 12.409 12.277 11.434 9.598 C 13.773 9.229 15.817 9.835 16.072 9.92 C 15.913 10.927 15.548 11.889 14.999 12.747 C 14.45 13.606 13.729 14.341 12.882 14.908 Z\" fill=\"rgb(232,237,233)\"></path></svg>',svgContentId:11298919450,withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-o1vtuu\",\"data-framer-name\":\"LinkedIn\",layoutDependency:layoutDependency,layoutId:\"GjQ7z7_fR\",children:/*#__PURE__*/_jsx(Link,{href:\"https://www.linkedin.com/in/hajnalkahercz/\",openInNewTab:false,children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-zimngu framer-76vrtc\",\"data-framer-name\":\"LinkedIn\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:18,intrinsicWidth:18,layoutDependency:layoutDependency,layoutId:\"PhQWPjZBx\",svg:'<svg width=\"18\" height=\"18\" viewBox=\"0 0 18 18\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M6.26306 5.8218V17.4372L9.68979 17.4245C9.62783 15.6815 9.68554 13.8263 9.68554 12.0706C9.68554 10.7095 9.70422 8.82454 11.7414 8.74202C13.8321 8.65781 13.8338 10.6032 13.8338 12.0255C13.8338 13.7931 13.8941 15.6679 13.8296 17.4228L17.3819 17.4372L17.3845 9.75174C17.4838 8.86112 16.9915 7.66513 16.6171 7.0901C16.1673 6.39853 15.3957 5.88475 14.5816 5.65082C12.8942 5.16596 11.2253 5.58447 10.0896 6.85021C9.9385 7.01864 9.8324 7.16836 9.69319 7.34359L9.6847 5.8235L6.26306 5.8218Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M0.342518 17.4511L0.515662 17.4545L3.7667 17.4537L3.92544 17.4511L3.93901 5.82638L0.342518 5.81956V17.4511Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M1.68693 0.0561794C1.06049 0.201638 0.647964 0.509573 0.380581 0.911923C-0.71017 2.55705 0.708238 4.6309 2.5519 4.25066C3.5722 4.04056 4.46178 3.00788 4.20458 1.72427C4.00171 0.711167 2.96697 -0.242394 1.68693 0.055328V0.0561794Z\" fill=\"#E8EDE9\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M13.8296 17.4228C13.8363 17.4321 13.8515 17.4305 13.8566 17.4441L17.4158 17.4492C17.4862 16.8478 17.4515 9.88699 17.3845 9.75174L17.3819 17.4372L13.8296 17.4228Z\" fill=\"#E8EDE9\"/>\\n</svg>\\n',withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-165v5c3\",\"data-framer-name\":\"Info\",layoutDependency:layoutDependency,layoutId:\"H0qPiyVyD\",style:{opacity:1},variants:{crCPjaQse:{opacity:0}},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"INFO\"})}),className:\"framer-1e0y4f1\",\"data-framer-name\":\"SOCIALS\",fonts:[\"GF;DM Sans-300\"],layoutDependency:layoutDependency,layoutId:\"c1vvhos8L\",style:{\"--extracted-r6o4lv\":\"rgba(255, 255, 255, 0.4)\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7RE0gU2Fucy0zMDA=\",\"--framer-font-family\":'\"DM Sans\", \"DM Sans Placeholder\", sans-serif',\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"0.01em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(255, 255, 255, 0.4))\",\"--framer-text-transform\":\"uppercase\"},children:\"INFO\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-13dgqyj\",layoutDependency:layoutDependency,layoutId:\"SxF9fOm80\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b6r0j0\",\"data-framer-name\":\"Frame 12103\",layoutDependency:layoutDependency,layoutId:\"lAV7c83yx\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jbmXA6Fp5\",webPageId:\"gBPqnYIk_\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"Frequently asked\"})})})}),className:\"framer-1ipit3r\",\"data-framer-name\":\"SOCIALS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"O8eVMlFq5\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":jbmXA6Fp5\",webPageId:\"gBPqnYIk_\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"Frequently asked\"})})})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Mru5Z9nN5\",webPageId:\"gBPqnYIk_\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"Testimonials\"})})})}),className:\"framer-1ts5ai1\",\"data-framer-name\":\"SOCIALS\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"pYcHY0Jl9\",style:{\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({zpMM7sMy5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-wsxm\",\"data-styles-preset\":\"gcGUzJ9mK\",style:{\"--framer-text-alignment\":\"center\"},children:/*#__PURE__*/_jsx(Link,{href:{hash:\":Mru5Z9nN5\",webPageId:\"gBPqnYIk_\"},openInNewTab:false,smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1tr9ti0\",\"data-styles-preset\":\"aQYq5XV2J\",children:\"Testimonials\"})})})})}},baseVariant,gestureVariant)})]})})]})]})]})]})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-J123X.framer-76vrtc, .framer-J123X .framer-76vrtc { display: block; }\",\".framer-J123X.framer-1i414yk { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-end; max-width: 1800px; overflow: hidden; padding: 80px 96px 80px 96px; position: relative; width: 1200px; }\",\".framer-J123X .framer-19xvql3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-1e4hjz7 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1048px; word-break: break-word; word-wrap: break-word; }\",\".framer-J123X .framer-10gqnwz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-1fehz48 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-170wef5-container { flex: none; height: 4px; position: relative; width: 100%; }\",\".framer-J123X .framer-1tvvk9d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-wivney { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-J123X .framer-1kc91gj-container { flex: none; height: auto; max-width: 1080px; position: relative; width: 100%; }\",\".framer-J123X .framer-9n50om { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 36px; justify-content: flex-start; overflow: hidden; padding: 12px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-J123X .framer-1rvoiqr, .framer-J123X .framer-ezlrs, .framer-J123X .framer-c6o747, .framer-J123X .framer-1ur3rqs, .framer-J123X .framer-1la9b3i, .framer-J123X .framer-n9jvn4, .framer-J123X .framer-1e0y4f1, .framer-J123X .framer-1ipit3r, .framer-J123X .framer-1ts5ai1 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-J123X .framer-1tc9ya8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 360px; min-width: 240px; overflow: hidden; padding: 0px 0px 0px 48px; position: relative; width: 22%; }\",\".framer-J123X .framer-1fdwmxu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 150px); position: relative; width: 78%; }\",\".framer-J123X .framer-t2t4lg { 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-J123X .framer-8z9kgu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 118px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-1cjj963-container { flex: none; height: 56px; position: relative; width: 143px; }\",\".framer-J123X .framer-1vikpem { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-J123X .framer-uigvmb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: 55px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-v52jcf, .framer-J123X .framer-165v5c3 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-J123X .framer-onqgpc, .framer-J123X .framer-1tfxw8b, .framer-J123X .framer-m5qojh, .framer-J123X .framer-13dgqyj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-J123X .framer-1fd5ax5-container { flex: none; height: 20px; position: relative; width: 20px; }\",\".framer-J123X .framer-1dbuy8r-container { flex: none; height: auto; position: relative; width: 24px; }\",\".framer-J123X .framer-tqh1jj-container { flex: none; height: 18px; position: relative; width: 18px; }\",\".framer-J123X .framer-11wxdi-container { flex: none; height: auto; position: relative; width: 18px; }\",\".framer-J123X .framer-1xa85mt, .framer-J123X .framer-1vr9dyj { flex: none; height: 20px; overflow: visible; position: relative; width: 20px; }\",\".framer-J123X .framer-fpgx63, .framer-J123X .framer-1imuw7j { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-J123X .framer-hywvli, .framer-J123X .framer-s4m40x { flex: none; height: 15px; overflow: visible; position: relative; width: 24px; }\",\".framer-J123X .framer-fbnnov, .framer-J123X .framer-o82c3 { flex: none; height: 15px; left: calc(50.00000000000002% - 24px / 2); position: absolute; text-decoration: none; top: 2px; width: 24px; }\",\".framer-J123X .framer-v28eb4, .framer-J123X .framer-1d5iq0k, .framer-J123X .framer-1rpwa12, .framer-J123X .framer-o1vtuu { flex: none; height: 18px; overflow: visible; position: relative; width: 18px; }\",\".framer-J123X .framer-1hrrb1g, .framer-J123X .framer-1uk6oij { flex: none; height: 18px; left: calc(50.00000000000002% - 18px / 2); position: absolute; text-decoration: none; top: calc(50.00000000000002% - 18px / 2); width: 18px; }\",\".framer-J123X .framer-b0krqt, .framer-J123X .framer-zimngu { flex: none; height: 18px; left: 0px; position: absolute; right: 0px; text-decoration: none; top: 0px; }\",\".framer-J123X .framer-b6r0j0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 359px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-1i414yk, .framer-J123X .framer-19xvql3, .framer-J123X .framer-1fehz48, .framer-J123X .framer-wivney, .framer-J123X .framer-9n50om, .framer-J123X .framer-1tc9ya8, .framer-J123X .framer-t2t4lg, .framer-J123X .framer-8z9kgu, .framer-J123X .framer-1vikpem, .framer-J123X .framer-uigvmb, .framer-J123X .framer-v52jcf, .framer-J123X .framer-onqgpc, .framer-J123X .framer-1tfxw8b, .framer-J123X .framer-m5qojh, .framer-J123X .framer-165v5c3, .framer-J123X .framer-13dgqyj, .framer-J123X .framer-b6r0j0 { gap: 0px; } .framer-J123X.framer-1i414yk > *, .framer-J123X .framer-1fehz48 > *, .framer-J123X .framer-1tc9ya8 > *, .framer-J123X .framer-t2t4lg > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-J123X.framer-1i414yk > :first-child, .framer-J123X .framer-1fehz48 > :first-child, .framer-J123X .framer-wivney > :first-child, .framer-J123X .framer-1tc9ya8 > :first-child, .framer-J123X .framer-t2t4lg > :first-child, .framer-J123X .framer-1vikpem > :first-child, .framer-J123X .framer-uigvmb > :first-child, .framer-J123X .framer-v52jcf > :first-child, .framer-J123X .framer-165v5c3 > :first-child, .framer-J123X .framer-b6r0j0 > :first-child { margin-top: 0px; } .framer-J123X.framer-1i414yk > :last-child, .framer-J123X .framer-1fehz48 > :last-child, .framer-J123X .framer-wivney > :last-child, .framer-J123X .framer-1tc9ya8 > :last-child, .framer-J123X .framer-t2t4lg > :last-child, .framer-J123X .framer-1vikpem > :last-child, .framer-J123X .framer-uigvmb > :last-child, .framer-J123X .framer-v52jcf > :last-child, .framer-J123X .framer-165v5c3 > :last-child, .framer-J123X .framer-b6r0j0 > :last-child { margin-bottom: 0px; } .framer-J123X .framer-19xvql3 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-J123X .framer-19xvql3 > :first-child, .framer-J123X .framer-9n50om > :first-child, .framer-J123X .framer-8z9kgu > :first-child, .framer-J123X .framer-onqgpc > :first-child, .framer-J123X .framer-1tfxw8b > :first-child, .framer-J123X .framer-m5qojh > :first-child, .framer-J123X .framer-13dgqyj > :first-child { margin-left: 0px; } .framer-J123X .framer-19xvql3 > :last-child, .framer-J123X .framer-9n50om > :last-child, .framer-J123X .framer-8z9kgu > :last-child, .framer-J123X .framer-onqgpc > :last-child, .framer-J123X .framer-1tfxw8b > :last-child, .framer-J123X .framer-m5qojh > :last-child, .framer-J123X .framer-13dgqyj > :last-child { margin-right: 0px; } .framer-J123X .framer-wivney > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-J123X .framer-9n50om > *, .framer-J123X .framer-8z9kgu > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-J123X .framer-1vikpem > *, .framer-J123X .framer-v52jcf > *, .framer-J123X .framer-165v5c3 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-J123X .framer-uigvmb > *, .framer-J123X .framer-b6r0j0 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-J123X .framer-onqgpc > *, .framer-J123X .framer-1tfxw8b > *, .framer-J123X .framer-m5qojh > *, .framer-J123X .framer-13dgqyj > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } }\",\".framer-J123X.framer-v-1mcp5d2 .framer-1fehz48 { height: 222px; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-1tc9ya8, .framer-J123X.framer-v-14dm1zy .framer-1tc9ya8 { align-content: flex-end; align-items: flex-end; flex: 1 0 0px; flex-direction: row; gap: unset; justify-content: space-between; max-width: unset; min-width: unset; overflow: visible; padding: 0px; width: 1px; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-1fdwmxu { height: var(--framer-aspect-ratio-supported, 200px); max-width: 320px; order: 1; position: absolute; right: 0px; top: -90px; width: 20%; z-index: 1; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-t2t4lg, .framer-J123X.framer-v-10bb2y0 .framer-t2t4lg { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: row; gap: 240px; height: 170px; justify-content: flex-start; order: 0; width: 1px; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-8z9kgu, .framer-J123X.framer-v-10bb2y0 .framer-8z9kgu { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; flex-direction: column; gap: 24px; height: min-content; min-height: 90px; width: 1px; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-1cjj963-container { left: 0px; order: 1; position: absolute; top: 114px; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-1vikpem { flex: none; left: 0px; order: 0; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-uigvmb, .framer-J123X.framer-v-10bb2y0 .framer-uigvmb, .framer-J123X.framer-v-14dm1zy .framer-uigvmb { width: min-content; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-v52jcf { left: 300px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-J123X.framer-v-1mcp5d2 .framer-165v5c3 { left: 600px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-v-1mcp5d2 .framer-1tc9ya8, .framer-J123X.framer-v-1mcp5d2 .framer-t2t4lg, .framer-J123X.framer-v-1mcp5d2 .framer-8z9kgu { gap: 0px; } .framer-J123X.framer-v-1mcp5d2 .framer-1tc9ya8 > *, .framer-J123X.framer-v-1mcp5d2 .framer-1tc9ya8 > :first-child, .framer-J123X.framer-v-1mcp5d2 .framer-1tc9ya8 > :last-child { margin: 0px; } .framer-J123X.framer-v-1mcp5d2 .framer-t2t4lg > * { margin: 0px; margin-left: calc(240px / 2); margin-right: calc(240px / 2); } .framer-J123X.framer-v-1mcp5d2 .framer-t2t4lg > :first-child { margin-left: 0px; } .framer-J123X.framer-v-1mcp5d2 .framer-t2t4lg > :last-child { margin-right: 0px; } .framer-J123X.framer-v-1mcp5d2 .framer-8z9kgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J123X.framer-v-1mcp5d2 .framer-8z9kgu > :first-child { margin-top: 0px; } .framer-J123X.framer-v-1mcp5d2 .framer-8z9kgu > :last-child { margin-bottom: 0px; } }\",\".framer-J123X.framer-v-10bb2y0 .framer-1fehz48 { height: 222px; justify-content: flex-end; }\",\".framer-J123X.framer-v-10bb2y0 .framer-1tc9ya8 { align-content: flex-end; align-items: flex-end; flex: 1 0 0px; flex-direction: row; gap: unset; justify-content: space-between; max-width: unset; min-width: unset; overflow: visible; width: 1px; }\",\".framer-J123X.framer-v-10bb2y0 .framer-1fdwmxu { aspect-ratio: 1.01 / 1; height: var(--framer-aspect-ratio-supported, 200px); order: 1; position: absolute; right: 40px; top: -90px; width: 20%; z-index: 1; }\",\".framer-J123X.framer-v-10bb2y0 .framer-1cjj963-container { height: auto; left: -50px; order: 1; position: absolute; top: 114px; width: auto; }\",\".framer-J123X.framer-v-10bb2y0 .framer-1vikpem { flex: none; left: -50px; order: 0; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-J123X.framer-v-10bb2y0 .framer-v52jcf { left: 240px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\".framer-J123X.framer-v-10bb2y0 .framer-165v5c3 { left: 540px; position: absolute; top: 0px; width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-v-10bb2y0 .framer-1tc9ya8, .framer-J123X.framer-v-10bb2y0 .framer-t2t4lg, .framer-J123X.framer-v-10bb2y0 .framer-8z9kgu { gap: 0px; } .framer-J123X.framer-v-10bb2y0 .framer-1tc9ya8 > *, .framer-J123X.framer-v-10bb2y0 .framer-1tc9ya8 > :first-child, .framer-J123X.framer-v-10bb2y0 .framer-1tc9ya8 > :last-child { margin: 0px; } .framer-J123X.framer-v-10bb2y0 .framer-t2t4lg > * { margin: 0px; margin-left: calc(240px / 2); margin-right: calc(240px / 2); } .framer-J123X.framer-v-10bb2y0 .framer-t2t4lg > :first-child { margin-left: 0px; } .framer-J123X.framer-v-10bb2y0 .framer-t2t4lg > :last-child { margin-right: 0px; } .framer-J123X.framer-v-10bb2y0 .framer-8z9kgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J123X.framer-v-10bb2y0 .framer-8z9kgu > :first-child { margin-top: 0px; } .framer-J123X.framer-v-10bb2y0 .framer-8z9kgu > :last-child { margin-bottom: 0px; } }\",\".framer-J123X.framer-v-14dm1zy.framer-1i414yk { gap: 32px; max-width: unset; padding: 32px; width: 750px; }\",\".framer-J123X.framer-v-14dm1zy .framer-1fehz48 { gap: 32px; }\",\".framer-J123X.framer-v-14dm1zy .framer-1fdwmxu { bottom: 0px; height: var(--framer-aspect-ratio-supported, 274px); max-width: 320px; order: 1; position: absolute; right: 0px; width: 40%; z-index: 1; }\",\".framer-J123X.framer-v-14dm1zy .framer-t2t4lg { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; justify-content: flex-start; order: 0; width: 1px; }\",\".framer-J123X.framer-v-14dm1zy .framer-8z9kgu { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 24px; height: min-content; }\",\".framer-J123X.framer-v-14dm1zy .framer-1cjj963-container, .framer-J123X.framer-v-1rhjt4w .framer-10gqnwz { order: 1; }\",\".framer-J123X.framer-v-14dm1zy .framer-1vikpem { flex: none; order: 0; width: min-content; z-index: 1; }\",\".framer-J123X.framer-v-14dm1zy .framer-v52jcf, .framer-J123X.framer-v-14dm1zy .framer-165v5c3 { width: min-content; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-v-14dm1zy.framer-1i414yk, .framer-J123X.framer-v-14dm1zy .framer-1fehz48, .framer-J123X.framer-v-14dm1zy .framer-1tc9ya8, .framer-J123X.framer-v-14dm1zy .framer-8z9kgu { gap: 0px; } .framer-J123X.framer-v-14dm1zy.framer-1i414yk > *, .framer-J123X.framer-v-14dm1zy .framer-1fehz48 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J123X.framer-v-14dm1zy.framer-1i414yk > :first-child, .framer-J123X.framer-v-14dm1zy .framer-1fehz48 > :first-child, .framer-J123X.framer-v-14dm1zy .framer-8z9kgu > :first-child { margin-top: 0px; } .framer-J123X.framer-v-14dm1zy.framer-1i414yk > :last-child, .framer-J123X.framer-v-14dm1zy .framer-1fehz48 > :last-child, .framer-J123X.framer-v-14dm1zy .framer-8z9kgu > :last-child { margin-bottom: 0px; } .framer-J123X.framer-v-14dm1zy .framer-1tc9ya8 > *, .framer-J123X.framer-v-14dm1zy .framer-1tc9ya8 > :first-child, .framer-J123X.framer-v-14dm1zy .framer-1tc9ya8 > :last-child { margin: 0px; } .framer-J123X.framer-v-14dm1zy .framer-8z9kgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-J123X.framer-v-hxvjar.framer-1i414yk { gap: 24px; max-width: unset; padding: 32px 16px 32px 16px; width: 350px; }\",\".framer-J123X.framer-v-hxvjar .framer-1e4hjz7, .framer-J123X.framer-v-1rhjt4w .framer-1e4hjz7, .framer-J123X.framer-v-1rhjt4w .framer-v52jcf, .framer-J123X.framer-v-1rhjt4w .framer-165v5c3, .framer-J123X.framer-v-1rhjt4w .framer-b6r0j0, .framer-J123X.framer-v-whnpbb .framer-1e4hjz7, .framer-J123X.framer-v-whnpbb .framer-b6r0j0 { flex: 1 0 0px; width: 1px; }\",\".framer-J123X.framer-v-hxvjar .framer-1fehz48, .framer-J123X.framer-v-whnpbb .framer-1fehz48 { gap: 24px; }\",\".framer-J123X.framer-v-hxvjar .framer-1tc9ya8 { align-content: center; align-items: center; flex: 1 0 0px; justify-content: flex-start; max-width: unset; min-width: unset; overflow: visible; padding: 0px; width: 1px; }\",\".framer-J123X.framer-v-hxvjar .framer-1fdwmxu { height: var(--framer-aspect-ratio-supported, 240px); max-width: 240px; order: 0; width: 100%; z-index: 1; }\",\".framer-J123X.framer-v-hxvjar .framer-t2t4lg { align-content: flex-start; align-items: flex-start; gap: 32px; justify-content: flex-start; order: 1; }\",\".framer-J123X.framer-v-hxvjar .framer-8z9kgu { flex-direction: column; gap: 24px; height: min-content; order: 0; }\",\".framer-J123X.framer-v-hxvjar .framer-1cjj963-container { order: 1; width: 100%; }\",\".framer-J123X.framer-v-hxvjar .framer-1vikpem { align-content: center; align-items: center; flex: none; order: 0; width: 100%; z-index: 1; }\",\".framer-J123X.framer-v-hxvjar .framer-uigvmb, .framer-J123X.framer-v-whnpbb .framer-1vikpem, .framer-J123X.framer-v-whnpbb .framer-v52jcf { align-content: center; align-items: center; }\",\".framer-J123X.framer-v-hxvjar .framer-1ur3rqs, .framer-J123X.framer-v-hxvjar .framer-1la9b3i, .framer-J123X.framer-v-1rhjt4w .framer-c6o747, .framer-J123X.framer-v-1rhjt4w .framer-1ur3rqs, .framer-J123X.framer-v-1rhjt4w .framer-1la9b3i, .framer-J123X.framer-v-1rhjt4w .framer-n9jvn4, .framer-J123X.framer-v-1rhjt4w .framer-1e0y4f1, .framer-J123X.framer-v-whnpbb .framer-c6o747, .framer-J123X.framer-v-whnpbb .framer-1ur3rqs, .framer-J123X.framer-v-whnpbb .framer-1la9b3i, .framer-J123X.framer-v-whnpbb .framer-n9jvn4, .framer-J123X.framer-v-whnpbb .framer-1e0y4f1, .framer-J123X.framer-v-whnpbb .framer-1ipit3r, .framer-J123X.framer-v-whnpbb .framer-1ts5ai1 { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J123X.framer-v-hxvjar .framer-v52jcf { align-content: center; align-items: center; order: 2; z-index: 1; }\",\".framer-J123X.framer-v-hxvjar .framer-165v5c3 { align-content: center; align-items: center; order: 1; z-index: 1; }\",\".framer-J123X.framer-v-hxvjar .framer-13dgqyj, .framer-J123X.framer-v-1rhjt4w .framer-13dgqyj, .framer-J123X.framer-v-whnpbb .framer-13dgqyj { width: 100%; }\",\".framer-J123X.framer-v-hxvjar .framer-b6r0j0 { align-content: center; align-items: center; flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-v-hxvjar.framer-1i414yk, .framer-J123X.framer-v-hxvjar .framer-1fehz48, .framer-J123X.framer-v-hxvjar .framer-t2t4lg, .framer-J123X.framer-v-hxvjar .framer-8z9kgu { gap: 0px; } .framer-J123X.framer-v-hxvjar.framer-1i414yk > *, .framer-J123X.framer-v-hxvjar .framer-1fehz48 > *, .framer-J123X.framer-v-hxvjar .framer-8z9kgu > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J123X.framer-v-hxvjar.framer-1i414yk > :first-child, .framer-J123X.framer-v-hxvjar .framer-1fehz48 > :first-child, .framer-J123X.framer-v-hxvjar .framer-t2t4lg > :first-child, .framer-J123X.framer-v-hxvjar .framer-8z9kgu > :first-child { margin-top: 0px; } .framer-J123X.framer-v-hxvjar.framer-1i414yk > :last-child, .framer-J123X.framer-v-hxvjar .framer-1fehz48 > :last-child, .framer-J123X.framer-v-hxvjar .framer-t2t4lg > :last-child, .framer-J123X.framer-v-hxvjar .framer-8z9kgu > :last-child { margin-bottom: 0px; } .framer-J123X.framer-v-hxvjar .framer-t2t4lg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-J123X.framer-v-1rhjt4w.framer-1i414yk { gap: 32px; padding: 32px; width: 680px; }\",\".framer-J123X.framer-v-1rhjt4w .framer-19xvql3, .framer-J123X.framer-v-1rhjt4w .framer-1kc91gj-container, .framer-J123X.framer-v-whnpbb .framer-1kc91gj-container { order: 0; }\",\".framer-J123X.framer-v-1rhjt4w .framer-1tvvk9d, .framer-J123X.framer-v-whnpbb .framer-1tvvk9d { flex-direction: column; gap: 32px; justify-content: flex-start; }\",\".framer-J123X.framer-v-1rhjt4w .framer-wivney { flex: none; width: 100%; }\",\".framer-J123X.framer-v-1rhjt4w .framer-ezlrs, .framer-J123X.framer-v-whnpbb .framer-ezlrs { order: 1; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-J123X.framer-v-1rhjt4w .framer-1tc9ya8 { align-content: flex-end; align-items: flex-end; gap: 24px; max-width: unset; padding: 0px; width: 100%; }\",\".framer-J123X.framer-v-1rhjt4w .framer-1fdwmxu { height: var(--framer-aspect-ratio-supported, 136px); width: 22%; }\",\".framer-J123X.framer-v-1rhjt4w .framer-t2t4lg { align-content: flex-start; align-items: flex-start; flex-direction: row; gap: 24px; }\",\".framer-J123X.framer-v-1rhjt4w .framer-8z9kgu { align-content: flex-start; align-items: flex-start; flex: 1 0 0px; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-v-1rhjt4w.framer-1i414yk, .framer-J123X.framer-v-1rhjt4w .framer-1tvvk9d, .framer-J123X.framer-v-1rhjt4w .framer-1tc9ya8, .framer-J123X.framer-v-1rhjt4w .framer-t2t4lg { gap: 0px; } .framer-J123X.framer-v-1rhjt4w.framer-1i414yk > *, .framer-J123X.framer-v-1rhjt4w .framer-1tvvk9d > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J123X.framer-v-1rhjt4w.framer-1i414yk > :first-child, .framer-J123X.framer-v-1rhjt4w .framer-1tvvk9d > :first-child, .framer-J123X.framer-v-1rhjt4w .framer-1tc9ya8 > :first-child { margin-top: 0px; } .framer-J123X.framer-v-1rhjt4w.framer-1i414yk > :last-child, .framer-J123X.framer-v-1rhjt4w .framer-1tvvk9d > :last-child, .framer-J123X.framer-v-1rhjt4w .framer-1tc9ya8 > :last-child { margin-bottom: 0px; } .framer-J123X.framer-v-1rhjt4w .framer-1tc9ya8 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J123X.framer-v-1rhjt4w .framer-t2t4lg > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-J123X.framer-v-1rhjt4w .framer-t2t4lg > :first-child { margin-left: 0px; } .framer-J123X.framer-v-1rhjt4w .framer-t2t4lg > :last-child { margin-right: 0px; } }\",\".framer-J123X.framer-v-whnpbb.framer-1i414yk { gap: 32px; padding: 16px; width: 350px; }\",\".framer-J123X.framer-v-whnpbb .framer-wivney { flex: none; gap: 56px; width: 100%; }\",\".framer-J123X.framer-v-whnpbb .framer-1tc9ya8 { align-content: center; align-items: center; gap: 32px; max-width: unset; padding: 0px; width: 100%; }\",\".framer-J123X.framer-v-whnpbb .framer-1fdwmxu { height: var(--framer-aspect-ratio-supported, 187px); max-width: 240px; width: 59%; }\",\".framer-J123X.framer-v-whnpbb .framer-t2t4lg { align-content: flex-start; align-items: flex-start; gap: 32px; }\",\".framer-J123X.framer-v-whnpbb .framer-8z9kgu { align-content: flex-start; align-items: flex-start; height: min-content; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-J123X.framer-v-whnpbb.framer-1i414yk, .framer-J123X.framer-v-whnpbb .framer-1fehz48, .framer-J123X.framer-v-whnpbb .framer-1tvvk9d, .framer-J123X.framer-v-whnpbb .framer-wivney, .framer-J123X.framer-v-whnpbb .framer-1tc9ya8, .framer-J123X.framer-v-whnpbb .framer-t2t4lg { gap: 0px; } .framer-J123X.framer-v-whnpbb.framer-1i414yk > *, .framer-J123X.framer-v-whnpbb .framer-1tvvk9d > *, .framer-J123X.framer-v-whnpbb .framer-1tc9ya8 > *, .framer-J123X.framer-v-whnpbb .framer-t2t4lg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-J123X.framer-v-whnpbb.framer-1i414yk > :first-child, .framer-J123X.framer-v-whnpbb .framer-1fehz48 > :first-child, .framer-J123X.framer-v-whnpbb .framer-1tvvk9d > :first-child, .framer-J123X.framer-v-whnpbb .framer-wivney > :first-child, .framer-J123X.framer-v-whnpbb .framer-1tc9ya8 > :first-child, .framer-J123X.framer-v-whnpbb .framer-t2t4lg > :first-child { margin-top: 0px; } .framer-J123X.framer-v-whnpbb.framer-1i414yk > :last-child, .framer-J123X.framer-v-whnpbb .framer-1fehz48 > :last-child, .framer-J123X.framer-v-whnpbb .framer-1tvvk9d > :last-child, .framer-J123X.framer-v-whnpbb .framer-wivney > :last-child, .framer-J123X.framer-v-whnpbb .framer-1tc9ya8 > :last-child, .framer-J123X.framer-v-whnpbb .framer-t2t4lg > :last-child { margin-bottom: 0px; } .framer-J123X.framer-v-whnpbb .framer-1fehz48 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-J123X.framer-v-whnpbb .framer-wivney > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 1290\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1800px\",null,null]},\"l9PBldiPy\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1800px\",null,null]},\"crCPjaQse\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1800px\",null,null]},\"D9RkEwCxt\":{\"layout\":[\"fixed\",\"auto\"]},\"yJA8wL8Gb\":{\"layout\":[\"fixed\",\"auto\"]},\"CkD3_fQDr\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1800px\",null,null]},\"zpMM7sMy5\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,\"1800px\",null,null]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersLXwlxLKm=withCSS(Component,css,\"framer-J123X\");export default FramersLXwlxLKm;FramersLXwlxLKm.displayName=\"Contact\";FramersLXwlxLKm.defaultProps={height:1290,width:1200};addPropertyControls(FramersLXwlxLKm,{variant:{options:[\"f_wzyYOd7\",\"l9PBldiPy\",\"crCPjaQse\",\"D9RkEwCxt\",\"yJA8wL8Gb\",\"CkD3_fQDr\",\"zpMM7sMy5\"],optionTitles:[\"Variant 1\",\"Variant 2\",\"Variant 3\",\"Tablet\",\"Mobile\",\"Tablet\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramersLXwlxLKm,[{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\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwAfJthS2f3ZGMZpg.woff2\",weight:\"600\"},{family:\"DM Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/dmsans/v15/rP2tp2ywxg089UriI5-g4vlH9VoD8CmcqZG40F9JadbnoEwA_JxhS2f3ZGMZpg.woff2\",weight:\"300\"}]},...LineFonts,...BaseFormFonts,...Button2Fonts,...InstagramFonts,...BehanceFonts,...DribbbleFonts,...LinkedInFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersLXwlxLKm\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"1290\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1800px\\\",null,null]},\\\"l9PBldiPy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1800px\\\",null,null]},\\\"crCPjaQse\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1800px\\\",null,null]},\\\"D9RkEwCxt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yJA8wL8Gb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CkD3_fQDr\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1800px\\\",null,null]},\\\"zpMM7sMy5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,\\\"1800px\\\",null,null]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sLXwlxLKm.map"],
  "mappings": "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",
  "names": ["FieldType", "isExternalURL", "url", "hasMinMaxStep", "type", "VERSION", "BaseForm", "withCSS", "method", "contentType", "redirectAs", "link", "inputs", "button", "styles", "extraHeaders", "extraFields", "style", "onSubmit", "isError", "setError", "ye", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "key", "value", "formData", "requestOptions", "urlSearchParams", "name", "value1", "queryString", "urlSearchParams1", "name1", "value2", "key1", "value3", "bodyObject", "name2", "value4", "key2", "value5", "response", "statusCode", "data", "errorMessage", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "isRequired", "BaseForm_default", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "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", "Link", "cx", "SVG", "css", "FramerBcbBkgrWV", "withCSS", "BcbBkgrWV_default", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "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", "Link", "cx", "SVG", "css", "FramerOJ8dLGnlY", "withCSS", "OJ8dLGnlY_default", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "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", "Link", "cx", "SVG", "css", "FramerQHouzfw7w", "withCSS", "QHouzfw7w_default", "addFonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "width", "props", "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", "Link", "cx", "SVG", "css", "FramerxxtPlSF84", "withCSS", "xxtPlSF84_default", "addFonts", "LineFonts", "getFonts", "mcladWSwd_default", "LineWithVariantAppearEffect", "withVariantAppearEffect", "BaseFormFonts", "BaseForm_default", "MotionDivWithFX", "withFX", "motion", "Button2Fonts", "gSt7k1kxp_default", "InstagramFonts", "BcbBkgrWV_default", "BehanceFonts", "OJ8dLGnlY_default", "DribbbleFonts", "xxtPlSF84_default", "LinkedInFonts", "QHouzfw7w_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "Transition", "value", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onSubmitizu9gt", "overlay", "paginationInfo", "args", "ref1", "pe", "isDisplayed", "isDisplayed1", "router", "useRouter", "ref2", "ref3", "isDisplayed2", "isDisplayed3", "isDisplayed4", "isDisplayed5", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "ComponentViewportProvider", "l", "ResolveLinks", "resolvedLinks", "AnimatePresence", "Floating", "Link", "Image2", "resolvedLinks1", "SVG", "css", "FramersLXwlxLKm", "withCSS", "sLXwlxLKm_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts"]
}
