{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/oM1esUb2edFz3vliMQkE/aD3llJ6c5URDSESE29i5/cYIjDHgB_.js", "ssg:https://framerusercontent.com/modules/laqcaFlJXriZNBoKg3Dd/9oqBZXOjOjFPCfAyAnUT/pGkTEN628.js", "ssg:https://framerusercontent.com/modules/ymnfVxJ6Fao0VqxMNmui/RpdpjUn6CEQ7PbXsBkvI/CWFJK1fLn.js", "ssg:https://framerusercontent.com/modules/yhvhB0fOqcWi87iGnYos/kg6PRhPhBpUOIh0fVms0/RBJSaJMtG.js", "ssg:https://framerusercontent.com/modules/vxc5Gc3KWiNnhVnQc37I/TJtJEFqC0GF9j1h4zm7F/Uk81Ak5VP.js", "ssg:https://framerusercontent.com/modules/jsADPFtvfWFNqzWo9aQR/qx1eMbzCJWkelHCEwjTF/Bh7dSsuIx.js", "ssg:https://framerusercontent.com/modules/mxXUVR8rsOsMbpNn7NYF/NAeSfO9ktXCH2mFQwpxk/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (34af854)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-regular\",\"GF;Geist-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"}]}];export const css=['.framer-4fss6 .framer-styles-preset-1pq33v9:not(.rich-text-wrapper), .framer-4fss6 .framer-styles-preset-1pq33v9.rich-text-wrapper p { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 1.7em; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, #414141); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-4fss6\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (c126521)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-regular\",\"GF;Geist-700\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"}]}];export const css=['.framer-ir5mx .framer-styles-preset-1d5vvkg:not(.rich-text-wrapper), .framer-ir5mx .framer-styles-preset-1d5vvkg.rich-text-wrapper p { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 27px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, #414141); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-ir5mx\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (1a7d5b8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/oM1esUb2edFz3vliMQkE/aD3llJ6c5URDSESE29i5/cYIjDHgB_.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/laqcaFlJXriZNBoKg3Dd/9oqBZXOjOjFPCfAyAnUT/pGkTEN628.js\";const cycleOrder=[\"LoGxbN0wO\",\"cGZss6Y40\",\"zdPhdr1nJ\",\"FhKQjXwl7\"];const serializationHash=\"framer-FjFry\";const variantClassNames={cGZss6Y40:\"framer-v-2addqm\",FhKQjXwl7:\"framer-v-1h4u6wz\",LoGxbN0wO:\"framer-v-1veh1qq\",zdPhdr1nJ:\"framer-v-kgoqvq\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:80,delay:0,mass:1.2,stiffness:500,type:\"spring\"};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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Close Desktop\":\"LoGxbN0wO\",\"Close Mobile\":\"zdPhdr1nJ\",\"Open Desktop\":\"cGZss6Y40\",\"Open Mobile\":\"FhKQjXwl7\"};const getProps=({answer,click,height,id,question,width,...props})=>{return{...props,GHz_B_C5c:click??props.GHz_B_C5c,IwBk0_kO8:question??props.IwBk0_kO8??\"How secure is my financial data?\",r5W_4tAqU:answer??props.r5W_4tAqU??\"Yes, you can access your financial data from any device with an internet connection. Simply log in to your account to view your information from anywhere, at any time.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"LoGxbN0wO\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,IwBk0_kO8,r5W_4tAqU,GHz_B_C5c,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"LoGxbN0wO\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1liiquy=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GHz_B_C5c){const res=await GHz_B_C5c(...args);if(res===false)return false;}setVariant(\"cGZss6Y40\");});const onTap1qo702x=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GHz_B_C5c){const res=await GHz_B_C5c(...args);if(res===false)return false;}setVariant(\"LoGxbN0wO\");});const onTap1ykuuim=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GHz_B_C5c){const res=await GHz_B_C5c(...args);if(res===false)return false;}setVariant(\"FhKQjXwl7\");});const onTap1j4qpor=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(GHz_B_C5c){const res=await GHz_B_C5c(...args);if(res===false)return false;}setVariant(\"zdPhdr1nJ\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"cGZss6Y40\",\"FhKQjXwl7\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"cGZss6Y40\",\"FhKQjXwl7\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1veh1qq\",className,classNames),\"data-framer-name\":\"Close Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"LoGxbN0wO\",onTap:onTap1liiquy,ref:ref??ref1,style:{...style},...addPropertyOverrides({cGZss6Y40:{\"data-framer-name\":\"Open Desktop\",onTap:onTap1qo702x},FhKQjXwl7:{\"data-framer-name\":\"Open Mobile\",onTap:onTap1j4qpor},zdPhdr1nJ:{\"data-framer-name\":\"Close Mobile\",onTap:onTap1ykuuim}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10isvmf\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"cRAlOtoGY\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},variants:{cGZss6Y40:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-80cc8478-f440-4724-a79f-de925675d2b6, rgb(237, 237, 233))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},FhKQjXwl7:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-80cc8478-f440-4724-a79f-de925675d2b6, rgb(237, 237, 233))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\"},zdPhdr1nJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\"}},...addPropertyOverrides({cGZss6Y40:{\"data-border\":true},FhKQjXwl7:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-oqivpp\",\"data-framer-name\":\"Number & Title\",layoutDependency:layoutDependency,layoutId:\"xAnRme6uS\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"24px\",\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"31px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32)))\"},children:\"How secure is my financial data?\"})}),className:\"framer-1fzgz7z\",fonts:[\"GF;Geist-500\"],layoutDependency:layoutDependency,layoutId:\"hX9uipQiH\",style:{\"--extracted-1lwpl3i\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:IwBk0_kO8,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FhKQjXwl7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32)))\"},children:\"How secure is my financial data?\"})})},zdPhdr1nJ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"21px\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32)))\"},children:\"How secure is my financial data?\"})})}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-lglt1v\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"rTvYsfISl\",children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-5j3nq1\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"lUajn8oQ3\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 16H16M16 16H24M16 16V8M16 16V24\" stroke=\"#E29578\" stroke-width=\"2.66667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1gq3i1y\",\"data-framer-name\":\"Frame\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:32,layoutDependency:layoutDependency,layoutId:\"Zb3SSwSHo\",svg:'<svg width=\"32\" height=\"32\" viewBox=\"0 0 32 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M8 16H24\" stroke=\"#E29578\" stroke-width=\"2.66667\" stroke-linecap=\"round\" stroke-linejoin=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})]}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m6iyko\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"B1Ef8o6ke\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-14isomm\",\"data-framer-name\":\"Answer\",layoutDependency:layoutDependency,layoutId:\"JO2GLSP4o\",style:{backgroundColor:\"var(--token-5ddd0c47-737b-400e-918b-5283a319cc82, rgb(251, 250, 250))\",borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},variants:{cGZss6Y40:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},FhKQjXwl7:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1d5vvkg\",\"data-styles-preset\":\"pGkTEN628\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8800b281-a34f-4901-895a-c25c519095d7, rgb(94, 101, 117)))\"},children:\"Yes, you can access your financial data from any device with an internet connection. Simply log in to your account to view your information from anywhere, at any time.\"})}),className:\"framer-4vjm5x\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oINtXnhNv\",style:{\"--extracted-r6o4lv\":\"var(--token-8800b281-a34f-4901-895a-c25c519095d7, rgb(94, 101, 117))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:r5W_4tAqU,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({FhKQjXwl7:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1pq33v9\",\"data-styles-preset\":\"cYIjDHgB_\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8800b281-a34f-4901-895a-c25c519095d7, rgb(94, 101, 117)))\"},children:\"Yes, you can access your financial data from any device with an internet connection. Simply log in to your account to view your information from anywhere, at any time.\"})})}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-FjFry.framer-1pb9k3v, .framer-FjFry .framer-1pb9k3v { display: block; }\",\".framer-FjFry.framer-1veh1qq { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 750px; }\",\".framer-FjFry .framer-10isvmf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-FjFry .framer-oqivpp { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-FjFry .framer-1fzgz7z { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-FjFry .framer-lglt1v { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-FjFry .framer-5j3nq1, .framer-FjFry .framer-1gq3i1y { flex: none; height: 32px; position: relative; width: 32px; }\",\".framer-FjFry .framer-1m6iyko { 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: 24px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-FjFry .framer-14isomm { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 48px 24px 48px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-FjFry .framer-4vjm5x { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 90%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FjFry.framer-1veh1qq, .framer-FjFry .framer-10isvmf, .framer-FjFry .framer-oqivpp, .framer-FjFry .framer-lglt1v, .framer-FjFry .framer-1m6iyko, .framer-FjFry .framer-14isomm { gap: 0px; } .framer-FjFry.framer-1veh1qq > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-FjFry.framer-1veh1qq > :first-child { margin-top: 0px; } .framer-FjFry.framer-1veh1qq > :last-child { margin-bottom: 0px; } .framer-FjFry .framer-10isvmf > *, .framer-FjFry .framer-14isomm > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-FjFry .framer-10isvmf > :first-child, .framer-FjFry .framer-oqivpp > :first-child, .framer-FjFry .framer-lglt1v > :first-child, .framer-FjFry .framer-1m6iyko > :first-child, .framer-FjFry .framer-14isomm > :first-child { margin-left: 0px; } .framer-FjFry .framer-10isvmf > :last-child, .framer-FjFry .framer-oqivpp > :last-child, .framer-FjFry .framer-lglt1v > :last-child, .framer-FjFry .framer-1m6iyko > :last-child, .framer-FjFry .framer-14isomm > :last-child { margin-right: 0px; } .framer-FjFry .framer-oqivpp > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-FjFry .framer-lglt1v > *, .framer-FjFry .framer-1m6iyko > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\",\".framer-FjFry.framer-v-2addqm .framer-10isvmf { padding: 0px 0px 24px 0px; }\",\".framer-FjFry.framer-v-2addqm .framer-1m6iyko { padding: 16px 0px 0px 0px; }\",\".framer-FjFry.framer-v-2addqm .framer-14isomm, .framer-FjFry.framer-v-1h4u6wz .framer-14isomm { padding: 0px; }\",\".framer-FjFry.framer-v-kgoqvq.framer-1veh1qq, .framer-FjFry.framer-v-1h4u6wz.framer-1veh1qq { width: 390px; }\",\".framer-FjFry.framer-v-kgoqvq .framer-10isvmf { gap: 15px; }\",\".framer-FjFry.framer-v-kgoqvq .framer-oqivpp, .framer-FjFry.framer-v-1h4u6wz .framer-oqivpp { align-content: flex-start; align-items: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-FjFry.framer-v-kgoqvq .framer-10isvmf { gap: 0px; } .framer-FjFry.framer-v-kgoqvq .framer-10isvmf > * { margin: 0px; margin-left: calc(15px / 2); margin-right: calc(15px / 2); } .framer-FjFry.framer-v-kgoqvq .framer-10isvmf > :first-child { margin-left: 0px; } .framer-FjFry.framer-v-kgoqvq .framer-10isvmf > :last-child { margin-right: 0px; } }\",\".framer-FjFry.framer-v-1h4u6wz .framer-10isvmf { padding: 0px 0px 20px 0px; }\",\".framer-FjFry.framer-v-1h4u6wz .framer-1m6iyko { padding: 20px 0px 0px 0px; }\",\".framer-FjFry.framer-v-1h4u6wz .framer-4vjm5x { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,...sharedStyle1.css,'.framer-FjFry[data-border=\"true\"]::after, .framer-FjFry [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 750\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"cGZss6Y40\":{\"layout\":[\"fixed\",\"auto\"]},\"zdPhdr1nJ\":{\"layout\":[\"fixed\",\"auto\"]},\"FhKQjXwl7\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"IwBk0_kO8\":\"question\",\"r5W_4tAqU\":\"answer\",\"GHz_B_C5c\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerCWFJK1fLn=withCSS(Component,css,\"framer-FjFry\");export default FramerCWFJK1fLn;FramerCWFJK1fLn.displayName=\"Single FAQ\";FramerCWFJK1fLn.defaultProps={height:32,width:750};addPropertyControls(FramerCWFJK1fLn,{variant:{options:[\"LoGxbN0wO\",\"cGZss6Y40\",\"zdPhdr1nJ\",\"FhKQjXwl7\"],optionTitles:[\"Close Desktop\",\"Open Desktop\",\"Close Mobile\",\"Open Mobile\"],title:\"Variant\",type:ControlType.Enum},IwBk0_kO8:{defaultValue:\"How secure is my financial data?\",displayTextArea:false,title:\"Question\",type:ControlType.String},r5W_4tAqU:{defaultValue:\"Yes, you can access your financial data from any device with an internet connection. Simply log in to your account to view your information from anywhere, at any time.\",displayTextArea:false,title:\"Answer\",type:ControlType.String},GHz_B_C5c:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerCWFJK1fLn,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCWFJK1fLn\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"750\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"IwBk0_kO8\\\":\\\"question\\\",\\\"r5W_4tAqU\\\":\\\"answer\\\",\\\"GHz_B_C5c\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"cGZss6Y40\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"zdPhdr1nJ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"FhKQjXwl7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"32\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CWFJK1fLn.map", "// Generated by Framer (114832d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import SingleFAQ from\"https://framerusercontent.com/modules/ymnfVxJ6Fao0VqxMNmui/RpdpjUn6CEQ7PbXsBkvI/CWFJK1fLn.js\";const SingleFAQFonts=getFonts(SingleFAQ);const cycleOrder=[\"oQGwixB2r\",\"ZgCXHzBC8\",\"AbbIi8jEk\",\"WJTfkBvp0\",\"Ov8hfcqvP\",\"n9jMhqH_N\",\"wyTomfweX\",\"tQD4Mnsnu\",\"nPpxKsmVz\",\"jiAadcjTB\",\"gwknkX0eS\",\"dOqJcF1HS\",\"w6A9c_OGb\",\"RQGgYqG1b\",\"DU6Y_a8_L\",\"X20TY58eF\",\"WiNjpQaik\",\"HfD7Qlynb\",\"u9z4f8cLi\",\"HG43ipKYF\",\"KAOC9iSWv\",\"seP3beFVW\",\"YPpkQwNUj\"];const serializationHash=\"framer-Hs76t\";const variantClassNames={AbbIi8jEk:\"framer-v-1yxbg7x\",dOqJcF1HS:\"framer-v-1bnmyr0\",DU6Y_a8_L:\"framer-v-1vvb8rh\",gwknkX0eS:\"framer-v-nij5ij\",HfD7Qlynb:\"framer-v-tbvo3r\",HG43ipKYF:\"framer-v-1myr6lr\",jiAadcjTB:\"framer-v-7a4d6i\",KAOC9iSWv:\"framer-v-19whou7\",n9jMhqH_N:\"framer-v-10nxfii\",nPpxKsmVz:\"framer-v-12uwt4\",oQGwixB2r:\"framer-v-c1ag8m\",Ov8hfcqvP:\"framer-v-12h7mtd\",RQGgYqG1b:\"framer-v-i8s247\",seP3beFVW:\"framer-v-1cv4833\",tQD4Mnsnu:\"framer-v-5igic0\",u9z4f8cLi:\"framer-v-k0moox\",w6A9c_OGb:\"framer-v-660n2j\",WiNjpQaik:\"framer-v-1ugrcg9\",WJTfkBvp0:\"framer-v-13orhkc\",wyTomfweX:\"framer-v-1qxwde6\",X20TY58eF:\"framer-v-kiz3cm\",YPpkQwNUj:\"framer-v-12vvijr\",ZgCXHzBC8:\"framer-v-1thxx7q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Desktop 01\":\"oQGwixB2r\",\"Desktop 02\":\"ZgCXHzBC8\",\"Desktop 03\":\"AbbIi8jEk\",\"Desktop 04\":\"WJTfkBvp0\",\"Desktop 05\":\"Ov8hfcqvP\",\"Mobile 01\":\"n9jMhqH_N\",\"Mobile 02\":\"wyTomfweX\",\"Mobile 03\":\"tQD4Mnsnu\",\"Mobile 04\":\"nPpxKsmVz\",\"Mobile 05\":\"jiAadcjTB\",\"Variant 11\":\"gwknkX0eS\",\"Variant 12\":\"dOqJcF1HS\",\"Variant 13\":\"w6A9c_OGb\",\"Variant 14\":\"RQGgYqG1b\",\"Variant 15\":\"DU6Y_a8_L\",\"Variant 16\":\"X20TY58eF\",\"Variant 17\":\"WiNjpQaik\",\"Variant 18\":\"HfD7Qlynb\",\"Variant 19\":\"u9z4f8cLi\",\"Variant 20\":\"HG43ipKYF\",\"Variant 21\":\"KAOC9iSWv\",\"Variant 22\":\"seP3beFVW\",\"Variant 23\":\"YPpkQwNUj\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"oQGwixB2r\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"oQGwixB2r\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTaplej7z9=activeVariantCallback(async(...args)=>{setVariant(\"ZgCXHzBC8\");});const onTapk5l5mh=activeVariantCallback(async(...args)=>{setVariant(\"wyTomfweX\");});const onTap10rbhl9=activeVariantCallback(async(...args)=>{setVariant(\"n9jMhqH_N\");});const GHz_B_C5ckqhlx8=activeVariantCallback(async(...args)=>{setVariant(\"oQGwixB2r\");});const onTap1nt9884=activeVariantCallback(async(...args)=>{setVariant(\"AbbIi8jEk\");});const onTap1hnfd8x=activeVariantCallback(async(...args)=>{setVariant(\"tQD4Mnsnu\");});const GHz_B_C5c10rbhl9=activeVariantCallback(async(...args)=>{setVariant(\"n9jMhqH_N\");});const onTapdjp9ep=activeVariantCallback(async(...args)=>{setVariant(\"WJTfkBvp0\");});const onTap8uhc76=activeVariantCallback(async(...args)=>{setVariant(\"nPpxKsmVz\");});const onTap119bq44=activeVariantCallback(async(...args)=>{setVariant(\"Ov8hfcqvP\");});const onTap1azgvar=activeVariantCallback(async(...args)=>{setVariant(\"jiAadcjTB\");});const onTapr2k8a2=activeVariantCallback(async(...args)=>{setVariant(\"dOqJcF1HS\");});const onTap1xfsczm=activeVariantCallback(async(...args)=>{setVariant(\"gwknkX0eS\");});const onTap4sckvf=activeVariantCallback(async(...args)=>{setVariant(\"w6A9c_OGb\");});const onTapkbuei2=activeVariantCallback(async(...args)=>{setVariant(\"u9z4f8cLi\");});const onTapxfsfg9=activeVariantCallback(async(...args)=>{setVariant(\"DU6Y_a8_L\");});const onTapmgphrk=activeVariantCallback(async(...args)=>{setVariant(\"HG43ipKYF\");});const onTapgk5ff7=activeVariantCallback(async(...args)=>{setVariant(\"X20TY58eF\");});const onTap1189i3j=activeVariantCallback(async(...args)=>{setVariant(\"KAOC9iSWv\");});const onTapypz553=activeVariantCallback(async(...args)=>{setVariant(\"HfD7Qlynb\");});const onTap14js4yc=activeVariantCallback(async(...args)=>{setVariant(\"YPpkQwNUj\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-c1ag8m\",className,classNames),\"data-framer-name\":\"Desktop 01\",layoutDependency:layoutDependency,layoutId:\"oQGwixB2r\",ref:ref??ref1,style:{...style},...addPropertyOverrides({AbbIi8jEk:{\"data-framer-name\":\"Desktop 03\"},dOqJcF1HS:{\"data-framer-name\":\"Variant 12\"},DU6Y_a8_L:{\"data-framer-name\":\"Variant 15\"},gwknkX0eS:{\"data-framer-name\":\"Variant 11\"},HfD7Qlynb:{\"data-framer-name\":\"Variant 18\"},HG43ipKYF:{\"data-framer-name\":\"Variant 20\"},jiAadcjTB:{\"data-framer-name\":\"Mobile 05\"},KAOC9iSWv:{\"data-framer-name\":\"Variant 21\"},n9jMhqH_N:{\"data-framer-name\":\"Mobile 01\"},nPpxKsmVz:{\"data-framer-name\":\"Mobile 04\"},Ov8hfcqvP:{\"data-framer-name\":\"Desktop 05\"},RQGgYqG1b:{\"data-framer-name\":\"Variant 14\"},seP3beFVW:{\"data-framer-name\":\"Variant 22\"},tQD4Mnsnu:{\"data-framer-name\":\"Mobile 03\"},u9z4f8cLi:{\"data-framer-name\":\"Variant 19\"},w6A9c_OGb:{\"data-framer-name\":\"Variant 13\"},WiNjpQaik:{\"data-framer-name\":\"Variant 17\"},WJTfkBvp0:{\"data-framer-name\":\"Desktop 04\"},wyTomfweX:{\"data-framer-name\":\"Mobile 02\"},X20TY58eF:{\"data-framer-name\":\"Variant 16\"},YPpkQwNUj:{\"data-framer-name\":\"Variant 23\"},ZgCXHzBC8:{\"data-framer-name\":\"Desktop 02\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1pthplw\",\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"oe6AxIAJV\",onTap:onTaplej7z9,...addPropertyOverrides({gwknkX0eS:{onTap:onTapk5l5mh},HG43ipKYF:{onTap:onTapk5l5mh},jiAadcjTB:{onTap:onTapk5l5mh},KAOC9iSWv:{onTap:onTapk5l5mh},n9jMhqH_N:{onTap:onTapk5l5mh},nPpxKsmVz:{onTap:onTapk5l5mh},seP3beFVW:{onTap:onTapk5l5mh},tQD4Mnsnu:{onTap:onTapk5l5mh},u9z4f8cLi:{onTap:onTapk5l5mh},wyTomfweX:{onTap:onTap10rbhl9},YPpkQwNUj:{onTap:onTapk5l5mh}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+0+0)+0,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+0+0)+0},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+0+0)+0},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+0+0)+0},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+0+0)+0},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+0+0)+0},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+0+0)+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1x3972v-container\",layoutDependency:layoutDependency,layoutId:\"k_abMSB0g-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"k_abMSB0g\",IwBk0_kO8:\"What is Addie?\",layoutId:\"k_abMSB0g\",r5W_4tAqU:\"Addie is an app designed to help you focus, organise your tasks, and get things done. Originally created by people with ADHD for people with ADHD, Addie has evolved to support anyone who struggles with focus, overwhelm, or procrastination.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"FhKQjXwl7\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"},ZgCXHzBC8:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1rkclsb\",\"data-border\":true,\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"AkyIEYls_\",onTap:onTap1nt9884,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac9fd179-5388-45ec-8910-ee979af1b101, rgb(243, 244, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({gwknkX0eS:{onTap:onTap1hnfd8x},HG43ipKYF:{onTap:onTap1hnfd8x},jiAadcjTB:{onTap:onTap1hnfd8x},KAOC9iSWv:{onTap:onTap1hnfd8x},n9jMhqH_N:{onTap:onTap1hnfd8x},nPpxKsmVz:{onTap:onTap1hnfd8x},seP3beFVW:{onTap:onTap1hnfd8x},tQD4Mnsnu:{onTap:onTap10rbhl9},u9z4f8cLi:{onTap:onTap1hnfd8x},wyTomfweX:{onTap:onTap1hnfd8x},YPpkQwNUj:{onTap:onTap1hnfd8x}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+56+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+56+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+56+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+56+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+56+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+56+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+56+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-6goj44-container\",layoutDependency:layoutDependency,layoutId:\"Zvf6snB7f-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"Zvf6snB7f\",IwBk0_kO8:\"How does Addie help with productivity?\",layoutId:\"Zvf6snB7f\",r5W_4tAqU:\"Addie clears the mental clutter by helping you prioritise tasks and focus on one thing at a time. Whether you're feeling overwhelmed with work, life, or personal projects, Addie guides you step by step, making it easier to take action and stay on track.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({AbbIi8jEk:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{GHz_B_C5c:GHz_B_C5c10rbhl9,variant:\"FhKQjXwl7\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-n7sqyj\",\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"nsSgrHtYZ\",onTap:onTapdjp9ep,...addPropertyOverrides({gwknkX0eS:{onTap:onTap8uhc76},HG43ipKYF:{onTap:onTap8uhc76},jiAadcjTB:{onTap:onTap8uhc76},n9jMhqH_N:{onTap:onTap8uhc76},nPpxKsmVz:{onTap:onTap10rbhl9},u9z4f8cLi:{onTap:onTap8uhc76},wyTomfweX:{onTap:onTap8uhc76},YPpkQwNUj:{onTap:onTap8uhc76}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+136+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+136+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+136+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+136+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+136+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+136+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+136+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4lv89a-container\",layoutDependency:layoutDependency,layoutId:\"FvFeABaoe-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"FvFeABaoe\",IwBk0_kO8:\"Is Addie only for people with ADHD?\",layoutId:\"FvFeABaoe\",r5W_4tAqU:\"No, but it has been specifically designed for the neurodivergent brain. While Addie was created with ADHD in mind, its tools and structure benefit anyone who wants a clearer way to manage tasks and reduce stress.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"FhKQjXwl7\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},WJTfkBvp0:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-x26xqf\",\"data-border\":true,\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"S92Pm8GPJ\",onTap:onTap119bq44,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac9fd179-5388-45ec-8910-ee979af1b101, rgb(243, 244, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({gwknkX0eS:{onTap:onTap1azgvar},jiAadcjTB:{onTap:onTap10rbhl9},n9jMhqH_N:{onTap:onTap1azgvar},nPpxKsmVz:{onTap:onTap1azgvar},tQD4Mnsnu:{onTap:onTap1azgvar},wyTomfweX:{onTap:onTap1azgvar},YPpkQwNUj:{onTap:onTap1azgvar}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+216+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+216+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+216+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+216+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+216+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+216+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+216+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-iz03j6-container\",layoutDependency:layoutDependency,layoutId:\"RlSKOuRam-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"RlSKOuRam\",IwBk0_kO8:\"Is Addie free to use?\",layoutId:\"RlSKOuRam\",r5W_4tAqU:\"Addie offers a completely free 7-day trial so you can experience all its features. After that, you can choose to upgrade for continued access to premium tools.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"FhKQjXwl7\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},Ov8hfcqvP:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mrt8pv\",\"data-border\":true,\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"ZWEI6wpQ7\",onTap:onTapr2k8a2,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac9fd179-5388-45ec-8910-ee979af1b101, rgb(243, 244, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({gwknkX0eS:{onTap:onTap10rbhl9},HG43ipKYF:{onTap:onTap1azgvar},n9jMhqH_N:{onTap:onTap1xfsczm},u9z4f8cLi:{onTap:onTap1azgvar},wyTomfweX:{onTap:onTap1xfsczm},YPpkQwNUj:{onTap:onTap1xfsczm}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+296+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+296+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+296+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+296+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+296+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+296+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+296+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-du7f2z-container\",layoutDependency:layoutDependency,layoutId:\"TRHj8BVOj-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"TRHj8BVOj\",IwBk0_kO8:\"Can Addie help with work tasks?\",layoutId:\"TRHj8BVOj\",r5W_4tAqU:\"Yes! Addie includes dedicated worktime tools like Email Writer, Sentiment Analysis, and Researcher to help you draft emails, assess tone, and gather information more efficiently\u2014plus more features to support productivity at work.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({dOqJcF1HS:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},gwknkX0eS:{variant:\"FhKQjXwl7\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-wm4tm9\",\"data-border\":true,\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hYiGb74zq\",onTap:onTap4sckvf,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac9fd179-5388-45ec-8910-ee979af1b101, rgb(243, 244, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({gwknkX0eS:{onTap:onTapkbuei2},HG43ipKYF:{onTap:onTapkbuei2},jiAadcjTB:{onTap:onTapkbuei2},KAOC9iSWv:{onTap:onTapkbuei2},n9jMhqH_N:{onTap:onTapkbuei2},nPpxKsmVz:{onTap:onTapkbuei2},seP3beFVW:{onTap:onTapkbuei2},tQD4Mnsnu:{onTap:onTapkbuei2},u9z4f8cLi:{onTap:onTap10rbhl9},wyTomfweX:{onTap:onTapkbuei2},YPpkQwNUj:{onTap:onTapkbuei2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+376+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+376+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+376+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+376+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+376+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+376+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+376+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fy6kdq-container\",layoutDependency:layoutDependency,layoutId:\"mbOi_SAYl-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"mbOi_SAYl\",IwBk0_kO8:\"Does Addie integrate with other tools?\",layoutId:\"mbOi_SAYl\",r5W_4tAqU:\"Currently, Addie is a standalone app, but we\u2019re actively exploring integrations with popular productivity tools. Stay tuned for future updates!\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},RQGgYqG1b:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"FhKQjXwl7\"},w6A9c_OGb:{variant:\"cGZss6Y40\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1kaesje\",\"data-border\":true,\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"IlhfOcNpF\",onTap:onTapxfsfg9,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac9fd179-5388-45ec-8910-ee979af1b101, rgb(243, 244, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({gwknkX0eS:{onTap:onTapmgphrk},HG43ipKYF:{onTap:onTap10rbhl9},KAOC9iSWv:{onTap:onTapmgphrk},n9jMhqH_N:{onTap:onTapmgphrk},seP3beFVW:{onTap:onTapmgphrk},u9z4f8cLi:{onTap:onTapmgphrk},wyTomfweX:{onTap:onTapmgphrk},YPpkQwNUj:{onTap:onTapmgphrk}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+456+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+456+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+456+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+456+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+456+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+456+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+456+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-13k0x7u-container\",layoutDependency:layoutDependency,layoutId:\"pqBpKgzdG-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"pqBpKgzdG\",IwBk0_kO8:\"What if I want to cancel my subscription?\",layoutId:\"pqBpKgzdG\",r5W_4tAqU:\"You can cancel your subscription at any time through your app store settings (Apple App Store or Google Play Store). Your access to premium features will continue until the end of your billing cycle.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({DU6Y_a8_L:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"FhKQjXwl7\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-9dzhpk\",\"data-border\":true,\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"hhcBvtReK\",onTap:onTapgk5ff7,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-ac9fd179-5388-45ec-8910-ee979af1b101, rgb(243, 244, 246))\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\"},...addPropertyOverrides({gwknkX0eS:{onTap:onTap1189i3j},HG43ipKYF:{onTap:onTap1189i3j},jiAadcjTB:{onTap:onTap1189i3j},KAOC9iSWv:{onTap:onTap10rbhl9},n9jMhqH_N:{onTap:onTap1189i3j},u9z4f8cLi:{onTap:onTap1189i3j},wyTomfweX:{onTap:onTap1189i3j},YPpkQwNUj:{onTap:onTap1189i3j}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+536+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+536+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+536+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+536+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+536+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+536+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+536+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-jzb6bn-container\",layoutDependency:layoutDependency,layoutId:\"m96XGNhOm-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"m96XGNhOm\",IwBk0_kO8:\"What if I have a technical issue?\",layoutId:\"m96XGNhOm\",r5W_4tAqU:\"If you experience any technical issues, you can reach out to our support team via hello@addieapp.com. We\u2019re here to help and aim to resolve issues as quickly as possible.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({gwknkX0eS:{variant:\"zdPhdr1nJ\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"FhKQjXwl7\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},X20TY58eF:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},YPpkQwNUj:{variant:\"zdPhdr1nJ\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-3d2kh\",\"data-framer-name\":\"FAQ\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"DlCQv7I0X\",onTap:onTapypz553,...addPropertyOverrides({gwknkX0eS:{onTap:onTap14js4yc},HG43ipKYF:{onTap:onTap14js4yc},jiAadcjTB:{onTap:onTap14js4yc},KAOC9iSWv:{onTap:onTap14js4yc},n9jMhqH_N:{onTap:onTap14js4yc},u9z4f8cLi:{onTap:onTap14js4yc},wyTomfweX:{onTap:onTap14js4yc}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||672)-0-672)/2+616+0)+24,...addPropertyOverrides({AbbIi8jEk:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},dOqJcF1HS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},DU6Y_a8_L:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},gwknkX0eS:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},HfD7Qlynb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},HG43ipKYF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},jiAadcjTB:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},KAOC9iSWv:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},n9jMhqH_N:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||682)-0-672)/2+616+0)+24},nPpxKsmVz:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+616+0)+24},Ov8hfcqvP:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},RQGgYqG1b:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},seP3beFVW:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},tQD4Mnsnu:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+616+0)+24},u9z4f8cLi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},w6A9c_OGb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},WiNjpQaik:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},WJTfkBvp0:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},wyTomfweX:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||858)-0-672)/2+616+0)+24},X20TY58eF:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},YPpkQwNUj:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-672)/2+616+0)+24},ZgCXHzBC8:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||793)-0-672)/2+616+0)+24}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-qs67a9-container\",layoutDependency:layoutDependency,layoutId:\"weJH_0ot7-container\",children:/*#__PURE__*/_jsx(SingleFAQ,{height:\"100%\",id:\"weJH_0ot7\",IwBk0_kO8:\"Can Addie help with mental health-related issues?\",layoutId:\"weJH_0ot7\",r5W_4tAqU:\"While Addie is not a mental health app, it is designed to reduce overwhelm and support better focus, which can contribute to overall wellbeing. It includes a wellbeing section with tools to help manage stress, but it is not a replacement for professional mental health support.\",style:{width:\"100%\"},variant:\"LoGxbN0wO\",width:\"100%\",...addPropertyOverrides({gwknkX0eS:{variant:\"zdPhdr1nJ\"},HfD7Qlynb:{GHz_B_C5c:GHz_B_C5ckqhlx8,variant:\"cGZss6Y40\"},HG43ipKYF:{variant:\"zdPhdr1nJ\"},jiAadcjTB:{variant:\"zdPhdr1nJ\"},KAOC9iSWv:{variant:\"zdPhdr1nJ\"},n9jMhqH_N:{variant:\"zdPhdr1nJ\"},nPpxKsmVz:{variant:\"zdPhdr1nJ\"},seP3beFVW:{variant:\"zdPhdr1nJ\"},tQD4Mnsnu:{variant:\"zdPhdr1nJ\"},u9z4f8cLi:{variant:\"zdPhdr1nJ\"},wyTomfweX:{variant:\"zdPhdr1nJ\"},YPpkQwNUj:{GHz_B_C5c:GHz_B_C5c10rbhl9,variant:\"FhKQjXwl7\"}},baseVariant,gestureVariant)})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hs76t.framer-xofrrq, .framer-Hs76t .framer-xofrrq { display: block; }\",\".framer-Hs76t.framer-c1ag8m { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 820px; }\",\".framer-Hs76t .framer-1pthplw { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-Hs76t .framer-1x3972v-container, .framer-Hs76t .framer-6goj44-container, .framer-Hs76t .framer-4lv89a-container, .framer-Hs76t .framer-iz03j6-container, .framer-Hs76t .framer-du7f2z-container, .framer-Hs76t .framer-fy6kdq-container, .framer-Hs76t .framer-13k0x7u-container, .framer-Hs76t .framer-jzb6bn-container, .framer-Hs76t .framer-qs67a9-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-Hs76t .framer-1rkclsb, .framer-Hs76t .framer-n7sqyj, .framer-Hs76t .framer-x26xqf, .framer-Hs76t .framer-1mrt8pv, .framer-Hs76t .framer-wm4tm9, .framer-Hs76t .framer-1kaesje, .framer-Hs76t .framer-9dzhpk { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 24px 0px; position: relative; width: 100%; }\",\".framer-Hs76t .framer-3d2kh { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 24px 0px 0px 0px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-Hs76t.framer-c1ag8m, .framer-Hs76t .framer-1pthplw, .framer-Hs76t .framer-1rkclsb, .framer-Hs76t .framer-n7sqyj, .framer-Hs76t .framer-x26xqf, .framer-Hs76t .framer-1mrt8pv, .framer-Hs76t .framer-wm4tm9, .framer-Hs76t .framer-1kaesje, .framer-Hs76t .framer-9dzhpk, .framer-Hs76t .framer-3d2kh { gap: 0px; } .framer-Hs76t.framer-c1ag8m > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-Hs76t.framer-c1ag8m > :first-child { margin-top: 0px; } .framer-Hs76t.framer-c1ag8m > :last-child { margin-bottom: 0px; } .framer-Hs76t .framer-1pthplw > *, .framer-Hs76t .framer-1rkclsb > *, .framer-Hs76t .framer-n7sqyj > *, .framer-Hs76t .framer-x26xqf > *, .framer-Hs76t .framer-1mrt8pv > *, .framer-Hs76t .framer-wm4tm9 > *, .framer-Hs76t .framer-1kaesje > *, .framer-Hs76t .framer-9dzhpk > *, .framer-Hs76t .framer-3d2kh > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-Hs76t .framer-1pthplw > :first-child, .framer-Hs76t .framer-1rkclsb > :first-child, .framer-Hs76t .framer-n7sqyj > :first-child, .framer-Hs76t .framer-x26xqf > :first-child, .framer-Hs76t .framer-1mrt8pv > :first-child, .framer-Hs76t .framer-wm4tm9 > :first-child, .framer-Hs76t .framer-1kaesje > :first-child, .framer-Hs76t .framer-9dzhpk > :first-child, .framer-Hs76t .framer-3d2kh > :first-child { margin-left: 0px; } .framer-Hs76t .framer-1pthplw > :last-child, .framer-Hs76t .framer-1rkclsb > :last-child, .framer-Hs76t .framer-n7sqyj > :last-child, .framer-Hs76t .framer-x26xqf > :last-child, .framer-Hs76t .framer-1mrt8pv > :last-child, .framer-Hs76t .framer-wm4tm9 > :last-child, .framer-Hs76t .framer-1kaesje > :last-child, .framer-Hs76t .framer-9dzhpk > :last-child, .framer-Hs76t .framer-3d2kh > :last-child { margin-right: 0px; } }\",\".framer-Hs76t.framer-v-1thxx7q .framer-1pthplw { order: 0; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-1rkclsb { order: 1; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-n7sqyj { order: 2; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-x26xqf { order: 3; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-1mrt8pv { order: 4; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-wm4tm9 { order: 5; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-1kaesje { order: 6; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-9dzhpk { order: 7; }\",\".framer-Hs76t.framer-v-1thxx7q .framer-3d2kh { order: 8; }\",\".framer-Hs76t.framer-v-10nxfii.framer-c1ag8m, .framer-Hs76t.framer-v-1qxwde6.framer-c1ag8m, .framer-Hs76t.framer-v-5igic0.framer-c1ag8m, .framer-Hs76t.framer-v-12uwt4.framer-c1ag8m, .framer-Hs76t.framer-v-7a4d6i.framer-c1ag8m, .framer-Hs76t.framer-v-nij5ij.framer-c1ag8m, .framer-Hs76t.framer-v-k0moox.framer-c1ag8m, .framer-Hs76t.framer-v-1myr6lr.framer-c1ag8m, .framer-Hs76t.framer-v-19whou7.framer-c1ag8m, .framer-Hs76t.framer-v-1cv4833.framer-c1ag8m, .framer-Hs76t.framer-v-12vvijr.framer-c1ag8m { width: 390px; }\",'.framer-Hs76t[data-border=\"true\"]::after, .framer-Hs76t [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 672\n * @framerIntrinsicWidth 820\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ZgCXHzBC8\":{\"layout\":[\"fixed\",\"auto\"]},\"AbbIi8jEk\":{\"layout\":[\"fixed\",\"auto\"]},\"WJTfkBvp0\":{\"layout\":[\"fixed\",\"auto\"]},\"Ov8hfcqvP\":{\"layout\":[\"fixed\",\"auto\"]},\"n9jMhqH_N\":{\"layout\":[\"fixed\",\"auto\"]},\"wyTomfweX\":{\"layout\":[\"fixed\",\"auto\"]},\"tQD4Mnsnu\":{\"layout\":[\"fixed\",\"auto\"]},\"nPpxKsmVz\":{\"layout\":[\"fixed\",\"auto\"]},\"jiAadcjTB\":{\"layout\":[\"fixed\",\"auto\"]},\"gwknkX0eS\":{\"layout\":[\"fixed\",\"auto\"]},\"dOqJcF1HS\":{\"layout\":[\"fixed\",\"auto\"]},\"w6A9c_OGb\":{\"layout\":[\"fixed\",\"auto\"]},\"RQGgYqG1b\":{\"layout\":[\"fixed\",\"auto\"]},\"DU6Y_a8_L\":{\"layout\":[\"fixed\",\"auto\"]},\"X20TY58eF\":{\"layout\":[\"fixed\",\"auto\"]},\"WiNjpQaik\":{\"layout\":[\"fixed\",\"auto\"]},\"HfD7Qlynb\":{\"layout\":[\"fixed\",\"auto\"]},\"u9z4f8cLi\":{\"layout\":[\"fixed\",\"auto\"]},\"HG43ipKYF\":{\"layout\":[\"fixed\",\"auto\"]},\"KAOC9iSWv\":{\"layout\":[\"fixed\",\"auto\"]},\"seP3beFVW\":{\"layout\":[\"fixed\",\"auto\"]},\"YPpkQwNUj\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerRBJSaJMtG=withCSS(Component,css,\"framer-Hs76t\");export default FramerRBJSaJMtG;FramerRBJSaJMtG.displayName=\"FAQ\";FramerRBJSaJMtG.defaultProps={height:672,width:820};addPropertyControls(FramerRBJSaJMtG,{variant:{options:[\"oQGwixB2r\",\"ZgCXHzBC8\",\"AbbIi8jEk\",\"WJTfkBvp0\",\"Ov8hfcqvP\",\"n9jMhqH_N\",\"wyTomfweX\",\"tQD4Mnsnu\",\"nPpxKsmVz\",\"jiAadcjTB\",\"gwknkX0eS\",\"dOqJcF1HS\",\"w6A9c_OGb\",\"RQGgYqG1b\",\"DU6Y_a8_L\",\"X20TY58eF\",\"WiNjpQaik\",\"HfD7Qlynb\",\"u9z4f8cLi\",\"HG43ipKYF\",\"KAOC9iSWv\",\"seP3beFVW\",\"YPpkQwNUj\"],optionTitles:[\"Desktop 01\",\"Desktop 02\",\"Desktop 03\",\"Desktop 04\",\"Desktop 05\",\"Mobile 01\",\"Mobile 02\",\"Mobile 03\",\"Mobile 04\",\"Mobile 05\",\"Variant 11\",\"Variant 12\",\"Variant 13\",\"Variant 14\",\"Variant 15\",\"Variant 16\",\"Variant 17\",\"Variant 18\",\"Variant 19\",\"Variant 20\",\"Variant 21\",\"Variant 22\",\"Variant 23\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerRBJSaJMtG,[{explicitInter:true,fonts:[]},...SingleFAQFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerRBJSaJMtG\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"672\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ZgCXHzBC8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"AbbIi8jEk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WJTfkBvp0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ov8hfcqvP\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"n9jMhqH_N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wyTomfweX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"tQD4Mnsnu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"nPpxKsmVz\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"jiAadcjTB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"gwknkX0eS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"dOqJcF1HS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"w6A9c_OGb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RQGgYqG1b\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DU6Y_a8_L\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"X20TY58eF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WiNjpQaik\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HfD7Qlynb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"u9z4f8cLi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HG43ipKYF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"KAOC9iSWv\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"seP3beFVW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"YPpkQwNUj\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"820\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./RBJSaJMtG.map", "// Generated by Framer (1a7d5b8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/w4g49QnbcRYebOOtZjHm/QMar3d4CoOJzjlIC6fzh/p4eYK1klB.js\";import FAQ from\"https://framerusercontent.com/modules/yhvhB0fOqcWi87iGnYos/kg6PRhPhBpUOIh0fVms0/RBJSaJMtG.js\";const FAQFonts=getFonts(FAQ);const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"TQpkgBt9u\",\"M0sob8qhn\",\"oLZHziyiD\"];const serializationHash=\"framer-HjnXB\";const variantClassNames={M0sob8qhn:\"framer-v-1k34hy6\",oLZHziyiD:\"framer-v-tgn314\",TQpkgBt9u:\"framer-v-139gjhv\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={damping:60,delay:0,mass:1.2,stiffness:400,type:\"spring\"};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 Variants=motion.create(React.Fragment);const humanReadableVariantMap={Desktop:\"TQpkgBt9u\",Phone:\"oLZHziyiD\",Tablet:\"M0sob8qhn\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"TQpkgBt9u\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"TQpkgBt9u\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.header,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-139gjhv\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"TQpkgBt9u\",ref:ref??ref1,style:{...style},...addPropertyOverrides({M0sob8qhn:{\"data-framer-name\":\"Tablet\"},oLZHziyiD:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-18fylba\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"jqLWFnU4W\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-60i3r7\",\"data-framer-name\":\"Title\",layoutDependency:layoutDependency,layoutId:\"igh46E0OK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"48px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"54px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(51, 51, 51))\"},children:\"Frequently asked questions\"})}),className:\"framer-395xyi\",\"data-framer-name\":\"Frequently asked questions\",fonts:[\"GF;Geist-600\"],layoutDependency:layoutDependency,layoutId:\"rF6WHnm_N\",style:{\"--extracted-r6o4lv\":\"rgb(51, 51, 51)\",\"--framer-paragraph-spacing\":\"0px\"},variants:{oLZHziyiD:{\"--extracted-1lwpl3i\":\"rgb(51, 51, 51)\"}},verticalAlignment:\"center\",withExternalLayout:true,...addPropertyOverrides({oLZHziyiD:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, rgb(51, 51, 51))\"},children:\"Frequently asked questions\"})}),fonts:[\"Inter\"]}},baseVariant,gestureVariant)})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:752,width:`min(${componentViewport?.width||\"100vw\"} - 60px, 750px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||854)-0-854)/2+0+0)+0+102,...addPropertyOverrides({M0sob8qhn:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 768px) - 48px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||851)-0-851)/2+0+0)+0+99},oLZHziyiD:{width:`min(${componentViewport?.width||\"100vw\"} - 32px, 750px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||845)-0-815)/2+0+0)+0+63}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-4mtz5x-container\",layoutDependency:layoutDependency,layoutId:\"Vp0GuFEYr-container\",children:/*#__PURE__*/_jsx(FAQ,{height:\"100%\",id:\"Vp0GuFEYr\",layoutId:\"Vp0GuFEYr\",style:{width:\"100%\"},variant:\"oQGwixB2r\",width:\"100%\",...addPropertyOverrides({oLZHziyiD:{variant:\"n9jMhqH_N\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HjnXB.framer-kw5i1t, .framer-HjnXB .framer-kw5i1t { display: block; }\",\".framer-HjnXB.framer-139gjhv { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 30px 0px 30px; position: relative; width: 1440px; }\",\".framer-HjnXB .framer-18fylba { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 750px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-HjnXB .framer-60i3r7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 85%; }\",\".framer-HjnXB .framer-395xyi { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-HjnXB .framer-4mtz5x-container { flex: none; height: auto; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HjnXB.framer-139gjhv, .framer-HjnXB .framer-18fylba, .framer-HjnXB .framer-60i3r7 { gap: 0px; } .framer-HjnXB.framer-139gjhv > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-HjnXB.framer-139gjhv > :first-child, .framer-HjnXB .framer-18fylba > :first-child, .framer-HjnXB .framer-60i3r7 > :first-child { margin-top: 0px; } .framer-HjnXB.framer-139gjhv > :last-child, .framer-HjnXB .framer-18fylba > :last-child, .framer-HjnXB .framer-60i3r7 > :last-child { margin-bottom: 0px; } .framer-HjnXB .framer-18fylba > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-HjnXB .framer-60i3r7 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } }\",\".framer-HjnXB.framer-v-1k34hy6.framer-139gjhv { padding: 0px; width: 768px; }\",\".framer-HjnXB.framer-v-1k34hy6 .framer-18fylba { gap: 45px; max-width: 768px; padding: 0px 24px 0px 24px; }\",\".framer-HjnXB.framer-v-1k34hy6 .framer-60i3r7 { width: 90%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-HjnXB.framer-v-1k34hy6 .framer-18fylba { gap: 0px; } .framer-HjnXB.framer-v-1k34hy6 .framer-18fylba > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-HjnXB.framer-v-1k34hy6 .framer-18fylba > :first-child { margin-top: 0px; } .framer-HjnXB.framer-v-1k34hy6 .framer-18fylba > :last-child { margin-bottom: 0px; } }\",\".framer-HjnXB.framer-v-tgn314.framer-139gjhv { padding: 0px 16px 0px 16px; width: 375px; }\",\".framer-HjnXB.framer-v-tgn314 .framer-18fylba { gap: 32px; }\",\".framer-HjnXB.framer-v-tgn314 .framer-60i3r7 { width: 100%; }\",\".framer-HjnXB.framer-v-tgn314 .framer-395xyi { 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-HjnXB.framer-v-tgn314 .framer-18fylba { gap: 0px; } .framer-HjnXB.framer-v-tgn314 .framer-18fylba > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-HjnXB.framer-v-tgn314 .framer-18fylba > :first-child { margin-top: 0px; } .framer-HjnXB.framer-v-tgn314 .framer-18fylba > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 854\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"M0sob8qhn\":{\"layout\":[\"fixed\",\"auto\"]},\"oLZHziyiD\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerUk81Ak5VP=withCSS(Component,css,\"framer-HjnXB\");export default FramerUk81Ak5VP;FramerUk81Ak5VP.displayName=\"FAQ Section\";FramerUk81Ak5VP.defaultProps={height:854,width:1440};addPropertyControls(FramerUk81Ak5VP,{variant:{options:[\"TQpkgBt9u\",\"M0sob8qhn\",\"oLZHziyiD\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerUk81Ak5VP,[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...FAQFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUk81Ak5VP\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"M0sob8qhn\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oLZHziyiD\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"854\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1440\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (ff6f0b6)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Geist-600\",\"GF;Geist-900\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RNeQ4mJPby1QNtA.woff2\",weight:\"900\"}]}];export const css=['.framer-Hi1C6 .framer-styles-preset-w1q83x:not(.rich-text-wrapper), .framer-Hi1C6 .framer-styles-preset-w1q83x.rich-text-wrapper h3 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 42px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 55px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1439px) and (min-width: 1200px) { .framer-Hi1C6 .framer-styles-preset-w1q83x:not(.rich-text-wrapper), .framer-Hi1C6 .framer-styles-preset-w1q83x.rich-text-wrapper h3 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 55px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 768px) { .framer-Hi1C6 .framer-styles-preset-w1q83x:not(.rich-text-wrapper), .framer-Hi1C6 .framer-styles-preset-w1q83x.rich-text-wrapper h3 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 40px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 55px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 767px) and (min-width: 0px) { .framer-Hi1C6 .framer-styles-preset-w1q83x:not(.rich-text-wrapper), .framer-Hi1C6 .framer-styles-preset-w1q83x.rich-text-wrapper h3 { --framer-font-family: \"Geist\", \"Geist Placeholder\", sans-serif; --framer-font-family-bold: \"Geist\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-variation-axes: normal; --framer-font-weight: 600; --framer-font-weight-bold: 900; --framer-letter-spacing: 0px; --framer-line-height: 55px; --framer-paragraph-spacing: 0px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-Hi1C6\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f030ee3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,useRouter,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/6YdWVZhgezRAHPsDckZo/Ticker.js\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import Navbar from\"#framer/local/canvasComponent/cTjc9KtVJ/cTjc9KtVJ.js\";import Button from\"#framer/local/canvasComponent/FphLbAGTU/FphLbAGTU.js\";import FooterDark from\"#framer/local/canvasComponent/Jf9qYRVeK/Jf9qYRVeK.js\";import FAQSection from\"#framer/local/canvasComponent/Uk81Ak5VP/Uk81Ak5VP.js\";import{DownloadButton}from\"#framer/local/codeFile/bjgKxMv/DownloadButton_tsx_.js\";import*as sharedStyle4 from\"#framer/local/css/Bh7dSsuIx/Bh7dSsuIx.js\";import*as sharedStyle from\"#framer/local/css/eA9GxTFd6/eA9GxTFd6.js\";import*as sharedStyle3 from\"#framer/local/css/p4eYK1klB/p4eYK1klB.js\";import*as sharedStyle1 from\"#framer/local/css/pGkTEN628/pGkTEN628.js\";import*as sharedStyle2 from\"#framer/local/css/RSN9J5ijT/RSN9J5ijT.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const NavbarFonts=getFonts(Navbar);const DownloadButtonFonts=getFonts(DownloadButton);const MotionDivWithFX=withFX(motion.div);const TickerFonts=getFonts(Ticker);const ImageWithFX=withFX(Image);const DownloadFonts=getFonts(Download);const ButtonFonts=getFonts(Button);const FAQSectionFonts=getFonts(FAQSection);const MotionHeaderWithFX=withFX(motion.header);const FooterDarkFonts=getFonts(FooterDark);const breakpoints={Bqr0GuKP8:\"(max-width: 767px)\",PkLPKxZ5K:\"(min-width: 768px) and (max-width: 1439px)\",WQLkyLRf1:\"(min-width: 1440px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-zxFwq\";const variantClassNames={Bqr0GuKP8:\"framer-v-1oxhlwg\",PkLPKxZ5K:\"framer-v-tmnht9\",WQLkyLRf1:\"framer-v-72rtr7\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition1={damping:60,delay:0,mass:1.2,stiffness:400,type:\"spring\"};const transition2={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const animation2={opacity:1,rotate:1,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const transition3={damping:60,delay:0,mass:1,stiffness:400,type:\"spring\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transformTemplate2=(_,t)=>`translate(-50%, -50%) ${t}`;const animation3={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2,x:5};const animation4={opacity:1,rotate:3,rotateX:0,rotateY:0,scale:1.05,skewX:0,skewY:0,transition:transition2};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"WQLkyLRf1\",Phone:\"Bqr0GuKP8\",Tablet:\"PkLPKxZ5K\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"zCPActIIx\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"qlMIMdBjY\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"MFBNEVMCn\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"PkLPKxZ5K\")return true;return false;};const elementId3=useRouteElementId(\"yWi1GG0rW\");const ref4=React.useRef(null);const router=useRouter();useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-f226e6bc-b11a-4580-9542-031d12e41762, rgb(250, 249, 245)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v8tpni\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-cfn3ej\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{width:\"max(100vw, 1px)\",y:0},PkLPKxZ5K:{width:`max(${componentViewport?.width||\"100vw\"}, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:84,width:`max(min(max(${componentViewport?.width||\"100vw\"} - 60px, 1px), 1220px), 1px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-4srkg6-container\",nodeId:\"krD4Fswwn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{variant:\"qPgT547he\"},PkLPKxZ5K:{variant:\"qPgT547he\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"krD4Fswwn\",layoutId:\"krD4Fswwn\",style:{width:\"100%\"},variant:\"N9Ow14zyn\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"header\",{background:{alt:\"\",fit:\"fill\",positionX:\"91%\",positionY:\"94.3%\"},className:\"framer-11k2w9s\",\"data-framer-name\":\"Hero Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-19f3v09\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8vue8l\",\"data-framer-name\":\"Hero Content\",id:elementId,ref:ref1,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16o6vt0\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-14mhqh1\",\"data-styles-preset\":\"eA9GxTFd6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9af1c38-8ce1-45d3-916e-90f12807c1de, rgb(23, 35, 66))\"},children:[\"Get stuff done\",/*#__PURE__*/_jsx(\"br\",{}),\"one task at a time\"]})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-14mhqh1\",\"data-styles-preset\":\"eA9GxTFd6\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9af1c38-8ce1-45d3-916e-90f12807c1de, rgb(23, 35, 66))\"},children:[\"Get stuff done\",/*#__PURE__*/_jsx(\"br\",{}),\"one task at a time\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-14mhqh1\",\"data-styles-preset\":\"eA9GxTFd6\",style:{\"--framer-text-color\":\"var(--token-c9af1c38-8ce1-45d3-916e-90f12807c1de, rgb(23, 35, 66))\"},children:[\"Get stuff done\",/*#__PURE__*/_jsx(\"br\",{}),\"one task at a time\"]})}),className:\"framer-1lvw9ch\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d5vvkg\",\"data-styles-preset\":\"pGkTEN628\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8800b281-a34f-4901-895a-c25c519095d7, rgb(94, 101, 117))\"},children:\"The science-backed app that helps you declutter your life, create routines and get stuff done!\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d5vvkg\",\"data-styles-preset\":\"pGkTEN628\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-8800b281-a34f-4901-895a-c25c519095d7, rgb(94, 101, 117))\"},children:\"The science-backed app that helps you declutter your life, create routines and get stuff done!\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1d5vvkg\",\"data-styles-preset\":\"pGkTEN628\",style:{\"--framer-text-color\":\"var(--token-8800b281-a34f-4901-895a-c25c519095d7, rgb(94, 101, 117))\"},children:\"The science-backed app that helps you declutter your life, create routines and get stuff done!\"})}),className:\"framer-139v47n\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wnx50s-container\",isAuthoredByUser:true,nodeId:\"IkSh3W_Rb\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(DownloadButton,{color:\"rgb(0, 0, 0)\",height:\"100%\",id:\"IkSh3W_Rb\",layoutId:\"IkSh3W_Rb\",text:\"Try 7 days free\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11zi1tu\",\"data-framer-name\":\"Hero Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"hero-image-01\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+81+0+32+484.8+0+0),pixelHeight:1e3,pixelWidth:1006,sizes:`calc(${componentViewport?.width||\"100vw\"} - 104px)`,src:\"https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png\",srcSet:\"https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png 1006w\"}},PkLPKxZ5K:{background:{alt:\"hero-image-01\",fit:\"fill\",pixelHeight:1e3,pixelWidth:1006,sizes:\"520px\",src:\"https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png\",srcSet:\"https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png 1006w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"hero-image-01\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+112+0+56+0+0),pixelHeight:1e3,pixelWidth:1006,sizes:\"520px\",src:\"https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png\",srcSet:\"https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png?scale-down-to=512 512w,https://framerusercontent.com/images/QJ5lOAsFGxeFRyIhePHbzVDQEI.png 1006w\"},className:\"framer-1oc1351\",\"data-framer-name\":\"Image\",whileHover:animation2})})})]})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-be9mvq\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-wkg2rc\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1fatkub\",\"data-framer-name\":\"Container\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q9knp0\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9af1c38-8ce1-45d3-916e-90f12807c1de, rgb(23, 35, 66))\"},children:[\"Addie. Built for ADHD. \",/*#__PURE__*/_jsx(\"br\",{}),\"Loved by all.\"]})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-c9af1c38-8ce1-45d3-916e-90f12807c1de, rgb(23, 35, 66))\"},children:\"Addie. Built for ADHD. Loved by all.\"})}),className:\"framer-1au3ppd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17fyr0c\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hxcj4d\",\"data-framer-name\":\"Pricing Card List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iiuws0\",\"data-framer-name\":\"Pricing Card 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qlf8yn\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1c18p0y\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"ONE TASKING\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"ONE TASKING\"})}),className:\"framer-19m5rr6\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Tackle one task at a time, and we\u2019ll do the rest\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Tackle one task at a time, and we\u2019ll do the rest\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w1q83x\",\"data-styles-preset\":\"Bh7dSsuIx\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Tackle one task at a time, and we\u2019ll do the rest\"})}),className:\"framer-zwc7a4\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w17g0a\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1205.8+0+0+0+0+0+63+0+0+0+0+24+0+0+178+-11.5),pixelHeight:716,pixelWidth:531,sizes:\"211px\",src:\"https://framerusercontent.com/images/is1TavDV9BU2Y69M0gJs9RR6ik.png\",srcSet:\"https://framerusercontent.com/images/is1TavDV9BU2Y69M0gJs9RR6ik.png 531w\"}},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",pixelHeight:716,pixelWidth:531,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1220px), 768px) - 112px)`,src:\"https://framerusercontent.com/images/is1TavDV9BU2Y69M0gJs9RR6ik.png\",srcSet:\"https://framerusercontent.com/images/is1TavDV9BU2Y69M0gJs9RR6ik.png 531w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+0+0+0+0+0+91.2+0+0+0+40+0+0+236+455-433),pixelHeight:716,pixelWidth:531,sizes:\"354px\",src:\"https://framerusercontent.com/images/is1TavDV9BU2Y69M0gJs9RR6ik.png\",srcSet:\"https://framerusercontent.com/images/is1TavDV9BU2Y69M0gJs9RR6ik.png 531w\"},className:\"framer-9x3g0e\",transformTemplate:transformTemplate1,whileHover:animation1})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ne9wpb\",\"data-framer-name\":\"Pricing Card 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8qvx5w\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1r8zs4y\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1205.8+0+0+0+0+0+63+0+0+0+404+0+-277+0+0+123.118),pixelHeight:830,pixelWidth:998,sizes:\"301px\",src:\"https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png\",srcSet:\"https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png 998w\"},transformTemplate:transformTemplate2},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",pixelHeight:830,pixelWidth:998,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1220px), 768px) - 113px)`,src:\"https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png\",srcSet:\"https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png 998w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+0+0+0+0+0+91.2+0+0+0+0+0+0+0+0),pixelHeight:830,pixelWidth:998,sizes:\"513px\",src:\"https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png\",srcSet:\"https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png?scale-down-to=512 512w,https://framerusercontent.com/images/NTT3Omzp9aCyU4PxikqSXYGKc.png 998w\"},className:\"framer-1skkgou\",whileHover:animation1})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-b3ua69\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"TIME TRACKING\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"TIME TRACKING\"})}),className:\"framer-apjf3i\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Time your tasks and know for next time.\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Time your tasks and know for next time.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w1q83x\",\"data-styles-preset\":\"Bh7dSsuIx\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Time your tasks and know for next time.\"})}),className:\"framer-1f2svht\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2ciay8\",\"data-framer-name\":\"Pricing Card List\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1q4jssi\",\"data-framer-name\":\"Pricing Card 01\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oph8v8\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g4p6yg\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"REWARDS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"REWARDS\"})}),className:\"framer-1gvzn7m\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Get dopamine-powered rewards every day\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Get dopamine-powered rewards every day\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w1q83x\",\"data-styles-preset\":\"Bh7dSsuIx\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Get dopamine-powered rewards every day\"})}),className:\"framer-igtkxu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1205.8+0+0+0+0+0+63+0+808+0+0+0),pixelHeight:1300,pixelWidth:1128,sizes:\"296.0374px\",src:\"https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png\",srcSet:\"https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png?scale-down-to=1024 888w,https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png 1128w\"}},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",pixelHeight:1300,pixelWidth:1128,sizes:\"432.5802px\",src:\"https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png\",srcSet:\"https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png?scale-down-to=1024 888w,https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png 1128w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+0+0+0+0+0+91.2+0+763+0+-3),pixelHeight:1300,pixelWidth:1128,sizes:\"573.4022px\",src:\"https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png\",srcSet:\"https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png?scale-down-to=1024 888w,https://framerusercontent.com/images/SPUfsCrsexOr1MHjC7qt3ggeE.png 1128w\"},className:\"framer-1k3rp0\",transformTemplate:transformTemplate1,whileHover:animation1})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q4zj83\",\"data-framer-name\":\"Pricing Card 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-yb4e5a\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8oxpj1\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"ROUTINES\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"ROUTINES\"})}),className:\"framer-bbsf22\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Build your perfect day by one-tasking routines\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Build your perfect day by one-tasking routines\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w1q83x\",\"data-styles-preset\":\"Bh7dSsuIx\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Build your perfect day by one-tasking routines\"})}),className:\"framer-1krlkcd\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cyh2sy\",\"data-framer-name\":\"Content\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1205.8+0+0+0+0+0+63+0+808+0+404+40+0+0+178+25),pixelHeight:550,pixelWidth:982,sizes:\"301px\",src:\"https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png\",srcSet:\"https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png 982w\"},transformTemplate:transformTemplate1},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",pixelHeight:550,pixelWidth:982,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1220px), 768px) - 95px)`,src:\"https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png\",srcSet:\"https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png 982w\"},transformTemplate:undefined}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+0+0+0+0+0+91.2+0+763+0+40+0+0+236+82),pixelHeight:550,pixelWidth:982,sizes:\"489px\",src:\"https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png\",srcSet:\"https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png?scale-down-to=512 512w,https://framerusercontent.com/images/xyy4ahS32wJaIYoKEK3JULBKs.png 982w\"},className:\"framer-2ntdl4\",transformTemplate:transformTemplate2})})})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-30lced\",\"data-framer-name\":\"Pricing Card List\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-egng3s\",\"data-framer-name\":\"Pricing Card 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qucdrs\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-15watg9\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1205.8+0+0+0+0+0+63+0+1616+0+0+0+-277+0+0+455-228),pixelHeight:670,pixelWidth:860,sizes:\"280px\",src:\"https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png\",srcSet:\"https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png 860w\"}},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",pixelHeight:670,pixelWidth:860,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1220px), 768px) - 95px)`,src:\"https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png\",srcSet:\"https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png 860w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+0+0+0+0+0+91.2+0+1526+0+0+0+0+0+42),pixelHeight:670,pixelWidth:860,sizes:\"489px\",src:\"https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png\",srcSet:\"https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png?scale-down-to=512 512w,https://framerusercontent.com/images/VsU23heSM0Scif2d1vHBpebopBI.png 860w\"},className:\"framer-u40yw7\",whileHover:animation1})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8y03rf\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"WORK TOOLS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"WORK TOOLS\"})}),className:\"framer-6xm7fm\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Be more productive with our work-focus tools\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Be more productive with our work-focus tools\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w1q83x\",\"data-styles-preset\":\"Bh7dSsuIx\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Be more productive with our work-focus tools\"})}),className:\"framer-1dwgj3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ol93zn\",\"data-framer-name\":\"Pricing Card 01\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mvolkx\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18f4dy8\",\"data-framer-name\":\"Title\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"TRACKERS\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-0681e5a1-0991-44bc-a7e5-193cd06a77b9, rgb(65, 65, 65))\"},children:\"TRACKERS\"})}),className:\"framer-ivj6e5\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-3jdfp3\",\"data-styles-preset\":\"p4eYK1klB\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Learn more about you with our health trackers\"})})},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Learn more about you with our health trackers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-w1q83x\",\"data-styles-preset\":\"Bh7dSsuIx\",style:{\"--framer-text-color\":\"var(--token-cb536f6c-306f-4570-856c-8a24261923cc, rgb(32, 32, 32))\"},children:\"Learn more about you with our health trackers\"})}),className:\"framer-ps1gq3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jd1ee4\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1205.8+0+0+0+0+0+63+0+1616+0+404+24+0+0+178+-23),pixelHeight:708,pixelWidth:556,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 32px, 390px) - 114px)`,src:\"https://framerusercontent.com/images/Ft206hLOm58kNVGLN0zOPI4ii4w.png\",srcSet:\"https://framerusercontent.com/images/Ft206hLOm58kNVGLN0zOPI4ii4w.png 556w\"}},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",pixelHeight:708,pixelWidth:556,sizes:\"280px\",src:\"https://framerusercontent.com/images/Ft206hLOm58kNVGLN0zOPI4ii4w.png\",srcSet:\"https://framerusercontent.com/images/Ft206hLOm58kNVGLN0zOPI4ii4w.png 556w\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+844+0+0+0+0+0+91.2+0+1526+0+40+0+0+236+-19),pixelHeight:708,pixelWidth:556,sizes:\"410.7956px\",src:\"https://framerusercontent.com/images/Ft206hLOm58kNVGLN0zOPI4ii4w.png\",srcSet:\"https://framerusercontent.com/images/Ft206hLOm58kNVGLN0zOPI4ii4w.png 556w\"},className:\"framer-2v1j1t\",whileHover:animation1})})})]})})]})]})]})})}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-2am254\",\"data-framer-name\":\"Brand Section\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1u1vbph\",\"data-framer-name\":\"Frame 1321315898\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-iz1cm2\",\"data-framer-name\":\"Frame 1321315856\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(105, 105, 88)\"},children:\"Neurodiversity Specialists\"})}),className:\"framer-ca29fy\",\"data-framer-name\":\"Neurodiversity Specialists\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Validated by experts, created by Addie\"})}),fonts:[\"Inter\"]},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Validated by experts, created by Addie\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Validated by experts, created by Addie\"})}),className:\"framer-16kb03a\",\"data-framer-name\":\"Validated by experts, created by Addie\",fonts:[\"GF;Geist-600\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11yka0x\",\"data-framer-name\":\"Images Slideshow\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1d1i7of-container\",isModuleExternal:true,nodeId:\"qxqCMdgx3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:false,fadeInset:0,fadeWidth:25,overflow:true},gap:24,height:\"100%\",hoverFactor:1,id:\"qxqCMdgx3\",layoutId:\"qxqCMdgx3\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1bnj2ga\",\"data-framer-name\":\"Slide 1\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"248px\",src:\"https://framerusercontent.com/images/FbYAt4SbFZZisWOc939fthVDzc.jpg\",srcSet:\"https://framerusercontent.com/images/FbYAt4SbFZZisWOc939fthVDzc.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/FbYAt4SbFZZisWOc939fthVDzc.jpg 600w\"},className:\"framer-9xkrp8\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vcq110\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Suzy Jackson\"})}),className:\"framer-1huhr8k\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-161uvo8\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"ADHD coach\"})}),className:\"framer-yohpl8\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14nvu30\",\"data-framer-name\":\"Slide 2\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"248px\",src:\"https://framerusercontent.com/images/F7YTwrSZFulz9i8rXWh1OmVgI.jpg\",srcSet:\"https://framerusercontent.com/images/F7YTwrSZFulz9i8rXWh1OmVgI.jpg?scale-down-to=1024 984w,https://framerusercontent.com/images/F7YTwrSZFulz9i8rXWh1OmVgI.jpg?scale-down-to=2048 1969w,https://framerusercontent.com/images/F7YTwrSZFulz9i8rXWh1OmVgI.jpg 2352w\"},className:\"framer-xuoiee\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1go90bg\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Dean Keating-Roberts\"})}),className:\"framer-qu52lz\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-19m36od\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"Neurodiversity Consultant\"})}),className:\"framer-j2hrnn\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-85xukc\",\"data-framer-name\":\"Slide 3\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"248px\",src:\"https://framerusercontent.com/images/gNKRtvJSeFFjMAbzCmmam4YTLg.png\",srcSet:\"https://framerusercontent.com/images/gNKRtvJSeFFjMAbzCmmam4YTLg.png?scale-down-to=512 512w,https://framerusercontent.com/images/gNKRtvJSeFFjMAbzCmmam4YTLg.png 992w\"},className:\"framer-6vn0zd\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-fmjb5c\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Dr. Tony Lloyd\"})}),className:\"framer-1pd5au2\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-nr3yfd\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"CEO of the ADHD Foundation\"})}),className:\"framer-1ylmvey\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t1jlva\",\"data-framer-name\":\"Slide 4\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"248px\",src:\"https://framerusercontent.com/images/hO8nxUsfDpgTRtsSKJv0jNBElB0.jpg\",srcSet:\"https://framerusercontent.com/images/hO8nxUsfDpgTRtsSKJv0jNBElB0.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/hO8nxUsfDpgTRtsSKJv0jNBElB0.jpg 800w\"},className:\"framer-hk2c4w\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-qh1x2a\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Prof. Amanda Kirkby\"})}),className:\"framer-1l5hxd6\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-avjtl7\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"ADHD Technology Specialist\"})}),className:\"framer-1kc22zz\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-16bacrl\",\"data-framer-name\":\"Slide 5\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"248px\",src:\"https://framerusercontent.com/images/NMDiuSyVFOJlZEEY8BpIfTxzWA.jpg\",srcSet:\"https://framerusercontent.com/images/NMDiuSyVFOJlZEEY8BpIfTxzWA.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/NMDiuSyVFOJlZEEY8BpIfTxzWA.jpg 800w\"},className:\"framer-1dsxf6t\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12fg6fq\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Dr. Edward Lynch\"})}),className:\"framer-1nyqx7g\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-8fpz5t\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"GP & Wellbeing Expert\"})}),className:\"framer-19evtsr\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-3hd17b\",\"data-framer-name\":\"Slide 6\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"248px\",src:\"https://framerusercontent.com/images/aBw5A6rHmvqnPMCEIuUDQerbVs.png\",srcSet:\"https://framerusercontent.com/images/aBw5A6rHmvqnPMCEIuUDQerbVs.png?scale-down-to=512 512w,https://framerusercontent.com/images/aBw5A6rHmvqnPMCEIuUDQerbVs.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/aBw5A6rHmvqnPMCEIuUDQerbVs.png 1312w\"},className:\"framer-13nombb\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1l40ezt\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Tony Coward\"})}),className:\"framer-1odysck\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1mi83nq\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"ADHD Coach (ADDCA)\"})}),className:\"framer-rahpzo\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sbbti\",\"data-framer-name\":\"Slide 7\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",positionX:\"center\",positionY:\"center\",sizes:\"248px\",src:\"https://framerusercontent.com/images/O5ERvjmlZh2ODT3vrSeNMftM.png\",srcSet:\"https://framerusercontent.com/images/O5ERvjmlZh2ODT3vrSeNMftM.png?scale-down-to=512 512w,https://framerusercontent.com/images/O5ERvjmlZh2ODT3vrSeNMftM.png 992w\"},className:\"framer-qyb7is\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-onawgz\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Dr. Pawan Rajpal\"})}),className:\"framer-funptq\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1is3k0g\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"Consultant Psychiatrist (ADHD)\"})}),className:\"framer-1nvw3qv\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-v2bg1\",\"data-framer-name\":\"Slide 8\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"248px\",src:\"https://framerusercontent.com/images/sQvNsR5KQoJO2mjNSkDqL8oIW8Y.png\",srcSet:\"https://framerusercontent.com/images/sQvNsR5KQoJO2mjNSkDqL8oIW8Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/sQvNsR5KQoJO2mjNSkDqL8oIW8Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/sQvNsR5KQoJO2mjNSkDqL8oIW8Y.png 1201w\"},className:\"framer-istp0i\",\"data-framer-name\":\"Frame 1321315915\"}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-a8bge6\",\"data-framer-name\":\"Frame 1321315853\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTWVkaXVt\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Dr. Stefan Ivantu\"})}),className:\"framer-17rts5\",\"data-framer-name\":\"Suzy Jackson\",fonts:[\"Inter-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-11f41bw\",\"data-framer-name\":\"Frame 1321315743\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"14px\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"Consultant Psychiatrist CCT\"})}),className:\"framer-eojeo7\",\"data-framer-name\":\"Business ADHD Specialist\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})],speed:60,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"header\",{className:\"framer-1p20ugy\",\"data-framer-name\":\"Feature Section 01\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1jf8ihc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-lmnvl2\",\"data-framer-name\":\"Frame 1321315898\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ydhvlb\",\"data-framer-name\":\"Frame 1321315856\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNzAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(105, 105, 88)\"},children:\"Community\"})}),className:\"framer-x1t4o1\",\"data-framer-name\":\"Neurodiversity Specialists\",fonts:[\"GF;Geist-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",style:{\"--framer-text-alignment\":\"center\"},children:\"Our users are leading more productive lives\"})}),fonts:[\"Inter\"]},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Our users are leading more productive lives\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"64px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"68px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Our users are leading more productive lives\"})}),className:\"framer-1xh9wg6\",\"data-framer-name\":\"Validated by experts, created by Addie\",fonts:[\"GF;Geist-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1jorhcx-container\",isAuthoredByUser:true,nodeId:\"Bezeko5J4\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(DownloadButton,{color:\"rgb(0, 0, 0)\",height:\"100%\",id:\"Bezeko5J4\",layoutId:\"Bezeko5J4\",text:\"Download appz\",width:\"100%\"})})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gobhu0\",\"data-framer-name\":\"Feature List\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11bssnn\",\"data-framer-name\":\"Frame 1321315317\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xgvli\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:'\"Addie has completely transformed how I work. The one-task-at-a-time approach helps me avoid overwhelm, and the task breakdown feature is a lifesaver. It feels like the app actually understands how my brain works. Highly recommend!\"'})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:'\"Addie has completely transformed how I work. The one-task-at-a-time approach helps me avoid overwhelm, and the task breakdown feature is a lifesaver. It feels like the app actually understands how my brain works. Highly recommend!\"'})}),className:\"framer-113n5dt\",\"data-framer-name\":\"\u201CI recently completed an ADHD coaching program, and it has truly transformed my life. The coach provided me with practical strategies that helped me manage my time and focus better. I feel more confident and organized than ever before!\u201D\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hk8zeq\",\"data-framer-name\":\"Frame 1321315885\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-m01uek\",\"data-framer-name\":\"Frame 1321315966\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Emily Robertson - UK\"})}),className:\"framer-1b0ahow\",\"data-framer-name\":\"Matthew Robinson\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"Addie member\"})}),className:\"framer-fy3gr7\",\"data-framer-name\":\"Addie member\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1e8kf3x\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"\u201CI\u2019ve struggled with productivity apps before, but Addie is different. The simplicity, the task timer, and the focus on neurodivergence make a huge difference. It keeps me on track without stress or distractions. Wish I\u2019d found it sooner!\u201D\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"\u201CI\u2019ve struggled with productivity apps before, but Addie is different. The simplicity, the task timer, and the focus on neurodivergence make a huge difference. It keeps me on track without stress or distractions. Wish I\u2019d found it sooner!\u201D\"})}),className:\"framer-ynsa46\",\"data-framer-name\":\"\u201CI recently completed an ADHD coaching program, and it has truly transformed my life. The coach provided me with practical strategies that helped me manage my time and focus better. I feel more confident and organized than ever before!\u201D\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1inndxs\",\"data-framer-name\":\"Frame 1321315885\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10b5jaz\",\"data-framer-name\":\"Frame 1321315966\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Liam Carter - USA\"})}),className:\"framer-1oon0db\",\"data-framer-name\":\"Matthew Robinson\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"Addie member\"})}),className:\"framer-11z70s6\",\"data-framer-name\":\"Addie member\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-njqrxs\",\"data-border\":true,\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"\u201CI didn\u2019t expect this, but Addie actually helped me sleep for the first time in a year. After a few days of using it, my brain felt less cluttered, and I finally switched off at night. It\u2019s more than just a productivity app\u2014it helps me feel calmer, too.\u201D\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"26px\",\"--framer-text-color\":\"rgb(33, 33, 33)\"},children:\"\u201CI didn\u2019t expect this, but Addie actually helped me sleep for the first time in a year. After a few days of using it, my brain felt less cluttered, and I finally switched off at night. It\u2019s more than just a productivity app\u2014it helps me feel calmer, too.\u201D\"})}),className:\"framer-1pi53hf\",\"data-framer-name\":\"\u201CI recently completed an ADHD coaching program, and it has truly transformed my life. The coach provided me with practical strategies that helped me manage my time and focus better. I feel more confident and organized than ever before!\u201D\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x4nmtd\",\"data-framer-name\":\"Frame 1321315884\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ks6w1z\",\"data-framer-name\":\"Frame 1321315966\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(41, 41, 41)\"},children:\"Sophie Bauer - Germany\"})}),className:\"framer-1r64b05\",\"data-framer-name\":\"Matthew Robinson\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNTAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"500\",\"--framer-line-height\":\"18px\",\"--framer-text-color\":\"rgb(120, 119, 119)\"},children:\"Addie member\"})}),className:\"framer-1v1fqbl\",\"data-framer-name\":\"Addie member\",fonts:[\"GF;Geist-500\"],verticalAlignment:\"top\",withExternalLayout:true})]})})]})]})})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4308.8+8.0304),pixelHeight:1143,pixelWidth:2673,sizes:\"420px\",src:\"https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png 2673w\"}},PkLPKxZ5K:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1440,pixelHeight:1143,pixelWidth:2673,sizes:\"587px\",src:\"https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png 2673w\"}}},children:/*#__PURE__*/_jsx(ImageWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,background:{alt:\"\",fit:\"fill\",intrinsicHeight:800,intrinsicWidth:1440,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+4237+-26.1563),pixelHeight:1143,pixelWidth:2673,sizes:\"899px\",src:\"https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=2048\",srcSet:\"https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=512 512w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/YiLEzWBPF7mSnUhPAksOijCbGYc.png 2673w\"},className:\"framer-ik664g\",\"data-framer-name\":\"Users-min\",transformTemplate:transformTemplate2})})]}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-15phtbl\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yfttad\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13nu58\",\"data-framer-name\":\"Container\",id:elementId2,ref:ref3,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kn3cpa\",\"data-framer-name\":\"Frame 1321315903\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6xkqgy\",\"data-framer-name\":\"Frame 1321315911\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ep9lxt\",\"data-framer-name\":\"Frame 1321315920\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Backed by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2VyaWYgRGlzcGxheS1pdGFsaWM=\",\"--framer-font-family\":'\"DM Serif Display\", \"DM Serif Display Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(206, 127, 94)\"},children:\"science.\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"40px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trusted by the community\"})]})},PkLPKxZ5K:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Backed by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2VyaWYgRGlzcGxheS1pdGFsaWM=\",\"--framer-font-family\":'\"DM Serif Display\", \"DM Serif Display Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(206, 127, 94)\"},children:\"science.\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"50px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trusted by the community\"})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:[\"Backed by \",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"R0Y7RE0gU2VyaWYgRGlzcGxheS1pdGFsaWM=\",\"--framer-font-family\":'\"DM Serif Display\", \"DM Serif Display Placeholder\", serif',\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"400\",\"--framer-text-color\":\"rgb(206, 127, 94)\"},children:\"science.\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"60px\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Trusted by the community\"})]}),className:\"framer-ckethh\",\"data-framer-name\":\"Backed by science. Trusted by the community\",fonts:[\"GF;Geist-600\",\"GF;DM Serif Display-italic\"],verticalAlignment:\"center\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uoefby-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Ce00fehwO\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Geist\", \"Geist Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",iconOptions:{alignment:\"start\",color:\"rgb(255, 255, 255)\",size:16,type:\"Default\"},id:\"Ce00fehwO\",layoutId:\"Ce00fehwO\",srcFile:\"https://framerusercontent.com/assets/HSnMm5gR0Hd8aXOH41rfHaITs.pdf\",srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"rgb(17, 17, 17)\",borderRadius:8,color:\"rgb(255, 255, 255)\",gap:5,padding:16,paddingBottom:16,paddingLeft:16,paddingPerSide:false,paddingRight:16,paddingTop:16},text:\"Download report\",width:\"100%\"})})}),isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PkLPKxZ5K:{height:43}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1g6c2in-container hidden-72rtr7 hidden-1oxhlwg\",nodeId:\"ZuRmmOmWW\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"ZuRmmOmWW\",IYYvGZG_9:\"Get Started\",layoutId:\"ZuRmmOmWW\",N2lMsqPpO:\"Read report\",v5LLFYmNw:\"https://app.gojetpack.co.uk/\",variant:\"k5M8_Lze9\",width:\"100%\",woAuPKa50:false})})})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-x80atq\",\"data-framer-name\":\"Group 1000002160\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:612,intrinsicWidth:437,svg:'<svg width=\"437\" height=\"612\" viewBox=\"0 0 437 612\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M437 471C303 372.5 281.833 144.167 271.5 85.5L288 79L0 0L10.5 226.5L0 612L204.5 589L437 471Z\" fill=\"#BDE8ED\"/>\\n<path d=\"M137.5 543.5L225.5 500.5M103.5 489.5L305.5 402.5M91 432L287.5 355M86.5 373.5L275 308M71 312L254.5 257M69 251.5L243 209M69 188.5L237.5 149\" stroke=\"#CBEFF3\" stroke-width=\"16\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-dn6mkn\",\"data-framer-name\":\"Group 1000002161\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:612,intrinsicWidth:437,svg:'<svg width=\"437\" height=\"612\" viewBox=\"0 0 437 612\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0 471C134 372.5 155.167 144.167 165.5 85.5L149 79L437 0L426.5 226.5L437 612L232.5 589L0 471Z\" fill=\"#BDE8ED\"/>\\n<path d=\"M299.5 543.5L211.5 500.5M333.5 489.5L131.5 402.5M346 432L149.5 355M350.5 373.5L162 308M366 312L182.5 257M368 251.5L194 209M368 188.5L199.5 149\" stroke=\"#CBEFF3\" stroke-width=\"16\" stroke-linecap=\"round\"/>\\n</svg>\\n',withExternalLayout:true})]})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{y:(componentViewport?.y||0)+0+6229.8},PkLPKxZ5K:{width:`calc(${componentViewport?.width||\"100vw\"} * 0.75)`,y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:854,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+6295.8,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1uy18t7-container\",nodeId:\"WazaCdELT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{variant:\"oLZHziyiD\"},PkLPKxZ5K:{variant:\"oLZHziyiD\"}},children:/*#__PURE__*/_jsx(FAQSection,{height:\"100%\",id:\"WazaCdELT\",layoutId:\"WazaCdELT\",style:{width:\"100%\"},variant:\"TQpkgBt9u\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-10dl7nk\",\"data-framer-name\":\"Brand Section\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s2swgg\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qvhm4p\",\"data-framer-name\":\"Container\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ty7nmr\",\"data-framer-name\":\"Frame 1321315916\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hybznk\",\"data-framer-name\":\"Frame 1321315898\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1nnymyu\",\"data-framer-name\":\"Frame 1321315911\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1047kwo\",\"data-framer-name\":\"Frame 1321315920\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mv5s8v\",\"data-framer-name\":\"Frame 1321315856\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7QWVvbmlrIFRSSUFMLTcwMA==\",\"--framer-font-family\":'\"Aeonik TRIAL\", \"Aeonik TRIAL Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"700\",\"--framer-text-color\":\"rgb(0, 109, 119)\"},children:\"Organisations\"})}),className:\"framer-13z51eb\",\"data-framer-name\":\"Organisations\",fonts:[\"GF;Aeonik TRIAL-700\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dkfnvz\",\"data-framer-name\":\"Frame 1321315919\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-1px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--token-a1f32634-e02f-4198-aae0-1dbcc6b04df3, rgb(255, 255, 255))\"},children:\"Addie for companies and organisations\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"42px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Addie for companies and organisations\"})}),className:\"framer-m5mqr3\",\"data-framer-name\":\"Addie for companies and organisations\",fonts:[\"GF;Geist-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-a1f32634-e02f-4198-aae0-1dbcc6b04df3, rgb(255, 255, 255))\"},children:\"Our corporate offer goes beyond the Addie app, helping organisations hire neurodivergent talent, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtcmVndWxhcg==\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"var(--token-a1f32634-e02f-4198-aae0-1dbcc6b04df3, rgb(255, 255, 255))\"},children:\"maximise employee productivity and achieve our coveted neuro-inclusive accreditation status.\"})]}),fonts:[\"GF;Geist-regular\"]}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"Our corporate offer goes beyond the Addie app, helping organisations hire neurodivergent talent, \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"24px\",\"--framer-text-color\":\"rgb(255, 255, 255)\"},children:\"maximise employee productivity and achieve our coveted neuro-inclusive accreditation status.\"})]}),className:\"framer-1obj0sl\",\"data-framer-name\":\"Our corporate platform goes beyond the Addie app, helping organisations hire neurodivergent talent, maximise employee productivity and achieve our coveted neuro-inclusive accreditation status.\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-s7u3ii\",\"data-framer-name\":\"Frame 1321315908\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{y:(componentViewport?.y||0)+0+7139.8+20+0+0+0+0+0+24+0+0+0+0+413.6+0},PkLPKxZ5K:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+7249.8+0+0+0+0+0+0+56+0+0+0+596.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-lqq8mx-container\",nodeId:\"u4G1qPq6Y\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"u4G1qPq6Y\",IYYvGZG_9:\"Get Started\",layoutId:\"u4G1qPq6Y\",N2lMsqPpO:\"Request a demo\",v5LLFYmNw:\"https://share-eu1.hsforms.com/2Lb-nswrUQRChbtsf8TguXQ2b3b33\",variant:\"HiYTK7MB_\",width:\"100%\",woAuPKa50:false})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"M1bVGkvIw\"},implicitPathVariables:undefined},{href:{webPageId:\"M1bVGkvIw\"},implicitPathVariables:undefined},{href:{webPageId:\"M1bVGkvIw\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{y:(componentViewport?.y||0)+0+7139.8+20+0+0+0+0+0+24+0+0+0+0+413.6+0},PkLPKxZ5K:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:43,y:(componentViewport?.y||0)+0+7249.8+0+0+0+0+0+0+56+0+0+0+596.8+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tebbta-container\",nodeId:\"OukbEuM0G\",rendersWithMotion:true,scopeId:\"augiA20Il\",whileHover:animation1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{v5LLFYmNw:resolvedLinks[2]},PkLPKxZ5K:{v5LLFYmNw:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"OukbEuM0G\",IYYvGZG_9:\"Get Started\",layoutId:\"OukbEuM0G\",N2lMsqPpO:\"Learn more\",v5LLFYmNw:resolvedLinks[0],variant:\"LiXKKwEey\",width:\"100%\",woAuPKa50:false})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16igjf\",\"data-framer-name\":\"Frame 1321315912\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"hero-image-01\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7139.8+20+0+0+0+0+0+24+0+0+480.6+0+0),pixelHeight:898,pixelWidth:1006,sizes:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 390px) - 48px)`,src:\"https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png\",srcSet:\"https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png 1006w\"}},PkLPKxZ5K:{background:{alt:\"hero-image-01\",fit:\"fill\",pixelHeight:898,pixelWidth:1006,sizes:`calc(min(min(${componentViewport?.width||\"100vw\"}, 1220px), 768px) - 196px)`,src:\"https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png\",srcSet:\"https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png 1006w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"hero-image-01\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+7249.8+0+0+0+0+0+0+56+0+100.4+-4),pixelHeight:898,pixelWidth:1006,sizes:`calc(max((min(${componentViewport?.width||\"100vw\"}, 1220px) - 168px) / 2, 1px) - 36px)`,src:\"https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png\",srcSet:\"https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png?scale-down-to=512 512w,https://framerusercontent.com/images/K8vhRNpgjy8EJX9TdGmruUHUQo.png 1006w\"},className:\"framer-164b52\",\"data-framer-name\":\"Image\",whileHover:animation1})})})]})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19nytkf\",children:[/*#__PURE__*/_jsx(MotionHeaderWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ktn56x\",\"data-framer-name\":\"CTA Section\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zlhok1\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-v96aup\",\"data-framer-name\":\"Content\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-183ca4j\",\"data-styles-preset\":\"RSN9J5ijT\",children:\"Join the 75,000+ users who love Addie \"})}),fonts:[\"Inter\"]},PkLPKxZ5K:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"32px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Join the 75,000+ users who love Addie \"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7R2Vpc3QtNjAw\",\"--framer-font-family\":'\"Geist\", \"Geist Placeholder\", sans-serif',\"--framer-font-size\":\"56px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"125%\",\"--framer-text-color\":\"rgb(51, 51, 51)\"},children:\"Join the 75,000+ users who love Addie \"})}),className:\"framer-avzk5c\",\"data-framer-name\":\"Join the 75,000+ users who love Addie\",fonts:[\"GF;Geist-600\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1szhto6\",\"data-framer-name\":\"Frame 1321315908\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10vs4tg\",\"data-framer-name\":\"Frame 1\",children:[/*#__PURE__*/_jsx(Link,{href:\"https://apps.apple.com/gb/app/addie-adhd-planner-organiser/id6444955141\",motionChild:true,nodeId:\"bXpo4CbWT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1yz9sj1 framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Logo/Apple app store badge/Black\",whileHover:animation3,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-d3qr1c\",\"data-framer-name\":\"App Store\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:20,intrinsicWidth:91,svg:'<svg width=\"91\" height=\"20\" viewBox=\"0 0 91 20\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M56.8313 2.04118V4.7904H55.108V6.59333H56.8313V12.7193C56.8313 14.8111 57.7775 15.6478 60.1582 15.6478C60.5766 15.6478 60.975 15.598 61.3236 15.5382V13.7552C61.0248 13.7851 60.8356 13.805 60.5068 13.805C59.441 13.805 58.9729 13.307 58.9729 12.1715V6.59333H61.3236V4.7904H58.9729V2.04118H56.8313Z\" fill=\"white\"/>\\n<path d=\"M67.3883 15.7972C70.5558 15.7972 72.4982 13.6756 72.4982 10.1593C72.4982 6.66305 70.5459 4.53141 67.3883 4.53141C64.2207 4.53141 62.2683 6.66305 62.2683 10.1593C62.2683 13.6756 64.2107 15.7972 67.3883 15.7972ZM67.3883 13.8947C65.5256 13.8947 64.4797 12.53 64.4797 10.1593C64.4797 7.80856 65.5256 6.43395 67.3883 6.43395C69.241 6.43395 70.2969 7.80856 70.2969 10.1593C70.2969 12.5201 69.241 13.8947 67.3883 13.8947Z\" fill=\"white\"/>\\n<path d=\"M74.1601 15.5881H76.3017V9.18317C76.3017 7.65915 77.4472 6.63317 79.0708 6.63317C79.4494 6.63317 80.0869 6.7029 80.2662 6.76266V4.65094C80.037 4.59118 79.6287 4.5613 79.3099 4.5613C77.8954 4.5613 76.6902 5.33825 76.3814 6.40407H76.222V4.74059H74.1601V15.5881Z\" fill=\"white\"/>\\n<path d=\"M85.5837 6.35426C87.1675 6.35426 88.2034 7.45993 88.2532 9.16325H82.7747C82.8942 7.46989 83.9999 6.35426 85.5837 6.35426ZM88.2433 12.6595C87.8448 13.5062 86.9583 13.9744 85.6634 13.9744C83.9501 13.9744 82.8444 12.7691 82.7747 10.8666V10.747H90.4347V9.99997C90.4347 6.59333 88.6118 4.53141 85.5937 4.53141C82.5357 4.53141 80.5933 6.73278 80.5933 10.1992C80.5933 13.6656 82.4958 15.7972 85.6036 15.7972C88.0839 15.7972 89.8171 14.6019 90.3052 12.6595H88.2433Z\" fill=\"white\"/>\\n<path d=\"M42.787 11.5823C42.9521 14.2459 45.1719 15.9494 48.4756 15.9494C52.0065 15.9494 54.2159 14.1633 54.2159 11.3138C54.2159 9.07347 52.9563 7.83456 49.9003 7.12219L48.2588 6.71955C46.3178 6.26528 45.5332 5.65615 45.5332 4.59276C45.5332 3.25061 46.7515 2.37305 48.5788 2.37305C50.3133 2.37305 51.5109 3.22996 51.7277 4.60308H53.9784C53.8442 2.0943 51.6348 0.328857 48.6098 0.328857C45.3577 0.328857 43.1896 2.0943 43.1896 4.74762C43.1896 6.93636 44.4182 8.23721 47.1128 8.86699L49.0331 9.33158C51.005 9.79617 51.8723 10.4776 51.8723 11.6132C51.8723 12.9347 50.5095 13.8949 48.6511 13.8949C46.6585 13.8949 45.2751 12.9967 45.0789 11.5823H42.787Z\" fill=\"white\"/>\\n<path d=\"M20.6022 4.5613C19.1279 4.5613 17.8529 5.2984 17.1955 6.53356H17.0361V4.74059H14.9742V19.1939H17.1158V13.9445H17.2852C17.8529 15.09 19.0781 15.7673 20.6221 15.7673C23.3613 15.7673 25.1045 13.6058 25.1045 10.1593C25.1045 6.71286 23.3613 4.5613 20.6022 4.5613ZM19.9945 13.8449C18.2016 13.8449 17.076 12.4304 17.076 10.1693C17.076 7.89821 18.2016 6.48376 20.0045 6.48376C21.8174 6.48376 22.9031 7.86833 22.9031 10.1593C22.9031 12.4603 21.8174 13.8449 19.9945 13.8449Z\" fill=\"white\"/>\\n<path d=\"M32.5983 4.5613C31.1241 4.5613 29.8491 5.2984 29.1917 6.53356H29.0323V4.74059H26.9704V19.1939H29.112V13.9445H29.2813C29.8491 15.09 31.0743 15.7673 32.6182 15.7673C35.3575 15.7673 37.1007 13.6058 37.1007 10.1593C37.1007 6.71286 35.3575 4.5613 32.5983 4.5613ZM31.9907 13.8449C30.1977 13.8449 29.0721 12.4304 29.0721 10.1693C29.0721 7.89821 30.1977 6.48376 32.0007 6.48376C33.8135 6.48376 34.8993 7.86833 34.8993 10.1593C34.8993 12.4603 33.8135 13.8449 31.9907 13.8449Z\" fill=\"white\"/>\\n<path d=\"M11.1318 15.5881H13.589L8.21007 0.690205H5.72194L0.343018 15.5881H2.71759L4.09071 11.6339H9.76903L11.1318 15.5881ZM6.84728 3.39515H7.02279L9.18055 9.69292H4.67919L6.84728 3.39515Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-jyhr6z\",\"data-framer-name\":\"Download on the\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:84,svg:'<svg width=\"84\" height=\"8\" viewBox=\"0 0 84 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.781494 0.452979V7.6398H3.37632C5.51792 7.6398 6.75806 6.31997 6.75806 4.02397C6.75806 1.76284 5.50796 0.452979 3.37632 0.452979H0.781494ZM1.89712 1.46899H3.25181C4.74097 1.46899 5.62251 2.41528 5.62251 4.03892C5.62251 5.68745 4.75591 6.62378 3.25181 6.62378H1.89712V1.46899Z\" fill=\"white\"/>\\n<path d=\"M10.5562 7.74439C12.14 7.74439 13.1111 6.68355 13.1111 4.92544C13.1111 3.1773 12.135 2.11147 10.5562 2.11147C8.97237 2.11147 7.9962 3.1773 7.9962 4.92544C7.9962 6.68355 8.96739 7.74439 10.5562 7.74439ZM10.5562 6.79312C9.62481 6.79312 9.10187 6.11079 9.10187 4.92544C9.10187 3.75005 9.62481 3.06274 10.5562 3.06274C11.4825 3.06274 12.0105 3.75005 12.0105 4.92544C12.0105 6.10581 11.4825 6.79312 10.5562 6.79312Z\" fill=\"white\"/>\\n<path d=\"M21.3817 2.21606H20.3109L19.3447 6.35483H19.26L18.1444 2.21606H17.1184L16.0028 6.35483H15.9231L14.9519 2.21606H13.8662L15.3603 7.6398H16.461L17.5766 3.64546H17.6613L18.7819 7.6398H19.8925L21.3817 2.21606Z\" fill=\"white\"/>\\n<path d=\"M22.6149 7.6398H23.6857V4.46724C23.6857 3.62056 24.1887 3.09263 24.9806 3.09263C25.7725 3.09263 26.151 3.52593 26.151 4.39751V7.6398H27.2218V4.12856C27.2218 2.83862 26.5544 2.11147 25.3442 2.11147C24.5274 2.11147 23.9895 2.47505 23.7255 3.07769H23.6458V2.21606H22.6149V7.6398Z\" fill=\"white\"/>\\n<path d=\"M28.9082 7.6398H29.979V0.0993652H28.9082V7.6398Z\" fill=\"white\"/>\\n<path d=\"M34.0062 7.74439C35.59 7.74439 36.5612 6.68355 36.5612 4.92544C36.5612 3.1773 35.585 2.11147 34.0062 2.11147C32.4224 2.11147 31.4462 3.1773 31.4462 4.92544C31.4462 6.68355 32.4174 7.74439 34.0062 7.74439ZM34.0062 6.79312C33.0749 6.79312 32.5519 6.11079 32.5519 4.92544C32.5519 3.75005 33.0749 3.06274 34.0062 3.06274C34.9326 3.06274 35.4605 3.75005 35.4605 4.92544C35.4605 6.10581 34.9326 6.79312 34.0062 6.79312Z\" fill=\"white\"/>\\n<path d=\"M39.7517 6.82798C39.169 6.82798 38.7456 6.54409 38.7456 6.05601C38.7456 5.57788 39.0843 5.32388 39.8314 5.27407L41.1562 5.1894V5.64263C41.1562 6.31499 40.5585 6.82798 39.7517 6.82798ZM39.4777 7.72944C40.1899 7.72944 40.7826 7.42065 41.1064 6.87778H41.191V7.6398H42.222V3.93433C42.222 2.78882 41.455 2.11147 40.0953 2.11147C38.8651 2.11147 37.9886 2.70913 37.879 3.64048H38.915C39.0345 3.25698 39.4479 3.03784 40.0455 3.03784C40.7776 3.03784 41.1562 3.36157 41.1562 3.93433V4.40249L39.6869 4.48716C38.397 4.56685 37.6698 5.12964 37.6698 6.10581C37.6698 7.09692 38.4318 7.72944 39.4777 7.72944Z\" fill=\"white\"/>\\n<path d=\"M45.8557 7.72944C46.6028 7.72944 47.2353 7.37583 47.5591 6.78315H47.6437V7.6398H48.6697V0.0993652H47.5989V3.07769H47.5192C47.2254 2.48003 46.5978 2.12642 45.8557 2.12642C44.4861 2.12642 43.6046 3.21216 43.6046 4.92544C43.6046 6.6437 44.4761 7.72944 45.8557 7.72944ZM46.1595 3.08765C47.056 3.08765 47.6188 3.79985 47.6188 4.93042C47.6188 6.06597 47.061 6.76821 46.1595 6.76821C45.2531 6.76821 44.7102 6.07593 44.7102 4.92544C44.7102 3.78491 45.2581 3.08765 46.1595 3.08765Z\" fill=\"white\"/>\\n<path d=\"M55.6135 7.74439C57.1973 7.74439 58.1684 6.68355 58.1684 4.92544C58.1684 3.1773 57.1923 2.11147 55.6135 2.11147C54.0297 2.11147 53.0535 3.1773 53.0535 4.92544C53.0535 6.68355 54.0247 7.74439 55.6135 7.74439ZM55.6135 6.79312C54.6821 6.79312 54.1592 6.11079 54.1592 4.92544C54.1592 3.75005 54.6821 3.06274 55.6135 3.06274C56.5398 3.06274 57.0678 3.75005 57.0678 4.92544C57.0678 6.10581 56.5398 6.79312 55.6135 6.79312Z\" fill=\"white\"/>\\n<path d=\"M59.5859 7.6398H60.6567V4.46724C60.6567 3.62056 61.1597 3.09263 61.9516 3.09263C62.7435 3.09263 63.122 3.52593 63.122 4.39751V7.6398H64.1928V4.12856C64.1928 2.83862 63.5254 2.11147 62.3152 2.11147C61.4984 2.11147 60.9605 2.47505 60.6965 3.07769H60.6168V2.21606H59.5859V7.6398Z\" fill=\"white\"/>\\n<path d=\"M69.1245 0.866357V2.24097H68.2629V3.14243H69.1245V6.20542C69.1245 7.25132 69.5976 7.66968 70.788 7.66968C70.9971 7.66968 71.1964 7.64478 71.3707 7.61489V6.72339C71.2213 6.73833 71.1266 6.74829 70.9623 6.74829C70.4294 6.74829 70.1953 6.49927 70.1953 5.93149V3.14243H71.3707V2.24097H70.1953V0.866357H69.1245Z\" fill=\"white\"/>\\n<path d=\"M72.808 7.6398H73.8788V4.47222C73.8788 3.65044 74.3669 3.09761 75.2435 3.09761C76.0005 3.09761 76.4039 3.53589 76.4039 4.40249V7.6398H77.4747V4.13853C77.4747 2.84858 76.7625 2.11646 75.6071 2.11646C74.7903 2.11646 74.2175 2.48003 73.9535 3.08765H73.8689V0.0993652H72.808V7.6398Z\" fill=\"white\"/>\\n<path d=\"M81.3376 3.0229C82.1295 3.0229 82.6474 3.57573 82.6724 4.42739H79.9331C79.9929 3.58071 80.5457 3.0229 81.3376 3.0229ZM82.6674 6.17554C82.4682 6.59888 82.0249 6.83296 81.3774 6.83296C80.5208 6.83296 79.968 6.23032 79.9331 5.27905V5.21929H83.7631V4.84575C83.7631 3.14243 82.8516 2.11147 81.3426 2.11147C79.8136 2.11147 78.8424 3.21216 78.8424 4.94536C78.8424 6.67856 79.7936 7.74439 81.3475 7.74439C82.5877 7.74439 83.4543 7.14673 83.6983 6.17554H82.6674Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-sbx5j1\",\"data-framer-name\":\"Apple logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:27,intrinsicWidth:23,svg:'<svg width=\"23\" height=\"27\" viewBox=\"0 0 23 27\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M18.7226 14.3608C18.7486 12.3436 19.8319 10.4349 21.5505 9.37832C20.4663 7.82993 18.6504 6.84821 16.7611 6.7891C14.746 6.57759 12.7924 7.99489 11.7656 7.99489C10.7189 7.99489 9.13787 6.8101 7.4354 6.84513C5.21629 6.91682 3.14753 8.17848 2.06789 10.1186C-0.252908 14.1367 1.4782 20.0419 3.70133 23.2899C4.81361 24.8803 6.11355 26.6568 7.81449 26.5938C9.47896 26.5248 10.1006 25.5324 12.1098 25.5324C14.1003 25.5324 14.6835 26.5938 16.419 26.5538C18.205 26.5248 19.3303 24.9563 20.4036 23.3508C21.2028 22.2176 21.8177 20.9651 22.2257 19.6398C20.1267 18.752 18.725 16.6397 18.7226 14.3608Z\" fill=\"white\"/>\\n<path d=\"M15.4446 4.6531C16.4184 3.48405 16.8982 1.98143 16.782 0.464355C15.2942 0.62062 13.9199 1.33169 12.9329 2.45589C11.9678 3.55428 11.4655 5.03046 11.5605 6.48956C13.0488 6.50488 14.512 5.81308 15.4446 4.6531Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true})]})}),/*#__PURE__*/_jsx(Link,{href:\"https://play.google.com/store/search?q=addie&c=apps&hl=en\",motionChild:true,nodeId:\"Ohrfe9JFM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-10qi5nb framer-lux5qc\",\"data-border\":true,\"data-framer-name\":\"Logo/Google app store badge/Black\",whileHover:animation3,children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-36tdp2\",\"data-framer-name\":\"Google Play\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:21,intrinsicWidth:102,svg:'<svg width=\"102\" height=\"21\" viewBox=\"0 0 102 21\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M79.3216 16.0002H81.5608V0.998277H79.3216V16.0002ZM99.49 6.4026L96.9232 12.9065H96.8464L94.1824 6.4026H91.7704L95.7664 15.4926L93.4876 20.5494H95.8228L101.98 6.4026H99.49ZM86.7904 14.2963C86.0584 14.2963 85.0348 13.9292 85.0348 13.0223C85.0348 11.8644 86.3092 11.4205 87.4084 11.4205C88.3924 11.4205 88.8568 11.6324 89.4544 11.9221C89.2804 13.312 88.084 14.2963 86.7904 14.2963V14.2963ZM87.0616 6.0744C85.4404 6.0744 83.7616 6.78876 83.0668 8.37132L85.054 9.201C85.4788 8.37132 86.2696 8.10132 87.1 8.10132C88.258 8.10132 89.4352 8.79552 89.4544 10.0312V10.1854C89.0488 9.95376 88.18 9.60648 87.1192 9.60648C84.976 9.60648 82.7956 10.7834 82.7956 12.9838C82.7956 14.991 84.5524 16.2843 86.5204 16.2843C88.0252 16.2843 88.8568 15.6088 89.3764 14.8171H89.4544V15.9758H91.6168V10.2238C91.6168 7.56036 89.6272 6.0744 87.0616 6.0744V6.0744ZM73.2232 8.22876H70.0384V3.08664H73.2232C74.8972 3.08664 75.8476 4.47228 75.8476 5.65764C75.8476 6.8202 74.8972 8.22876 73.2232 8.22876V8.22876ZM73.1656 0.998277H67.8001V16.0002H70.0384V10.3166H73.1656C75.6472 10.3166 78.0868 8.52036 78.0868 5.65764C78.0868 2.79552 75.6472 0.998277 73.1656 0.998277ZM43.9079 14.2991C42.361 14.2991 41.0663 13.0034 41.0663 11.2255C41.0663 9.42696 42.361 8.11296 43.9079 8.11296C45.4351 8.11296 46.6337 9.42696 46.6337 11.2255C46.6337 13.0034 45.4351 14.2991 43.9079 14.2991V14.2991ZM46.479 7.2426H46.4016C45.8992 6.64344 44.9321 6.10212 43.7148 6.10212C41.1624 6.10212 38.8234 8.34504 38.8234 11.2255C38.8234 14.0863 41.1624 16.3096 43.7148 16.3096C44.9321 16.3096 45.8992 15.7681 46.4016 15.1499H46.479V15.8839C46.479 17.8372 45.4351 18.8807 43.7532 18.8807C42.3811 18.8807 41.5304 17.8949 41.1821 17.0638L39.2298 17.8757C39.79 19.2285 41.2782 20.8916 43.7532 20.8916C46.3829 20.8916 48.6061 19.3447 48.6061 15.5746V6.41148H46.479V7.2426ZM50.153 16.0002H52.3946V0.998277H50.153V16.0002ZM55.7008 11.0512C55.643 9.07908 57.2288 8.07408 58.3688 8.07408C59.2585 8.07408 60.0118 8.51892 60.264 9.15648L55.7008 11.0512ZM62.6603 9.34956C62.2351 8.20956 60.94 6.10212 58.2914 6.10212C55.6618 6.10212 53.4774 8.17068 53.4774 11.2058C53.4774 14.0671 55.643 16.3096 58.5422 16.3096C60.8813 16.3096 62.2351 14.8794 62.7961 14.0478L61.0561 12.8876C60.4759 13.7384 59.6837 14.2991 58.5422 14.2991C57.4022 14.2991 56.59 13.777 56.0687 12.7523L62.8922 9.92988L62.6603 9.34956ZM8.29092 7.66812V9.83328H13.4719C13.3172 11.0512 12.9113 11.9404 12.2926 12.5591C11.5384 13.3128 10.359 14.1444 8.29092 14.1444C5.10096 14.1444 2.60725 11.5733 2.60725 8.38344C2.60725 5.1936 5.10096 2.62212 8.29092 2.62212C10.0116 2.62212 11.2679 3.29892 12.196 4.16892L13.7237 2.64132C12.428 1.40424 10.7077 0.456958 8.29092 0.456958C3.92112 0.456958 0.248047 4.01424 0.248047 8.38344C0.248047 12.7523 3.92112 16.3096 8.29092 16.3096C10.6492 16.3096 12.428 15.5362 13.8198 14.0863C15.2504 12.6557 15.6953 10.6452 15.6953 9.021C15.6953 8.51892 15.6563 8.05488 15.579 7.66812H8.29092ZM21.5856 14.2991C20.0387 14.2991 18.7046 13.0231 18.7046 11.2058C18.7046 9.36924 20.0387 8.11296 21.5856 8.11296C23.1319 8.11296 24.466 9.36924 24.466 11.2058C24.466 13.0231 23.1319 14.2991 21.5856 14.2991V14.2991ZM21.5856 6.10212C18.7622 6.10212 16.4621 8.24796 16.4621 11.2058C16.4621 14.1444 18.7622 16.3096 21.5856 16.3096C24.4079 16.3096 26.7085 14.1444 26.7085 11.2058C26.7085 8.24796 24.4079 6.10212 21.5856 6.10212ZM32.761 14.2991C31.2151 14.2991 29.8806 13.0231 29.8806 11.2058C29.8806 9.36924 31.2151 8.11296 32.761 8.11296C34.3079 8.11296 35.6414 9.36924 35.6414 11.2058C35.6414 13.0231 34.3079 14.2991 32.761 14.2991ZM32.761 6.10212C29.9387 6.10212 27.6385 8.24796 27.6385 11.2058C27.6385 14.1444 29.9387 16.3096 32.761 16.3096C35.5843 16.3096 37.8845 14.1444 37.8845 11.2058C37.8845 8.24796 35.5843 6.10212 32.761 6.10212Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-cpv4p3\",\"data-framer-name\":\"Get it on\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:8,intrinsicWidth:48,svg:'<svg width=\"48\" height=\"8\" viewBox=\"0 0 48 8\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M4.37261 7.8811C3.29676 7.8811 2.37136 7.50254 1.62526 6.75656C0.878792 6.01009 0.500732 5.07542 0.500732 3.9886C0.500732 2.90177 0.878979 1.96876 1.62526 1.22063C2.37137 0.474525 3.29677 0.0960959 4.37261 0.0960959C4.92071 0.0960959 5.43226 0.190765 5.92112 0.387893C6.41017 0.585043 6.81027 0.858724 7.12534 1.21688L7.19964 1.30149L6.36034 2.14055L6.27644 2.03742C6.06751 1.78069 5.80176 1.58124 5.46503 1.43625C5.12952 1.29163 4.76204 1.22485 4.37261 1.22485C3.61484 1.22485 2.98609 1.48218 2.46104 2.00531C2.46092 2.00543 2.46069 2.00543 2.46057 2.00556C1.94745 2.53925 1.68947 3.18902 1.68947 3.9886C1.68947 4.78879 1.94776 5.43871 2.4615 5.97259C2.98654 6.4955 3.61524 6.75423 4.3726 6.75423C5.06626 6.75423 5.63998 6.56059 6.09103 6.1772H6.09128C6.51117 5.8204 6.76316 5.33824 6.85229 4.7236H4.2526V3.61735H7.97588L7.99182 3.7186C8.02232 3.91307 8.04385 4.10079 8.04385 4.2811C8.04385 5.31331 7.72916 6.1559 7.11174 6.77579C6.41478 7.51463 5.49817 7.8811 4.3726 7.8811L4.37261 7.8811ZM36.7028 7.8811C35.6253 7.8811 34.7107 7.50236 33.9742 6.75656C33.9741 6.75648 33.974 6.75645 33.9739 6.75633C33.9738 6.75625 33.9738 6.75621 33.9737 6.75609C33.2362 6.01833 32.8702 5.08345 32.8702 3.98859C32.8702 2.89372 33.2362 1.95884 33.9737 1.22108C33.9738 1.221 33.9738 1.22097 33.9739 1.22085L33.9742 1.22061C34.7107 0.474685 35.6253 0.0960739 36.7028 0.0960739C37.7781 0.0960739 38.693 0.47478 39.4295 1.23186C40.1672 1.96949 40.5334 2.9026 40.5334 3.98857C40.5334 5.08344 40.1675 6.01832 39.43 6.75607L39.4297 6.75632C38.6928 7.50265 37.7694 7.88108 36.7028 7.88108L36.7028 7.8811ZM9.10933 7.71985V0.257346H9.22933H13.5662V1.3861H10.2775V3.43547H13.2437V4.54172H10.2775V6.59297H13.5662V7.71985H9.10933ZM16.2939 7.71985V1.3861H14.2764V0.257346H19.4795V1.3861H19.3595H17.462V7.71985H16.2939ZM22.8048 7.71985V0.257346H23.9729V0.377346V7.71985H22.8048ZM26.9134 7.71985V1.3861H24.8959V0.257346H30.099V1.3861H29.979H28.0815V7.71985H26.9134ZM41.5703 7.71985V0.257346H42.8875L46.2397 5.62406L46.2109 4.60524V0.257346H47.379V7.71985H46.2231L42.7096 2.08196L42.7384 3.10008V3.10172V7.71985H41.5703ZM36.7028 6.75422C37.4605 6.75422 38.0791 6.49577 38.5834 5.97352L38.5841 5.97256L38.5848 5.97184C39.0963 5.46028 39.3465 4.80171 39.3465 3.98856C39.3465 3.17739 39.0962 2.51661 38.5848 2.00528L38.5841 2.00456L38.5834 2.00384C38.0792 1.48168 37.4607 1.22477 36.7028 1.22477C35.9435 1.22477 35.3251 1.48123 34.8114 2.00337L34.8109 2.00385C34.3089 2.5276 34.059 3.17761 34.059 3.98853C34.059 4.80143 34.3088 5.44938 34.8109 5.97322L34.8114 5.9737C35.3252 6.49593 35.9437 6.75417 36.7028 6.75417V6.75422Z\" fill=\"white\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-y88mfg\",\"data-framer-name\":\"Google Play logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:32,intrinsicWidth:29,svg:'<svg width=\"29\" height=\"32\" viewBox=\"0 0 29 32\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M13.8573 15.3081L1.08154 28.8681C1.08202 28.8709 1.08298 28.8732 1.08346 28.8761C1.47526 30.3484 2.8201 31.4326 4.41622 31.4326C5.05426 31.4326 5.6533 31.2601 6.16702 30.9573L6.20782 30.9334L20.5886 22.6351L13.8573 15.3081\" fill=\"#EA4335\"/>\\n<path d=\"M26.7829 12.9989L26.7706 12.9905L20.5621 9.3913L13.5674 15.6155L20.5864 22.6335L26.7622 19.0701C27.845 18.4856 28.58 17.3442 28.58 16.0279C28.58 14.7211 27.8548 13.5853 26.7829 12.9989\" fill=\"#FBBC04\"/>\\n<path d=\"M1.08128 3.13162C1.00448 3.41482 0.964111 3.71145 0.964111 4.01949V27.9806C0.964111 28.2881 1.004 28.5857 1.08176 28.8679L14.2972 15.6548L1.08128 3.13162Z\" fill=\"#4285F4\"/>\\n<path d=\"M13.9518 16L20.5645 9.3892L6.20002 1.06096C5.6779 0.748239 5.06854 0.567761 4.41646 0.567761C2.82034 0.567761 1.4737 1.65388 1.08178 3.12808C1.0813 3.12952 1.0813 3.13048 1.0813 3.1318L13.9518 16Z\" fill=\"#34A853\"/>\\n</svg>\\n',withExternalLayout:true})]})})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ramnhm\",\"data-framer-name\":\"Image\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{background:{alt:\"CTA-image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8060.4+0+0+56+0+0+155.2+0+0),pixelHeight:1698,pixelWidth:1427,positionX:\"right\",positionY:\"top\",sizes:`min(${componentViewport?.width||\"100vw\"} - 48px, 390px)`,src:\"https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png\",srcSet:\"https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png?scale-down-to=1024 860w,https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png 1427w\"}},PkLPKxZ5K:{background:{alt:\"CTA-image\",fit:\"fill\",pixelHeight:1698,pixelWidth:1427,positionX:\"right\",positionY:\"top\",sizes:\"360px\",src:\"https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png\",srcSet:\"https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png?scale-down-to=1024 860w,https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png 1427w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"CTA-image\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+8101.6+0+0+0+0+0+0+35),pixelHeight:1698,pixelWidth:1427,positionX:\"right\",positionY:\"top\",sizes:\"377px\",src:\"https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png\",srcSet:\"https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png?scale-down-to=1024 860w,https://framerusercontent.com/images/9ne4uMAISKjxXPg4HzqvHABmqic.png 1427w\"},className:\"framer-1ui3fhu\",\"data-framer-name\":\"Image\",whileHover:animation4})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-2nssvo\",\"data-framer-name\":\"Footer Section\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{y:(componentViewport?.y||0)+0+8060.4+0+605.2+0},PkLPKxZ5K:{y:undefined}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:391,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+8101.6+0+429+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-brzx2b-container\",\"data-framer-name\":\"Footer\",name:\"Footer\",nodeId:\"Oats9g2UM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{Bqr0GuKP8:{variant:\"ferHeY28v\"},PkLPKxZ5K:{variant:\"p1ZK_dsN4\"}},children:/*#__PURE__*/_jsx(FooterDark,{height:\"100%\",id:\"Oats9g2UM\",layoutId:\"Oats9g2UM\",name:\"Footer\",style:{width:\"100%\"},variant:\"GUl7tJEeP\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-zxFwq.framer-lux5qc, .framer-zxFwq .framer-lux5qc { display: block; }\",\".framer-zxFwq.framer-72rtr7 { align-content: center; align-items: center; background-color: var(--token-f226e6bc-b11a-4580-9542-031d12e41762, #faf9f5); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 100px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-zxFwq .framer-1v8tpni { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 50%; overflow: visible; padding: 0px 30px 0px 30px; position: absolute; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-zxFwq .framer-cfn3ej { 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: 1220px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zxFwq .framer-4srkg6-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 1; }\",\".framer-zxFwq .framer-11k2w9s { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 112px 30px 0px 30px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-19f3v09 { align-content: center; align-items: center; background-color: #e2f6e5; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 104px; height: min-content; justify-content: center; max-width: 1220px; overflow: visible; padding: 56px; position: relative; width: 100%; z-index: 2; }\",\".framer-zxFwq .framer-8vue8l { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zxFwq .framer-16o6vt0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 484px; }\",\".framer-zxFwq .framer-1lvw9ch, .framer-zxFwq .framer-139v47n, .framer-zxFwq .framer-1au3ppd, .framer-zxFwq .framer-19m5rr6, .framer-zxFwq .framer-zwc7a4, .framer-zxFwq .framer-apjf3i, .framer-zxFwq .framer-1f2svht, .framer-zxFwq .framer-1gvzn7m, .framer-zxFwq .framer-igtkxu, .framer-zxFwq .framer-bbsf22, .framer-zxFwq .framer-1krlkcd, .framer-zxFwq .framer-6xm7fm, .framer-zxFwq .framer-1dwgj3i, .framer-zxFwq .framer-ivj6e5, .framer-zxFwq .framer-ps1gq3 { --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-zxFwq .framer-wnx50s-container, .framer-zxFwq .framer-1jorhcx-container, .framer-zxFwq .framer-1uoefby-container, .framer-zxFwq .framer-lqq8mx-container, .framer-zxFwq .framer-tebbta-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-11zi1tu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-1oc1351 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 520px); position: relative; width: 520px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-be9mvq, .framer-zxFwq .framer-2am254, .framer-zxFwq .framer-15phtbl, .framer-zxFwq .framer-10dl7nk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-wkg2rc, .framer-zxFwq .framer-yfttad, .framer-zxFwq .framer-s2swgg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; max-width: 1220px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-1fatkub, .framer-zxFwq .framer-13nu58, .framer-zxFwq .framer-1qvhm4p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1220px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-zxFwq .framer-1q9knp0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 13px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 60%; }\",\".framer-zxFwq .framer-17fyr0c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1220px; }\",\".framer-zxFwq .framer-1hxcj4d, .framer-zxFwq .framer-2ciay8, .framer-zxFwq .framer-30lced { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-iiuws0 { align-content: center; align-items: center; background-color: var(--token-acf4c56d-89b6-4697-963c-a3691deb5a6b, #fcf5c9); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-1qlf8yn, .framer-zxFwq .framer-8qvx5w, .framer-zxFwq .framer-yb4e5a, .framer-zxFwq .framer-qucdrs, .framer-zxFwq .framer-mvolkx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-zxFwq .framer-1c18p0y, .framer-zxFwq .framer-b3ua69, .framer-zxFwq .framer-g4p6yg, .framer-zxFwq .framer-8oxpj1, .framer-zxFwq .framer-8y03rf, .framer-zxFwq .framer-18f4dy8 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-w17g0a, .framer-zxFwq .framer-1jd1ee4 { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 455px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-9x3g0e { aspect-ratio: 0.778021978021978 / 1; bottom: -22px; flex: none; height: var(--framer-aspect-ratio-supported, 455px); left: 54%; position: absolute; transform: translateX(-50%); width: 354px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-ne9wpb { align-content: center; align-items: center; background-color: #ccf6fa; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 40px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-1r8zs4y, .framer-zxFwq .framer-15watg9 { aspect-ratio: 1.1296703296703297 / 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, 455px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-1skkgou { aspect-ratio: 1.1349557522123894 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 452px); left: 0px; position: absolute; right: 1px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-1q4jssi { align-content: center; align-items: center; align-self: stretch; background-color: var(--token-c5451a23-cba4-4d3e-a817-913381787285, #f5e5de); border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: center; overflow: hidden; padding: 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-1oph8v8 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; z-index: 2; }\",\".framer-zxFwq .framer-1k3rp0 { aspect-ratio: 0.778021978021978 / 1; bottom: -3px; flex: none; left: 50%; position: absolute; top: -3px; transform: translateX(-50%); width: var(--framer-aspect-ratio-supported, 521px); will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-zxFwq .framer-1q4zj83 { align-content: center; align-items: center; background-color: #d9f4dd; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-1cyh2sy { border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; flex: none; height: 455px; overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-2ntdl4 { aspect-ratio: 1.6979166666666667 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 288px); left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 489px; }\",\".framer-zxFwq .framer-egng3s { align-content: center; align-items: center; background-color: #e6ddf8; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 40px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-u40yw7 { flex: none; height: 372px; left: calc(50.00000000000002% - 489px / 2); position: absolute; top: calc(50.10989010989013% - 372px / 2); width: 489px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-ol93zn { align-content: center; align-items: center; background-color: #ccf6fa; border-bottom-left-radius: 40px; border-bottom-right-radius: 40px; border-top-left-radius: 40px; border-top-right-radius: 40px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 40px 0px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-2v1j1t { aspect-ratio: 0.778021978021978 / 1; bottom: -54px; flex: none; left: 98px; position: absolute; top: -19px; width: var(--framer-aspect-ratio-supported, 411px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-1u1vbph { 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: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-iz1cm2 { align-content: center; align-items: center; background-color: #fcf5c9; border-bottom-left-radius: 1111px; border-bottom-right-radius: 1111px; border-top-left-radius: 1111px; border-top-right-radius: 1111px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-ca29fy, .framer-zxFwq .framer-x1t4o1, .framer-zxFwq .framer-1b0ahow, .framer-zxFwq .framer-fy3gr7, .framer-zxFwq .framer-1oon0db, .framer-zxFwq .framer-11z70s6, .framer-zxFwq .framer-1r64b05, .framer-zxFwq .framer-1v1fqbl, .framer-zxFwq .framer-13z51eb { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-zxFwq .framer-16kb03a, .framer-zxFwq .framer-1xh9wg6 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 746px; word-break: break-word; word-wrap: break-word; }\",\".framer-zxFwq .framer-11yka0x { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-1d1i7of-container { flex: 1 0 0px; height: 420px; position: relative; width: 1px; }\",\".framer-zxFwq .framer-1bnj2ga { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 16px 32px -8px rgba(12, 12, 13, 0.15); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-9xkrp8 { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 248px); overflow: hidden; position: relative; width: 248px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-vcq110 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 248px; }\",\".framer-zxFwq .framer-1huhr8k, .framer-zxFwq .framer-qu52lz, .framer-zxFwq .framer-1pd5au2, .framer-zxFwq .framer-1l5hxd6, .framer-zxFwq .framer-1nyqx7g, .framer-zxFwq .framer-1odysck, .framer-zxFwq .framer-funptq, .framer-zxFwq .framer-17rts5, .framer-zxFwq .framer-avzk5c { --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-zxFwq .framer-161uvo8, .framer-zxFwq .framer-19m36od, .framer-zxFwq .framer-nr3yfd, .framer-zxFwq .framer-avjtl7, .framer-zxFwq .framer-8fpz5t, .framer-zxFwq .framer-1mi83nq, .framer-zxFwq .framer-1is3k0g, .framer-zxFwq .framer-11f41bw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 245px; }\",\".framer-zxFwq .framer-yohpl8, .framer-zxFwq .framer-j2hrnn, .framer-zxFwq .framer-1ylmvey, .framer-zxFwq .framer-1kc22zz, .framer-zxFwq .framer-19evtsr, .framer-zxFwq .framer-rahpzo, .framer-zxFwq .framer-1nvw3qv, .framer-zxFwq .framer-eojeo7 { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-zxFwq .framer-14nvu30, .framer-zxFwq .framer-85xukc, .framer-zxFwq .framer-1t1jlva, .framer-zxFwq .framer-16bacrl, .framer-zxFwq .framer-3hd17b, .framer-zxFwq .framer-1sbbti, .framer-zxFwq .framer-v2bg1 { align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 16px 32px -8px rgba(12, 12, 13, 0.15); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 280px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-xuoiee, .framer-zxFwq .framer-6vn0zd, .framer-zxFwq .framer-hk2c4w, .framer-zxFwq .framer-1dsxf6t, .framer-zxFwq .framer-13nombb, .framer-zxFwq .framer-qyb7is, .framer-zxFwq .framer-istp0i { aspect-ratio: 1 / 1; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: var(--framer-aspect-ratio-supported, 200px); overflow: hidden; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-1go90bg, .framer-zxFwq .framer-fmjb5c, .framer-zxFwq .framer-qh1x2a, .framer-zxFwq .framer-12fg6fq, .framer-zxFwq .framer-1l40ezt, .framer-zxFwq .framer-onawgz, .framer-zxFwq .framer-a8bge6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-1p20ugy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px 30px 0px 30px; position: relative; width: 100%; z-index: 5; }\",\".framer-zxFwq .framer-1jf8ihc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1220px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 2; }\",\".framer-zxFwq .framer-lmnvl2, .framer-zxFwq .framer-ep9lxt { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-ydhvlb { align-content: center; align-items: center; background-color: #fac9fc; border-bottom-left-radius: 1111px; border-bottom-right-radius: 1111px; border-top-left-radius: 1111px; border-top-right-radius: 1111px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 12px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-gobhu0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-11bssnn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-5xgvli, .framer-zxFwq .framer-1e8kf3x, .framer-zxFwq .framer-njqrxs { --border-bottom-width: 1px; --border-color: #ddddbd; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #f6f3e6; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-113n5dt, .framer-zxFwq .framer-ynsa46, .framer-zxFwq .framer-1pi53hf { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 323px; word-break: break-word; word-wrap: break-word; }\",\".framer-zxFwq .framer-1hk8zeq, .framer-zxFwq .framer-1inndxs, .framer-zxFwq .framer-x4nmtd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-m01uek, .framer-zxFwq .framer-10b5jaz, .framer-zxFwq .framer-ks6w1z { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-ik664g { aspect-ratio: 2.2598425196850394 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 398px); left: 49%; overflow: visible; position: absolute; top: 19%; transform: translate(-50%, -50%); width: 899px; z-index: 1; }\",\".framer-zxFwq .framer-1kn3cpa { align-content: flex-start; align-items: flex-start; background-color: #caeff2; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 80px 100px 80px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-6xkqgy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1000px; }\",\".framer-zxFwq .framer-ckethh { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 796px; word-break: break-word; word-wrap: break-word; }\",\".framer-zxFwq .framer-1g6c2in-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-zxFwq .framer-x80atq { bottom: -100px; flex: none; left: -163px; position: absolute; top: -115px; width: 437px; z-index: 1; }\",\".framer-zxFwq .framer-dn6mkn { bottom: -69px; flex: none; position: absolute; right: -110px; top: -146px; width: 437px; z-index: 1; }\",\".framer-zxFwq .framer-1uy18t7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-zxFwq .framer-1ty7nmr { align-content: flex-start; align-items: flex-start; background-color: #006d77; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: visible; padding: 56px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-hybznk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-1nnymyu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zxFwq .framer-1047kwo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-1mv5s8v { align-content: center; align-items: center; background-color: #b7e1be; border-bottom-left-radius: 1111px; border-bottom-right-radius: 1111px; border-top-left-radius: 1111px; border-top-right-radius: 1111px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 4px 8px 4px 8px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-1dkfnvz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-m5mqr3, .framer-zxFwq .framer-1obj0sl { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 472px; word-break: break-word; word-wrap: break-word; }\",\".framer-zxFwq .framer-s7u3ii, .framer-zxFwq .framer-1szhto6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-16igjf { flex: 1 0 0px; height: 439px; overflow: visible; position: relative; width: 1px; }\",\".framer-zxFwq .framer-164b52 { bottom: -5px; flex: none; left: 18px; position: absolute; right: 18px; top: -4px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-19nytkf { 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; position: relative; width: 100%; }\",\".framer-zxFwq .framer-ktn56x { align-content: center; align-items: center; background-color: var(--token-97c7b92b-4b68-4916-a014-94fe2e182d37, #fdfbe6); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-zlhok1 { align-content: center; align-items: center; background-color: var(--token-97c7b92b-4b68-4916-a014-94fe2e182d37, #fdfbe6); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 56px; height: 429px; justify-content: center; max-width: 1220px; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-zxFwq .framer-v96aup { align-content: flex-start; align-items: flex-start; display: flex; flex: 0.55 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: 100%; justify-content: center; overflow: hidden; padding: 120px 0px 120px 0px; position: relative; width: 1px; }\",\".framer-zxFwq .framer-10vs4tg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-zxFwq .framer-1yz9sj1 { --border-bottom-width: 1.2000000476837158px; --border-color: #a6a6a6; --border-left-width: 1.2000000476837158px; --border-right-width: 1.2000000476837158px; --border-style: solid; --border-top-width: 1.2000000476837158px; background-color: #0c0d10; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; flex: none; height: 48px; overflow: visible; position: relative; text-decoration: none; width: 144px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-d3qr1c { bottom: 8px; flex: none; left: 41px; position: absolute; right: 13px; top: 21px; }\",\".framer-zxFwq .framer-jyhr6z { bottom: 30px; flex: none; left: 42px; position: absolute; right: 19px; top: 10px; }\",\".framer-zxFwq .framer-sbx5j1 { bottom: 12px; flex: none; left: 11px; position: absolute; right: 112px; top: 10px; }\",\".framer-zxFwq .framer-10qi5nb { --border-bottom-width: 1.2000000476837158px; --border-color: #a6a6a6; --border-left-width: 1.2000000476837158px; --border-right-width: 1.2000000476837158px; --border-style: solid; --border-top-width: 1.2000000476837158px; background-color: #000000; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; flex: none; height: 48px; overflow: hidden; position: relative; text-decoration: none; width: 162px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-36tdp2 { bottom: 7px; flex: none; left: 49px; position: absolute; right: 11px; top: 20px; }\",\".framer-zxFwq .framer-cpv4p3 { bottom: 32px; flex: none; left: 49px; position: absolute; right: 66px; top: 8px; }\",\".framer-zxFwq .framer-y88mfg { flex: none; height: 32px; left: 11px; position: absolute; top: 8px; width: 29px; }\",\".framer-zxFwq .framer-ramnhm { align-content: center; align-items: center; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; display: flex; flex: 0.45 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: flex-end; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-zxFwq .framer-1ui3fhu { aspect-ratio: 0.9568527918781726 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 394px); position: relative; width: 377px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-zxFwq .framer-2nssvo { align-content: center; align-items: center; background-color: var(--token-a1f32634-e02f-4198-aae0-1dbcc6b04df3, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-zxFwq .framer-brzx2b-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zxFwq.framer-72rtr7, .framer-zxFwq .framer-1v8tpni, .framer-zxFwq .framer-cfn3ej, .framer-zxFwq .framer-11k2w9s, .framer-zxFwq .framer-19f3v09, .framer-zxFwq .framer-8vue8l, .framer-zxFwq .framer-16o6vt0, .framer-zxFwq .framer-11zi1tu, .framer-zxFwq .framer-be9mvq, .framer-zxFwq .framer-wkg2rc, .framer-zxFwq .framer-1fatkub, .framer-zxFwq .framer-1q9knp0, .framer-zxFwq .framer-17fyr0c, .framer-zxFwq .framer-1hxcj4d, .framer-zxFwq .framer-iiuws0, .framer-zxFwq .framer-1qlf8yn, .framer-zxFwq .framer-1c18p0y, .framer-zxFwq .framer-ne9wpb, .framer-zxFwq .framer-8qvx5w, .framer-zxFwq .framer-b3ua69, .framer-zxFwq .framer-2ciay8, .framer-zxFwq .framer-1q4jssi, .framer-zxFwq .framer-1oph8v8, .framer-zxFwq .framer-g4p6yg, .framer-zxFwq .framer-1q4zj83, .framer-zxFwq .framer-yb4e5a, .framer-zxFwq .framer-8oxpj1, .framer-zxFwq .framer-30lced, .framer-zxFwq .framer-egng3s, .framer-zxFwq .framer-qucdrs, .framer-zxFwq .framer-8y03rf, .framer-zxFwq .framer-ol93zn, .framer-zxFwq .framer-mvolkx, .framer-zxFwq .framer-18f4dy8, .framer-zxFwq .framer-2am254, .framer-zxFwq .framer-1u1vbph, .framer-zxFwq .framer-iz1cm2, .framer-zxFwq .framer-11yka0x, .framer-zxFwq .framer-1bnj2ga, .framer-zxFwq .framer-vcq110, .framer-zxFwq .framer-161uvo8, .framer-zxFwq .framer-14nvu30, .framer-zxFwq .framer-1go90bg, .framer-zxFwq .framer-19m36od, .framer-zxFwq .framer-85xukc, .framer-zxFwq .framer-fmjb5c, .framer-zxFwq .framer-nr3yfd, .framer-zxFwq .framer-1t1jlva, .framer-zxFwq .framer-qh1x2a, .framer-zxFwq .framer-avjtl7, .framer-zxFwq .framer-16bacrl, .framer-zxFwq .framer-12fg6fq, .framer-zxFwq .framer-8fpz5t, .framer-zxFwq .framer-3hd17b, .framer-zxFwq .framer-1l40ezt, .framer-zxFwq .framer-1mi83nq, .framer-zxFwq .framer-1sbbti, .framer-zxFwq .framer-onawgz, .framer-zxFwq .framer-1is3k0g, .framer-zxFwq .framer-v2bg1, .framer-zxFwq .framer-a8bge6, .framer-zxFwq .framer-11f41bw, .framer-zxFwq .framer-1p20ugy, .framer-zxFwq .framer-1jf8ihc, .framer-zxFwq .framer-lmnvl2, .framer-zxFwq .framer-ydhvlb, .framer-zxFwq .framer-gobhu0, .framer-zxFwq .framer-11bssnn, .framer-zxFwq .framer-5xgvli, .framer-zxFwq .framer-1hk8zeq, .framer-zxFwq .framer-m01uek, .framer-zxFwq .framer-1e8kf3x, .framer-zxFwq .framer-1inndxs, .framer-zxFwq .framer-10b5jaz, .framer-zxFwq .framer-njqrxs, .framer-zxFwq .framer-x4nmtd, .framer-zxFwq .framer-ks6w1z, .framer-zxFwq .framer-15phtbl, .framer-zxFwq .framer-yfttad, .framer-zxFwq .framer-13nu58, .framer-zxFwq .framer-1kn3cpa, .framer-zxFwq .framer-6xkqgy, .framer-zxFwq .framer-ep9lxt, .framer-zxFwq .framer-10dl7nk, .framer-zxFwq .framer-s2swgg, .framer-zxFwq .framer-1qvhm4p, .framer-zxFwq .framer-1ty7nmr, .framer-zxFwq .framer-hybznk, .framer-zxFwq .framer-1nnymyu, .framer-zxFwq .framer-1047kwo, .framer-zxFwq .framer-1mv5s8v, .framer-zxFwq .framer-1dkfnvz, .framer-zxFwq .framer-s7u3ii, .framer-zxFwq .framer-19nytkf, .framer-zxFwq .framer-ktn56x, .framer-zxFwq .framer-zlhok1, .framer-zxFwq .framer-v96aup, .framer-zxFwq .framer-1szhto6, .framer-zxFwq .framer-10vs4tg, .framer-zxFwq .framer-ramnhm, .framer-zxFwq .framer-2nssvo { gap: 0px; } .framer-zxFwq.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(100px / 2); margin-top: calc(100px / 2); } .framer-zxFwq.framer-72rtr7 > :first-child, .framer-zxFwq .framer-11k2w9s > :first-child, .framer-zxFwq .framer-8vue8l > :first-child, .framer-zxFwq .framer-16o6vt0 > :first-child, .framer-zxFwq .framer-11zi1tu > :first-child, .framer-zxFwq .framer-be9mvq > :first-child, .framer-zxFwq .framer-wkg2rc > :first-child, .framer-zxFwq .framer-1fatkub > :first-child, .framer-zxFwq .framer-1q9knp0 > :first-child, .framer-zxFwq .framer-17fyr0c > :first-child, .framer-zxFwq .framer-iiuws0 > :first-child, .framer-zxFwq .framer-1qlf8yn > :first-child, .framer-zxFwq .framer-1c18p0y > :first-child, .framer-zxFwq .framer-ne9wpb > :first-child, .framer-zxFwq .framer-8qvx5w > :first-child, .framer-zxFwq .framer-b3ua69 > :first-child, .framer-zxFwq .framer-1oph8v8 > :first-child, .framer-zxFwq .framer-g4p6yg > :first-child, .framer-zxFwq .framer-1q4zj83 > :first-child, .framer-zxFwq .framer-yb4e5a > :first-child, .framer-zxFwq .framer-8oxpj1 > :first-child, .framer-zxFwq .framer-egng3s > :first-child, .framer-zxFwq .framer-qucdrs > :first-child, .framer-zxFwq .framer-8y03rf > :first-child, .framer-zxFwq .framer-ol93zn > :first-child, .framer-zxFwq .framer-mvolkx > :first-child, .framer-zxFwq .framer-18f4dy8 > :first-child, .framer-zxFwq .framer-2am254 > :first-child, .framer-zxFwq .framer-1u1vbph > :first-child, .framer-zxFwq .framer-1bnj2ga > :first-child, .framer-zxFwq .framer-vcq110 > :first-child, .framer-zxFwq .framer-14nvu30 > :first-child, .framer-zxFwq .framer-1go90bg > :first-child, .framer-zxFwq .framer-85xukc > :first-child, .framer-zxFwq .framer-fmjb5c > :first-child, .framer-zxFwq .framer-1t1jlva > :first-child, .framer-zxFwq .framer-qh1x2a > :first-child, .framer-zxFwq .framer-16bacrl > :first-child, .framer-zxFwq .framer-12fg6fq > :first-child, .framer-zxFwq .framer-3hd17b > :first-child, .framer-zxFwq .framer-1l40ezt > :first-child, .framer-zxFwq .framer-1sbbti > :first-child, .framer-zxFwq .framer-onawgz > :first-child, .framer-zxFwq .framer-v2bg1 > :first-child, .framer-zxFwq .framer-a8bge6 > :first-child, .framer-zxFwq .framer-1p20ugy > :first-child, .framer-zxFwq .framer-1jf8ihc > :first-child, .framer-zxFwq .framer-lmnvl2 > :first-child, .framer-zxFwq .framer-5xgvli > :first-child, .framer-zxFwq .framer-m01uek > :first-child, .framer-zxFwq .framer-1e8kf3x > :first-child, .framer-zxFwq .framer-10b5jaz > :first-child, .framer-zxFwq .framer-njqrxs > :first-child, .framer-zxFwq .framer-ks6w1z > :first-child, .framer-zxFwq .framer-15phtbl > :first-child, .framer-zxFwq .framer-yfttad > :first-child, .framer-zxFwq .framer-13nu58 > :first-child, .framer-zxFwq .framer-1kn3cpa > :first-child, .framer-zxFwq .framer-6xkqgy > :first-child, .framer-zxFwq .framer-ep9lxt > :first-child, .framer-zxFwq .framer-10dl7nk > :first-child, .framer-zxFwq .framer-s2swgg > :first-child, .framer-zxFwq .framer-1qvhm4p > :first-child, .framer-zxFwq .framer-1ty7nmr > :first-child, .framer-zxFwq .framer-1nnymyu > :first-child, .framer-zxFwq .framer-1047kwo > :first-child, .framer-zxFwq .framer-1dkfnvz > :first-child, .framer-zxFwq .framer-19nytkf > :first-child, .framer-zxFwq .framer-ktn56x > :first-child, .framer-zxFwq .framer-v96aup > :first-child, .framer-zxFwq .framer-ramnhm > :first-child { margin-top: 0px; } .framer-zxFwq.framer-72rtr7 > :last-child, .framer-zxFwq .framer-11k2w9s > :last-child, .framer-zxFwq .framer-8vue8l > :last-child, .framer-zxFwq .framer-16o6vt0 > :last-child, .framer-zxFwq .framer-11zi1tu > :last-child, .framer-zxFwq .framer-be9mvq > :last-child, .framer-zxFwq .framer-wkg2rc > :last-child, .framer-zxFwq .framer-1fatkub > :last-child, .framer-zxFwq .framer-1q9knp0 > :last-child, .framer-zxFwq .framer-17fyr0c > :last-child, .framer-zxFwq .framer-iiuws0 > :last-child, .framer-zxFwq .framer-1qlf8yn > :last-child, .framer-zxFwq .framer-1c18p0y > :last-child, .framer-zxFwq .framer-ne9wpb > :last-child, .framer-zxFwq .framer-8qvx5w > :last-child, .framer-zxFwq .framer-b3ua69 > :last-child, .framer-zxFwq .framer-1oph8v8 > :last-child, .framer-zxFwq .framer-g4p6yg > :last-child, .framer-zxFwq .framer-1q4zj83 > :last-child, .framer-zxFwq .framer-yb4e5a > :last-child, .framer-zxFwq .framer-8oxpj1 > :last-child, .framer-zxFwq .framer-egng3s > :last-child, .framer-zxFwq .framer-qucdrs > :last-child, .framer-zxFwq .framer-8y03rf > :last-child, .framer-zxFwq .framer-ol93zn > :last-child, .framer-zxFwq .framer-mvolkx > :last-child, .framer-zxFwq .framer-18f4dy8 > :last-child, .framer-zxFwq .framer-2am254 > :last-child, .framer-zxFwq .framer-1u1vbph > :last-child, .framer-zxFwq .framer-1bnj2ga > :last-child, .framer-zxFwq .framer-vcq110 > :last-child, .framer-zxFwq .framer-14nvu30 > :last-child, .framer-zxFwq .framer-1go90bg > :last-child, .framer-zxFwq .framer-85xukc > :last-child, .framer-zxFwq .framer-fmjb5c > :last-child, .framer-zxFwq .framer-1t1jlva > :last-child, .framer-zxFwq .framer-qh1x2a > :last-child, .framer-zxFwq .framer-16bacrl > :last-child, .framer-zxFwq .framer-12fg6fq > :last-child, .framer-zxFwq .framer-3hd17b > :last-child, .framer-zxFwq .framer-1l40ezt > :last-child, .framer-zxFwq .framer-1sbbti > :last-child, .framer-zxFwq .framer-onawgz > :last-child, .framer-zxFwq .framer-v2bg1 > :last-child, .framer-zxFwq .framer-a8bge6 > :last-child, .framer-zxFwq .framer-1p20ugy > :last-child, .framer-zxFwq .framer-1jf8ihc > :last-child, .framer-zxFwq .framer-lmnvl2 > :last-child, .framer-zxFwq .framer-5xgvli > :last-child, .framer-zxFwq .framer-m01uek > :last-child, .framer-zxFwq .framer-1e8kf3x > :last-child, .framer-zxFwq .framer-10b5jaz > :last-child, .framer-zxFwq .framer-njqrxs > :last-child, .framer-zxFwq .framer-ks6w1z > :last-child, .framer-zxFwq .framer-15phtbl > :last-child, .framer-zxFwq .framer-yfttad > :last-child, .framer-zxFwq .framer-13nu58 > :last-child, .framer-zxFwq .framer-1kn3cpa > :last-child, .framer-zxFwq .framer-6xkqgy > :last-child, .framer-zxFwq .framer-ep9lxt > :last-child, .framer-zxFwq .framer-10dl7nk > :last-child, .framer-zxFwq .framer-s2swgg > :last-child, .framer-zxFwq .framer-1qvhm4p > :last-child, .framer-zxFwq .framer-1ty7nmr > :last-child, .framer-zxFwq .framer-1nnymyu > :last-child, .framer-zxFwq .framer-1047kwo > :last-child, .framer-zxFwq .framer-1dkfnvz > :last-child, .framer-zxFwq .framer-19nytkf > :last-child, .framer-zxFwq .framer-ktn56x > :last-child, .framer-zxFwq .framer-v96aup > :last-child, .framer-zxFwq .framer-ramnhm > :last-child { margin-bottom: 0px; } .framer-zxFwq .framer-1v8tpni > *, .framer-zxFwq .framer-cfn3ej > *, .framer-zxFwq .framer-11yka0x > *, .framer-zxFwq .framer-2nssvo > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-zxFwq .framer-1v8tpni > :first-child, .framer-zxFwq .framer-cfn3ej > :first-child, .framer-zxFwq .framer-19f3v09 > :first-child, .framer-zxFwq .framer-1hxcj4d > :first-child, .framer-zxFwq .framer-2ciay8 > :first-child, .framer-zxFwq .framer-1q4jssi > :first-child, .framer-zxFwq .framer-30lced > :first-child, .framer-zxFwq .framer-iz1cm2 > :first-child, .framer-zxFwq .framer-11yka0x > :first-child, .framer-zxFwq .framer-161uvo8 > :first-child, .framer-zxFwq .framer-19m36od > :first-child, .framer-zxFwq .framer-nr3yfd > :first-child, .framer-zxFwq .framer-avjtl7 > :first-child, .framer-zxFwq .framer-8fpz5t > :first-child, .framer-zxFwq .framer-1mi83nq > :first-child, .framer-zxFwq .framer-1is3k0g > :first-child, .framer-zxFwq .framer-11f41bw > :first-child, .framer-zxFwq .framer-ydhvlb > :first-child, .framer-zxFwq .framer-gobhu0 > :first-child, .framer-zxFwq .framer-11bssnn > :first-child, .framer-zxFwq .framer-1hk8zeq > :first-child, .framer-zxFwq .framer-1inndxs > :first-child, .framer-zxFwq .framer-x4nmtd > :first-child, .framer-zxFwq .framer-hybznk > :first-child, .framer-zxFwq .framer-1mv5s8v > :first-child, .framer-zxFwq .framer-s7u3ii > :first-child, .framer-zxFwq .framer-zlhok1 > :first-child, .framer-zxFwq .framer-1szhto6 > :first-child, .framer-zxFwq .framer-10vs4tg > :first-child, .framer-zxFwq .framer-2nssvo > :first-child { margin-left: 0px; } .framer-zxFwq .framer-1v8tpni > :last-child, .framer-zxFwq .framer-cfn3ej > :last-child, .framer-zxFwq .framer-19f3v09 > :last-child, .framer-zxFwq .framer-1hxcj4d > :last-child, .framer-zxFwq .framer-2ciay8 > :last-child, .framer-zxFwq .framer-1q4jssi > :last-child, .framer-zxFwq .framer-30lced > :last-child, .framer-zxFwq .framer-iz1cm2 > :last-child, .framer-zxFwq .framer-11yka0x > :last-child, .framer-zxFwq .framer-161uvo8 > :last-child, .framer-zxFwq .framer-19m36od > :last-child, .framer-zxFwq .framer-nr3yfd > :last-child, .framer-zxFwq .framer-avjtl7 > :last-child, .framer-zxFwq .framer-8fpz5t > :last-child, .framer-zxFwq .framer-1mi83nq > :last-child, .framer-zxFwq .framer-1is3k0g > :last-child, .framer-zxFwq .framer-11f41bw > :last-child, .framer-zxFwq .framer-ydhvlb > :last-child, .framer-zxFwq .framer-gobhu0 > :last-child, .framer-zxFwq .framer-11bssnn > :last-child, .framer-zxFwq .framer-1hk8zeq > :last-child, .framer-zxFwq .framer-1inndxs > :last-child, .framer-zxFwq .framer-x4nmtd > :last-child, .framer-zxFwq .framer-hybznk > :last-child, .framer-zxFwq .framer-1mv5s8v > :last-child, .framer-zxFwq .framer-s7u3ii > :last-child, .framer-zxFwq .framer-zlhok1 > :last-child, .framer-zxFwq .framer-1szhto6 > :last-child, .framer-zxFwq .framer-10vs4tg > :last-child, .framer-zxFwq .framer-2nssvo > :last-child { margin-right: 0px; } .framer-zxFwq .framer-11k2w9s > *, .framer-zxFwq .framer-be9mvq > *, .framer-zxFwq .framer-2am254 > *, .framer-zxFwq .framer-1p20ugy > *, .framer-zxFwq .framer-15phtbl > *, .framer-zxFwq .framer-10dl7nk > *, .framer-zxFwq .framer-ktn56x > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-zxFwq .framer-19f3v09 > * { margin: 0px; margin-left: calc(104px / 2); margin-right: calc(104px / 2); } .framer-zxFwq .framer-8vue8l > *, .framer-zxFwq .framer-wkg2rc > *, .framer-zxFwq .framer-17fyr0c > *, .framer-zxFwq .framer-lmnvl2 > *, .framer-zxFwq .framer-yfttad > *, .framer-zxFwq .framer-6xkqgy > *, .framer-zxFwq .framer-ep9lxt > *, .framer-zxFwq .framer-s2swgg > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zxFwq .framer-16o6vt0 > *, .framer-zxFwq .framer-1bnj2ga > *, .framer-zxFwq .framer-14nvu30 > *, .framer-zxFwq .framer-85xukc > *, .framer-zxFwq .framer-1t1jlva > *, .framer-zxFwq .framer-16bacrl > *, .framer-zxFwq .framer-3hd17b > *, .framer-zxFwq .framer-1sbbti > *, .framer-zxFwq .framer-v2bg1 > *, .framer-zxFwq .framer-5xgvli > *, .framer-zxFwq .framer-1e8kf3x > *, .framer-zxFwq .framer-njqrxs > *, .framer-zxFwq .framer-1dkfnvz > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zxFwq .framer-11zi1tu > *, .framer-zxFwq .framer-ramnhm > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-zxFwq .framer-1fatkub > *, .framer-zxFwq .framer-1jf8ihc > *, .framer-zxFwq .framer-13nu58 > *, .framer-zxFwq .framer-1qvhm4p > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-zxFwq .framer-1q9knp0 > * { margin: 0px; margin-bottom: calc(13px / 2); margin-top: calc(13px / 2); } .framer-zxFwq .framer-1hxcj4d > *, .framer-zxFwq .framer-2ciay8 > *, .framer-zxFwq .framer-30lced > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-zxFwq .framer-iiuws0 > *, .framer-zxFwq .framer-ne9wpb > *, .framer-zxFwq .framer-1q4zj83 > *, .framer-zxFwq .framer-egng3s > *, .framer-zxFwq .framer-ol93zn > *, .framer-zxFwq .framer-19nytkf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zxFwq .framer-1qlf8yn > *, .framer-zxFwq .framer-8qvx5w > *, .framer-zxFwq .framer-1oph8v8 > *, .framer-zxFwq .framer-yb4e5a > *, .framer-zxFwq .framer-qucdrs > *, .framer-zxFwq .framer-mvolkx > *, .framer-zxFwq .framer-1u1vbph > *, .framer-zxFwq .framer-1047kwo > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zxFwq .framer-1c18p0y > *, .framer-zxFwq .framer-b3ua69 > *, .framer-zxFwq .framer-g4p6yg > *, .framer-zxFwq .framer-8oxpj1 > *, .framer-zxFwq .framer-8y03rf > *, .framer-zxFwq .framer-18f4dy8 > *, .framer-zxFwq .framer-m01uek > *, .framer-zxFwq .framer-10b5jaz > *, .framer-zxFwq .framer-ks6w1z > * { margin: 0px; margin-bottom: calc(4px / 2); margin-top: calc(4px / 2); } .framer-zxFwq .framer-1q4jssi > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-zxFwq .framer-iz1cm2 > *, .framer-zxFwq .framer-ydhvlb > *, .framer-zxFwq .framer-1hk8zeq > *, .framer-zxFwq .framer-1inndxs > *, .framer-zxFwq .framer-x4nmtd > *, .framer-zxFwq .framer-1mv5s8v > *, .framer-zxFwq .framer-s7u3ii > *, .framer-zxFwq .framer-1szhto6 > *, .framer-zxFwq .framer-10vs4tg > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-zxFwq .framer-vcq110 > *, .framer-zxFwq .framer-1go90bg > *, .framer-zxFwq .framer-fmjb5c > *, .framer-zxFwq .framer-qh1x2a > *, .framer-zxFwq .framer-12fg6fq > *, .framer-zxFwq .framer-1l40ezt > *, .framer-zxFwq .framer-onawgz > *, .framer-zxFwq .framer-a8bge6 > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-zxFwq .framer-161uvo8 > *, .framer-zxFwq .framer-19m36od > *, .framer-zxFwq .framer-nr3yfd > *, .framer-zxFwq .framer-avjtl7 > *, .framer-zxFwq .framer-8fpz5t > *, .framer-zxFwq .framer-1mi83nq > *, .framer-zxFwq .framer-1is3k0g > *, .framer-zxFwq .framer-11f41bw > * { margin: 0px; margin-left: calc(12px / 2); margin-right: calc(12px / 2); } .framer-zxFwq .framer-gobhu0 > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-zxFwq .framer-11bssnn > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-zxFwq .framer-1kn3cpa > *, .framer-zxFwq .framer-1ty7nmr > *, .framer-zxFwq .framer-1nnymyu > *, .framer-zxFwq .framer-v96aup > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-zxFwq .framer-hybznk > *, .framer-zxFwq .framer-zlhok1 > * { margin: 0px; margin-left: calc(56px / 2); margin-right: calc(56px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-zxFwq[data-border=\"true\"]::after, .framer-zxFwq [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; }',\"@media (min-width: 768px) and (max-width: 1439px) { .framer-zxFwq.framer-72rtr7 { gap: 56px; width: 768px; } .framer-zxFwq .framer-1v8tpni { background-color: #ffffff; padding: 0px; } .framer-zxFwq .framer-cfn3ej { max-width: unset; } .framer-zxFwq .framer-11k2w9s { padding: 98px 24px 0px 24px; } .framer-zxFwq .framer-19f3v09 { flex-direction: column; gap: 45px; max-width: unset; } .framer-zxFwq .framer-8vue8l { align-content: center; align-items: center; flex: none; gap: 24px; width: 100%; } .framer-zxFwq .framer-16o6vt0 { align-content: flex-start; align-items: flex-start; width: 100%; } .framer-zxFwq .framer-1lvw9ch { order: 0; } .framer-zxFwq .framer-139v47n { order: 1; width: 95%; } .framer-zxFwq .framer-be9mvq { padding: 25px 0px 30px 0px; } .framer-zxFwq .framer-1fatkub, .framer-zxFwq .framer-13nu58 { gap: 50px; max-width: 768px; } .framer-zxFwq .framer-1q9knp0, .framer-zxFwq .framer-17fyr0c, .framer-zxFwq .framer-113n5dt, .framer-zxFwq .framer-ynsa46, .framer-zxFwq .framer-1pi53hf, .framer-zxFwq .framer-ckethh { width: 100%; } .framer-zxFwq .framer-1hxcj4d { flex-wrap: wrap; gap: 24px; padding: 0px 24px 0px 24px; } .framer-zxFwq .framer-iiuws0 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 550px; justify-content: flex-start; padding: 32px 32px 0px 32px; } .framer-zxFwq .framer-w17g0a { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; padding: 0px; } .framer-zxFwq .framer-9x3g0e { bottom: unset; height: var(--framer-aspect-ratio-supported, 365px); left: unset; order: 0; position: relative; transform: unset; width: 100%; } .framer-zxFwq .framer-ne9wpb { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; gap: unset; height: 550px; justify-content: space-between; padding: 0px 32px 32px 32px; } .framer-zxFwq .framer-8qvx5w { flex: 1 0 0px; gap: unset; height: 1px; justify-content: space-between; } .framer-zxFwq .framer-1r8zs4y, .framer-zxFwq .framer-15watg9 { aspect-ratio: unset; flex: 1 0 0px; height: 1px; } .framer-zxFwq .framer-1skkgou { height: var(--framer-aspect-ratio-supported, 249px); top: 58px; } .framer-zxFwq .framer-2ciay8, .framer-zxFwq .framer-30lced { flex-wrap: wrap; padding: 0px 24px 0px 24px; } .framer-zxFwq .framer-1q4jssi { align-self: unset; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 550px; padding: 24px; } .framer-zxFwq .framer-1k3rp0 { width: var(--framer-aspect-ratio-supported, 433px); } .framer-zxFwq .framer-1q4zj83, .framer-zxFwq .framer-ol93zn { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 550px; justify-content: flex-start; padding: 24px 24px 0px 24px; } .framer-zxFwq .framer-2ntdl4 { height: var(--framer-aspect-ratio-supported, 175px); left: 0px; right: 0px; top: 43px; transform: unset; width: unset; } .framer-zxFwq .framer-egng3s { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; height: 550px; justify-content: flex-end; padding: 0px 24px 24px 24px; } .framer-zxFwq .framer-qucdrs { flex: 1 0 0px; height: 1px; } .framer-zxFwq .framer-u40yw7 { height: 219px; left: 0px; right: 0px; top: calc(50.00000000000002% - 219px / 2); width: unset; } .framer-zxFwq .framer-2v1j1t { bottom: unset; height: var(--framer-aspect-ratio-supported, 360px); left: 50%; top: 3px; transform: translateX(-50%); width: 280px; } .framer-zxFwq .framer-1p20ugy, .framer-zxFwq .framer-15phtbl { padding: 0px 24px 0px 24px; } .framer-zxFwq .framer-1jf8ihc { gap: 40px; max-width: 768px; } .framer-zxFwq .framer-gobhu0 { flex-wrap: wrap; } .framer-zxFwq .framer-11bssnn { gap: 16px; } .framer-zxFwq .framer-5xgvli, .framer-zxFwq .framer-1e8kf3x, .framer-zxFwq .framer-njqrxs { padding: 16px; } .framer-zxFwq .framer-ik664g { height: var(--framer-aspect-ratio-supported, 260px); top: 14%; width: 587px; } .framer-zxFwq .framer-1kn3cpa { padding: 80px; } .framer-zxFwq .framer-6xkqgy { gap: 24px; width: 100%; } .framer-zxFwq .framer-x80atq { bottom: -96px; left: -243px; top: -119px; } .framer-zxFwq .framer-dn6mkn { bottom: -96px; right: -259px; top: -119px; } .framer-zxFwq .framer-1uy18t7-container { width: 75%; } .framer-zxFwq .framer-10dl7nk { padding: 25px 0px 0px 0px; } .framer-zxFwq .framer-1qvhm4p { gap: 50px; max-width: 768px; padding: 0px 24px 0px 24px; } .framer-zxFwq .framer-hybznk { flex-direction: column; } .framer-zxFwq .framer-1nnymyu, .framer-zxFwq .framer-16igjf { flex: none; width: 100%; } .framer-zxFwq .framer-zlhok1 { height: min-content; max-width: unset; } .framer-zxFwq .framer-v96aup { flex: 1 0 0px; gap: 32px; height: 429px; padding: 0px 0px 0px 40px; } .framer-zxFwq .framer-ramnhm { align-self: stretch; flex: 1 0 0px; height: auto; } .framer-zxFwq .framer-1ui3fhu { height: var(--framer-aspect-ratio-supported, 376px); width: 360px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zxFwq.framer-72rtr7, .framer-zxFwq .framer-19f3v09, .framer-zxFwq .framer-8vue8l, .framer-zxFwq .framer-1fatkub, .framer-zxFwq .framer-1hxcj4d, .framer-zxFwq .framer-w17g0a, .framer-zxFwq .framer-ne9wpb, .framer-zxFwq .framer-8qvx5w, .framer-zxFwq .framer-1jf8ihc, .framer-zxFwq .framer-11bssnn, .framer-zxFwq .framer-13nu58, .framer-zxFwq .framer-6xkqgy, .framer-zxFwq .framer-1qvhm4p, .framer-zxFwq .framer-hybznk, .framer-zxFwq .framer-v96aup { gap: 0px; } .framer-zxFwq.framer-72rtr7 > *, .framer-zxFwq .framer-hybznk > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-zxFwq.framer-72rtr7 > :first-child, .framer-zxFwq .framer-19f3v09 > :first-child, .framer-zxFwq .framer-8vue8l > :first-child, .framer-zxFwq .framer-1fatkub > :first-child, .framer-zxFwq .framer-w17g0a > :first-child, .framer-zxFwq .framer-1jf8ihc > :first-child, .framer-zxFwq .framer-13nu58 > :first-child, .framer-zxFwq .framer-6xkqgy > :first-child, .framer-zxFwq .framer-1qvhm4p > :first-child, .framer-zxFwq .framer-hybznk > :first-child, .framer-zxFwq .framer-v96aup > :first-child { margin-top: 0px; } .framer-zxFwq.framer-72rtr7 > :last-child, .framer-zxFwq .framer-19f3v09 > :last-child, .framer-zxFwq .framer-8vue8l > :last-child, .framer-zxFwq .framer-1fatkub > :last-child, .framer-zxFwq .framer-w17g0a > :last-child, .framer-zxFwq .framer-1jf8ihc > :last-child, .framer-zxFwq .framer-13nu58 > :last-child, .framer-zxFwq .framer-6xkqgy > :last-child, .framer-zxFwq .framer-1qvhm4p > :last-child, .framer-zxFwq .framer-hybznk > :last-child, .framer-zxFwq .framer-v96aup > :last-child { margin-bottom: 0px; } .framer-zxFwq .framer-19f3v09 > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-zxFwq .framer-8vue8l > *, .framer-zxFwq .framer-6xkqgy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zxFwq .framer-1fatkub > *, .framer-zxFwq .framer-13nu58 > *, .framer-zxFwq .framer-1qvhm4p > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-zxFwq .framer-1hxcj4d > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-zxFwq .framer-1hxcj4d > :first-child, .framer-zxFwq .framer-11bssnn > :first-child { margin-left: 0px; } .framer-zxFwq .framer-1hxcj4d > :last-child, .framer-zxFwq .framer-11bssnn > :last-child { margin-right: 0px; } .framer-zxFwq .framer-w17g0a > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-zxFwq .framer-ne9wpb > *, .framer-zxFwq .framer-ne9wpb > :first-child, .framer-zxFwq .framer-ne9wpb > :last-child, .framer-zxFwq .framer-8qvx5w > *, .framer-zxFwq .framer-8qvx5w > :first-child, .framer-zxFwq .framer-8qvx5w > :last-child { margin: 0px; } .framer-zxFwq .framer-1jf8ihc > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } .framer-zxFwq .framer-11bssnn > * { margin: 0px; margin-left: calc(16px / 2); margin-right: calc(16px / 2); } .framer-zxFwq .framer-v96aup > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }}\",\"@media (max-width: 767px) { .framer-zxFwq.framer-72rtr7 { gap: 56px; width: 390px; } .framer-zxFwq .framer-1v8tpni { padding: 0px; position: fixed; } .framer-zxFwq .framer-cfn3ej { max-width: unset; } .framer-zxFwq .framer-11k2w9s { padding: 81px 20px 0px 20px; } .framer-zxFwq .framer-19f3v09 { flex-direction: column; gap: 50px; max-width: unset; padding: 32px; } .framer-zxFwq .framer-8vue8l { align-content: center; align-items: center; flex: none; gap: 24px; width: 100%; } .framer-zxFwq .framer-16o6vt0, .framer-zxFwq .framer-11zi1tu, .framer-zxFwq .framer-1q9knp0, .framer-zxFwq .framer-16kb03a, .framer-zxFwq .framer-1xh9wg6, .framer-zxFwq .framer-6xkqgy, .framer-zxFwq .framer-ckethh, .framer-zxFwq .framer-m5mqr3, .framer-zxFwq .framer-1obj0sl { width: 100%; } .framer-zxFwq .framer-1oc1351 { height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-zxFwq .framer-be9mvq, .framer-zxFwq .framer-1u1vbph, .framer-zxFwq .framer-1p20ugy { padding: 0px 16px 0px 16px; } .framer-zxFwq .framer-wkg2rc, .framer-zxFwq .framer-yfttad, .framer-zxFwq .framer-s2swgg { max-width: 390px; } .framer-zxFwq .framer-1fatkub { gap: 32px; max-width: 390px; } .framer-zxFwq .framer-17fyr0c { gap: 24px; width: 100%; } .framer-zxFwq .framer-1hxcj4d, .framer-zxFwq .framer-2ciay8, .framer-zxFwq .framer-30lced, .framer-zxFwq .framer-hybznk { flex-direction: column; gap: 24px; } .framer-zxFwq .framer-iiuws0, .framer-zxFwq .framer-ol93zn { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 380px; justify-content: flex-start; padding: 24px 24px 0px 24px; width: 100%; } .framer-zxFwq .framer-9x3g0e { bottom: unset; height: var(--framer-aspect-ratio-supported, 271px); left: 51%; top: -11px; width: 211px; } .framer-zxFwq .framer-ne9wpb, .framer-zxFwq .framer-egng3s { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 380px; justify-content: flex-end; padding: 0px 24px 24px 24px; width: 100%; } .framer-zxFwq .framer-1r8zs4y, .framer-zxFwq .framer-15watg9 { height: var(--framer-aspect-ratio-supported, 177px); } .framer-zxFwq .framer-1skkgou { height: var(--framer-aspect-ratio-supported, 265px); left: 50%; right: unset; top: 56%; transform: translate(-50%, -50%); width: 301px; } .framer-zxFwq .framer-1q4jssi { align-self: unset; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 380px; padding: 24px; width: 100%; } .framer-zxFwq .framer-1k3rp0 { bottom: 0px; top: 0px; width: var(--framer-aspect-ratio-supported, 296px); } .framer-zxFwq .framer-1q4zj83 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; flex: none; height: 380px; justify-content: flex-start; padding: 40px 24px 0px 24px; width: 100%; } .framer-zxFwq .framer-2ntdl4 { height: var(--framer-aspect-ratio-supported, 265px); left: 50%; top: 25px; transform: translateX(-50%); width: 301px; } .framer-zxFwq .framer-u40yw7 { bottom: 7px; height: 221px; left: calc(49.67741935483873% - 280px / 2); top: unset; width: 280px; } .framer-zxFwq .framer-2v1j1t { bottom: unset; height: var(--framer-aspect-ratio-supported, 314px); left: 42px; right: 24px; top: -23px; width: unset; } .framer-zxFwq .framer-2am254 { gap: 0px; } .framer-zxFwq .framer-1jf8ihc { gap: 35px; max-width: 390px; } .framer-zxFwq .framer-gobhu0 { flex-direction: column; } .framer-zxFwq .framer-11bssnn { flex-direction: column; gap: 16px; } .framer-zxFwq .framer-5xgvli, .framer-zxFwq .framer-1e8kf3x, .framer-zxFwq .framer-njqrxs { flex: none; width: 100%; } .framer-zxFwq .framer-ik664g { height: var(--framer-aspect-ratio-supported, 186px); left: 47%; top: 9%; width: 420px; } .framer-zxFwq .framer-15phtbl { padding: 0px 16px 0px 15px; } .framer-zxFwq .framer-13nu58, .framer-zxFwq .framer-1qvhm4p { gap: 40px; max-width: 390px; } .framer-zxFwq .framer-1kn3cpa { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; padding: 80px 24px 80px 24px; } .framer-zxFwq .framer-x80atq { bottom: -28px; left: -189px; top: -8px; width: 280px; } .framer-zxFwq .framer-dn6mkn { bottom: -33px; right: -117px; top: 88px; width: 218px; } .framer-zxFwq .framer-10dl7nk { padding: 20px 20px 25px 20px; } .framer-zxFwq .framer-1ty7nmr { padding: 24px; } .framer-zxFwq .framer-1nnymyu { flex: none; gap: 32px; width: 100%; } .framer-zxFwq .framer-16igjf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; padding: 0px; width: 100%; } .framer-zxFwq .framer-164b52 { aspect-ratio: 1.0274914089347078 / 1; bottom: unset; height: var(--framer-aspect-ratio-supported, 195px); left: unset; position: relative; right: unset; top: unset; width: 100%; } .framer-zxFwq .framer-ktn56x { gap: 16px; padding: 56px 24px 0px 24px; } .framer-zxFwq .framer-zlhok1 { flex-direction: column; gap: 40px; height: min-content; max-width: 390px; } .framer-zxFwq .framer-v96aup { flex: none; gap: 24px; height: min-content; padding: 0px; width: 100%; } .framer-zxFwq .framer-ramnhm { flex: none; height: min-content; width: 100%; } .framer-zxFwq .framer-1ui3fhu { aspect-ratio: 0.9086294416243654 / 1; height: var(--framer-aspect-ratio-supported, 220px); width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-zxFwq.framer-72rtr7, .framer-zxFwq .framer-19f3v09, .framer-zxFwq .framer-8vue8l, .framer-zxFwq .framer-1fatkub, .framer-zxFwq .framer-17fyr0c, .framer-zxFwq .framer-1hxcj4d, .framer-zxFwq .framer-2ciay8, .framer-zxFwq .framer-30lced, .framer-zxFwq .framer-2am254, .framer-zxFwq .framer-1jf8ihc, .framer-zxFwq .framer-gobhu0, .framer-zxFwq .framer-11bssnn, .framer-zxFwq .framer-13nu58, .framer-zxFwq .framer-1qvhm4p, .framer-zxFwq .framer-hybznk, .framer-zxFwq .framer-1nnymyu, .framer-zxFwq .framer-16igjf, .framer-zxFwq .framer-ktn56x, .framer-zxFwq .framer-zlhok1, .framer-zxFwq .framer-v96aup { gap: 0px; } .framer-zxFwq.framer-72rtr7 > * { margin: 0px; margin-bottom: calc(56px / 2); margin-top: calc(56px / 2); } .framer-zxFwq.framer-72rtr7 > :first-child, .framer-zxFwq .framer-19f3v09 > :first-child, .framer-zxFwq .framer-8vue8l > :first-child, .framer-zxFwq .framer-1fatkub > :first-child, .framer-zxFwq .framer-17fyr0c > :first-child, .framer-zxFwq .framer-1hxcj4d > :first-child, .framer-zxFwq .framer-2ciay8 > :first-child, .framer-zxFwq .framer-30lced > :first-child, .framer-zxFwq .framer-2am254 > :first-child, .framer-zxFwq .framer-1jf8ihc > :first-child, .framer-zxFwq .framer-gobhu0 > :first-child, .framer-zxFwq .framer-11bssnn > :first-child, .framer-zxFwq .framer-13nu58 > :first-child, .framer-zxFwq .framer-1qvhm4p > :first-child, .framer-zxFwq .framer-hybznk > :first-child, .framer-zxFwq .framer-1nnymyu > :first-child, .framer-zxFwq .framer-16igjf > :first-child, .framer-zxFwq .framer-ktn56x > :first-child, .framer-zxFwq .framer-zlhok1 > :first-child, .framer-zxFwq .framer-v96aup > :first-child { margin-top: 0px; } .framer-zxFwq.framer-72rtr7 > :last-child, .framer-zxFwq .framer-19f3v09 > :last-child, .framer-zxFwq .framer-8vue8l > :last-child, .framer-zxFwq .framer-1fatkub > :last-child, .framer-zxFwq .framer-17fyr0c > :last-child, .framer-zxFwq .framer-1hxcj4d > :last-child, .framer-zxFwq .framer-2ciay8 > :last-child, .framer-zxFwq .framer-30lced > :last-child, .framer-zxFwq .framer-2am254 > :last-child, .framer-zxFwq .framer-1jf8ihc > :last-child, .framer-zxFwq .framer-gobhu0 > :last-child, .framer-zxFwq .framer-11bssnn > :last-child, .framer-zxFwq .framer-13nu58 > :last-child, .framer-zxFwq .framer-1qvhm4p > :last-child, .framer-zxFwq .framer-hybznk > :last-child, .framer-zxFwq .framer-1nnymyu > :last-child, .framer-zxFwq .framer-16igjf > :last-child, .framer-zxFwq .framer-ktn56x > :last-child, .framer-zxFwq .framer-zlhok1 > :last-child, .framer-zxFwq .framer-v96aup > :last-child { margin-bottom: 0px; } .framer-zxFwq .framer-19f3v09 > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } .framer-zxFwq .framer-8vue8l > *, .framer-zxFwq .framer-17fyr0c > *, .framer-zxFwq .framer-1hxcj4d > *, .framer-zxFwq .framer-2ciay8 > *, .framer-zxFwq .framer-30lced > *, .framer-zxFwq .framer-hybznk > *, .framer-zxFwq .framer-v96aup > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-zxFwq .framer-1fatkub > *, .framer-zxFwq .framer-1nnymyu > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-zxFwq .framer-2am254 > *, .framer-zxFwq .framer-16igjf > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-zxFwq .framer-1jf8ihc > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-zxFwq .framer-gobhu0 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-zxFwq .framer-11bssnn > *, .framer-zxFwq .framer-ktn56x > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-zxFwq .framer-13nu58 > *, .framer-zxFwq .framer-1qvhm4p > *, .framer-zxFwq .framer-zlhok1 > * { margin: 0px; margin-bottom: calc(40px / 2); margin-top: calc(40px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 7398.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"PkLPKxZ5K\":{\"layout\":[\"fixed\",\"auto\"]},\"Bqr0GuKP8\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zCPActIIx\":{\"pattern\":\":zCPActIIx\",\"name\":\"hero-content\"},\"qlMIMdBjY\":{\"pattern\":\":qlMIMdBjY\",\"name\":\"hero-content\"},\"MFBNEVMCn\":{\"pattern\":\":MFBNEVMCn\",\"name\":\"hero-content\"},\"yWi1GG0rW\":{\"pattern\":\":yWi1GG0rW\",\"name\":\"hero-content\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-zxFwq\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:7398.5,width:1440};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_Re-Q4mJPby1QNtA.woff2\",weight:\"700\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RQuQ4mJPby1QNtA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RruM4mJPby1QNtA.woff2\",weight:\"500\"},{family:\"DM Serif Display\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/dmserifdisplay/v15/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx0vr352np3Q.woff2\",weight:\"400\"},{family:\"Geist\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/geist/v1/gyBhhwUxId8gMGYQMKR3pzfaWI_RnOM4mJPby1QNtA.woff2\",weight:\"400\"}]},...NavbarFonts,...DownloadButtonFonts,...TickerFonts,...DownloadFonts,...ButtonFonts,...FAQSectionFonts,...FooterDarkFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PkLPKxZ5K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Bqr0GuKP8\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"7398.5\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"zCPActIIx\\\":{\\\"pattern\\\":\\\":zCPActIIx\\\",\\\"name\\\":\\\"hero-content\\\"},\\\"qlMIMdBjY\\\":{\\\"pattern\\\":\\\":qlMIMdBjY\\\",\\\"name\\\":\\\"hero-content\\\"},\\\"MFBNEVMCn\\\":{\\\"pattern\\\":\\\":MFBNEVMCn\\\",\\\"name\\\":\\\"hero-content\\\"},\\\"yWi1GG0rW\\\":{\\\"pattern\\\":\\\":yWi1GG0rW\\\",\\\"name\\\":\\\"hero-content\\\"}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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C,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KAAK,EAAE,KAAK,EAAE,GAAG,GAAG,EAAE,EAAE,UAAU,CAAC,GAAGA,GAAmB,GAAG,GAAG,KAAKA,GAAmB,QAAQ,KA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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "answer", "click", "height", "id", "question", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "IwBk0_kO8", "r5W_4tAqU", "GHz_B_C5c", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1liiquy", "args", "onTap1qo702x", "onTap1ykuuim", "onTap1j4qpor", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "SVG", "css", "FramerCWFJK1fLn", "withCSS", "CWFJK1fLn_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "SingleFAQFonts", "getFonts", "CWFJK1fLn_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTaplej7z9", "args", "onTapk5l5mh", "onTap10rbhl9", "GHz_B_C5ckqhlx8", "onTap1nt9884", "onTap1hnfd8x", "GHz_B_C5c10rbhl9", "onTapdjp9ep", "onTap8uhc76", "onTap119bq44", "onTap1azgvar", "onTapr2k8a2", "onTap1xfsczm", "onTap4sckvf", "onTapkbuei2", "onTapxfsfg9", "onTapmgphrk", "onTapgk5ff7", "onTap1189i3j", "onTapypz553", "onTap14js4yc", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "ComponentViewportProvider", "css", "FramerRBJSaJMtG", "withCSS", "RBJSaJMtG_default", "addPropertyControls", "ControlType", "addFonts", "FAQFonts", "getFonts", "RBJSaJMtG_default", "MotionDivWithFX", "withFX", "motion", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "ref1", "pe", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "ComponentViewportProvider", "css", "FramerUk81Ak5VP", "withCSS", "Uk81Ak5VP_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "cTjc9KtVJ_default", "DownloadButtonFonts", "DownloadButton", "MotionDivWithFX", "withFX", "motion", "TickerFonts", "Ticker", "ImageWithFX", "Image2", "DownloadFonts", "Download", "ButtonFonts", "FphLbAGTU_default", "FAQSectionFonts", "Uk81Ak5VP_default", "MotionHeaderWithFX", "FooterDarkFonts", "Jf9qYRVeK_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "animation1", "animation2", "transition3", "transformTemplate1", "_", "t", "transformTemplate2", "animation3", "animation4", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "isDisplayed", "elementId3", "ref4", "router", "useRouter", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "PropertyOverrides2", "ComponentViewportProvider", "Container", "x", "RichText2", "getLoadingLazyAtYPosition", "SVG", "ResolveLinks", "resolvedLinks", "Link", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
