{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/nOf2qMetDbubGodrD7DE/2PvOzsgZGVDN6zHV5deK/BaseForm.js", "ssg:https://framerusercontent.com/modules/iHXMZnofVv1JuH3ZdwLF/zvv3uX0DhCfxHjklYtp1/TQ587DvbH.js", "ssg:https://framerusercontent.com/modules/emirTGyprnc6J1im2vDh/ecyxhYbDHVS7MKxhsEYh/t0fX9sjx2.js"],
  "sourcesContent": ["/*\nMIT License\nCopyright \u00A9 Joel Whitaker\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nThe Software is provided \"as is\", without warranty of any kind, express or\nimplied, including but not limited to the warranties of merchantability,\nfitness for a particular purpose and noninfringement. In no event shall the\nauthors or copyright holders be liable for any claim, damages or other\nliability, whether in an action of contract, tort or otherwise, arising from,\nout of or in connection with the Software or the use or other dealings in the\nSoftware.\n*/ import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{useCallback,useState}from\"react\";import{addPropertyControls,ControlType,withCSS,useRouter,inferInitialRouteFromPath}from\"framer\";import{motion,useAnimationControls}from\"framer-motion\";var FieldType;(function(FieldType){FieldType[\"Text\"]=\"text\";FieldType[\"Number\"]=\"number\";FieldType[\"Email\"]=\"email\";FieldType[\"Url\"]=\"url\";FieldType[\"Tel\"]=\"tel\";FieldType[\"TextArea\"]=\"textarea\";FieldType[\"Select\"]=\"select\";FieldType[\"Checkbox\"]=\"checkbox\";FieldType[\"Radio\"]=\"radio\";FieldType[\"Time\"]=\"time\";FieldType[\"Week\"]=\"week\";FieldType[\"Month\"]=\"month\";FieldType[\"Date\"]=\"date\";FieldType[\"DateTimeLocal\"]=\"datetime-local\";FieldType[\"Password\"]=\"password\";FieldType[\"Hidden\"]=\"hidden\";})(FieldType||(FieldType={}));function isExternalURL(url){try{return!!new URL(url);}catch{}try{return!!new URL(`https://${url}`);}catch{}return false;}function hasMinMaxStep(type){return[FieldType.Time,FieldType.Week,FieldType.Number,FieldType.Date,FieldType.DateTimeLocal,].includes(type);}/**\n * Increment the number whenever shipping a new version to customers.\n * This will ensure that multiple versions of this component can exist\n * in the same project without css rules overlapping. Only use valid css class characters.\n */ const VERSION=\"v1\";/**\n * BASEFORM\n * By Joel Whitaker (Alphi.dev)\n * Based on INPUT by Benjamin den Boer\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 300\n * @framerIntrinsicHeight 40\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight any\n */ const BaseForm=withCSS(function BaseForm({url,method,contentType,redirectAs,link,inputs,button,styles,extraHeaders,extraFields,style,onSubmit}){const[isError,setError]=useState(false);const[isLoading,setLoading]=useState(false);const[getFocus,setFocus]=useState(null);const{paddingPerSide:labelPaddingPerSide,paddingTop:labelPaddingTop,paddingRight:labelPaddingRight,paddingBottom:labelPaddingBottom,paddingLeft:labelPaddingLeft,padding:labelPadding,borderRadius:labelBorderRadius,borderObject:labelBorderObject,shadowObject:labelShadowObject}=styles.label;const{paddingPerSide:inputPaddingPerSide,paddingTop:inputPaddingTop,paddingRight:inputPaddingRight,paddingBottom:inputPaddingBottom,paddingLeft:inputPaddingLeft,padding:inputPadding,borderRadius:inputBorderRadius,borderObject:inputBorderObject,focusObject:inputFocusObject,shadowObject:inputShadowObject}=styles.input;const{paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,paddingBottom:buttonPaddingBottom,paddingLeft:buttonPaddingLeft,padding:buttonPadding,borderRadius:buttonBorderRadius,borderObject:buttonBorderObject,shadowObject:buttonShadowObject}=styles.button;const labelPaddingValue=labelPaddingPerSide?`${labelPaddingTop}px ${labelPaddingRight}px ${labelPaddingBottom}px ${labelPaddingLeft}px`:`${labelPadding}px ${labelPadding}px ${labelPadding}px ${labelPadding}px`;const inputPaddingValue=inputPaddingPerSide?`${inputPaddingTop}px ${inputPaddingRight}px ${inputPaddingBottom}px ${inputPaddingLeft}px`:`${inputPadding}px ${inputPadding}px ${inputPadding}px ${inputPadding}px`;const buttonPaddingValue=buttonPaddingPerSide?`${buttonPaddingTop}px ${buttonPaddingRight}px ${buttonPaddingBottom}px ${buttonPaddingLeft}px`:`${buttonPadding}px ${buttonPadding}px ${buttonPadding}px ${buttonPadding}px`;const router=useRouter();const onSuccess=()=>{/* Reset */ setLoading(false);setFocus(null);if(redirectAs===\"link\"&&link&&!isError){const[path,hash]=link.split(\"#\");const{routeId,pathVariables}=inferInitialRouteFromPath(router.routes,path);if(routeId){router.navigate(routeId,hash,pathVariables);}if(isExternalURL(link)){setError(true);formControls.start(\"error\");return false;}}return;};const handleChange=useCallback(event=>{setError(false);},[]);const handleFocus=useCallback((event,input)=>{setFocus(input.name);},[]);const handleBlur=useCallback(event=>{setFocus(null);setError(false);},[]);const handleSubmit=useCallback(event=>{event.preventDefault();// Prevent submitting while submitting\nif(isLoading)return;setLoading(true);setError(false);const headers=new Headers;if(extraHeaders){for(const[key,value]of Object.entries(extraHeaders)){headers.append(key,value);}}const formData=new FormData(event.target);let requestOptions={method:method,headers:headers};if(method===\"get\"){// Add form fields to URL for GET requests\nconst urlSearchParams=new URLSearchParams;for(const[name,value1]of formData){urlSearchParams.append(name,value1.toString());}const queryString=urlSearchParams.toString();url+=queryString?`?${queryString}`:\"\";}else{headers.append(\"Content-Type\",contentType);if(contentType===\"application/json\"){headers.append(\"accept\",\"application/json\");}if(contentType===\"application/x-www-form-urlencoded\"){const urlSearchParams1=new URLSearchParams;for(const[name1,value2]of formData){urlSearchParams1.append(name1,value2.toString());}if(extraFields){for(const[key1,value3]of Object.entries(extraFields)){urlSearchParams1.append(key1,value3.toString());}}requestOptions[\"body\"]=urlSearchParams1.toString();}else if(contentType===\"application/json\"){const bodyObject={};for(const[name2,value4]of formData){bodyObject[name2]=value4;}if(extraFields){for(const[key2,value5]of Object.entries(extraFields)){bodyObject[key2]=value5;}}requestOptions[\"body\"]=JSON.stringify(bodyObject);}}fetch(url,requestOptions).then(response=>{const statusCode=response.status;const contentType=response.headers.get(\"content-type\");if(contentType&&contentType.includes(\"application/json\")){return response.json().then(data=>({statusCode,data}));}else if(contentType&&contentType.includes(\"text/plain\")){return response.text().then(data=>({statusCode,data}));}else{throw new Error(\"Unsupported response type\");}}).then(({statusCode,data})=>{if(statusCode>=200&&statusCode<300){// Reset state\nsetLoading(false);event.target.reset();// Handle success\nonSuccess();if(redirectAs===\"overlay\")onSubmit===null||onSubmit===void 0?void 0:onSubmit();}else{// Handle errors\nlet errorMessage=\"An error occurred submitting the form\";throw new Error(errorMessage);}}).catch(error=>{console.error(error);setError(true);setLoading(false);formControls.start(\"error\");});},[onSubmit,isLoading]);// Animation\nconst formControls=useAnimationControls();// Label Box Shadow Styles\nconst labelShadowStyles=styles.label.shadowObject?`${labelShadowObject.shadowX}px ${labelShadowObject.shadowY}px ${labelShadowObject.shadowBlur}px ${labelShadowObject.shadowColor}`:null;const labelBorderStyles=styles.label.borderObject?`inset 0 0 0 ${labelBorderObject.borderWidth}px ${labelBorderObject.borderColor}`:null;// Input Box Shadow Styles\nconst inputFocusStylesFrom=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthFrom}px ${inputFocusObject.focusColor}`:null;const inputFocusStylesTo=styles.input.focusObject?`inset 0 0 0 ${inputFocusObject.focusWidthTo}px ${inputFocusObject.focusColor}`:null;const inputShadowStyles=styles.input.shadowObject?`${inputShadowObject.shadowX}px ${inputShadowObject.shadowY}px ${inputShadowObject.shadowBlur}px ${inputShadowObject.shadowColor}`:null;const inputBorderStyles=styles.input.borderObject?`inset 0 0 0 ${inputBorderObject.borderWidth}px ${inputBorderObject.borderColor}`:null;// Button Box Shadow Styles\nconst buttonShadowStyles=styles.button.shadowObject?`${buttonShadowObject.shadowX}px ${buttonShadowObject.shadowY}px ${buttonShadowObject.shadowBlur}px ${buttonShadowObject.shadowColor}`:null;const buttonBorderStyles=styles.button.borderObject?`inset 0 0 0 ${buttonBorderObject.borderWidth}px ${buttonBorderObject.borderColor}`:null;// Shake or wiggle as error\nconst formVariants={default:{x:0},error:{x:[0,-4,4,0],transition:{duration:.2}}};const inputVariants={default:{boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},focused:{boxShadow:dynamicBoxShadow(inputFocusStylesTo,inputShadowStyles,inputBorderStyles)}};const label=input=>{if(!input.label){return null;}return /*#__PURE__*/ _jsxs(\"label\",{htmlFor:input.name,style:{marginBottom:\"0.375rem\",alignSelf:\"flex-start\",padding:labelPaddingValue,borderRadius:labelBorderRadius,fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color,boxShadow:dynamicBoxShadow(labelShadowStyles,labelBorderStyles)},children:[input.label,requiredFlag(input.required)]});};const getInputSpan=input=>{return input.gridColumn>styles.form.columns?styles.form.columns:input.gridColumn;};const getButtonSpan=()=>{const totalSpan=inputs.reduce((sum,input)=>sum+Number(input.gridColumn),0);const shouldBeInline=totalSpan===styles.form.columns-1;return shouldBeInline?1:styles.form.columns;};const baseInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:input.type,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},min:input.min,max:input.max,step:input.step})]});};const textareaInput=input=>{return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsx(motion.textarea,{name:input.name,defaultValue:input.value,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3}})]});};const optionsHMTL=options=>{return options.map(option=>{return /*#__PURE__*/ _jsx(\"option\",{value:option.value,children:option.text});});};const selectInput=input=>{let options=[];if(input.placeholder){options.push({text:input.placeholder,value:\"\"});}options=options.concat(input.options);return /*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",flexDirection:\"column\",gridColumn:`span ${getInputSpan(input)}`},children:[label(input),/*#__PURE__*/ _jsxs(\"div\",{style:{position:\"relative\",display:\"inline-block\"},children:[/*#__PURE__*/ _jsx(\"div\",{style:{...selectChevron,borderColor:`${styles.input.color} transparent transparent transparent`}}),/*#__PURE__*/ _jsx(motion.select,{name:input.name,placeholder:input.placeholder,className:`${VERSION} framer-custom-input`,onChange:handleChange,onFocus:event=>handleFocus(event,input),onBlur:handleBlur,autoComplete:\"off\",autoCapitalize:\"off\",autoCorrect:\"off\",spellCheck:\"false\",required:input.required,style:{...defaultStyle,padding:inputPaddingValue,borderRadius:inputBorderRadius,fontSize:16,...styles.input.font,background:styles.input.fill,color:styles.input.color,boxShadow:dynamicBoxShadow(inputFocusStylesFrom,inputShadowStyles,inputBorderStyles)},variants:inputVariants,initial:false,animate:getFocus===input.name?\"focused\":\"default\",transition:{duration:.3},disabled:isLoading,children:optionsHMTL(options)})]})]});};function checkboxInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"checkbox\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}function radioInput(input){return /*#__PURE__*/ _jsx(\"div\",{style:{gridColumn:`span ${getInputSpan(input)}`},children:/*#__PURE__*/ _jsxs(\"label\",{style:{display:\"flex\",alignItems:\"center\",fontSize:16,...styles.label.font,background:styles.label.fill,color:styles.label.color},children:[/*#__PURE__*/ _jsx(motion.input,{name:input.name,type:\"radio\",value:input.value||\"on\",required:input.required,style:{margin:\"0px 8px 0px 4px\"}}),input.label]})});}const inputsHTML=inputs.map(input=>{let inputElement=null;if(input.type===FieldType.Select){inputElement=selectInput(input);}else if(input.type===FieldType.TextArea){inputElement=textareaInput(input);}else if(input.type===FieldType.Checkbox){inputElement=checkboxInput(input);}else if(input.type===FieldType.Radio){inputElement=radioInput(input);}else{inputElement=baseInput(input);}return inputElement;});return /*#__PURE__*/ _jsx(motion.div,{style:{...style,...containerStyles,\"--framer-custom-placeholder-color\":styles.input.placeholderColor},variants:formVariants,animate:formControls,children:/*#__PURE__*/ _jsxs(\"form\",{style:{width:\"100%\",display:\"grid\",gridTemplateColumns:styles.form.columns>1&&getButtonSpan()===1?\"1fr auto\":`repeat(${styles.form.columns}, 1fr)`,gap:`${styles.form.rowGap}px ${styles.form.columnGap}px`,background:styles.form.fill},onSubmit:handleSubmit,method:\"POST\",children:[inputsHTML,/*#__PURE__*/ _jsxs(\"div\",{style:{display:\"flex\",gridColumn:`span ${getButtonSpan()}`},children:[!button.shouldAppear&&isLoading&&/*#__PURE__*/ _jsx(Spinner,{shouldAppear:button.shouldAppear,paddingPerSide:buttonPaddingPerSide,paddingTop:buttonPaddingTop,paddingRight:buttonPaddingRight,padding:buttonPadding,color:styles.input.color}),button.shouldAppear&&/*#__PURE__*/ _jsx(\"div\",{style:{width:\"100%\",display:\"flex\",flexDirection:\"column\"},children:/*#__PURE__*/ _jsxs(\"div\",{style:{height:\"100%\",display:\"flex\",position:\"relative\",alignSelf:styles.button.align},children:[/*#__PURE__*/ _jsx(motion.input,{type:\"submit\",value:button.label,style:{...defaultStyle,width:\"100%\",height:\"100%\",cursor:\"pointer\",padding:buttonPaddingValue,borderRadius:buttonBorderRadius,fontWeight:styles.button.fontWeight,fontSize:16,...styles.button.font,background:styles.button.fill,color:styles.button.color,zIndex:1,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)}}),isLoading&&/*#__PURE__*/ _jsx(\"div\",{style:{borderRadius:buttonBorderRadius,position:\"absolute\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\",width:\"100%\",height:\"100%\",inset:0,zIndex:2,color:styles.button.color,background:styles.button.fill,boxShadow:dynamicBoxShadow(buttonShadowStyles,buttonBorderStyles)},children:/*#__PURE__*/ _jsx(Spinner,{color:styles.button.color})})]})})]})]})});},[`.${VERSION}.framer-custom-input::placeholder { color: var(--framer-custom-placeholder-color) !important; }`,]);const Spinner=props=>{const noButtonStyles=!props.shouldAppear?{position:\"absolute\",top:`calc(50% - 8px)`,right:props.inputPaddingPerSide?props.inputPaddingRight:props.inputPadding}:{};return /*#__PURE__*/ _jsx(motion.div,{style:{height:16,width:16,...noButtonStyles},initial:{rotate:0},animate:{rotate:360},transition:{duration:1,repeat:Infinity},children:/*#__PURE__*/ _jsx(motion.div,{initial:{scale:0},animate:{scale:1},children:/*#__PURE__*/ _jsxs(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",width:\"16\",height:\"16\",style:{fill:\"currentColor\",color:props.color},children:[/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 3.582 0 0 3.582 0 8 C 0 12.419 3.582 16 8 16 C 12.418 16 16 12.419 16 8 C 15.999 3.582 12.418 0 8 0 Z M 8 14 C 4.687 14 2 11.314 2 8 C 2 4.687 4.687 2 8 2 C 11.314 2 14 4.687 14 8 C 14 11.314 11.314 14 8 14 Z\",fill:\"currentColor\",opacity:\"0.2\"}),/*#__PURE__*/ _jsx(\"path\",{d:\"M 8 0 C 12.418 0 15.999 3.582 16 8 C 16 8 16 9 15 9 C 14 9 14 8 14 8 C 14 4.687 11.314 2 8 2 C 4.687 2 2 4.687 2 8 C 2 8 2 9 1 9 C 0 9 0 8 0 8 C 0 3.582 3.582 0 8 0 Z\",fill:\"currentColor\"})]})})});};const basePropertyControls={url:{title:\"Url\",type:ControlType.String},method:{type:ControlType.Enum,defaultValue:\"post\",options:[\"get\",\"post\",\"put\",\"patch\",\"delete\"],optionTitles:[\"Get\",\"Post\",\"Put\",\"Patch\",\"Delete\"]},contentType:{type:ControlType.Enum,defaultValue:\"application/json\",options:[\"application/json\",\"application/x-www-form-urlencoded\"],optionTitles:[\"json\",\"x-www-form-urlencoded\"],hidden:props=>props.method===\"get\"},inputs:{title:\"Inputs\",type:ControlType.Array,control:{type:ControlType.Object,controls:{label:{title:\"Label\",type:ControlType.String},name:{title:\"Name\",type:ControlType.String},placeholder:{title:\"Placeholder\",type:ControlType.String,hidden:props=>props.type===\"checkbox\"},type:{type:ControlType.Enum,options:Object.values(FieldType),optionTitles:Object.keys(FieldType)},options:{type:ControlType.Array,title:\"Options\",control:{type:ControlType.Object,title:\"Option\",controls:{text:{type:ControlType.String,title:\"Text\"},value:{type:ControlType.String,title:\"Value\"}}},hidden:props=>props.type!==\"select\"},min:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},max:{type:ControlType.String,hidden:props=>!hasMinMaxStep(props.type)},step:{type:ControlType.Number,hidden:props=>!hasMinMaxStep(props.type)},value:{type:ControlType.String},required:{type:ControlType.Boolean},gridColumn:{title:\"Grid Col\",type:ControlType.Enum,defaultValue:1,displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"1\",\"2\",\"3\"],optionTitles:[\"1\",\"2\",\"3\"]}}}},button:{title:\"Button\",type:ControlType.Object,controls:{shouldAppear:{title:\"Show\",type:ControlType.Boolean,defaultValue:true},label:{title:\"Label\",type:ControlType.String,defaultValue:\"Submit\"}}},redirectAs:{title:\"Success\",type:ControlType.Enum,options:[\"link\",\"overlay\"],optionTitles:[\"Open Link\",\"Show Overlay\"],defaultValue:\"link\"},link:{title:\"Redirect\",type:ControlType.Link,hidden:props=>props.redirectAs===\"overlay\"},onSubmit:{title:\"Submit\",type:ControlType.EventHandler,hidden:props=>props.redirectAs===\"link\"},styles:{type:ControlType.Object,controls:{form:{type:ControlType.Object,controls:{fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#fff\"},columns:{title:\"Columns\",type:ControlType.Enum,options:[\"1\",\"2\",\"3\"],displaySegmentedControl:true},rowGap:{title:\"Row gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},columnGap:{title:\"Col Gap\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8}}},label:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"transparent\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:0,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},input:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},placeholderColor:{title:\"Placeholder\",type:ControlType.Color,defaultValue:\"rgba(0, 0, 0, 0.3)\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#EBEBEB\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#000\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:12,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},focusObject:{type:ControlType.Object,title:\"Focus\",optional:true,controls:{focusWidthFrom:{title:\"From\",type:ControlType.Number,displayStepper:true,defaultValue:0},focusWidthTo:{title:\"To\",type:ControlType.Number,displayStepper:true,defaultValue:2},focusColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"#09F\"}}},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}},button:{type:ControlType.Object,controls:{font:{type:ControlType.Font,title:\"Font\",controls:\"extended\"},fill:{title:\"Fill\",type:ControlType.Color,defaultValue:\"#333\"},color:{title:\"Text\",type:ControlType.Color,defaultValue:\"#FFF\"},align:{title:\"Align\",type:ControlType.Enum,segmentedControlDirection:\"vertical\",options:[\"flex-start\",\"center\",\"flex-end\",\"stretch\",],optionTitles:[\"Start\",\"Center\",\"End\",\"Stretch\"],defaultValue:\"stretch\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:15,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},borderRadius:{title:\"Radius\",type:ControlType.Number,displayStepper:true,min:0,defaultValue:8},borderObject:{type:ControlType.Object,title:\"Border\",optional:true,controls:{borderWidth:{title:\"Width\",type:ControlType.Number,displayStepper:true,defaultValue:1},borderColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(200,200,200,0.5)\"}}},shadowObject:{type:ControlType.Object,title:\"Shadow\",optional:true,controls:{shadowColor:{title:\"Color\",type:ControlType.Color,defaultValue:\"rgba(0,0,0,0.25)\"},shadowX:{title:\"Shadow X\",type:ControlType.Number,min:-100,max:100,defaultValue:0},shadowY:{title:\"Shadow Y\",type:ControlType.Number,min:-100,max:100,defaultValue:2},shadowBlur:{title:\"Shadow B\",type:ControlType.Number,min:0,max:100,defaultValue:4}}}}}}}};addPropertyControls(BaseForm,basePropertyControls);const defaultStyle={WebkitAppearance:\"none\",width:\"100%\",height:\"auto\",outline:\"none\",border:\"none\"};const containerStyles={position:\"relative\",width:\"100%\",height:\"100%\",display:\"flex\",justifyContent:\"center\",alignItems:\"center\"};const selectChevron={position:\"absolute\",top:\"50%\",right:\"12px\",transform:\"translateY(-50%)\",width:\"0\",height:\"0\",borderStyle:\"solid\",borderWidth:\"5px 5px 0 5px\",pointerEvents:\"none\"};function dynamicBoxShadow(...shadows){const output=[];shadows.forEach(shadow=>shadow&&output.push(shadow));return output.join(\", \");}function requiredFlag(isRequired){if(isRequired){return /*#__PURE__*/ _jsx(\"span\",{children:\"*\"});}return null;}BaseForm.defaultProps={url:\"\",styles:{form:{columns:1,rowGap:8,columnGap:8},label:{color:\"#000\"},input:{borderObject:{borderColor:\"#ccc\"}},button:{}},inputs:[{name:\"name\",label:\"Name\",placeholder:\"Jane\",type:FieldType.Text,required:false},{name:\"email\",label:\"Email\",placeholder:\"jane@example.com\",type:FieldType.Email,required:false},{name:\"service\",label:\"Service\",placeholder:\"- select -\",type:FieldType.Select,required:false,options:[]},{name:\"message\",label:\"Message\",placeholder:\"\",type:FieldType.TextArea,required:false},{name:\"terms\",label:\"I accept the terms & conditions\",type:FieldType.Checkbox,required:false},]};export default BaseForm;export{basePropertyControls};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"BaseForm\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"40\",\"framerIntrinsicWidth\":\"300\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"any\",\"framerSupportedLayoutWidth\":\"fixed\"}},\"basePropertyControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./BaseForm.map", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Image,RichText,useConstant,useIsOnFramerCanvas,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle4 from\"https://framerusercontent.com/modules/jjdG1LmUmq40JISFXzPl/6BqUS510fM1ZD7WQgbDH/awD01jL9I.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/jKbK0ZAFNhAHKJJwBVzR/UwREpA19PTGwn6Oug4BA/m3EzWHWnO.js\";import*as sharedStyle5 from\"https://framerusercontent.com/modules/gY2TVLf6knAYNdXJz5Iq/ADAXzUrHJygF5QfS7rpo/QjHrANfuQ.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/wOpGQyySiduVgtR9h8rc/QjpRA7dWrdE4YXq5hRWq/UyKRqRLPm.js\";import*as sharedStyle3 from\"https://framerusercontent.com/modules/vF7NXjP3TxV5FI2ZgUjW/EFxnJbm0mvG1wzI57jpE/zOe9B14ES.js\";import*as sharedStyle2 from\"https://framerusercontent.com/modules/4Z3bHX15SuAw4C8PoHyw/fUZad6NVFcCYO8KTAfBu/zsghBmVlH.js\";const enabledGestures={Aw153LoTw:{hover:true},i63yKFmoC:{hover:true},idlf2bqEk:{hover:true},jqsStOnfn:{hover:true},n_03ygFOL:{hover:true}};const cycleOrder=[\"n_03ygFOL\",\"idlf2bqEk\",\"jqsStOnfn\",\"Aw153LoTw\",\"i63yKFmoC\"];const serializationHash=\"framer-vdarD\";const variantClassNames={Aw153LoTw:\"framer-v-7jpr7o\",i63yKFmoC:\"framer-v-1cm7qet\",idlf2bqEk:\"framer-v-5l2wwh\",jqsStOnfn:\"framer-v-1lf9kpr\",n_03ygFOL:\"framer-v-15qcx0q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transitions={default:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"}};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const humanReadableVariantMap={\"Desktop Card 01\":\"n_03ygFOL\",\"Desktop Card 02\":\"i63yKFmoC\",\"Laptop Card 01\":\"idlf2bqEk\",\"Mobile Card 01\":\"Aw153LoTw\",\"Tablet Card 01\":\"jqsStOnfn\"};const getProps=({cetagory,date,height,id,image,title,width,...props})=>{return{...props,dslP_WWB6:cetagory??props.dslP_WWB6??\"Business\",hs9jjmMKb:image??props.hs9jjmMKb??{src:\"https://framerusercontent.com/images/OEnEVjwdN5oUD0pvtSLEcyiLOrM.png\",srcSet:\"https://framerusercontent.com/images/OEnEVjwdN5oUD0pvtSLEcyiLOrM.png?scale-down-to=512 512w, https://framerusercontent.com/images/OEnEVjwdN5oUD0pvtSLEcyiLOrM.png?scale-down-to=1024 1024w, https://framerusercontent.com/images/OEnEVjwdN5oUD0pvtSLEcyiLOrM.png 1944w\"},Qefk2tktY:date??props.Qefk2tktY??\"24 Jan, 2024\",RO1KBBolX:title??props.RO1KBBolX??\"Navigating the workday with the task management app.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"n_03ygFOL\"};};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,hs9jjmMKb,dslP_WWB6,RO1KBBolX,Qefk2tktY,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,transition,variants}=useVariantState({cycleOrder,defaultVariant:\"n_03ygFOL\",enabledGestures,transitions,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const isOnCanvas=useIsOnFramerCanvas();const initialVariant=useConstant(()=>variant);const ref1=React.useRef(null);const isDisplayed=()=>{if(gestureVariant===\"i63yKFmoC-hover\")return true;if(baseVariant===\"i63yKFmoC\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className];return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Transition,{value:transition,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,animate:variants,className:cx(serializationHash,...sharedStyleClassNames,\"framer-15qcx0q\",className,classNames),\"data-framer-name\":\"Desktop Card 01\",initial:isOnCanvas?variant:initialVariant,layoutDependency:layoutDependency,layoutId:\"n_03ygFOL\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:()=>setGestureState({isPressed:false}),onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref??ref1,style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40,...style},variants:{\"i63yKFmoC-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},i63yKFmoC:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"Aw153LoTw-hover\":{\"data-framer-name\":undefined},\"i63yKFmoC-hover\":{\"data-framer-name\":undefined},\"idlf2bqEk-hover\":{\"data-framer-name\":undefined},\"jqsStOnfn-hover\":{\"data-framer-name\":undefined},\"n_03ygFOL-hover\":{\"data-framer-name\":undefined},Aw153LoTw:{\"data-framer-name\":\"Mobile Card 01\"},i63yKFmoC:{\"data-framer-name\":\"Desktop Card 02\"},idlf2bqEk:{\"data-framer-name\":\"Laptop Card 01\"},jqsStOnfn:{\"data-framer-name\":\"Tablet Card 01\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1o844sh\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"O6OjGuIAy\",style:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{i63yKFmoC:{borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16}},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-10wmgvl\",\"data-framer-name\":\"Cetagory\",layoutDependency:layoutDependency,layoutId:\"zJxtvXG0V\",style:{backgroundColor:\"var(--token-2ab777e3-f80d-42ae-b7f5-8c595573511f, rgb(255, 255, 255))\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16},variants:{i63yKFmoC:{borderBottomLeftRadius:56,borderBottomRightRadius:56,borderTopLeftRadius:56,borderTopRightRadius:56}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-14cdgys\",\"data-styles-preset\":\"m3EzWHWnO\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28)))\"},children:\"Business\"})}),className:\"framer-1fsaoh3\",layoutDependency:layoutDependency,layoutId:\"q9reyncVa\",style:{\"--extracted-r6o4lv\":\"var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:dslP_WWB6,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({i63yKFmoC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-6cukuu\",\"data-styles-preset\":\"UyKRqRLPm\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28)))\"},children:\"Business\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"min(1320px, 100vw)\",...toResponsiveImage(hs9jjmMKb)},className:\"framer-1gkzitx\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"JrdjwtHSx\",style:{borderBottomLeftRadius:40,borderBottomRightRadius:40,borderTopLeftRadius:40,borderTopRightRadius:40},transformTemplate:transformTemplate1,variants:{\"i63yKFmoC-hover\":{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},i63yKFmoC:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({\"Aw153LoTw-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"calc(min(390px, 100vw) * 1.1026)\",...toResponsiveImage(hs9jjmMKb)},transformTemplate:undefined},\"i63yKFmoC-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"calc(min(632px, 100vw) + 40px)\",...toResponsiveImage(hs9jjmMKb)},transformTemplate:undefined},\"idlf2bqEk-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"calc(min(1000px, 100vw) + 40px)\",...toResponsiveImage(hs9jjmMKb)},transformTemplate:undefined},\"jqsStOnfn-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"calc(min(768px, 100vw) + 40px)\",...toResponsiveImage(hs9jjmMKb)},transformTemplate:undefined},\"n_03ygFOL-hover\":{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"calc(min(1320px, 100vw) + 40px)\",...toResponsiveImage(hs9jjmMKb)},transformTemplate:undefined},Aw153LoTw:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"min(390px, 100vw)\",...toResponsiveImage(hs9jjmMKb)}},i63yKFmoC:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"min(632px, 100vw)\",...toResponsiveImage(hs9jjmMKb)}},idlf2bqEk:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"min(1000px, 100vw)\",...toResponsiveImage(hs9jjmMKb)}},jqsStOnfn:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:1047,intrinsicWidth:1944,pixelHeight:1047,pixelWidth:1944,sizes:\"min(768px, 100vw)\",...toResponsiveImage(hs9jjmMKb)}}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-pa3e61\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"hYVDQrE4P\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-2vjhva\",\"data-styles-preset\":\"zsghBmVlH\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-2ab777e3-f80d-42ae-b7f5-8c595573511f, rgb(255, 255, 255)))\"},children:\"Navigating the workday with the task management app.\"})}),className:\"framer-qwxjft\",layoutDependency:layoutDependency,layoutId:\"u4iPo7Z6Y\",style:{\"--extracted-1of0zx5\":\"var(--token-2ab777e3-f80d-42ae-b7f5-8c595573511f, rgb(255, 255, 255))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:RO1KBBolX,variants:{i63yKFmoC:{\"--extracted-r6o4lv\":\"var(--token-01cd149b-6bf5-4180-9e60-edd2e605fe88, rgb(90, 88, 87))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"i63yKFmoC-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tevzfu\",\"data-styles-preset\":\"awD01jL9I\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01cd149b-6bf5-4180-9e60-edd2e605fe88, rgb(90, 88, 87)))\"},children:\"24 Jan, 2024\"})})},i63yKFmoC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1dyhz3l\",\"data-styles-preset\":\"zOe9B14ES\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-01cd149b-6bf5-4180-9e60-edd2e605fe88, rgb(90, 88, 87)))\"},children:\"24 Jan, 2024\"})}),text:Qefk2tktY}},baseVariant,gestureVariant)}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h2,{className:\"framer-styles-preset-1edzx1k\",\"data-styles-preset\":\"QjHrANfuQ\",style:{\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28)))\"},children:\"Navigating the workday with the task management app.\"})}),className:\"framer-1ypdmbt\",layoutDependency:layoutDependency,layoutId:\"pvrbmexoR\",style:{\"--extracted-1of0zx5\":\"var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:RO1KBBolX,verticalAlignment:\"top\",withExternalLayout:true})]})]})})});});const css=['.framer-vdarD[data-border=\"true\"]::after, .framer-vdarD [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vdarD.framer-1x5wfo6, .framer-vdarD .framer-1x5wfo6 { display: block; }\",\".framer-vdarD.framer-15qcx0q { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1320px; will-change: var(--framer-will-change-override, transform); }\",\".framer-vdarD .framer-1o844sh { align-content: center; align-items: center; aspect-ratio: 1.8857142857142857 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 106px); justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-vdarD .framer-10wmgvl { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 4px 16px 4px 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-vdarD .framer-1fsaoh3 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-vdarD .framer-1gkzitx { aspect-ratio: 1.8857142857142857 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 106px); left: 50%; position: absolute; top: 50%; width: 100%; z-index: 1; }\",\".framer-vdarD .framer-pa3e61 { align-content: flex-start; align-items: flex-start; bottom: 52px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; left: 66px; overflow: hidden; padding: 0px 0px 0px 0px; position: absolute; width: 57%; z-index: 1; }\",\".framer-vdarD .framer-qwxjft, .framer-vdarD .framer-1ypdmbt { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdarD.framer-15qcx0q, .framer-vdarD .framer-1o844sh, .framer-vdarD .framer-10wmgvl, .framer-vdarD .framer-pa3e61 { gap: 0px; } .framer-vdarD.framer-15qcx0q > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vdarD.framer-15qcx0q > :first-child, .framer-vdarD .framer-pa3e61 > :first-child { margin-top: 0px; } .framer-vdarD.framer-15qcx0q > :last-child, .framer-vdarD .framer-pa3e61 > :last-child { margin-bottom: 0px; } .framer-vdarD .framer-1o844sh > *, .framer-vdarD .framer-10wmgvl > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-vdarD .framer-1o844sh > :first-child, .framer-vdarD .framer-10wmgvl > :first-child { margin-left: 0px; } .framer-vdarD .framer-1o844sh > :last-child, .framer-vdarD .framer-10wmgvl > :last-child { margin-right: 0px; } .framer-vdarD .framer-pa3e61 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } }\",\".framer-vdarD.framer-v-5l2wwh.framer-15qcx0q { width: 1000px; }\",\".framer-vdarD.framer-v-5l2wwh .framer-pa3e61 { width: 65%; }\",\".framer-vdarD.framer-v-1lf9kpr.framer-15qcx0q { width: 768px; }\",\".framer-vdarD.framer-v-1lf9kpr .framer-pa3e61 { bottom: 40px; left: 40px; width: 90%; }\",\".framer-vdarD.framer-v-7jpr7o.framer-15qcx0q { width: 390px; }\",\".framer-vdarD.framer-v-7jpr7o .framer-1o844sh, .framer-vdarD.framer-v-7jpr7o .framer-1gkzitx { aspect-ratio: 0.975 / 1; height: var(--framer-aspect-ratio-supported, 205px); }\",\".framer-vdarD.framer-v-7jpr7o .framer-pa3e61 { bottom: 15px; gap: 20px; left: 15px; width: 95%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdarD.framer-v-7jpr7o .framer-pa3e61 { gap: 0px; } .framer-vdarD.framer-v-7jpr7o .framer-pa3e61 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-vdarD.framer-v-7jpr7o .framer-pa3e61 > :first-child { margin-top: 0px; } .framer-vdarD.framer-v-7jpr7o .framer-pa3e61 > :last-child { margin-bottom: 0px; } }\",\".framer-vdarD.framer-v-1cm7qet.framer-15qcx0q { gap: 32px; width: 632px; }\",\".framer-vdarD.framer-v-1cm7qet .framer-1o844sh { aspect-ratio: 1.5414634146341464 / 1; height: var(--framer-aspect-ratio-supported, 410px); will-change: var(--framer-will-change-override, transform); }\",\".framer-vdarD.framer-v-1cm7qet .framer-10wmgvl { left: 20px; position: absolute; top: 20px; z-index: 2; }\",\".framer-vdarD.framer-v-1cm7qet .framer-1gkzitx { aspect-ratio: 1.5414634146341464 / 1; height: var(--framer-aspect-ratio-supported, 410px); }\",\".framer-vdarD.framer-v-1cm7qet .framer-pa3e61 { bottom: unset; gap: 12px; left: unset; overflow: visible; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vdarD.framer-v-1cm7qet.framer-15qcx0q, .framer-vdarD.framer-v-1cm7qet .framer-pa3e61 { gap: 0px; } .framer-vdarD.framer-v-1cm7qet.framer-15qcx0q > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-vdarD.framer-v-1cm7qet.framer-15qcx0q > :first-child, .framer-vdarD.framer-v-1cm7qet .framer-pa3e61 > :first-child { margin-top: 0px; } .framer-vdarD.framer-v-1cm7qet.framer-15qcx0q > :last-child, .framer-vdarD.framer-v-1cm7qet .framer-pa3e61 > :last-child { margin-bottom: 0px; } .framer-vdarD.framer-v-1cm7qet .framer-pa3e61 > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\",\".framer-vdarD.framer-v-15qcx0q.hover .framer-1gkzitx { height: var(--framer-aspect-ratio-supported, 721px); left: -20px; right: -20px; top: -10px; width: unset; }\",\".framer-vdarD.framer-v-5l2wwh.hover .framer-1gkzitx { height: var(--framer-aspect-ratio-supported, 552px); left: -20px; right: -20px; top: -11px; width: unset; }\",\".framer-vdarD.framer-v-1lf9kpr.hover .framer-1gkzitx { bottom: -10px; height: var(--framer-aspect-ratio-supported, 428px); left: -20px; right: -20px; top: unset; width: unset; }\",\".framer-vdarD.framer-v-7jpr7o.hover .framer-1gkzitx { bottom: -20px; left: -20px; top: unset; width: 110%; }\",\".framer-vdarD.framer-v-1cm7qet.hover .framer-1gkzitx { bottom: -13px; height: var(--framer-aspect-ratio-supported, 436px); left: -20px; right: -20px; top: unset; width: unset; }\",\".framer-vdarD.framer-v-1cm7qet.hover .framer-pa3e61 { bottom: unset; left: unset; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 700\n * @framerIntrinsicWidth 1320\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"idlf2bqEk\":{\"layout\":[\"fixed\",\"auto\"]},\"jqsStOnfn\":{\"layout\":[\"fixed\",\"auto\"]},\"Aw153LoTw\":{\"layout\":[\"fixed\",\"auto\"]},\"i63yKFmoC\":{\"layout\":[\"fixed\",\"auto\"]},\"Pp9pMBkuw\":{\"layout\":[\"fixed\",\"auto\"]},\"niHNmzsDt\":{\"layout\":[\"fixed\",\"auto\"]},\"NbfAOajhF\":{\"layout\":[\"fixed\",\"auto\"]},\"xah1gJgE6\":{\"layout\":[\"fixed\",\"auto\"]},\"j6xa1VtEH\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hs9jjmMKb\":\"image\",\"dslP_WWB6\":\"cetagory\",\"RO1KBBolX\":\"title\",\"Qefk2tktY\":\"date\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n */const FramerTQ587DvbH=withCSS(Component,css,\"framer-vdarD\");export default FramerTQ587DvbH;FramerTQ587DvbH.displayName=\"Single Blog\";FramerTQ587DvbH.defaultProps={height:700,width:1320};addPropertyControls(FramerTQ587DvbH,{variant:{options:[\"n_03ygFOL\",\"idlf2bqEk\",\"jqsStOnfn\",\"Aw153LoTw\",\"i63yKFmoC\"],optionTitles:[\"Desktop Card 01\",\"Laptop Card 01\",\"Tablet Card 01\",\"Mobile Card 01\",\"Desktop Card 02\"],title:\"Variant\",type:ControlType.Enum},hs9jjmMKb:{__defaultAssetReference:\"data:framer/asset-reference,OEnEVjwdN5oUD0pvtSLEcyiLOrM.png?originalFilename=Frame+1171276099+%281%29.png&preferredSize=auto\",title:\"Image\",type:ControlType.ResponsiveImage},dslP_WWB6:{defaultValue:\"Business\",displayTextArea:false,title:\"Cetagory\",type:ControlType.String},RO1KBBolX:{defaultValue:\"Navigating the workday with the task management app.\",displayTextArea:false,title:\"Title\",type:ControlType.String},Qefk2tktY:{defaultValue:\"24 Jan, 2024\",displayTextArea:false,title:\"Date\",type:ControlType.String}});addFonts(FramerTQ587DvbH,[...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTQ587DvbH\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"hs9jjmMKb\\\":\\\"image\\\",\\\"dslP_WWB6\\\":\\\"cetagory\\\",\\\"RO1KBBolX\\\":\\\"title\\\",\\\"Qefk2tktY\\\":\\\"date\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1320\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"idlf2bqEk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jqsStOnfn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Aw153LoTw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"i63yKFmoC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Pp9pMBkuw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"niHNmzsDt\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"NbfAOajhF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"xah1gJgE6\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"j6xa1VtEH\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"700\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (a96673f)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,Container,cx,GeneratedComponentContext,getFonts,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PathVariablesContext,PropertyOverrides,RichText,useCurrentPathVariables,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,withCSS,withFX,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import BaseForm from\"https://framerusercontent.com/modules/nOf2qMetDbubGodrD7DE/2PvOzsgZGVDN6zHV5deK/BaseForm.js\";import Footer from\"#framer/local/canvasComponent/ohzeiO7RA/ohzeiO7RA.js\";import Navigation from\"#framer/local/canvasComponent/QlWLoCIWg/QlWLoCIWg.js\";import CTA from\"#framer/local/canvasComponent/scM1vMNuv/scM1vMNuv.js\";import SingleBlog from\"#framer/local/canvasComponent/TQ587DvbH/TQ587DvbH.js\";import Blog from\"#framer/local/collection/K9i6Yp7ew/K9i6Yp7ew.js\";import*as sharedStyle4 from\"#framer/local/css/Ax47SQ8vK/Ax47SQ8vK.js\";import*as sharedStyle1 from\"#framer/local/css/aZl8v01P_/aZl8v01P_.js\";import*as sharedStyle3 from\"#framer/local/css/gN15GvFJV/gN15GvFJV.js\";import*as sharedStyle6 from\"#framer/local/css/h3qi1_CBn/h3qi1_CBn.js\";import*as sharedStyle from\"#framer/local/css/oH44e2xmj/oH44e2xmj.js\";import*as sharedStyle5 from\"#framer/local/css/yiH4w_8IQ/yiH4w_8IQ.js\";import*as sharedStyle7 from\"#framer/local/css/zOe9B14ES/zOe9B14ES.js\";import*as sharedStyle2 from\"#framer/local/css/zsghBmVlH/zsghBmVlH.js\";import metadataProvider from\"#framer/local/webPageMetadata/t0fX9sjx2/t0fX9sjx2.js\";const NavigationFonts=getFonts(Navigation);const NavigationWithVariantAppearEffect=withVariantAppearEffect(Navigation);const RichTextWithFX=withFX(RichText);const ImageWithFX=withFX(Image);const BaseFormFonts=getFonts(BaseForm);const MotionDivWithFX=withFX(motion.div);const SingleBlogFonts=getFonts(SingleBlog);const ContainerWithFX=withFX(Container);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const cycleOrder=[\"IaHtQb73d\",\"szv6nz4b0\",\"jics85jNj\",\"qyqlmJImA\"];const breakpoints={IaHtQb73d:\"(min-width: 1440px)\",jics85jNj:\"(min-width: 768px) and (max-width: 991px)\",qyqlmJImA:\"(max-width: 767px)\",szv6nz4b0:\"(min-width: 992px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bp8Fj\";const variantClassNames={IaHtQb73d:\"framer-v-1nyl5gf\",jics85jNj:\"framer-v-1b4ipup\",qyqlmJImA:\"framer-v-ti6x29\",szv6nz4b0:\"framer-v-e6tntp\"};const transitions={default:{duration:0}};const animation={opacity:0,rotate:0,scale:1,x:0,y:80};const transition1={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`perspective(1200px) ${t}`;const transition2={damping:60,delay:.2,mass:1,stiffness:400,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const transition3={damping:60,delay:.4,mass:1,stiffness:400,type:\"spring\"};const transition4={damping:60,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition5={damping:60,delay:.8,mass:1,stiffness:400,type:\"spring\"};const QueryData=({query,children})=>{const data=useQueryData(query);return children(data);};const metadata=metadataProvider();const humanReadableVariantMap={\"Desktop \":\"IaHtQb73d\",Laptop:\"szv6nz4b0\",Phone:\"qyqlmJImA\",Tablet:\"jics85jNj\"};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:\"IaHtQb73d\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{data:Blog,type:\"Collection\"},select:[{name:\"iD5NvPw6P\",type:\"Identifier\"},{name:\"KKhREEwDv\",type:\"Identifier\"},{name:\"CH3DvbGW5\",type:\"Identifier\"},{name:\"Gt7Y8xPGb\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data in \"Blog\" matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,KKhREEwDv=getFromCurrentRouteData(\"KKhREEwDv\"),iD5NvPw6P=getFromCurrentRouteData(\"iD5NvPw6P\"),CH3DvbGW5=getFromCurrentRouteData(\"CH3DvbGW5\"),Gt7Y8xPGb=getFromCurrentRouteData(\"Gt7Y8xPGb\"),wKtMBReyPBRj9FpKiR,CH3DvbGW5BRj9FpKiR,IK_bSyWgbBRj9FpKiR,iD5NvPw6PBRj9FpKiR,KKhREEwDvBRj9FpKiR,idBRj9FpKiR,...restProps}=getProps(props);React.useLayoutEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}if(metadata1.bodyClassName){Array.from(document.body.classList).filter(c=>c.startsWith(\"framer-body-\")).map(c=>document.body.classList.remove(c));document.body.classList.add(`${metadata1.bodyClassName}-framer-bp8Fj`);return()=>{document.body.classList.remove(`${metadata1.bodyClassName}-framer-bp8Fj`);};}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const transition=transitions.default;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className];return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"IaHtQb73d\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1nyl5gf\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-oa43tt\",\"data-framer-name\":\"Header\",name:\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-16n8e6j\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-10dt5ei-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jics85jNj:{variant:\"HhLI7r11o\"},qyqlmJImA:{variant:\"Cr7oFDyYN\"},szv6nz4b0:{variant:\"adKFmd2wO\"}},children:/*#__PURE__*/_jsx(NavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"fWbbpArO6\",layoutId:\"fWbbpArO6\",style:{width:\"100%\"},variant:\"PPzXrKNX5\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-yoy0dj\",\"data-framer-name\":\"Hero Section\",name:\"Hero Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-algyhc\",\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1962rqm\",\"data-framer-name\":\"Section Title & image\",name:\"Section Title & image\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-owf191\",\"data-framer-name\":\"Title\",name:\"Title\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1w2z9oq\",\"data-styles-preset\":\"oH44e2xmj\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01cd149b-6bf5-4180-9e60-edd2e605fe88, rgb(90, 88, 87))\"},children:\"24 January, 2024\"})}),className:\"framer-1v9lwzu\",text:KKhREEwDv,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-nyoi99\",\"data-styles-preset\":\"aZl8v01P_\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28))\"},children:\"A comprehensive guide to choosing the best task management app.\"})}),className:\"framer-ww9xa9\",text:iD5NvPw6P,transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jics85jNj:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1264,pixelHeight:820,pixelWidth:1264,sizes:\"min(100vw - 60px, 768px)\",...toResponsiveImage(CH3DvbGW5)}},qyqlmJImA:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1264,pixelHeight:820,pixelWidth:1264,sizes:\"min(100vw - 40px, 390px)\",...toResponsiveImage(CH3DvbGW5)}},szv6nz4b0:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1264,pixelHeight:820,pixelWidth:1264,sizes:\"min(100vw - 60px, 1000px)\",...toResponsiveImage(CH3DvbGW5)}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:820,intrinsicWidth:1264,pixelHeight:820,pixelWidth:1264,sizes:\"min(100vw - 60px, 1320px)\",...toResponsiveImage(CH3DvbGW5)},className:\"framer-1sb6qz\",\"data-framer-name\":\"Image\",name:\"Image\",transformTemplate:transformTemplate1})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mu917a\",\"data-framer-name\":\"Content\",name:\"Content\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:Gt7Y8xPGb,className:\"framer-1p3aagl\",stylesPresetsClassNames:{h1:\"framer-styles-preset-nyoi99\",h2:\"framer-styles-preset-2vjhva\",h3:\"framer-styles-preset-15dir5e\",h4:\"framer-styles-preset-f5j6xu\",h5:\"framer-styles-preset-1ke1mt7\",h6:\"framer-styles-preset-13m78o3\",p:\"framer-styles-preset-1dyhz3l\"},transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zcwkhd\",\"data-border\":true,\"data-framer-name\":\"Newsletter Form\",name:\"Newsletter Form\",transformTemplate:transformTemplate1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-50x4rn\",\"data-framer-name\":\"Text\",name:\"Text\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-15dir5e\",\"data-styles-preset\":\"gN15GvFJV\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28))\"},children:\"Get ultimate task management secrets\"})}),className:\"framer-2il2mo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1dyhz3l\",\"data-styles-preset\":\"zOe9B14ES\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-01cd149b-6bf5-4180-9e60-edd2e605fe88, rgb(90, 88, 87))\"},children:\"Unlock the door to unparalleled productivity with our exclusive guide to the ultimate task.\"})}),className:\"framer-rd91bp\",verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(Container,{className:\"framer-is8toy-container\",children:/*#__PURE__*/_jsx(BaseForm,{button:{label:\"Download Free eBook\",shouldAppear:true},contentType:\"application/json\",height:\"100%\",id:\"vrW7CMzHX\",inputs:[{gridColumn:\"2\",label:\"\",max:\"\",min:\"\",name:\"\",options:[],placeholder:\"Enter your email\",required:false,step:0,type:\"email\",value:\"\"}],layoutId:\"vrW7CMzHX\",method:\"post\",redirectAs:\"link\",style:{width:\"100%\"},styles:{button:{align:\"stretch\",borderObject:{borderColor:\"rgba(56, 56, 56, 0.5)\",borderWidth:2},borderRadius:16,color:\"rgb(255, 255, 255)\",fill:'var(--token-421cedd9-79f0-4d58-bb9d-1f67e3007571, rgb(11, 11, 12)) /* {\"name\":\"Neutral 04\"} */',font:{fontFamily:'\"Uncut Sans Medium\", \"Uncut Sans Medium Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.7em\"},padding:15,paddingBottom:14,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:14},form:{columnGap:24,columns:\"2\",fill:\"rgba(32, 30, 28, 0)\",rowGap:18},input:{borderObject:{borderColor:\"rgba(90, 88, 87, 0.12)\",borderWidth:1.5},borderRadius:16,color:\"rgb(0, 0, 0)\",fill:\"rgba(0, 0, 0, 0)\",font:{fontFamily:'\"Satoshi\", \"Satoshi Placeholder\", sans-serif',fontSize:\"18px\",fontStyle:\"normal\",fontWeight:400,letterSpacing:\"0em\",lineHeight:\"1.7em\"},padding:12,paddingBottom:14,paddingLeft:20,paddingPerSide:true,paddingRight:20,paddingTop:14,placeholderColor:\"rgba(57, 59, 67, 0.7)\",shadowObject:{shadowBlur:4,shadowColor:\"rgba(0, 0, 0, 0.05)\",shadowX:0,shadowY:3}},label:{borderRadius:16,color:'var(--token-421cedd9-79f0-4d58-bb9d-1f67e3007571, rgb(11, 11, 12)) /* {\"name\":\"Neutral 04\"} */',fill:'var(--token-2ab777e3-f80d-42ae-b7f5-8c595573511f, rgb(255, 255, 255)) /* {\"name\":\"Neutral-01\"} */',font:{fontFamily:'\"Uncut Sans Regular\", \"Uncut Sans Regular Placeholder\", sans-serif',fontSize:\"16px\",letterSpacing:\"0em\",lineHeight:\"1.7em\"},padding:0,paddingBottom:0,paddingLeft:0,paddingPerSide:true,paddingRight:0,paddingTop:0}},url:\"\",width:\"100%\"})})]})]})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-19qq38y\",\"data-framer-name\":\"Blog Section\",name:\"Blog Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qljmn\",\"data-border\":true,\"data-framer-name\":\"Container\",name:\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-2vjhva\",\"data-styles-preset\":\"zsghBmVlH\",style:{\"--framer-text-color\":\"var(--token-93d47b6c-1f50-4224-b5d6-ecdb9d585bab, rgb(32, 30, 28))\"},children:\"Read More Articles\"})}),className:\"framer-1pg58nc\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-lzab\",children:/*#__PURE__*/_jsx(QueryData,{query:{from:{data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:2},offset:{type:\"LiteralValue\",value:3},select:[{name:\"wKtMBReyP\",type:\"Identifier\"},{name:\"CH3DvbGW5\",type:\"Identifier\"},{name:\"IK_bSyWgb\",type:\"Identifier\"},{name:\"iD5NvPw6P\",type:\"Identifier\"},{name:\"KKhREEwDv\",type:\"Identifier\"},{name:\"id\",type:\"Identifier\"}]},children:collection=>collection.map(({wKtMBReyP:wKtMBReyPBRj9FpKiR,CH3DvbGW5:CH3DvbGW5BRj9FpKiR,IK_bSyWgb:IK_bSyWgbBRj9FpKiR,iD5NvPw6P:iD5NvPw6PBRj9FpKiR,KKhREEwDv:KKhREEwDvBRj9FpKiR,id:idBRj9FpKiR},i)=>{return /*#__PURE__*/_jsx(LayoutGroup,{id:`BRj9FpKiR-${idBRj9FpKiR}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{wKtMBReyP:wKtMBReyPBRj9FpKiR},children:/*#__PURE__*/_jsx(Link,{href:{pathVariables:{wKtMBReyP:wKtMBReyPBRj9FpKiR},webPageId:\"t0fX9sjx2\"},children:/*#__PURE__*/_jsx(\"a\",{className:\"framer-1dgsexf framer-1xe1hai\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-t1b4kh-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(SingleBlog,{dslP_WWB6:IK_bSyWgbBRj9FpKiR,height:\"100%\",hs9jjmMKb:toResponsiveImage(CH3DvbGW5BRj9FpKiR),id:\"MLGRo1Dhh\",layoutId:\"MLGRo1Dhh\",Qefk2tktY:KKhREEwDvBRj9FpKiR,RO1KBBolX:iD5NvPw6PBRj9FpKiR,style:{width:\"100%\"},variant:\"i63yKFmoC\",width:\"100%\"})})})})})},idBRj9FpKiR);})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-70mz5l\",\"data-framer-name\":\"Footer Section\",name:\"Footer Section\",children:[/*#__PURE__*/_jsx(Container,{className:\"framer-r0g4ux-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jics85jNj:{variant:\"R3wt6uwZr\"},qyqlmJImA:{variant:\"XjLzTSCHn\"},szv6nz4b0:{variant:\"a7AkqrIaw\"}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"MV_jLRWSk\",layoutId:\"MV_jLRWSk\",style:{width:\"100%\"},variant:\"VnBn2raVe\",width:\"100%\"})})}),/*#__PURE__*/_jsx(Container,{className:\"framer-1517w74-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{jics85jNj:{variant:\"fXR5WfQZo\"},qyqlmJImA:{variant:\"aIP8dcwWT\"},szv6nz4b0:{variant:\"tdsgh2yVx\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"tnxl1ISH_\",layoutId:\"tnxl1ISH_\",style:{width:\"100%\"},variant:\"dWxv5_ca8\",width:\"100%\"})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=['.framer-bp8Fj[data-border=\"true\"]::after, .framer-bp8Fj [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-bp8Fj { background: white; }`,\".framer-bp8Fj.framer-1xe1hai, .framer-bp8Fj .framer-1xe1hai { display: block; }\",\".framer-bp8Fj.framer-1nyl5gf { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 1440px; }\",\".framer-bp8Fj .framer-oa43tt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 5; }\",\".framer-bp8Fj .framer-16n8e6j { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 1px; }\",\".framer-bp8Fj .framer-10dt5ei-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-bp8Fj .framer-yoy0dj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 100px 30px 125px 30px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-algyhc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1320px; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-1962rqm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-owf191 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 75%; }\",\".framer-bp8Fj .framer-1v9lwzu, .framer-bp8Fj .framer-ww9xa9 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bp8Fj .framer-1sb6qz { aspect-ratio: 1.8670438472418671 / 1; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: var(--framer-aspect-ratio-supported, 707px); position: relative; transform: perspective(1200px); width: 100%; }\",\".framer-bp8Fj .framer-1mu917a { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 125px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-1p3aagl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; transform: perspective(1200px); white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-bp8Fj .framer-zcwkhd { --border-bottom-width: 1.5px; --border-color: rgba(90, 88, 87, 0.12); --border-left-width: 1.5px; --border-right-width: 1.5px; --border-style: solid; --border-top-width: 1.5px; align-content: center; align-items: center; background-color: var(--token-18a5d663-ca82-4f8a-999c-69b919b32e81, #faf9f8); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 3px 4px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 32px 32px 32px 32px; position: relative; transform: perspective(1200px); width: 32%; }\",\".framer-bp8Fj .framer-50x4rn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-2il2mo, .framer-bp8Fj .framer-rd91bp, .framer-bp8Fj .framer-1pg58nc { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bp8Fj .framer-is8toy-container, .framer-bp8Fj .framer-r0g4ux-container, .framer-bp8Fj .framer-1517w74-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-19qq38y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-qljmn { --border-bottom-width: 0px; --border-color: rgba(32, 30, 28, 0.1); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; max-width: 1320px; overflow: hidden; padding: 125px 0px 130px 0px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-lzab { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-bp8Fj .framer-1dgsexf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 40px; height: min-content; justify-content: flex-start; padding: 0px 0px 0px 0px; position: relative; text-decoration: none; width: 48%; }\",\".framer-bp8Fj .framer-t1b4kh-container { flex: 1 0 0px; height: auto; position: relative; transform: perspective(1200px); width: 1px; }\",\".framer-bp8Fj .framer-70mz5l { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bp8Fj.framer-1nyl5gf, .framer-bp8Fj .framer-oa43tt, .framer-bp8Fj .framer-16n8e6j, .framer-bp8Fj .framer-yoy0dj, .framer-bp8Fj .framer-algyhc, .framer-bp8Fj .framer-1962rqm, .framer-bp8Fj .framer-owf191, .framer-bp8Fj .framer-1mu917a, .framer-bp8Fj .framer-zcwkhd, .framer-bp8Fj .framer-50x4rn, .framer-bp8Fj .framer-19qq38y, .framer-bp8Fj .framer-qljmn, .framer-bp8Fj .framer-lzab, .framer-bp8Fj .framer-1dgsexf, .framer-bp8Fj .framer-70mz5l { gap: 0px; } .framer-bp8Fj.framer-1nyl5gf > *, .framer-bp8Fj .framer-yoy0dj > *, .framer-bp8Fj .framer-19qq38y > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-bp8Fj.framer-1nyl5gf > :first-child, .framer-bp8Fj .framer-yoy0dj > :first-child, .framer-bp8Fj .framer-algyhc > :first-child, .framer-bp8Fj .framer-1962rqm > :first-child, .framer-bp8Fj .framer-owf191 > :first-child, .framer-bp8Fj .framer-zcwkhd > :first-child, .framer-bp8Fj .framer-50x4rn > :first-child, .framer-bp8Fj .framer-19qq38y > :first-child, .framer-bp8Fj .framer-qljmn > :first-child, .framer-bp8Fj .framer-70mz5l > :first-child { margin-top: 0px; } .framer-bp8Fj.framer-1nyl5gf > :last-child, .framer-bp8Fj .framer-yoy0dj > :last-child, .framer-bp8Fj .framer-algyhc > :last-child, .framer-bp8Fj .framer-1962rqm > :last-child, .framer-bp8Fj .framer-owf191 > :last-child, .framer-bp8Fj .framer-zcwkhd > :last-child, .framer-bp8Fj .framer-50x4rn > :last-child, .framer-bp8Fj .framer-19qq38y > :last-child, .framer-bp8Fj .framer-qljmn > :last-child, .framer-bp8Fj .framer-70mz5l > :last-child { margin-bottom: 0px; } .framer-bp8Fj .framer-oa43tt > *, .framer-bp8Fj .framer-16n8e6j > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-bp8Fj .framer-oa43tt > :first-child, .framer-bp8Fj .framer-16n8e6j > :first-child, .framer-bp8Fj .framer-1mu917a > :first-child, .framer-bp8Fj .framer-lzab > :first-child, .framer-bp8Fj .framer-1dgsexf > :first-child { margin-left: 0px; } .framer-bp8Fj .framer-oa43tt > :last-child, .framer-bp8Fj .framer-16n8e6j > :last-child, .framer-bp8Fj .framer-1mu917a > :last-child, .framer-bp8Fj .framer-lzab > :last-child, .framer-bp8Fj .framer-1dgsexf > :last-child { margin-right: 0px; } .framer-bp8Fj .framer-algyhc > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-bp8Fj .framer-1962rqm > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-bp8Fj .framer-owf191 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-bp8Fj .framer-1mu917a > * { margin: 0px; margin-left: calc(125px / 2); margin-right: calc(125px / 2); } .framer-bp8Fj .framer-zcwkhd > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-bp8Fj .framer-50x4rn > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-bp8Fj .framer-qljmn > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-bp8Fj .framer-lzab > *, .framer-bp8Fj .framer-1dgsexf > * { margin: 0px; margin-left: calc(40px / 2); margin-right: calc(40px / 2); } .framer-bp8Fj .framer-70mz5l > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } }\",\"@media (min-width: 1440px) { .framer-bp8Fj .hidden-1nyl5gf { display: none !important; } }\",`@media (min-width: 992px) and (max-width: 1439px) { .framer-bp8Fj .hidden-e6tntp { display: none !important; } .${metadata.bodyClassName}-framer-bp8Fj { background: white; } .framer-bp8Fj.framer-1nyl5gf { width: 992px; } .framer-bp8Fj .framer-yoy0dj { padding: 70px 30px 95px 30px; } .framer-bp8Fj .framer-algyhc { gap: 60px; max-width: 1000px; } .framer-bp8Fj .framer-1962rqm { gap: 55px; } .framer-bp8Fj .framer-owf191 { width: 90%; } .framer-bp8Fj .framer-1sb6qz { height: var(--framer-aspect-ratio-supported, 500px); } .framer-bp8Fj .framer-1mu917a { gap: 20px; } .framer-bp8Fj .framer-zcwkhd { width: 42%; } .framer-bp8Fj .framer-qljmn { max-width: 1000px; padding: 95px 0px 95px 0px; } .framer-bp8Fj .framer-1dgsexf { width: 47%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bp8Fj .framer-algyhc, .framer-bp8Fj .framer-1962rqm, .framer-bp8Fj .framer-1mu917a { gap: 0px; } .framer-bp8Fj .framer-algyhc > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-bp8Fj .framer-algyhc > :first-child, .framer-bp8Fj .framer-1962rqm > :first-child { margin-top: 0px; } .framer-bp8Fj .framer-algyhc > :last-child, .framer-bp8Fj .framer-1962rqm > :last-child { margin-bottom: 0px; } .framer-bp8Fj .framer-1962rqm > * { margin: 0px; margin-bottom: calc(55px / 2); margin-top: calc(55px / 2); } .framer-bp8Fj .framer-1mu917a > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-bp8Fj .framer-1mu917a > :first-child { margin-left: 0px; } .framer-bp8Fj .framer-1mu917a > :last-child { margin-right: 0px; } }}`,`@media (min-width: 768px) and (max-width: 991px) { .framer-bp8Fj .hidden-1b4ipup { display: none !important; } .${metadata.bodyClassName}-framer-bp8Fj { background: white; } .framer-bp8Fj.framer-1nyl5gf { width: 768px; } .framer-bp8Fj .framer-yoy0dj { padding: 50px 30px 80px 30px; } .framer-bp8Fj .framer-algyhc { gap: 50px; max-width: 768px; } .framer-bp8Fj .framer-1962rqm { gap: 40px; } .framer-bp8Fj .framer-owf191 { width: 100%; } .framer-bp8Fj .framer-1sb6qz { height: var(--framer-aspect-ratio-supported, 379px); } .framer-bp8Fj .framer-1mu917a { flex-direction: column; gap: 40px; } .framer-bp8Fj .framer-1p3aagl { flex: none; width: 100%; } .framer-bp8Fj .framer-zcwkhd { width: 55%; } .framer-bp8Fj .framer-qljmn { gap: 50px; padding: 80px 0px 80px 0px; } .framer-bp8Fj .framer-lzab { gap: 35px; } .framer-bp8Fj .framer-1dgsexf { width: 47%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bp8Fj .framer-algyhc, .framer-bp8Fj .framer-1962rqm, .framer-bp8Fj .framer-1mu917a, .framer-bp8Fj .framer-qljmn, .framer-bp8Fj .framer-lzab { gap: 0px; } .framer-bp8Fj .framer-algyhc > *, .framer-bp8Fj .framer-qljmn > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-bp8Fj .framer-algyhc > :first-child, .framer-bp8Fj .framer-1962rqm > :first-child, .framer-bp8Fj .framer-1mu917a > :first-child, .framer-bp8Fj .framer-qljmn > :first-child { margin-top: 0px; } .framer-bp8Fj .framer-algyhc > :last-child, .framer-bp8Fj .framer-1962rqm > :last-child, .framer-bp8Fj .framer-1mu917a > :last-child, .framer-bp8Fj .framer-qljmn > :last-child { margin-bottom: 0px; } .framer-bp8Fj .framer-1962rqm > *, .framer-bp8Fj .framer-1mu917a > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bp8Fj .framer-lzab > * { margin: 0px; margin-left: calc(35px / 2); margin-right: calc(35px / 2); } .framer-bp8Fj .framer-lzab > :first-child { margin-left: 0px; } .framer-bp8Fj .framer-lzab > :last-child { margin-right: 0px; } }}`,`@media (max-width: 767px) { .framer-bp8Fj .hidden-ti6x29 { display: none !important; } .${metadata.bodyClassName}-framer-bp8Fj { background: white; } .framer-bp8Fj.framer-1nyl5gf { width: 390px; } .framer-bp8Fj .framer-oa43tt { padding: 15px 20px 15px 20px; } .framer-bp8Fj .framer-yoy0dj { padding: 10px 20px 60px 20px; } .framer-bp8Fj .framer-algyhc { gap: 40px; max-width: 390px; } .framer-bp8Fj .framer-1962rqm { gap: 40px; } .framer-bp8Fj .framer-owf191, .framer-bp8Fj .framer-1dgsexf { width: 100%; } .framer-bp8Fj .framer-1sb6qz { aspect-ratio: 1.5217391304347827 / 1; height: var(--framer-aspect-ratio-supported, 230px); } .framer-bp8Fj .framer-1mu917a, .framer-bp8Fj .framer-lzab { flex-direction: column; gap: 30px; } .framer-bp8Fj .framer-1p3aagl { flex: none; width: 100%; } .framer-bp8Fj .framer-zcwkhd { padding: 20px 15px 20px 15px; width: 100%; } .framer-bp8Fj .framer-19qq38y { padding: 0px 20px 0px 20px; } .framer-bp8Fj .framer-qljmn { gap: 40px; padding: 60px 0px 60px 0px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-bp8Fj .framer-algyhc, .framer-bp8Fj .framer-1962rqm, .framer-bp8Fj .framer-1mu917a, .framer-bp8Fj .framer-qljmn, .framer-bp8Fj .framer-lzab { gap: 0px; } .framer-bp8Fj .framer-algyhc > *, .framer-bp8Fj .framer-1962rqm > *, .framer-bp8Fj .framer-qljmn > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-bp8Fj .framer-algyhc > :first-child, .framer-bp8Fj .framer-1962rqm > :first-child, .framer-bp8Fj .framer-1mu917a > :first-child, .framer-bp8Fj .framer-qljmn > :first-child, .framer-bp8Fj .framer-lzab > :first-child { margin-top: 0px; } .framer-bp8Fj .framer-algyhc > :last-child, .framer-bp8Fj .framer-1962rqm > :last-child, .framer-bp8Fj .framer-1mu917a > :last-child, .framer-bp8Fj .framer-qljmn > :last-child, .framer-bp8Fj .framer-lzab > :last-child { margin-bottom: 0px; } .framer-bp8Fj .framer-1mu917a > *, .framer-bp8Fj .framer-lzab > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4665\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"szv6nz4b0\":{\"layout\":[\"fixed\",\"auto\"]},\"jics85jNj\":{\"layout\":[\"fixed\",\"auto\"]},\"qyqlmJImA\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerResponsiveScreen\n */const Framert0fX9sjx2=withCSS(Component,css,\"framer-bp8Fj\");export default Framert0fX9sjx2;Framert0fX9sjx2.displayName=\"Blog\";Framert0fX9sjx2.defaultProps={height:4665,width:1440};addFonts(Framert0fX9sjx2,[{family:\"Uncut Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/jIgU9lIORtoBCUOYO2GuZn3LyYs.woff2\"},{family:\"Uncut Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/i8UT68SzfCHSd0cDNAXbcTiCIqI.woff2\"},...NavigationFonts,...BaseFormFonts,...SingleBlogFonts,...CTAFonts,...FooterFonts,...sharedStyle.fonts,...sharedStyle1.fonts,...sharedStyle2.fonts,...sharedStyle3.fonts,...sharedStyle4.fonts,...sharedStyle5.fonts,...sharedStyle6.fonts,...sharedStyle7.fonts]);\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framert0fX9sjx2\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"4665\",\"framerIntrinsicWidth\":\"1440\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"szv6nz4b0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jics85jNj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qyqlmJImA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["FieldType", "isExternalURL", "url", "hasMinMaxStep", "type", "VERSION", "BaseForm", "withCSS", "method", "contentType", "redirectAs", "link", "inputs", "button", "styles", "extraHeaders", "extraFields", "style", "onSubmit", "isError", "setError", "ye", "isLoading", "setLoading", "getFocus", "setFocus", "labelPaddingPerSide", "labelPaddingTop", "labelPaddingRight", "labelPaddingBottom", "labelPaddingLeft", "labelPadding", "labelBorderRadius", "labelBorderObject", "labelShadowObject", "inputPaddingPerSide", "inputPaddingTop", "inputPaddingRight", "inputPaddingBottom", "inputPaddingLeft", "inputPadding", "inputBorderRadius", "inputBorderObject", "inputFocusObject", "inputShadowObject", "buttonPaddingPerSide", "buttonPaddingTop", "buttonPaddingRight", "buttonPaddingBottom", "buttonPaddingLeft", "buttonPadding", "buttonBorderRadius", "buttonBorderObject", "buttonShadowObject", "labelPaddingValue", "inputPaddingValue", "buttonPaddingValue", "router", "useRouter", "onSuccess", "path", "hash", "routeId", "pathVariables", "inferInitialRouteFromPath", "formControls", "handleChange", "te", "event", "handleFocus", "input", "handleBlur", "handleSubmit", "headers", "key", "value", "formData", "requestOptions", "urlSearchParams", "name", "value1", "queryString", "urlSearchParams1", "name1", "value2", "key1", "value3", "bodyObject", "name2", "value4", "key2", "value5", "response", "statusCode", "data", "errorMessage", "error", "useAnimationControls", "labelShadowStyles", "labelBorderStyles", "inputFocusStylesFrom", "inputFocusStylesTo", "inputShadowStyles", "inputBorderStyles", "buttonShadowStyles", "buttonBorderStyles", "formVariants", "inputVariants", "dynamicBoxShadow", "label", "u", "requiredFlag", "getInputSpan", "getButtonSpan", "sum", "baseInput", "p", "motion", "defaultStyle", "textareaInput", "optionsHMTL", "options", "option", "selectInput", "selectChevron", "checkboxInput", "radioInput", "inputsHTML", "inputElement", "containerStyles", "Spinner", "props", "noButtonStyles", "basePropertyControls", "ControlType", "addPropertyControls", "shadows", "output", "shadow", "isRequired", "BaseForm_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transitions", "toResponsiveImage", "value", "transformTemplate1", "_", "t", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "humanReadableVariantMap", "getProps", "cetagory", "date", "height", "id", "image", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "hs9jjmMKb", "dslP_WWB6", "RO1KBBolX", "Qefk2tktY", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "isOnCanvas", "useIsOnFramerCanvas", "initialVariant", "useConstant", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "LayoutGroup", "u", "motion", "cx", "RichText2", "Image2", "css", "FramerTQ587DvbH", "withCSS", "TQ587DvbH_default", "addPropertyControls", "ControlType", "addFonts", "fonts", "NavigationFonts", "getFonts", "QlWLoCIWg_default", "NavigationWithVariantAppearEffect", "withVariantAppearEffect", "RichTextWithFX", "withFX", "RichText2", "ImageWithFX", "Image2", "BaseFormFonts", "BaseForm_default", "MotionDivWithFX", "motion", "SingleBlogFonts", "TQ587DvbH_default", "ContainerWithFX", "Container", "CTAFonts", "scM1vMNuv_default", "FooterFonts", "ohzeiO7RA_default", "breakpoints", "serializationHash", "variantClassNames", "transitions", "animation", "transition1", "transformTemplate1", "_", "t", "transition2", "toResponsiveImage", "value", "transition3", "transition4", "transition5", "QueryData", "query", "children", "data", "useQueryData", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "K9i6Yp7ew_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "KKhREEwDv", "iD5NvPw6P", "CH3DvbGW5", "Gt7Y8xPGb", "wKtMBReyPBRj9FpKiR", "CH3DvbGW5BRj9FpKiR", "IK_bSyWgbBRj9FpKiR", "iD5NvPw6PBRj9FpKiR", "KKhREEwDvBRj9FpKiR", "idBRj9FpKiR", "restProps", "fe", "metadata1", "_document_querySelector", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "transition", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "Container", "PropertyOverrides2", "NavigationWithVariantAppearEffect", "RichTextWithFX", "ImageWithFX", "MotionDivWithFX", "RichText2", "BaseForm_default", "collection", "i", "PathVariablesContext", "Link", "ContainerWithFX", "TQ587DvbH_default", "scM1vMNuv_default", "ohzeiO7RA_default", "css", "Framert0fX9sjx2", "withCSS", "t0fX9sjx2_default", "addFonts", "NavigationFonts", "BaseFormFonts", "SingleBlogFonts", "CTAFonts", "FooterFonts", "fonts", "__FramerMetadata__"]
}
