{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/oQk14E8Ar7JXjnVOhZW2/tTjSZGoYpVB4w8r1kHS0/TextWrap_Prod.js", "ssg:https://framerusercontent.com/modules/TIRc425HY02NPLOI6tVo/sFN3LE6NKDQ6d4MTEY4Z/kORP1qm2A.js", "ssg:https://framerusercontent.com/modules/ky636wNEHg7X9ReklfEV/fjk0aw441ltdB265bSHG/CsTKnpQZR.js", "ssg:https://framerusercontent.com/modules/btntGcLeeqlvHHkRfuH5/jNv1O8vHTbO08oBR88ZL/CpDqtRA3_.js", "ssg:https://framerusercontent.com/modules/wT3o7WPPllGKaemQuwkt/iSvD6iuRcWf3aGnjx7O0/H9ib0OpTu.js", "ssg:https://framerusercontent.com/modules/gYOQuwOZuAtSc4sLG9tm/o8w8w1nFeQcsEtShzuc6/jhkC20gf9.js", "ssg:https://framerusercontent.com/modules/klCgzCwnhNPdMbvoZoWD/kVGC5odxKE0LjBmKbbD7/qnPB8XCem.js", "ssg:https://framerusercontent.com/modules/lpwR8LzvvnHdFX7Uf2HC/iB1r0wvkr7GpyTwR24AP/teci4C4LZ.js", "ssg:https://framerusercontent.com/modules/4P2SWsgrEKmEVq6nEpsP/AaMHN22LydrVALTWltKh/o1EnKqu5D.js", "ssg:https://framerusercontent.com/modules/npIoaVo4Mb5xXYWfw3jy/68uA4YVfAj1wPl03pNbG/d7RSwh85G.js", "ssg:https://framerusercontent.com/modules/mmXKrViuHbZRoeSOWIax/dBQRclj8n6iIleBCD4nM/MujRk9thy.js", "ssg:https://framerusercontent.com/modules/eUzyhCPs6dNxfjbJ70s8/R5Mcu8CCex8ECBhqiPks/OolwzoaA3.js", "ssg:https://framerusercontent.com/modules/tHSl8oNl6dPW8bR3v34v/udMigauHJxNFP3VNApaR/UMPoZ9pKa.js", "ssg:https://framerusercontent.com/modules/4zUsLcMUQgSZv7OBMG6h/yYKgEE7PB3n07PJMNzxy/HUwiUU0KQ.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight auto\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight auto\n */export default function TextWrap({layers=[],text,slot,font,color,layerGap,transform,layerAlign,decoration,balance,userSelect,tag,style}){const Tag=tag;const parts=text.split(slot);const content=[];// Insert layers at slot positions, keeping empty slots if no layer is available\nfor(let i=0;i<parts.length;i++){content.push(parts[i]);if(i<parts.length-1){// If we're not at the last part\nif(i<layers.length){// If we have a layer for this slot, insert it\ncontent.push(/*#__PURE__*/_jsx(InlineLayer,{align:layerAlign,gap:layerGap,children:layers[i]},`layer-${i}`));}else{// If we don't have a layer, keep the slot marker\ncontent.push(slot);}}}// Append any remaining layers at the end\nif(layers.length>parts.length-1){for(let i=parts.length-1;i<layers.length;i++){content.push(/*#__PURE__*/_jsx(InlineLayer,{align:layerAlign,gap:layerGap,children:layers[i]},`layer-${i}`));}}return /*#__PURE__*/_jsx(Tag,{style:{color,margin:0,whiteSpace:style?.width?\"pre\":\"nowrap\",fontWeight:400,textAlign:\"center\",userSelect:userSelect?\"auto\":\"none\",textDecoration:decoration,textWrap:balance?\"balance\":undefined,textTransform:transform,...color.mode==\"solid\"?{color:color.color}:{WebkitBackgroundClip:\"text\",WebkitTextFillColor:\"transparent\",backgroundImage:`linear-gradient(${color.angle}deg, ${color.endColor}, ${color.startColor})`},...font,...style},children:content});}TextWrap.displayName=\"Text Wrap\";addPropertyControls(TextWrap,{text:{type:ControlType.String,defaultValue:\"Learn [] Framer With [] Framer University\",displayTextArea:true},layers:{type:ControlType.Array,control:{type:ControlType.ComponentInstance}},slot:{type:ControlType.String,defaultValue:\"[]\"},font:{type:\"font\",controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:32,lineHeight:1.4}},color:{type:ControlType.Object,icon:\"color\",controls:{mode:{type:ControlType.Enum,defaultValue:\"solid\",options:[\"solid\",\"gradient\"],optionTitles:[\"Solid\",\"Gradient\"],displaySegmentedControl:true},color:{type:ControlType.Color,defaultValue:\"#999999\",hidden:props=>props.mode!==\"solid\"},startColor:{type:ControlType.Color,defaultValue:\"#000\",hidden:props=>props.mode!==\"gradient\"},endColor:{type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.mode!==\"gradient\"},angle:{type:ControlType.Number,defaultValue:0,min:-360,max:360,unit:\"\\xb0\",hidden:props=>props.mode!==\"gradient\"}}},layerAlign:{type:ControlType.Enum,defaultValue:\"baseline\",options:[\"baseline\",\"middle\"],optionTitles:[\"Baseline\",\"Middle\"],displaySegmentedControl:true,title:\"Align\"},layerGap:{type:ControlType.Number,defaultValue:0,min:0,step:1},transform:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"inherit\",\"capitalize\",\"uppercase\",\"lowercase\"],optionTitles:[\"None\",\"Inherit\",\"Capitalize\",\"Uppercase\",\"Lowercase\"]},decoration:{type:ControlType.Enum,defaultValue:\"none\",options:[\"none\",\"underline\",\"line-through\"],optionTitles:[\"None\",\"Underline\",\"Strikethrough\"]},balance:{type:ControlType.Boolean,defaultValue:false},userSelect:{type:ControlType.Boolean,defaultValue:true},tag:{type:ControlType.Enum,defaultValue:\"h1\",options:[\"h1\",\"h2\",\"h3\",\"h4\",\"h5\",\"h6\",\"p\",\"span\"],description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function InlineLayer({children,align=\"middle\",gap=0}){return /*#__PURE__*/_jsx(\"span\",{style:{display:\"inline-block\",verticalAlign:align,marginLeft:gap,marginRight:gap},children:children});}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextWrap\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutHeight\":\"auto\",\"framerIntrinsicHeight\":\"auto\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TextWrap_Prod.map", "// Generated by Framer (c6a7228)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const MotionDivWithFX=withFX(motion.div);const enabledGestures={f8ONcXxNt:{hover:true,pressed:true}};const cycleOrder=[\"f8ONcXxNt\",\"zzzeo4gzm\",\"QLL6KmsxW\",\"OQc5T0b5M\",\"dtKPcFSYQ\"];const serializationHash=\"framer-nttyo\";const variantClassNames={dtKPcFSYQ:\"framer-v-1wnj7gd\",f8ONcXxNt:\"framer-v-1qz0ux4\",OQc5T0b5M:\"framer-v-x9lg\",QLL6KmsxW:\"framer-v-2heg4s\",zzzeo4gzm:\"framer-v-sak86q\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:0,duration:.2,ease:[.44,0,.56,1],type:\"tween\"};const transition2={delay:0,duration:1,ease:[0,0,1,1],type:\"tween\"};const animation={opacity:1,rotate:360,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Default:\"f8ONcXxNt\",Disabled:\"QLL6KmsxW\",Error:\"dtKPcFSYQ\",Loading:\"zzzeo4gzm\",Success:\"OQc5T0b5M\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"f8ONcXxNt\"};};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:\"f8ONcXxNt\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"zzzeo4gzm\")return false;return true;};const isDisplayed1=()=>{if(baseVariant===\"zzzeo4gzm\")return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.button,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1qz0ux4\",className,classNames),\"data-framer-name\":\"Default\",\"data-reset\":\"button\",layoutDependency:layoutDependency,layoutId:\"f8ONcXxNt\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"rgb(34, 34, 34)\",borderBottomLeftRadius:8,borderBottomRightRadius:8,borderTopLeftRadius:8,borderTopRightRadius:8,boxShadow:\"0px 0.7065919983928324px 0.7065919983928324px -0.625px rgba(0, 0, 0, 0.14764), 0px 1.8065619053231785px 1.8065619053231785px -1.25px rgba(0, 0, 0, 0.14398), 0px 3.6217592146567767px 3.6217592146567767px -1.875px rgba(0, 0, 0, 0.13793), 0px 6.8655999097303715px 6.8655999097303715px -2.5px rgba(0, 0, 0, 0.12711), 0px 13.646761411524492px 13.646761411524492px -3.125px rgba(0, 0, 0, 0.10451), 0px 30px 30px -3.75px rgba(0, 0, 0, 0.05)\",opacity:1,...style},variants:{\"f8ONcXxNt-hover\":{backgroundColor:\"rgb(51, 51, 51)\"},\"f8ONcXxNt-pressed\":{backgroundColor:\"rgba(17, 17, 17, 0.9)\"},dtKPcFSYQ:{backgroundColor:\"rgba(255, 34, 68, 0.15)\"},QLL6KmsxW:{opacity:.5}},...addPropertyOverrides({\"f8ONcXxNt-hover\":{\"data-framer-name\":undefined},\"f8ONcXxNt-pressed\":{\"data-framer-name\":undefined},dtKPcFSYQ:{\"data-framer-name\":\"Error\"},OQc5T0b5M:{\"data-framer-name\":\"Success\"},QLL6KmsxW:{\"data-framer-name\":\"Disabled\"},zzzeo4gzm:{\"data-framer-name\":\"Loading\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"R0Y7SW50ZXItNjAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Submit\"})}),className:\"framer-ktzai0\",fonts:[\"GF;Inter-600\"],layoutDependency:layoutDependency,layoutId:\"t1ZlFkWjR\",style:{\"--extracted-r6o4lv\":\"rgb(255, 255, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{dtKPcFSYQ:{\"--extracted-r6o4lv\":\"rgb(255, 34, 68)\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({dtKPcFSYQ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 34, 68))\"},children:\"Something went wrong\"})}),fonts:[\"Inter-SemiBold\"]},OQc5T0b5M:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(255, 255, 255))\"},children:\"Thank you\"})}),fonts:[\"Inter-SemiBold\"]}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-j7pb5h\",\"data-framer-name\":\"Spinner\",layoutDependency:layoutDependency,layoutId:\"RrxNVlv8A\",style:{mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"},children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__loop:animation,__framer__loopEffectEnabled:true,__framer__loopRepeatDelay:0,__framer__loopRepeatType:\"loop\",__framer__loopTransition:transition2,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-10zmbfp\",\"data-framer-name\":\"Conic\",layoutDependency:layoutDependency,layoutId:\"h7t0PDevn\",style:{background:\"conic-gradient(from 180deg at 50% 50%, #4cf 0deg, #4cf 360deg)\",backgroundColor:\"rgb(68, 204, 255)\",mask:\"none\",WebkitMask:\"none\"},variants:{zzzeo4gzm:{background:\"conic-gradient(from 0deg at 50% 50%, rgba(255, 255, 255, 0) 7.208614864864882deg, rgb(255, 255, 255) 342deg)\",backgroundColor:\"rgba(0, 0, 0, 0)\",mask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\",WebkitMask:\"url('https://framerusercontent.com/images/pGiXYozQ3mE4cilNOItfe2L2fUA.svg') alpha no-repeat center / cover add\"}},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-161t4lu\",\"data-framer-name\":\"Rounding\",layoutDependency:layoutDependency,layoutId:\"r4IqvgPHU\",style:{backgroundColor:\"rgb(255, 255, 255)\",borderBottomLeftRadius:1,borderBottomRightRadius:1,borderTopLeftRadius:1,borderTopRightRadius:1},transformTemplate:transformTemplate1})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-nttyo.framer-146yrc6, .framer-nttyo .framer-146yrc6 { display: block; }\",\".framer-nttyo.framer-1qz0ux4 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 50px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 240px; }\",\".framer-nttyo .framer-ktzai0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-nttyo .framer-j7pb5h { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 20px); overflow: hidden; position: relative; width: 20px; }\",\".framer-nttyo .framer-10zmbfp { bottom: 0px; flex: none; left: 0px; overflow: visible; position: absolute; right: 0px; top: 0px; }\",\".framer-nttyo .framer-161t4lu { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 2px); left: 50%; overflow: visible; position: absolute; top: 0px; width: 2px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-nttyo.framer-1qz0ux4 { gap: 0px; } .framer-nttyo.framer-1qz0ux4 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-nttyo.framer-1qz0ux4 > :first-child { margin-left: 0px; } .framer-nttyo.framer-1qz0ux4 > :last-child { margin-right: 0px; } }\",\".framer-nttyo.framer-v-sak86q.framer-1qz0ux4, .framer-nttyo.framer-v-2heg4s.framer-1qz0ux4, .framer-nttyo.framer-v-x9lg.framer-1qz0ux4, .framer-nttyo.framer-v-1wnj7gd.framer-1qz0ux4 { cursor: unset; }\",\".framer-nttyo.framer-v-sak86q .framer-10zmbfp { overflow: hidden; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 50\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"zzzeo4gzm\":{\"layout\":[\"fixed\",\"fixed\"]},\"QLL6KmsxW\":{\"layout\":[\"fixed\",\"fixed\"]},\"OQc5T0b5M\":{\"layout\":[\"fixed\",\"fixed\"]},\"dtKPcFSYQ\":{\"layout\":[\"fixed\",\"fixed\"]},\"R0jbm7y65\":{\"layout\":[\"fixed\",\"fixed\"]},\"ym9x7NoZZ\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerkORP1qm2A=withCSS(Component,css,\"framer-nttyo\");export default FramerkORP1qm2A;FramerkORP1qm2A.displayName=\"Button\";FramerkORP1qm2A.defaultProps={height:50,width:240};addPropertyControls(FramerkORP1qm2A,{variant:{options:[\"f8ONcXxNt\",\"zzzeo4gzm\",\"QLL6KmsxW\",\"OQc5T0b5M\",\"dtKPcFSYQ\"],optionTitles:[\"Default\",\"Loading\",\"Disabled\",\"Success\",\"Error\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerkORP1qm2A,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v13/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZ1rib2Bg-4.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://app.framerstatic.com/Inter-SemiBold.cyrillic-ext-C7KWUKA7.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://app.framerstatic.com/Inter-SemiBold.cyrillic-JWV7SOZ6.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-ext-FBKSFTSU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.greek-EQ3PSENU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://app.framerstatic.com/Inter-SemiBold.latin-ext-ULRSO3ZR.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://app.framerstatic.com/Inter-SemiBold.latin-RDYY2AG2.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://app.framerstatic.com/Inter-SemiBold.vietnamese-ESQNSEQ3.woff2\",weight:\"600\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerkORP1qm2A\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"240\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"zzzeo4gzm\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"QLL6KmsxW\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"OQc5T0b5M\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"dtKPcFSYQ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"R0jbm7y65\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"ym9x7NoZZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"50\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./kORP1qm2A.map", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"HelveticaNeue-Medium\"]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-i8aaZ .framer-styles-preset-1ng8tmi:not(.rich-text-wrapper), .framer-i8aaZ .framer-styles-preset-1ng8tmi.rich-text-wrapper h5 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --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: 810px) { .framer-i8aaZ .framer-styles-preset-1ng8tmi:not(.rich-text-wrapper), .framer-i8aaZ .framer-styles-preset-1ng8tmi.rich-text-wrapper h5 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 23px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-i8aaZ .framer-styles-preset-1ng8tmi:not(.rich-text-wrapper), .framer-i8aaZ .framer-styles-preset-1ng8tmi.rich-text-wrapper h5 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 22px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-i8aaZ\";\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 (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ky636wNEHg7X9ReklfEV/fjk0aw441ltdB265bSHG/CsTKnpQZR.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eRnGEhiye6rqMzMNtM1i/UneOBo4DS1yZ2aaMXv8n/ThYDETjDr.js\";const serializationHash=\"framer-sEKla\";const variantClassNames={LPcDAaPlr:\"framer-v-9nk7gg\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};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 getProps=({height,icon,id,name1,text,width,...props})=>{return{...props,ff0KG4PIC:name1??props.ff0KG4PIC??\"Sales Tracking\",MjP0kV7Tr:text??props.MjP0kV7Tr??\"Monitor sales performance in real-time to quickly identify trends\",UvRWWLOI1:icon??props.UvRWWLOI1??{pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/LKphIJGJBPEAtpUN4cF62ZdgxeY.svg\"}};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,UvRWWLOI1,ff0KG4PIC,MjP0kV7Tr,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"LPcDAaPlr\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-9nk7gg\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Feature Card\",layoutDependency:layoutDependency,layoutId:\"LPcDAaPlr\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(87, 140, 255, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgb(245, 245, 245)\",borderBottomLeftRadius:26,borderBottomRightRadius:26,borderTopLeftRadius:26,borderTopRightRadius:26,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1926pw4\",\"data-framer-name\":\"Icon wrapper\",layoutDependency:layoutDependency,layoutId:\"hywngQ9pj\",style:{backgroundColor:\"var(--token-0237f941-391c-45d6-916b-59c30cb25438, rgb(99, 99, 99))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,boxShadow:\"0px 0px 0px 1px rgba(18, 55, 105, 0.08), 0px 2px 10px 1px rgba(0, 0, 0, 0.1)\"},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+32+0+16),pixelHeight:800,pixelWidth:800,sizes:\"26px\",...toResponsiveImage(UvRWWLOI1),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-15lyk6o\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"U5a5LqHwe\"})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1vaz6vo\",\"data-framer-name\":\"Text wrapper\",layoutDependency:layoutDependency,layoutId:\"OLUop55iq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1ng8tmi\",\"data-styles-preset\":\"CsTKnpQZR\",children:\"Sales Tracking\"})}),className:\"framer-9b8pke\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"lTXuxdtWe\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:ff0KG4PIC,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nmqimv\",\"data-styles-preset\":\"ThYDETjDr\",children:\"Monitor sales performance in real-time to quickly identify trends\"})}),className:\"framer-kpqw9d\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"oaSiXo6wu\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:MjP0kV7Tr,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-sEKla.framer-15krnct, .framer-sEKla .framer-15krnct { display: block; }\",\".framer-sEKla.framer-9nk7gg { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 36px; height: min-content; justify-content: flex-start; padding: 32px; position: relative; width: 342px; }\",\".framer-sEKla .framer-1926pw4 { 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: 16px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-sEKla .framer-15lyk6o { flex: none; height: 26px; overflow: hidden; position: relative; width: 26px; }\",\".framer-sEKla .framer-1vaz6vo { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-sEKla .framer-9b8pke, .framer-sEKla .framer-kpqw9d { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-sEKla.framer-9nk7gg, .framer-sEKla .framer-1926pw4, .framer-sEKla .framer-1vaz6vo { gap: 0px; } .framer-sEKla.framer-9nk7gg > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-sEKla.framer-9nk7gg > :first-child, .framer-sEKla .framer-1vaz6vo > :first-child { margin-top: 0px; } .framer-sEKla.framer-9nk7gg > :last-child, .framer-sEKla .framer-1vaz6vo > :last-child { margin-bottom: 0px; } .framer-sEKla .framer-1926pw4 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-sEKla .framer-1926pw4 > :first-child { margin-left: 0px; } .framer-sEKla .framer-1926pw4 > :last-child { margin-right: 0px; } .framer-sEKla .framer-1vaz6vo > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-sEKla[data-border=\"true\"]::after, .framer-sEKla [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 257\n * @framerIntrinsicWidth 342\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"UvRWWLOI1\":\"icon\",\"ff0KG4PIC\":\"name1\",\"MjP0kV7Tr\":\"text\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerCpDqtRA3_=withCSS(Component,css,\"framer-sEKla\");export default FramerCpDqtRA3_;FramerCpDqtRA3_.displayName=\"Feature Card\";FramerCpDqtRA3_.defaultProps={height:257,width:342};addPropertyControls(FramerCpDqtRA3_,{UvRWWLOI1:{__defaultAssetReference:\"data:framer/asset-reference,LKphIJGJBPEAtpUN4cF62ZdgxeY.svg?originalFilename=copy-svgrepo-com+%284%29.svg&preferredSize=auto\",title:\"Icon\",type:ControlType.ResponsiveImage},ff0KG4PIC:{defaultValue:\"Sales Tracking\",displayTextArea:false,title:\"Name\",type:ControlType.String},MjP0kV7Tr:{defaultValue:\"Monitor sales performance in real-time to quickly identify trends\",displayTextArea:true,title:\"Text\",type:ControlType.String}});addFonts(FramerCpDqtRA3_,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerCpDqtRA3_\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"257\",\"framerIntrinsicWidth\":\"342\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"UvRWWLOI1\\\":\\\"icon\\\",\\\"ff0KG4PIC\\\":\\\"name1\\\",\\\"MjP0kV7Tr\\\":\\\"text\\\"}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./CpDqtRA3_.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/64EYaVXgoJKbiMQdDVAP/nuYmg7pH13EsaveTXjzS/qfEQU_h8A.js\";const serializationHash=\"framer-y3wcp\";const variantClassNames={UwkJnskuA:\"framer-v-whovk7\"};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 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 getProps=({height,id,introduction,width,...props})=>{return{...props,yybE76D_s:introduction??props.yybE76D_s??\"Premium\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,yybE76D_s,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"UwkJnskuA\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-whovk7\",className,classNames),\"data-framer-name\":\"Label\",layoutDependency:layoutDependency,layoutId:\"UwkJnskuA\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1o75l5b\",\"data-framer-name\":\"Dot\",layoutDependency:layoutDependency,layoutId:\"hAISlVAuB\",style:{backgroundColor:\"var(--token-0237f941-391c-45d6-916b-59c30cb25438, rgb(99, 99, 99))\",borderBottomLeftRadius:1e3,borderBottomRightRadius:1e3,borderTopLeftRadius:1e3,borderTopRightRadius:1e3}}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10jhehp\",\"data-styles-preset\":\"qfEQU_h8A\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41)))\"},children:\"Premium\"})}),className:\"framer-191a5u7\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yzU3hVg5C\",style:{\"--extracted-r6o4lv\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yybE76D_s,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-y3wcp.framer-syty81, .framer-y3wcp .framer-syty81 { display: block; }\",\".framer-y3wcp.framer-whovk7 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-y3wcp .framer-1o75l5b { flex: none; height: 8px; overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); }\",\".framer-y3wcp .framer-191a5u7 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-y3wcp.framer-whovk7 { gap: 0px; } .framer-y3wcp.framer-whovk7 > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-y3wcp.framer-whovk7 > :first-child { margin-left: 0px; } .framer-y3wcp.framer-whovk7 > :last-child { margin-right: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 24\n * @framerIntrinsicWidth 78.5\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"yybE76D_s\":\"introduction\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerH9ib0OpTu=withCSS(Component,css,\"framer-y3wcp\");export default FramerH9ib0OpTu;FramerH9ib0OpTu.displayName=\"Label\";FramerH9ib0OpTu.defaultProps={height:24,width:78.5};addPropertyControls(FramerH9ib0OpTu,{yybE76D_s:{defaultValue:\"Premium\",displayTextArea:false,placeholder:\"\",title:\"Introduction\",type:ControlType.String}});addFonts(FramerH9ib0OpTu,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerH9ib0OpTu\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerVariables\":\"{\\\"yybE76D_s\\\":\\\"introduction\\\"}\",\"framerIntrinsicWidth\":\"78.5\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"24\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./H9ib0OpTu.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/ky636wNEHg7X9ReklfEV/fjk0aw441ltdB265bSHG/CsTKnpQZR.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/eRnGEhiye6rqMzMNtM1i/UneOBo4DS1yZ2aaMXv8n/ThYDETjDr.js\";const MotionDivWithFX=withFX(motion.div);const serializationHash=\"framer-vMEHB\";const variantClassNames={aqs1av3mV:\"framer-v-1c7sixx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:22,y:0};const transition1={damping:59,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition2={bounce:.2,delay:0,duration:.4,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 getProps=({description,heading,height,id,width,...props})=>{return{...props,pDNu_TBLO:heading??props.pDNu_TBLO??\"Select a plan\",WwcaK_b1g:description??props.WwcaK_b1g??\"Tell us exactly what you need. Our AI-powered system starts optimizing right away\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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,pDNu_TBLO,WwcaK_b1g,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"aqs1av3mV\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(MotionDivWithFX,{...restProps,...gestureHandlers,__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:cx(scopingClassNames,\"framer-1c7sixx\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"aqs1av3mV\",ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1ng8tmi\",\"data-styles-preset\":\"CsTKnpQZR\",style:{\"--framer-text-alignment\":\"left\"},children:\"Select a plan\"})}),className:\"framer-zu0h62\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"B8TJ8ga9M\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:pDNu_TBLO,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1nmqimv\",\"data-styles-preset\":\"ThYDETjDr\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tell us exactly what you need. Our AI-powered system starts optimizing right away\"})}),className:\"framer-1cn9d4m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"iQ3nWuJOD\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WwcaK_b1g,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-vMEHB.framer-mgkj7a, .framer-vMEHB .framer-mgkj7a { display: block; }\",\".framer-vMEHB.framer-1c7sixx { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 28px 0px; position: relative; width: 460px; }\",\".framer-vMEHB .framer-zu0h62 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-vMEHB .framer-1cn9d4m { flex: none; height: auto; max-width: 380px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-vMEHB.framer-1c7sixx { gap: 0px; } .framer-vMEHB.framer-1c7sixx > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-vMEHB.framer-1c7sixx > :first-child { margin-top: 0px; } .framer-vMEHB.framer-1c7sixx > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 130\n * @framerIntrinsicWidth 460\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"pDNu_TBLO\":\"heading\",\"WwcaK_b1g\":\"description\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerjhkC20gf9=withCSS(Component,css,\"framer-vMEHB\");export default FramerjhkC20gf9;FramerjhkC20gf9.displayName=\"How it works\";FramerjhkC20gf9.defaultProps={height:130,width:460};addPropertyControls(FramerjhkC20gf9,{pDNu_TBLO:{defaultValue:\"Select a plan\",displayTextArea:false,title:\"Heading\",type:ControlType.String},WwcaK_b1g:{defaultValue:\"Tell us exactly what you need. Our AI-powered system starts optimizing right away\",displayTextArea:false,title:\"Description\",type:ControlType.String}});addFonts(FramerjhkC20gf9,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerjhkC20gf9\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"460\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"pDNu_TBLO\\\":\\\"heading\\\",\\\"WwcaK_b1g\\\":\\\"description\\\"}\",\"framerIntrinsicHeight\":\"130\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./jhkC20gf9.map", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"HelveticaNeue-Medium\"]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-IUVOE .framer-styles-preset-15n560p:not(.rich-text-wrapper), .framer-IUVOE .framer-styles-preset-15n560p.rich-text-wrapper h6 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --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: 810px) { .framer-IUVOE .framer-styles-preset-15n560p:not(.rich-text-wrapper), .framer-IUVOE .framer-styles-preset-15n560p.rich-text-wrapper h6 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-IUVOE .framer-styles-preset-15n560p:not(.rich-text-wrapper), .framer-IUVOE .framer-styles-preset-15n560p.rich-text-wrapper h6 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: left; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-IUVOE\";\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 (6d82f59)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,RichText,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/0mlnfKEhZo9LCeu5ASGv/DDENC8YZL5bneDUCaz12/qfEQU_h8A.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/klCgzCwnhNPdMbvoZoWD/kVGC5odxKE0LjBmKbbD7/qnPB8XCem.js\";const enabledGestures={a_WBB_rMM:{hover:true}};const cycleOrder=[\"a_WBB_rMM\",\"Ql6Kiq4K7\"];const serializationHash=\"framer-1UWZu\";const variantClassNames={a_WBB_rMM:\"framer-v-1qb2qbc\",Ql6Kiq4K7:\"framer-v-343pxp\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:55,delay:0,mass:1,stiffness:500,type:\"spring\"};const transition2={damping:54,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={\"FAQ Closed\":\"a_WBB_rMM\",\"FAQ-Open\":\"Ql6Kiq4K7\"};const getProps=({answer,click,height,id,question,width,...props})=>{return{...props,hFWTiskGo:question??props.hFWTiskGo??\"Write your question here\",OjMK8RFig:answer??props.OjMK8RFig??\"Write your Answer Here...\",s8rLZouMu:click??props.s8rLZouMu,variant:humanReadableVariantMap[props.variant]??props.variant??\"a_WBB_rMM\"};};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,hFWTiskGo,OjMK8RFig,s8rLZouMu,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"a_WBB_rMM\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap22t344=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(s8rLZouMu){const res=await s8rLZouMu(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const isDisplayed=()=>{if(baseVariant===\"Ql6Kiq4K7\")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,...addPropertyOverrides({Ql6Kiq4K7:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1qb2qbc\",className,classNames),\"data-border\":true,\"data-framer-name\":\"FAQ Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"a_WBB_rMM\",onTap:onTap22t344,ref:ref??ref1,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-a9fed560-5aaa-4858-ad8e-a72c0ff8c495, rgba(0, 0, 0, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"rgba(250, 250, 250, 0)\",borderBottomLeftRadius:16,borderBottomRightRadius:16,borderTopLeftRadius:16,borderTopRightRadius:16,opacity:1,...style},variants:{\"a_WBB_rMM-hover\":{opacity:.5},Ql6Kiq4K7:{backgroundColor:\"var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, rgb(255, 255, 255))\"}},...addPropertyOverrides({\"a_WBB_rMM-hover\":{\"data-framer-name\":undefined},Ql6Kiq4K7:{\"data-framer-name\":\"FAQ-Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-ktm439\",\"data-framer-name\":\"Question\",layoutDependency:layoutDependency,layoutId:\"UGvhhpKXc\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-15n560p\",\"data-styles-preset\":\"qnPB8XCem\",children:\"Write your question here\"})}),className:\"framer-qnxo17\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ma5qHgSuk\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},text:hFWTiskGo,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+(((componentViewport?.height||62)-32-30)/2+0+0)+7),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/UwUpWdPdFfvwUjW80VkYfapjg.svg\"},className:\"framer-ucs6ti\",\"data-framer-name\":\"Icon\",layoutDependency:layoutDependency,layoutId:\"KjeesARiu\",style:{rotate:0},variants:{\"a_WBB_rMM-hover\":{rotate:0},Ql6Kiq4K7:{rotate:-135}},...addPropertyOverrides({Ql6Kiq4K7:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+16+(((componentViewport?.height||100)-32-164)/2+0+0)+7),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/UwUpWdPdFfvwUjW80VkYfapjg.svg\"}}},baseVariant,gestureVariant)})]}),isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-10jhehp\",\"data-styles-preset\":\"qfEQU_h8A\",style:{\"--framer-text-alignment\":\"left\"},children:\"Write your Answer Here...\"})}),className:\"framer-674hbz\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"K3qKGR6k8\",style:{\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\",opacity:.8},text:OjMK8RFig,verticalAlignment:\"top\",withExternalLayout:true})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-1UWZu.framer-ehkvb3, .framer-1UWZu .framer-ehkvb3 { display: block; }\",\".framer-1UWZu.framer-1qb2qbc { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 16px 18px 16px 20px; position: relative; width: 1120px; will-change: var(--framer-will-change-override, transform); }\",\".framer-1UWZu .framer-ktm439 { align-content: center; align-items: center; 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-1UWZu .framer-qnxo17 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-1UWZu .framer-ucs6ti { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-1UWZu .framer-674hbz { flex: none; height: auto; max-width: 1000px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1UWZu.framer-1qb2qbc, .framer-1UWZu .framer-ktm439 { gap: 0px; } .framer-1UWZu.framer-1qb2qbc > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-1UWZu.framer-1qb2qbc > :first-child { margin-top: 0px; } .framer-1UWZu.framer-1qb2qbc > :last-child { margin-bottom: 0px; } .framer-1UWZu .framer-ktm439 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-1UWZu .framer-ktm439 > :first-child { margin-left: 0px; } .framer-1UWZu .framer-ktm439 > :last-child { margin-right: 0px; } }\",\".framer-1UWZu.framer-v-343pxp.framer-1qb2qbc { align-content: flex-start; align-items: flex-start; gap: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-1UWZu.framer-v-343pxp.framer-1qb2qbc { gap: 0px; } .framer-1UWZu.framer-v-343pxp.framer-1qb2qbc > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-1UWZu.framer-v-343pxp.framer-1qb2qbc > :first-child { margin-top: 0px; } .framer-1UWZu.framer-v-343pxp.framer-1qb2qbc > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css,...sharedStyle1.css,'.framer-1UWZu[data-border=\"true\"]::after, .framer-1UWZu [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 62\n * @framerIntrinsicWidth 1120\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Ql6Kiq4K7\":{\"layout\":[\"fixed\",\"auto\"]},\"LcHHC15sh\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"hFWTiskGo\":\"question\",\"OjMK8RFig\":\"answer\",\"s8rLZouMu\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerteci4C4LZ=withCSS(Component,css,\"framer-1UWZu\");export default Framerteci4C4LZ;Framerteci4C4LZ.displayName=\"Faq Item\";Framerteci4C4LZ.defaultProps={height:62,width:1120};addPropertyControls(Framerteci4C4LZ,{variant:{options:[\"a_WBB_rMM\",\"Ql6Kiq4K7\"],optionTitles:[\"FAQ Closed\",\"FAQ-Open\"],title:\"Variant\",type:ControlType.Enum},hFWTiskGo:{defaultValue:\"Write your question here\",displayTextArea:true,title:\"Question\",type:ControlType.String},OjMK8RFig:{defaultValue:\"Write your Answer Here...\",displayTextArea:true,title:\"Answer\",type:ControlType.String},s8rLZouMu:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerteci4C4LZ,[{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\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerteci4C4LZ\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"62\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1120\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Ql6Kiq4K7\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"LcHHC15sh\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerVariables\":\"{\\\"hFWTiskGo\\\":\\\"question\\\",\\\"OjMK8RFig\\\":\\\"answer\\\",\\\"s8rLZouMu\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./teci4C4LZ.map", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import FaqItem from\"https://framerusercontent.com/modules/lpwR8LzvvnHdFX7Uf2HC/iB1r0wvkr7GpyTwR24AP/teci4C4LZ.js\";const FaqItemFonts=getFonts(FaqItem);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const cycleOrder=[\"YBYmjBt0O\",\"BwaagqDqy\",\"D3T1uMCph\",\"GfvTq59qi\",\"A5wKLtsnb\"];const serializationHash=\"framer-G3laM\";const variantClassNames={A5wKLtsnb:\"framer-v-r779gi\",BwaagqDqy:\"framer-v-180o34b\",D3T1uMCph:\"framer-v-1st2owm\",GfvTq59qi:\"framer-v-1c6pfgm\",YBYmjBt0O:\"framer-v-bfjsh\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,x:0,y:18};const transition2={damping:58,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition3={damping:58,delay:.1,mass:1,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={\"1\":\"YBYmjBt0O\",\"2\":\"BwaagqDqy\",\"3\":\"D3T1uMCph\",\"4\":\"GfvTq59qi\",\"5\":\"A5wKLtsnb\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"YBYmjBt0O\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};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);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"YBYmjBt0O\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const s8rLZouMu1mqoc0t=activeVariantCallback(async(...args)=>{setVariant(\"BwaagqDqy\");});const s8rLZouMu8e5w8h=activeVariantCallback(async(...args)=>{setVariant(\"D3T1uMCph\");});const s8rLZouMu1jphs4p=activeVariantCallback(async(...args)=>{setVariant(\"A5wKLtsnb\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);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-bfjsh\",className,classNames),\"data-framer-name\":\"1\",layoutDependency:layoutDependency,layoutId:\"YBYmjBt0O\",ref:refBinding,style:{...style},...addPropertyOverrides({A5wKLtsnb:{\"data-framer-name\":\"5\"},BwaagqDqy:{\"data-framer-name\":\"2\"},D3T1uMCph:{\"data-framer-name\":\"3\"},GfvTq59qi:{\"data-framer-name\":\"4\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||210)-0-210)/2+0+0),...addPropertyOverrides({A5wKLtsnb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+0+0)},BwaagqDqy:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+0+0)},D3T1uMCph:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+0+0)},GfvTq59qi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+0+0)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-tgd3te-container\",\"data-framer-name\":\"FAQ Item\",layoutDependency:layoutDependency,layoutId:\"so5_cI6lx-container\",name:\"FAQ Item\",nodeId:\"so5_cI6lx\",rendersWithMotion:true,scopeId:\"o1EnKqu5D\",children:/*#__PURE__*/_jsx(FaqItem,{height:\"100%\",hFWTiskGo:\"How does Stratos Automation improve efficiency?\",id:\"so5_cI6lx\",layoutId:\"so5_cI6lx\",name:\"FAQ Item\",OjMK8RFig:\"We use AI-driven insights and automation to streamline customer interaction and internal processes.\",s8rLZouMu:s8rLZouMu1mqoc0t,style:{width:\"100%\"},variant:\"a_WBB_rMM\",width:\"100%\",...addPropertyOverrides({BwaagqDqy:{variant:\"Ql6Kiq4K7\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||210)-0-210)/2+62+12),...addPropertyOverrides({A5wKLtsnb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+62+12)},BwaagqDqy:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+62+12)},D3T1uMCph:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+62+12)},GfvTq59qi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+62+12)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1f3kgzt-container\",\"data-framer-name\":\"FAQ Item\",layoutDependency:layoutDependency,layoutId:\"t6K2R3ICl-container\",name:\"FAQ Item\",nodeId:\"t6K2R3ICl\",rendersWithMotion:true,scopeId:\"o1EnKqu5D\",children:/*#__PURE__*/_jsx(FaqItem,{height:\"100%\",hFWTiskGo:\"Is Stratos Automation suitable for all business sizes?\",id:\"t6K2R3ICl\",layoutId:\"t6K2R3ICl\",name:\"FAQ Item\",OjMK8RFig:\"Yes, we help startups, agencies, and enterprises looking to scale and automate.\",s8rLZouMu:s8rLZouMu8e5w8h,style:{width:\"100%\"},variant:\"a_WBB_rMM\",width:\"100%\",...addPropertyOverrides({D3T1uMCph:{variant:\"Ql6Kiq4K7\"}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:62,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||210)-0-210)/2+124+24),...addPropertyOverrides({A5wKLtsnb:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+124+24)},BwaagqDqy:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+124+24)},D3T1uMCph:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+124+24)},GfvTq59qi:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||200)-0-210)/2+124+24)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-kejt9x-container\",\"data-framer-name\":\"FAQ Item\",layoutDependency:layoutDependency,layoutId:\"kIU7R8DaE-container\",name:\"FAQ Item\",nodeId:\"kIU7R8DaE\",rendersWithMotion:true,scopeId:\"o1EnKqu5D\",children:/*#__PURE__*/_jsx(FaqItem,{height:\"100%\",hFWTiskGo:\"How can I get started with Stratos?\",id:\"kIU7R8DaE\",layoutId:\"kIU7R8DaE\",name:\"FAQ Item\",OjMK8RFig:\"Contact us at djordje@stratos-automation.com\",s8rLZouMu:s8rLZouMu1jphs4p,style:{width:\"100%\"},variant:\"a_WBB_rMM\",width:\"100%\",...addPropertyOverrides({A5wKLtsnb:{variant:\"Ql6Kiq4K7\"}},baseVariant,gestureVariant)})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-G3laM.framer-gcyy1c, .framer-G3laM .framer-gcyy1c { display: block; }\",\".framer-G3laM.framer-bfjsh { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 770px; }\",\".framer-G3laM .framer-tgd3te-container, .framer-G3laM .framer-1f3kgzt-container, .framer-G3laM .framer-kejt9x-container { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-G3laM.framer-bfjsh { gap: 0px; } .framer-G3laM.framer-bfjsh > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-G3laM.framer-bfjsh > :first-child { margin-top: 0px; } .framer-G3laM.framer-bfjsh > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 210\n * @framerIntrinsicWidth 770\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"BwaagqDqy\":{\"layout\":[\"fixed\",\"auto\"]},\"D3T1uMCph\":{\"layout\":[\"fixed\",\"auto\"]},\"GfvTq59qi\":{\"layout\":[\"fixed\",\"auto\"]},\"A5wKLtsnb\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framero1EnKqu5D=withCSS(Component,css,\"framer-G3laM\");export default Framero1EnKqu5D;Framero1EnKqu5D.displayName=\"Section/Faq\";Framero1EnKqu5D.defaultProps={height:210,width:770};addPropertyControls(Framero1EnKqu5D,{variant:{options:[\"YBYmjBt0O\",\"BwaagqDqy\",\"D3T1uMCph\",\"GfvTq59qi\",\"A5wKLtsnb\"],optionTitles:[\"1\",\"2\",\"3\",\"4\",\"5\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framero1EnKqu5D,[{explicitInter:true,fonts:[]},...FaqItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framero1EnKqu5D\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"770\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BwaagqDqy\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"D3T1uMCph\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GfvTq59qi\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"A5wKLtsnb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"210\",\"framerComponentViewportWidth\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./o1EnKqu5D.map", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Helvetica Neue\"]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-dj2Sl .framer-styles-preset-h3digf:not(.rich-text-wrapper), .framer-dj2Sl .framer-styles-preset-h3digf.rich-text-wrapper p { --framer-font-family: \"Helvetica Neue\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.005em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-0237f941-391c-45d6-916b-59c30cb25438, #636363); --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: 810px) { .framer-dj2Sl .framer-styles-preset-h3digf:not(.rich-text-wrapper), .framer-dj2Sl .framer-styles-preset-h3digf.rich-text-wrapper p { --framer-font-family: \"Helvetica Neue\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 19px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.005em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-0237f941-391c-45d6-916b-59c30cb25438, #636363); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-dj2Sl .framer-styles-preset-h3digf:not(.rich-text-wrapper), .framer-dj2Sl .framer-styles-preset-h3digf.rich-text-wrapper p { --framer-font-family: \"Helvetica Neue\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.005em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-0237f941-391c-45d6-916b-59c30cb25438, #636363); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-dj2Sl\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"HelveticaNeue-Medium\"]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-BnYDO .framer-styles-preset-1b7i1gy:not(.rich-text-wrapper), .framer-BnYDO .framer-styles-preset-1b7i1gy.rich-text-wrapper h4 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --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: 810px) { .framer-BnYDO .framer-styles-preset-1b7i1gy:not(.rich-text-wrapper), .framer-BnYDO .framer-styles-preset-1b7i1gy.rich-text-wrapper h4 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 30px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-BnYDO .framer-styles-preset-1b7i1gy:not(.rich-text-wrapper), .framer-BnYDO .framer-styles-preset-1b7i1gy.rich-text-wrapper h4 { --framer-font-family: \"HelveticaNeue-Medium\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 24px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.04em; --framer-line-height: 1.5em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-BnYDO\";\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 (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Helvetica Neue\"]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=['.framer-qSNvw .framer-styles-preset-fs51fa:not(.rich-text-wrapper), .framer-qSNvw .framer-styles-preset-fs51fa.rich-text-wrapper h2 { --framer-font-family: \"Helvetica Neue\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 46px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --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: 810px) { .framer-qSNvw .framer-styles-preset-fs51fa:not(.rich-text-wrapper), .framer-qSNvw .framer-styles-preset-fs51fa.rich-text-wrapper h2 { --framer-font-family: \"Helvetica Neue\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-qSNvw .framer-styles-preset-fs51fa:not(.rich-text-wrapper), .framer-qSNvw .framer-styles-preset-fs51fa.rich-text-wrapper h2 { --framer-font-family: \"Helvetica Neue\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 32px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.03em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 40px; --framer-text-alignment: center; --framer-text-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-qSNvw\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (6d82f59)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Satoshi-medium\",\"FS;Satoshi-bold\",\"FS;Satoshi-bold italic\",\"FS;Satoshi-medium italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/P2LQKHE6KA6ZP4AAGN72KDWMHH6ZH3TA/ZC32TK2P7FPS5GFTL46EU6KQJA24ZYDB/7AHDUZ4A7LFLVFUIFSARGIWCRQJHISQP.woff2\",weight:\"500\"},{family:\"Satoshi\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/LAFFD4SDUCDVQEXFPDC7C53EQ4ZELWQI/PXCT3G6LO6ICM5I3NTYENYPWJAECAWDD/GHM6WVH6MILNYOOCXHXB5GTSGNTMGXZR.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CDEBEFT2R7XKNGXSBBLZGMY4MMHZG75P/HEVKDGQCYDZ7Z6CDVR2ZQGBCTUD6ZARH/BKWEE3VKGTFABE37K2DTH625VUSN2N35.woff2\",weight:\"700\"},{family:\"Satoshi\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NID3I7RITWZSKXRCJGOCMP5NOADJK6IG/2HLHGD7OBTWCOHW64YXOE5KFXHU4KJHM/ZHME2QIRFR7UPJ47NLY27RCAFY44CKZJ.woff2\",weight:\"500\"}]}];export const css=['.framer-QbM2r .framer-styles-preset-bbwmhr:not(.rich-text-wrapper), .framer-QbM2r .framer-styles-preset-bbwmhr.rich-text-wrapper p { --framer-font-family: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-family-italic: \"Satoshi\", \"Satoshi Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 14px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 500; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 500; --framer-letter-spacing: -0.01em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-0237f941-391c-45d6-916b-59c30cb25438, #636363); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-QbM2r\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f7ce5cf)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,FormContainer,FormPlainTextInput,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,Image,PropertyOverrides,ResolveLinks,RichText,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 TextWrap from\"https://framerusercontent.com/modules/oQk14E8Ar7JXjnVOhZW2/tTjSZGoYpVB4w8r1kHS0/TextWrap_Prod.js\";import Button1 from\"https://framerusercontent.com/modules/TIRc425HY02NPLOI6tVo/sFN3LE6NKDQ6d4MTEY4Z/kORP1qm2A.js\";import{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import FeatureCard from\"#framer/local/canvasComponent/CpDqtRA3_/CpDqtRA3_.js\";import Button from\"#framer/local/canvasComponent/gZ2EcYYC_/gZ2EcYYC_.js\";import Label from\"#framer/local/canvasComponent/H9ib0OpTu/H9ib0OpTu.js\";import HowItWorks from\"#framer/local/canvasComponent/jhkC20gf9/jhkC20gf9.js\";import SectionFaq from\"#framer/local/canvasComponent/o1EnKqu5D/o1EnKqu5D.js\";import*as sharedStyle1 from\"#framer/local/css/d7RSwh85G/d7RSwh85G.js\";import*as sharedStyle from\"#framer/local/css/lk_ULTTIY/lk_ULTTIY.js\";import*as sharedStyle3 from\"#framer/local/css/MujRk9thy/MujRk9thy.js\";import*as sharedStyle2 from\"#framer/local/css/OolwzoaA3/OolwzoaA3.js\";import*as sharedStyle5 from\"#framer/local/css/qfEQU_h8A/qfEQU_h8A.js\";import*as sharedStyle4 from\"#framer/local/css/ThYDETjDr/ThYDETjDr.js\";import*as sharedStyle6 from\"#framer/local/css/UMPoZ9pKa/UMPoZ9pKa.js\";import metadataProvider from\"#framer/local/webPageMetadata/HUwiUU0KQ/HUwiUU0KQ.js\";const MotionDivWithFX=withFX(motion.div);const ButtonFonts=getFonts(Button);const ContainerWithFX=withFX(Container);const LabelFonts=getFonts(Label);const PhosphorFonts=getFonts(Phosphor);const TextWrapFonts=getFonts(TextWrap);const FeatureCardFonts=getFonts(FeatureCard);const HowItWorksFonts=getFonts(HowItWorks);const SectionFaqFonts=getFonts(SectionFaq);const Button1Fonts=getFonts(Button1);const breakpoints={GPRR7v2cF:\"(max-width: 809px)\",pFBXGHTto:\"(min-width: 1200px)\",Y_LU3Nn5K:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-fNgJ2\";const variantClassNames={GPRR7v2cF:\"framer-v-1tw052t\",pFBXGHTto:\"framer-v-59ibs6\",Y_LU3Nn5K:\"framer-v-p6332b\"};const animation={filter:\"blur(10px)\",opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition1={damping:58,delay:.05,mass:1,stiffness:400,type:\"spring\"};const textEffect={effect:animation,startDelay:.1,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect1={effect:animation,startDelay:.2,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const textEffect2={effect:animation,startDelay:.3,tokenization:\"word\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-18};const transition2={damping:58,delay:.2,mass:1,stiffness:400,type:\"spring\"};const animation2={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:20};const textEffect3={effect:animation2,startDelay:.2,tokenization:\"line\",transition:transition1,trigger:\"onMount\",type:\"appear\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition3={damping:58,delay:.45,mass:1,stiffness:400,type:\"spring\"};const animation4={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:15};const textEffect4={effect:animation4,startDelay:.1,threshold:.5,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const transition4={damping:54,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:28};const transition5={damping:58,delay:.1,mass:1,stiffness:400,type:\"spring\"};const animation6={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:10};const transition6={damping:58,delay:.3,mass:1,stiffness:400,type:\"spring\"};const animation7={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:22,y:0};const transition7={damping:58,delay:.4,mass:1,stiffness:400,type:\"spring\"};const animation8={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:18,y:0};const transition8={damping:58,delay:.5,mass:1,stiffness:400,type:\"spring\"};const transition9={damping:58,delay:.6,mass:1,stiffness:400,type:\"spring\"};const transition10={damping:58,delay:.7,mass:1,stiffness:400,type:\"spring\"};const animation9={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:-20,y:0};const animation10={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:0,y:0};const transition11={damping:58,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation11={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.8,skewX:0,skewY:0,x:20,y:0};const animation12={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,x:0,y:28};const transition12={damping:68,delay:.4,mass:1.1,stiffness:370,type:\"spring\"};const textEffect5={effect:animation4,repeat:false,startDelay:.1,threshold:.5,tokenization:\"line\",transition:transition1,trigger:\"onInView\",type:\"appear\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,x:0,y:20};const transition13={damping:56,delay:0,mass:1,stiffness:400,type:\"spring\"};const addImageAlt=(image,alt)=>{if(!image||typeof image!==\"object\"){return;}return{...image,alt};};const transition14={damping:56,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition15={damping:56,delay:.2,mass:1,stiffness:400,type:\"spring\"};const transition16={damping:56,delay:.25,mass:1,stiffness:400,type:\"spring\"};const transition17={damping:56,delay:.35,mass:1,stiffness:400,type:\"spring\"};const transition18={damping:56,delay:.45,mass:1,stiffness:400,type:\"spring\"};const transition19={damping:59,delay:.1,mass:1,stiffness:400,type:\"spring\"};const transition20={damping:59,delay:.2,mass:1,stiffness:400,type:\"spring\"};const formVariants=(form,variants,currentVariant)=>{switch(form.state){case\"success\":return variants.success??currentVariant;case\"pending\":return variants.pending??currentVariant;case\"error\":return variants.error??currentVariant;case\"incomplete\":return variants.incomplete??currentVariant;}};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"pFBXGHTto\",Phone:\"GPRR7v2cF\",Tablet:\"Y_LU3Nn5K\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"pFBXGHTto\"};};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,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"GPRR7v2cF\")return false;return true;};const router=useRouter();const elementId=useRouteElementId(\"NnDzd7SrT\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"TpVq6CPXS\");const ref2=React.useRef(null);const elementId2=useRouteElementId(\"CwCSrK8Nf\");const ref3=React.useRef(null);const elementId3=useRouteElementId(\"XCvnx5zDf\");const ref4=React.useRef(null);const elementId4=useRouteElementId(\"AtjwkP4h7\");const ref5=React.useRef(null);const elementId5=useRouteElementId(\"V9kt_z5_7\");const ref6=React.useRef(null);useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"pFBXGHTto\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-59ibs6\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gye6hm\",\"data-framer-name\":\"Gradient\"}),/*#__PURE__*/_jsx(\"header\",{className:\"framer-339wdr\",\"data-framer-name\":\"Hero section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16h9oyk\",\"data-framer-name\":\"Container\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-c60s0y hidden-1tw052t\",\"data-framer-name\":\"Logos wrapper\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-185ka75\",\"data-framer-name\":\"Main wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ew206p\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5egxvp\",\"data-framer-name\":\"Heading\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16an35c\",\"data-styles-preset\":\"lk_ULTTIY\",children:\"Smart AI\"})}),className:\"framer-zjjbgg\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16an35c\",\"data-styles-preset\":\"lk_ULTTIY\",children:\"tools\"})}),className:\"framer-zm43m9\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16an35c\",\"data-styles-preset\":\"lk_ULTTIY\",children:\"for\"})}),className:\"framer-yq425q\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16an35c\",\"data-styles-preset\":\"lk_ULTTIY\",children:\"fast\"})}),className:\"framer-4z94cb\",effect:textEffect1,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16an35c\",\"data-styles-preset\":\"lk_ULTTIY\",children:\"automation\"})}),className:\"framer-1xhl0cc\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-16an35c\",\"data-styles-preset\":\"lk_ULTTIY\",children:\"& growth\"})}),className:\"framer-19vpg7h\",effect:textEffect2,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qnvlkv\",\"data-framer-name\":\"Icon content wrapper\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ggabz5\",\"data-framer-name\":\"Icon wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/yar0HFd2Ii54LrLgUJ1sPLmjoS0.svg\"},className:\"framer-t5x26x\",\"data-framer-name\":\"Icon\"})})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h3digf\",\"data-styles-preset\":\"d7RSwh85G\",children:\"Automate workflows, streamline processes, and drive growth with intelligent solutions built for the future\"})}),className:\"framer-18s339v\",effect:textEffect3,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":V9kt_z5_7\",webPageId:\"HUwiUU0KQ\"},implicitPathVariables:undefined},{href:{hash:\":V9kt_z5_7\",webPageId:\"HUwiUU0KQ\"},implicitPathVariables:undefined},{href:{hash:\":V9kt_z5_7\",webPageId:\"HUwiUU0KQ\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1uncume-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"sNGJohHE1\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{lvMTiiPgJ:resolvedLinks[2]},Y_LU3Nn5K:{lvMTiiPgJ:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"sNGJohHE1\",ipUhJRtML:false,layoutId:\"sNGJohHE1\",lvMTiiPgJ:resolvedLinks[0],name:\"Button\",variant:\"OvNptzLyT\",width:\"100%\",ZpWjczbKQ:\"Get started\"})})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1lj6e9q\",\"data-framer-name\":\"Services\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gbktea\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hothrq\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-kyzac4-container\",\"data-framer-name\":\"Section Tag\",name:\"Section Tag\",nodeId:\"gGej_YDY1\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"gGej_YDY1\",layoutId:\"gGej_YDY1\",name:\"Section Tag\",width:\"100%\",yybE76D_s:\"Services\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fs51fa\",\"data-styles-preset\":\"OolwzoaA3\",children:\"AI solutions tailored for your business needs\"})}),className:\"framer-1pn268c\",effect:textEffect4,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1juzh7d\",\"data-framer-name\":\"Grid 2x\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uv1fpb\",\"data-framer-name\":\"Card\",id:elementId1,ref:ref2,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-dt37y2\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hcwavu\",\"data-framer-name\":\"Heading wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b7i1gy\",\"data-styles-preset\":\"MujRk9thy\",children:\"Chatbot development\"})}),className:\"framer-jg7amf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vikfnf\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nmqimv\",\"data-styles-preset\":\"ThYDETjDr\",style:{\"--framer-text-color\":\"var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, rgb(255, 255, 255))\"},children:\"01\"})}),className:\"framer-av7xpr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h3digf\",\"data-styles-preset\":\"d7RSwh85G\",style:{\"--framer-text-alignment\":\"left\"},children:\"We create intelligent chatbots powered by advanced NLP to grow customer interactions & operations.\"})}),className:\"framer-1e31la2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-s30bvy\",\"data-framer-name\":\"Card wrapper\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{style:{scale:.9}},Y_LU3Nn5K:{style:{scale:.9}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-19wk0zr\",\"data-framer-name\":\"Card\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10q9moq\",\"data-framer-name\":\"Top wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation5,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-q6k5sn\",\"data-framer-name\":\"Heading wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-10jhehp\",\"data-styles-preset\":\"qfEQU_h8A\",style:{\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Neurova AI\"})}),className:\"framer-kanwxc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sww46f\",\"data-framer-name\":\"Dots wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ntsa0\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16hmd5q\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-cqkbc9\",\"data-framer-name\":\"Dot\"})]})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation6,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1q7dyrx\",\"data-border\":true,\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bbwmhr\",\"data-styles-preset\":\"UMPoZ9pKa\",style:{\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Just start creating \u25CF\"})}),className:\"framer-12wtqve\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8uftoh\",\"data-framer-name\":\"Button wrapper\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lb4k33\",\"data-framer-name\":\"Button\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bbwmhr\",\"data-styles-preset\":\"UMPoZ9pKa\",style:{\"--framer-text-color\":\"var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, rgb(255, 255, 255))\"},children:\"Generate AI\"})}),className:\"framer-h5uw16\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:64,pixelWidth:85,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/5VnimvUs74g2Rf1hxLpTHCpH1g.svg\"},className:\"framer-cjdbw2\",\"data-framer-name\":\"Icon\"})]})})]}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition7},__framer__animateOnce:true,__framer__enter:animation7,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kjw91p\",\"data-framer-name\":\"Text\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:512,pixelWidth:512,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/VHXlNtTpj8HxeS7VORL02BYDfAU.svg\"},className:\"framer-1scv3d4\",\"data-framer-name\":\"Icon\"}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bbwmhr\",\"data-styles-preset\":\"UMPoZ9pKa\",children:\"30 credits left\"})}),className:\"framer-v126w3\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-af023c\",\"data-framer-name\":\"Tags wrapper\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition8},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-yyxhw5\",\"data-border\":true,\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhIE5ldWU=\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Audio & Video File\"})}),className:\"framer-kftk42\",fonts:[\"Helvetica Neue\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition9},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1drmb40\",\"data-border\":true,\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhIE5ldWU=\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Logomark\"})}),className:\"framer-66g7uy\",fonts:[\"Helvetica Neue\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation8,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-3ns6hm\",\"data-border\":true,\"data-framer-name\":\"Tag\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhIE5ldWU=\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Branding\"})}),className:\"framer-1gqspmz\",fonts:[\"Helvetica Neue\"],verticalAlignment:\"top\",withExternalLayout:true})})]})]})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lq9o2n\",\"data-framer-name\":\"Card\",id:elementId2,ref:ref3,children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition4},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lrexxp\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4cs9t9\",\"data-framer-name\":\"Heading wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-1b7i1gy\",\"data-styles-preset\":\"MujRk9thy\",children:\"Workflow automations\"})}),className:\"framer-1w74e5\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-e4ai0z\",\"data-framer-name\":\"Number\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1nmqimv\",\"data-styles-preset\":\"ThYDETjDr\",style:{\"--framer-text-color\":\"var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, rgb(255, 255, 255))\"},children:\"02\"})}),className:\"framer-nouutr\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-h3digf\",\"data-styles-preset\":\"d7RSwh85G\",style:{\"--framer-text-alignment\":\"left\"},children:\"We automate repetitive tasks to improve operational efficiency, grow productivity, errors, and save time.\"})}),className:\"framer-1gny7jz\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{style:{scale:.9}},Y_LU3Nn5K:{style:{scale:.9}}},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-vz9fy2\",\"data-framer-name\":\"No code\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ds853\",\"data-framer-name\":\"Logos\",children:[/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gknrfw\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:100,pixelWidth:100,src:\"https://framerusercontent.com/images/zgTtpC7CCzXViIUkMNQfx1dJoAA.svg\"},className:\"framer-5ijohd\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation9,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1kabiq4\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:150,pixelWidth:150,src:\"https://framerusercontent.com/images/KiiCz5bnm9RaV6EmVn5qUg8aok.svg\"},className:\"framer-6pwi9y\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation10,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:.8,className:\"framer-1tabfyq\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-t77nqf\",\"data-border\":true,\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:48,pixelWidth:48,src:\"https://framerusercontent.com/images/HfJijUj3TgE0az7q5K02pHaKTZY.svg\"},className:\"framer-eq9rn9\",\"data-framer-name\":\"Logo\"})})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition5},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1c2juwz\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",pixelHeight:32,pixelWidth:32,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/CJwrgmsuO4xixvc6zsgtIAwc.svg\"},className:\"framer-1hqte3r\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation11,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ldq3r\",\"data-framer-name\":\"Logo Wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:32,pixelWidth:32,src:\"https://framerusercontent.com/images/FGq1rzY0r14TiydB0fqenV6eiA.svg\"},className:\"framer-yyxdt6\",\"data-framer-name\":\"Logo\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1uu3dmb\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition6},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-av017s\",\"data-border\":true,\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation12,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-10g6fci\",\"data-framer-name\":\"Main Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-2y20j6\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-736ndx\",\"data-framer-name\":\"Top Bar\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-bbwmhr\",\"data-styles-preset\":\"UMPoZ9pKa\",style:{\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Connect with:\"})}),className:\"framer-1o4pf3i\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1npddol\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n6i5s2\",\"data-framer-name\":\"Setup\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vwdy39\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1q93j7p\",\"data-framer-name\":\"Dot\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhIE5ldWU=\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Webflow\"})}),className:\"framer-1dtd9e1\",fonts:[\"Helvetica Neue\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gjaqp2\",\"data-framer-name\":\"Setup\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vo5svd\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1idjhkw\",\"data-framer-name\":\"Dot\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhIE5ldWU=\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Framer\"})}),className:\"framer-16va7wx\",fonts:[\"Helvetica Neue\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5xk407\",\"data-framer-name\":\"Setup\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1cgekwc\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-l0c13v\",\"data-framer-name\":\"Dot\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhIE5ldWU=\",\"--framer-font-family\":'\"Helvetica Neue\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\"},children:\"Figma\"})}),className:\"framer-37wpa5\",fonts:[\"Helvetica Neue\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-9u47dl\",\"data-framer-name\":\"Icon wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ohclx0-container\",\"data-framer-name\":\"Icon\",isAuthoredByUser:true,isModuleExternal:true,name:\"Icon\",nodeId:\"HTquThvbh\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Phosphor,{color:\"var(--token-16d47f0e-bb2a-4ca9-aa26-50db1e3771de, rgb(255, 255, 255))\",height:\"100%\",iconSearch:\"Plus\",iconSelection:\"House\",id:\"HTquThvbh\",layoutId:\"HTquThvbh\",mirrored:false,name:\"Icon\",selectByList:false,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-101aaau\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-18iek2e\",\"data-framer-name\":\"Item\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-8f77kk\",\"data-framer-name\":\"Lines\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1i35we6\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8c8e1j\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-96iekg\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12imyj8\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pmd9pz\",\"data-framer-name\":\"Images wrapper\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-pkzob1\",\"data-framer-name\":\"Image\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\"},className:\"framer-1a1yxms\",\"data-framer-name\":\"Image\"})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1o8ntbe\",\"data-framer-name\":\"Setup\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17313c4\",\"data-framer-name\":\"Bottom wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SGVsdmV0aWNhTmV1ZS1NZWRpdW0=\",\"--framer-font-family\":'\"HelveticaNeue-Medium\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-color\":\"var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, rgb(255, 255, 255))\"},children:\"Get Started\"})}),className:\"framer-jdhjkk\",fonts:[\"HelveticaNeue-Medium\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oasbun\",\"data-framer-name\":\"Dot wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-11g5jb3\",\"data-framer-name\":\"Dot\"})})]})})]})]})]})})]})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-zon27b\",\"data-framer-name\":\"Introduction\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-6kytwy\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15c40q3-container\",\"data-framer-name\":\"Section Tag\",name:\"Section Tag\",nodeId:\"U1B_Wj3da\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"U1B_Wj3da\",layoutId:\"U1B_Wj3da\",name:\"Section Tag\",width:\"100%\",yybE76D_s:\"Introduction\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ca3rd\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-s9ndgg-container\",\"data-framer-name\":\"Text\",isAuthoredByUser:true,isModuleExternal:true,name:\"Text\",nodeId:\"qnOI61jzu\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{font:{fontFamily:'\"Helvetica Neue\", sans-serif',fontSize:\"32px\",letterSpacing:\"-0.035em\",lineHeight:\"1.55em\",textAlign:\"center\"}}},children:/*#__PURE__*/_jsx(TextWrap,{balance:true,color:{angle:0,color:\"var(--token-ec861af2-7738-4459-a739-802eb7dda496, rgb(41, 41, 41))\",endColor:\"rgb(255, 255, 255)\",mode:\"solid\",startColor:\"rgb(0, 0, 0)\"},decoration:\"none\",font:{fontFamily:'\"Helvetica Neue\", sans-serif',fontSize:\"40px\",letterSpacing:\"-0.035em\",lineHeight:\"1.55em\",textAlign:\"center\"},height:\"100%\",id:\"qnOI61jzu\",layerAlign:\"middle\",layerGap:5,layers:[],layoutId:\"qnOI61jzu\",name:\"Text\",slot:\"[]\",style:{width:\"100%\"},tag:\"h1\",text:\"Stratos delivers AI solutions, from chatbot development to workflow automation. We specialize in LLM development and AI consulting to drive innovation.\",transform:\"none\",userSelect:true,width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-xk1c1i\",\"data-framer-name\":\"Features\",id:elementId3,ref:ref4,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cnkfn3\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g3xvc2\",\"data-framer-name\":\"Text wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1cr66eo-container\",\"data-framer-name\":\"Section Tag\",name:\"Section Tag\",nodeId:\"jRc0KqmTq\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"jRc0KqmTq\",layoutId:\"jRc0KqmTq\",name:\"Section Tag\",width:\"100%\",yybE76D_s:\"Features\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fs51fa\",\"data-styles-preset\":\"OolwzoaA3\",children:\"Powerful AI features to enhance your workflow\"})}),className:\"framer-16t1gl3\",effect:textEffect5,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16wc08\",\"data-framer-name\":\"Features Grid\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`},Y_LU3Nn5K:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 74px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1676p36-container\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",nodeId:\"PNLsW8Ri7\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(FeatureCard,{ff0KG4PIC:\"AI-powered insights\",height:\"100%\",id:\"PNLsW8Ri7\",layoutId:\"PNLsW8Ri7\",MjP0kV7Tr:\"Analyze data in real-time to make smarter decisions faster\",name:\"Feature Card\",style:{width:\"100%\"},UvRWWLOI1:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/HOOZWRhBoNQpfrVYdvHQjBBcKg.svg\"},\"\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`},Y_LU3Nn5K:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 74px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition14},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ijqi45-container\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",nodeId:\"QFcGu1x_y\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(FeatureCard,{ff0KG4PIC:\"AI chatbots\",height:\"100%\",id:\"QFcGu1x_y\",layoutId:\"QFcGu1x_y\",MjP0kV7Tr:\"Engage customers with intelligent, human-like chatbot interactions\",name:\"Feature Card\",style:{width:\"100%\"},width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`},Y_LU3Nn5K:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 74px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition15},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1hlvh33-container\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",nodeId:\"Kx7_wxhtw\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(FeatureCard,{ff0KG4PIC:\"Automated workflows\",height:\"100%\",id:\"Kx7_wxhtw\",layoutId:\"Kx7_wxhtw\",MjP0kV7Tr:\"Streamline operations with AI-driven task automation\",name:\"Feature Card\",style:{width:\"100%\"},UvRWWLOI1:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/s1UGjqm7vRFHEzjHFVMkCx2s5E.svg\"},\"\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`},Y_LU3Nn5K:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 74px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-zzo8kq-container\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",nodeId:\"YRoHxi6XM\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(FeatureCard,{ff0KG4PIC:\"Data protection\",height:\"100%\",id:\"YRoHxi6XM\",layoutId:\"YRoHxi6XM\",MjP0kV7Tr:\"Ensure security with encrypted AI models and compliance tools\",name:\"Feature Card\",style:{width:\"100%\"},UvRWWLOI1:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/HHYU8dGzaVSEEgWs5qhQ3eSI4tg.svg\"},\"\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`},Y_LU3Nn5K:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 74px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-4tpp5j-container\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",nodeId:\"SSoOa39TC\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(FeatureCard,{ff0KG4PIC:\"AI-driven collaboration\",height:\"100%\",id:\"SSoOa39TC\",layoutId:\"SSoOa39TC\",MjP0kV7Tr:\"Enhance teamwork with smart recommendations and automation\",name:\"Feature Card\",style:{width:\"100%\"},UvRWWLOI1:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/2ys0a9RWaKuNqhkfKJpSH3pGyU.svg\"},\"\"),width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`max(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 50px)`},Y_LU3Nn5K:{width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 74px) / 2, 50px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:257,width:`max((min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 98px) / 3, 50px)`,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:true,__framer__enter:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lc51w3-container\",\"data-framer-name\":\"Feature Card\",name:\"Feature Card\",nodeId:\"hfAQoWNqv\",rendersWithMotion:true,scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(FeatureCard,{ff0KG4PIC:\"Seamless integrations\",height:\"100%\",id:\"hfAQoWNqv\",layoutId:\"hfAQoWNqv\",MjP0kV7Tr:\"Connect AI with your favorite tools for a frictionless workflow\",name:\"Feature Card\",style:{width:\"100%\"},UvRWWLOI1:addImageAlt({pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/gQb6i8RUNzMmVcpz4wnBpcA29U.svg\"},\"\"),width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-dnkeu2\",\"data-framer-name\":\"How it works\",id:elementId4,ref:ref5,children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qsz5zk\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1eduaxe\",\"data-framer-name\":\"Grid 2x\",children:[isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-yla5fs hidden-1tw052t\",\"data-framer-name\":\"Main wrapper\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rb3em3\",\"data-framer-name\":\"Text content wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-97kj9h\",\"data-framer-name\":\"Heading Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1xkigp4-container\",\"data-framer-name\":\"Section Tag\",name:\"Section Tag\",nodeId:\"gN1wfCqio\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"gN1wfCqio\",layoutId:\"gN1wfCqio\",name:\"Section Tag\",width:\"100%\",yybE76D_s:\"How it works\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fs51fa\",\"data-styles-preset\":\"OolwzoaA3\",style:{\"--framer-text-alignment\":\"left\"},children:\"How AI solutions work\"})}),className:\"framer-1ex9u64\",effect:textEffect5,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-tsln94\",\"data-framer-name\":\"Time Line\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mzh8ik\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1gw8kz6\",\"data-framer-name\":\"Line wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ho9soa\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1wko0t9\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,children:/*#__PURE__*/_jsx(Container,{className:\"framer-43u77r-container\",nodeId:\"ezaOYLIAD\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(HowItWorks,{height:\"100%\",id:\"ezaOYLIAD\",layoutId:\"ezaOYLIAD\",pDNu_TBLO:\"Select a plan\",style:{width:\"100%\"},width:\"100%\",WwcaK_b1g:\"Tell us exactly what you need. Our team is on it right away.\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-jeh4x7\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-nq1f0b\",\"data-framer-name\":\"Line wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1iht62c\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1en3gvg\",\"data-framer-name\":\"Dot\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-l2wgl5\",\"data-framer-name\":\"Line\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,children:/*#__PURE__*/_jsx(Container,{className:\"framer-q8z09u-container\",nodeId:\"jJmdv5z1L\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(HowItWorks,{height:\"100%\",id:\"jJmdv5z1L\",layoutId:\"jJmdv5z1L\",pDNu_TBLO:\"Customize your experience\",style:{width:\"100%\"},width:\"100%\",WwcaK_b1g:\"Adjust settings to fit your specific workflow and business needs effortlessly\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bjvcwa\",\"data-framer-name\":\"Wrapper\",children:[/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:true,__framer__enter:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1dt12zm\",\"data-framer-name\":\"Line wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-12tauy6\",\"data-framer-name\":\"Line\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4ahec9\",\"data-framer-name\":\"Dot\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:130,children:/*#__PURE__*/_jsx(Container,{className:\"framer-qm0ztk-container\",nodeId:\"T3VO4ZtoB\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(HowItWorks,{height:\"100%\",id:\"T3VO4ZtoB\",layoutId:\"T3VO4ZtoB\",pDNu_TBLO:\"Automate and scale\",style:{width:\"100%\"},width:\"100%\",WwcaK_b1g:\"Leverage AI automation to boost productivity, streamline tasks, and drive growth\"})})})]})]})]})]})})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-cqej44\",\"data-framer-name\":\"FAQ\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12pke83\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nz4ehw\",\"data-framer-name\":\"Text Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:24,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1gvs9yg-container\",\"data-framer-name\":\"Section Tag\",name:\"Section Tag\",nodeId:\"YZKonANPj\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Label,{height:\"100%\",id:\"YZKonANPj\",layoutId:\"YZKonANPj\",name:\"Section Tag\",width:\"100%\",yybE76D_s:\"FAQ's\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-fs51fa\",\"data-styles-preset\":\"OolwzoaA3\",children:\"Answers to your common AI questions\"})}),className:\"framer-wxan2d\",effect:textEffect5,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{width:`min(min(${componentViewport?.width||\"100vw\"}, 1200px) - 40px, 720px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:210,width:`min(min(max(${componentViewport?.width||\"100vw\"}, 1px), 1200px) - 50px, 720px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1n0kwid-container\",\"data-framer-name\":\"FAQ's\",name:\"FAQ's\",nodeId:\"C6sepyZQk\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(SectionFaq,{height:\"100%\",id:\"C6sepyZQk\",layoutId:\"C6sepyZQk\",name:\"FAQ's\",style:{maxWidth:\"100%\",width:\"100%\"},variant:\"YBYmjBt0O\",width:\"100%\"})})})})]})}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-6kna29\",\"data-framer-name\":\"CTA\",id:elementId5,ref:ref6,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1m9lwsk\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ysaosw\",\"data-framer-name\":\"Content Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-x0hu1w\",\"data-framer-name\":\"Top Heading\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-gkalu0\",\"data-border\":true,\"data-framer-name\":\"Icon Wrapper\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:24,pixelWidth:24,src:\"https://framerusercontent.com/images/lGJQWCwdu8n3TF2HcOkHpJSo3ng.svg\"},className:\"framer-1qjexg1\",\"data-framer-name\":\"Icon\"})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{className:\"framer-styles-preset-fs51fa\",\"data-styles-preset\":\"OolwzoaA3\",style:{\"--framer-text-color\":\"var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, rgb(255, 255, 255))\"},children:[\"Transform the way you manage \",/*#__PURE__*/_jsx(\"strong\",{children:\"AI\"}),\" tasks with \",/*#__PURE__*/_jsx(\"br\",{}),/*#__PURE__*/_jsx(\"strong\",{children:\"Stratos Automation\"})]})}),className:\"framer-1tn25zm\",effect:textEffect5,fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})]})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":V9kt_z5_7\",webPageId:\"HUwiUU0KQ\"},implicitPathVariables:undefined},{href:{hash:\":V9kt_z5_7\",webPageId:\"HUwiUU0KQ\"},implicitPathVariables:undefined},{href:{hash:\":V9kt_z5_7\",webPageId:\"HUwiUU0KQ\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,children:/*#__PURE__*/_jsx(Container,{className:\"framer-15k74cb-container\",\"data-framer-name\":\"Button\",name:\"Button\",nodeId:\"tahRPpjq2\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{GPRR7v2cF:{lvMTiiPgJ:resolvedLinks1[2]},Y_LU3Nn5K:{lvMTiiPgJ:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Button,{height:\"100%\",id:\"tahRPpjq2\",ipUhJRtML:true,layoutId:\"tahRPpjq2\",lvMTiiPgJ:resolvedLinks1[0],name:\"Button\",variant:\"PqRpEpo1_\",width:\"100%\",ZpWjczbKQ:\"Get started\"})})})})})]})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1b37e2w\",\"data-framer-name\":\"Contact\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"R0Y7SW50ZXItNzAw\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"50px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-2.1px\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-b9c3c957-2c66-49c4-9732-fa196fddac20, rgb(0, 17, 34))\"},children:\"Contact\"})}),className:\"framer-15cy7mn\",fonts:[\"GF;Inter-700\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3ymgv1\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(FormContainer,{className:\"framer-pu5ta1\",nodeId:\"a5mh7Y3j3\",children:formState=>/*#__PURE__*/_jsxs(_Fragment,{children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v9dem\",children:[/*#__PURE__*/_jsxs(\"label\",{className:\"framer-ycmuud\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Name\"})}),className:\"framer-1xuke8w\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1mnlvid\",inputName:\"Name\",placeholder:\"Jane Smith\",type:\"text\"})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-xuezwq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Email\"})}),className:\"framer-1ncl05v\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-itmmbw\",inputName:\"Email\",placeholder:\"jane@framer.com\",type:\"email\"})]})]}),/*#__PURE__*/_jsxs(\"label\",{className:\"framer-pbbi8o\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"R0Y7SW50ZXItcmVndWxhcg==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.5em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"rgb(153, 153, 153)\"},children:\"Message\"})}),className:\"framer-xa3dab\",fonts:[\"GF;Inter-regular\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(FormPlainTextInput,{className:\"framer-1xpcou2\",inputName:\"Message\",placeholder:\"Your message...\",type:\"textarea\"})]}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:`min(${componentViewport?.width||\"100vw\"} - 80px, 400px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10973c3-container\",isModuleExternal:true,nodeId:\"eb30jXs77\",scopeId:\"HUwiUU0KQ\",children:/*#__PURE__*/_jsx(Button1,{height:\"100%\",id:\"eb30jXs77\",layoutId:\"eb30jXs77\",style:{height:\"100%\",width:\"100%\"},type:\"submit\",variant:formVariants(formState,{pending:\"zzzeo4gzm\",success:\"OQc5T0b5M\"},\"f8ONcXxNt\"),width:\"100%\"})})})]})})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fNgJ2.framer-1auvusq, .framer-fNgJ2 .framer-1auvusq { display: block; }\",\".framer-fNgJ2.framer-59ibs6 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1200px; }\",\".framer-fNgJ2 .framer-1gye6hm { background: linear-gradient(0deg, rgba(255, 255, 255, 0) 30%, rgb(232, 232, 232) 100%); flex: none; height: 850px; left: 0px; overflow: hidden; position: absolute; top: 0px; width: 100%; z-index: 1; }\",\".framer-fNgJ2 .framer-339wdr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: hidden; padding: 138px 0px 58px 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-fNgJ2 .framer-16h9oyk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 95px; height: min-content; justify-content: flex-start; max-width: 1200px; overflow: visible; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-c60s0y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-185ka75 { 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-fNgJ2 .framer-ew206p { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 700px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-5egxvp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 14px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-zjjbgg, .framer-fNgJ2 .framer-zm43m9, .framer-fNgJ2 .framer-yq425q, .framer-fNgJ2 .framer-4z94cb, .framer-fNgJ2 .framer-1xhl0cc, .framer-fNgJ2 .framer-19vpg7h, .framer-fNgJ2 .framer-av7xpr, .framer-fNgJ2 .framer-kanwxc, .framer-fNgJ2 .framer-h5uw16, .framer-fNgJ2 .framer-kftk42, .framer-fNgJ2 .framer-66g7uy, .framer-fNgJ2 .framer-1gqspmz, .framer-fNgJ2 .framer-nouutr, .framer-fNgJ2 .framer-jdhjkk { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-fNgJ2 .framer-1qnvlkv { 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: 5px 5px 0px 5px; position: relative; width: min-content; }\",\".framer-fNgJ2 .framer-ggabz5 { align-content: center; align-items: center; background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.08); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 52px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-t5x26x { flex: none; height: 28px; overflow: hidden; position: relative; width: 28px; }\",\".framer-fNgJ2 .framer-18s339v { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 500px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fNgJ2 .framer-1uncume-container, .framer-fNgJ2 .framer-kyzac4-container, .framer-fNgJ2 .framer-15c40q3-container, .framer-fNgJ2 .framer-1cr66eo-container, .framer-fNgJ2 .framer-1xkigp4-container, .framer-fNgJ2 .framer-1gvs9yg-container, .framer-fNgJ2 .framer-15k74cb-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-fNgJ2 .framer-1lj6e9q, .framer-fNgJ2 .framer-zon27b, .framer-fNgJ2 .framer-xk1c1i, .framer-fNgJ2 .framer-cqej44 { 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: 58px 0px 58px 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-gbktea { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-1hothrq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 600px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1pn268c, .framer-fNgJ2 .framer-1e31la2, .framer-fNgJ2 .framer-1gny7jz, .framer-fNgJ2 .framer-1o4pf3i, .framer-fNgJ2 .framer-16t1gl3, .framer-fNgJ2 .framer-1ex9u64, .framer-fNgJ2 .framer-wxan2d { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fNgJ2 .framer-1juzh7d { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1uv1fpb { align-content: center; align-items: center; align-self: start; background-color: #e8e8e8; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 27px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-dt37y2, .framer-fNgJ2 .framer-1lrexxp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-hcwavu { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-jg7amf, .framer-fNgJ2 .framer-v126w3, .framer-fNgJ2 .framer-1w74e5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fNgJ2 .framer-1vikfnf { align-content: center; align-items: center; background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.04); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 34px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-s30bvy { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; max-width: 350px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 9; }\",\".framer-fNgJ2 .framer-19wk0zr { align-content: center; align-items: center; background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; box-shadow: 0px 1px 18px 0px rgba(0, 0, 0, 0.03); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 20px 22px 22px 22px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-10q9moq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 17px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-q6k5sn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-sww46f { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 3px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fNgJ2 .framer-ntsa0, .framer-fNgJ2 .framer-16hmd5q, .framer-fNgJ2 .framer-cqkbc9 { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 5px; overflow: hidden; position: relative; width: 5px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1q7dyrx { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.1); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 14px; border-bottom-right-radius: 14px; border-top-left-radius: 14px; border-top-right-radius: 14px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: 100px; justify-content: flex-start; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-12wtqve { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; opacity: 0.5; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fNgJ2 .framer-8uftoh, .framer-fNgJ2 .framer-tsln94 { 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-fNgJ2 .framer-1lb4k33 { align-content: center; align-items: center; background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; box-shadow: inset 0px 0px 8px 0px var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-cjdbw2, .framer-fNgJ2 .framer-5ijohd, .framer-fNgJ2 .framer-6pwi9y, .framer-fNgJ2 .framer-1hqte3r { flex: none; height: 18px; overflow: hidden; position: relative; width: 18px; }\",\".framer-fNgJ2 .framer-1kjw91p, .framer-fNgJ2 .framer-pmd9pz { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1scv3d4 { flex: none; height: 16px; overflow: hidden; position: relative; width: 16px; }\",\".framer-fNgJ2 .framer-af023c { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-yyxhw5, .framer-fNgJ2 .framer-1drmb40, .framer-fNgJ2 .framer-3ns6hm { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1lq9o2n { align-content: center; align-items: center; align-self: start; background-color: #f5f5f5; border-bottom-left-radius: 28px; border-bottom-right-radius: 28px; border-top-left-radius: 28px; border-top-right-radius: 28px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; justify-self: start; overflow: hidden; padding: 32px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-4cs9t9, .framer-fNgJ2 .framer-n6i5s2, .framer-fNgJ2 .framer-gjaqp2, .framer-fNgJ2 .framer-5xk407 { 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-fNgJ2 .framer-e4ai0z { align-content: center; align-items: center; aspect-ratio: 1 / 1; background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 1000px; border-bottom-right-radius: 1000px; border-top-left-radius: 1000px; border-top-right-radius: 1000px; box-shadow: 0px 0px 22px 0px rgba(0, 0, 0, 0.04); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 34px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 34px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-vz9fy2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 1; }\",\".framer-fNgJ2 .framer-12ds853 { -webkit-mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%) add; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; mask: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, rgb(0, 0, 0) 50%, rgba(0, 0, 0, 0) 100%) add; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1gknrfw, .framer-fNgJ2 .framer-1kabiq4, .framer-fNgJ2 .framer-1c2juwz, .framer-fNgJ2 .framer-1ldq3r { align-content: center; align-items: center; background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; box-shadow: 0px 0px 6px 0px rgba(0, 0, 0, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 42px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 42px; will-change: var(--framer-will-change-override, transform); z-index: 10; }\",\".framer-fNgJ2 .framer-1tabfyq { align-content: center; align-items: center; background: linear-gradient(180deg, rgba(255, 255, 255, 0) 76%, var(--token-a02e33a0-fcd8-4c99-a1f8-22099c08a1c4, rgb(87, 140, 255)) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 64px; justify-content: center; opacity: 0.8; overflow: visible; padding: 1px; position: relative; width: 64px; z-index: 10; }\",\".framer-fNgJ2 .framer-t77nqf { --border-bottom-width: 1px; --border-color: rgba(0, 0, 0, 0.05); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; box-shadow: 0px 1px 3px 0px rgba(0, 0, 0, 0.05); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 100%; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-eq9rn9 { flex: none; height: 24px; overflow: hidden; position: relative; width: 24px; }\",\".framer-fNgJ2 .framer-yyxdt6 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 18px); overflow: hidden; position: relative; width: 18px; }\",\".framer-fNgJ2 .framer-1uu3dmb { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); flex: none; height: 1px; left: calc(50.00000000000002% - 360px / 2); opacity: 0.1; overflow: hidden; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 360px; z-index: 1; }\",\".framer-fNgJ2 .framer-av017s { --border-bottom-width: 1px; --border-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); --border-left-width: 1px; --border-right-width: 1px; --border-style: dashed; --border-top-width: 1px; flex: none; height: 48px; overflow: hidden; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-10g6fci { align-content: center; align-items: center; background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; box-shadow: 0px 0px 14px 0px rgba(0, 0, 0, 0.01); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 350px; overflow: hidden; padding: 16px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-2y20j6 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 206px; justify-content: space-between; overflow: visible; padding: 10px 0px 7px 0px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-736ndx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1npddol { 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: 100%; }\",\".framer-fNgJ2 .framer-1vwdy39, .framer-fNgJ2 .framer-1vo5svd, .framer-fNgJ2 .framer-1cgekwc { align-content: center; align-items: center; background-color: var(--token-16c209aa-ceb0-4109-b27f-42fd0c5b68e4, #f0f6ff); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 2px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1q93j7p, .framer-fNgJ2 .framer-1idjhkw, .framer-fNgJ2 .framer-l0c13v { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 4px; overflow: hidden; position: relative; width: 4px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1dtd9e1, .framer-fNgJ2 .framer-16va7wx, .framer-fNgJ2 .framer-37wpa5 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; opacity: 0.75; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-fNgJ2 .framer-9u47dl { align-content: center; align-items: center; background: linear-gradient(211deg, var(--token-ba826f64-cf28-4f34-8eb7-59dfdadea1db, #9cc3ff) 0%, var(--token-a02e33a0-fcd8-4c99-a1f8-22099c08a1c4, rgb(87, 140, 255)) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 22px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 22px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-ohclx0-container { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-fNgJ2 .framer-101aaau { align-content: center; align-items: center; background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 12px; border-bottom-right-radius: 12px; border-top-left-radius: 12px; border-top-right-radius: 12px; box-shadow: 0px 0px 12px 0px rgba(0, 0, 0, 0.03); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-18iek2e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 19px 12px 63px 12px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-8f77kk { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 7px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1i35we6 { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 4px; opacity: 0.1; overflow: hidden; position: relative; width: 26px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-8c8e1j { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 4px; opacity: 0.1; overflow: hidden; position: relative; width: 67px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-96iekg { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 4px; opacity: 0.1; overflow: hidden; position: relative; width: 106px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-12imyj8 { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 4px; opacity: 0.1; overflow: hidden; position: relative; width: 68px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-pkzob1, .framer-fNgJ2 .framer-1a1yxms { border-bottom-left-radius: 7px; border-bottom-right-radius: 7px; border-top-left-radius: 7px; border-top-right-radius: 7px; flex: none; height: 32px; overflow: hidden; position: relative; width: 40px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1o8ntbe { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 7px 7px 7px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-17313c4 { align-content: center; align-items: center; background: linear-gradient(0deg, var(--token-ba826f64-cf28-4f34-8eb7-59dfdadea1db, #9cc3ff) 0%, var(--token-a02e33a0-fcd8-4c99-a1f8-22099c08a1c4, rgb(87, 140, 255)) 100%); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06), inset 0px 0px 10px 0px rgba(255, 255, 255, 0.2); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 7px 7px 7px 16px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1oasbun { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.1); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-11g5jb3 { background-color: var(--token-55f5f274-da4d-44f2-8592-74ae0ff1729a, #ffffff); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 6px; overflow: hidden; position: relative; width: 6px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-6kytwy { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-ca3rd { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 850px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-s9ndgg-container, .framer-fNgJ2 .framer-43u77r-container, .framer-fNgJ2 .framer-q8z09u-container, .framer-fNgJ2 .framer-qm0ztk-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-cnkfn3 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-1g3xvc2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-16wc08 { display: grid; flex: none; gap: 24px; grid-auto-rows: min-content; grid-template-columns: repeat(3, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1676p36-container, .framer-fNgJ2 .framer-1ijqi45-container, .framer-fNgJ2 .framer-1hlvh33-container, .framer-fNgJ2 .framer-zzo8kq-container, .framer-fNgJ2 .framer-4tpp5j-container, .framer-fNgJ2 .framer-1lc51w3-container { align-self: start; flex: none; height: auto; justify-self: start; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-dnkeu2 { 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: 28px 0px 28px 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1qsz5zk { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 72px; height: min-content; justify-content: center; max-width: 1100px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; z-index: 2; }\",\".framer-fNgJ2 .framer-1eduaxe { display: grid; flex: 1 0 0px; gap: 52px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(1, minmax(0, 1fr)); height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-yla5fs { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; justify-self: start; max-width: 470px; min-height: 58px; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-fNgJ2 .framer-rb3em3 { align-content: flex-start; align-items: flex-start; align-self: start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: 100%; justify-content: center; justify-self: start; max-width: 515px; overflow: hidden; padding: 2px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-97kj9h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 18px; height: min-content; justify-content: center; max-width: 700px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1mzh8ik, .framer-fNgJ2 .framer-jeh4x7, .framer-fNgJ2 .framer-1bjvcwa { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1gw8kz6 { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 10px 0px 0px 0px; position: relative; width: min-content; }\",\".framer-fNgJ2 .framer-1ho9soa, .framer-fNgJ2 .framer-1en3gvg, .framer-fNgJ2 .framer-4ahec9 { background-color: var(--token-ec861af2-7738-4459-a739-802eb7dda496, #292929); border-bottom-left-radius: 999px; border-bottom-right-radius: 999px; border-top-left-radius: 999px; border-top-right-radius: 999px; flex: none; height: 17px; overflow: hidden; position: relative; width: 17px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-1wko0t9, .framer-fNgJ2 .framer-l2wgl5 { background-color: var(--token-0237f941-391c-45d6-916b-59c30cb25438, #636363); flex: 1 0 0px; height: 1px; overflow: hidden; position: relative; width: 2px; }\",\".framer-fNgJ2 .framer-nq1f0b, .framer-fNgJ2 .framer-1dt12zm { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: auto; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-fNgJ2 .framer-1iht62c, .framer-fNgJ2 .framer-12tauy6 { background-color: var(--token-ba826f64-cf28-4f34-8eb7-59dfdadea1db, #9cc3ff); flex: none; height: 10px; overflow: hidden; position: relative; width: 2px; }\",\".framer-fNgJ2 .framer-12pke83 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 52px; height: min-content; justify-content: center; max-width: 1200px; overflow: hidden; padding: 0px 25px 0px 25px; position: relative; width: 1px; }\",\".framer-fNgJ2 .framer-nz4ehw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1n0kwid-container { -webkit-user-select: none; flex: none; height: auto; max-width: 720px; position: relative; user-select: none; width: 100%; }\",\".framer-fNgJ2 .framer-6kna29 { 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: 28px 25px 28px 25px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1m9lwsk { align-content: center; align-items: center; background: linear-gradient(180deg, var(--token-0237f941-391c-45d6-916b-59c30cb25438, #636363) 0%, rgb(41, 41, 41) 100%); border-bottom-left-radius: 44px; border-bottom-right-radius: 44px; border-top-left-radius: 44px; border-top-right-radius: 44px; box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.07); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 38px; height: min-content; justify-content: center; max-width: 1150px; overflow: hidden; padding: 64px 58px 64px 58px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-fNgJ2 .framer-ysaosw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 34px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; z-index: 3; }\",\".framer-fNgJ2 .framer-x0hu1w { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-gkalu0 { --border-bottom-width: 2px; --border-color: rgba(255, 255, 255, 0.1); --border-left-width: 2px; --border-right-width: 2px; --border-style: solid; --border-top-width: 2px; align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 15px; border-bottom-right-radius: 15px; border-top-left-radius: 15px; border-top-right-radius: 15px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 51px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 52px; will-change: var(--framer-will-change-override, transform); z-index: 3; }\",\".framer-fNgJ2 .framer-1qjexg1 { flex: none; height: 30px; overflow: hidden; position: relative; width: 30px; }\",\".framer-fNgJ2 .framer-1tn25zm { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; max-width: 620px; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-fNgJ2 .framer-1b37e2w { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 100px 40px 100px 40px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-15cy7mn, .framer-fNgJ2 .framer-1xuke8w, .framer-fNgJ2 .framer-1ncl05v, .framer-fNgJ2 .framer-xa3dab { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; overflow: visible; position: relative; white-space: pre; width: auto; }\",\".framer-fNgJ2 .framer-3ymgv1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 400px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-pu5ta1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fNgJ2 .framer-1v9dem { 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-fNgJ2 .framer-ycmuud, .framer-fNgJ2 .framer-xuezwq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 1px; }\",'.framer-fNgJ2 .framer-1mnlvid, .framer-fNgJ2 .framer-itmmbw { --framer-input-background: #f2f2f2; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #333333; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; flex: none; height: 40px; position: relative; width: 100%; }',\".framer-fNgJ2 .framer-pbbi8o { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",'.framer-fNgJ2 .framer-1xpcou2 { --framer-input-background: #f2f2f2; --framer-input-border-radius-bottom-left: 8px; --framer-input-border-radius-bottom-right: 8px; --framer-input-border-radius-top-left: 8px; --framer-input-border-radius-top-right: 8px; --framer-input-focused-border-color: #0099ff; --framer-input-focused-border-style: solid; --framer-input-focused-border-width: 1px; --framer-input-font-color: #333333; --framer-input-font-family: \"Inter\"; --framer-input-font-letter-spacing: 0em; --framer-input-font-line-height: 1.2em; --framer-input-font-size: 14px; --framer-input-font-weight: 400; --framer-input-icon-color: #999999; --framer-input-padding: 12px; --framer-input-placeholder-color: #999999; --framer-input-wrapper-height: auto; --framer-textarea-resize: vertical; flex: none; height: auto; min-height: 100px; position: relative; width: 100%; }',\".framer-fNgJ2 .framer-10973c3-container { flex: none; height: 40px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fNgJ2.framer-59ibs6, .framer-fNgJ2 .framer-339wdr, .framer-fNgJ2 .framer-16h9oyk, .framer-fNgJ2 .framer-c60s0y, .framer-fNgJ2 .framer-185ka75, .framer-fNgJ2 .framer-ew206p, .framer-fNgJ2 .framer-5egxvp, .framer-fNgJ2 .framer-1qnvlkv, .framer-fNgJ2 .framer-ggabz5, .framer-fNgJ2 .framer-1lj6e9q, .framer-fNgJ2 .framer-gbktea, .framer-fNgJ2 .framer-1hothrq, .framer-fNgJ2 .framer-1uv1fpb, .framer-fNgJ2 .framer-dt37y2, .framer-fNgJ2 .framer-1vikfnf, .framer-fNgJ2 .framer-s30bvy, .framer-fNgJ2 .framer-19wk0zr, .framer-fNgJ2 .framer-10q9moq, .framer-fNgJ2 .framer-sww46f, .framer-fNgJ2 .framer-1q7dyrx, .framer-fNgJ2 .framer-8uftoh, .framer-fNgJ2 .framer-1lb4k33, .framer-fNgJ2 .framer-1kjw91p, .framer-fNgJ2 .framer-af023c, .framer-fNgJ2 .framer-yyxhw5, .framer-fNgJ2 .framer-1drmb40, .framer-fNgJ2 .framer-3ns6hm, .framer-fNgJ2 .framer-1lq9o2n, .framer-fNgJ2 .framer-1lrexxp, .framer-fNgJ2 .framer-4cs9t9, .framer-fNgJ2 .framer-e4ai0z, .framer-fNgJ2 .framer-vz9fy2, .framer-fNgJ2 .framer-12ds853, .framer-fNgJ2 .framer-1gknrfw, .framer-fNgJ2 .framer-1kabiq4, .framer-fNgJ2 .framer-1tabfyq, .framer-fNgJ2 .framer-t77nqf, .framer-fNgJ2 .framer-1c2juwz, .framer-fNgJ2 .framer-1ldq3r, .framer-fNgJ2 .framer-10g6fci, .framer-fNgJ2 .framer-736ndx, .framer-fNgJ2 .framer-1npddol, .framer-fNgJ2 .framer-n6i5s2, .framer-fNgJ2 .framer-1vwdy39, .framer-fNgJ2 .framer-gjaqp2, .framer-fNgJ2 .framer-1vo5svd, .framer-fNgJ2 .framer-5xk407, .framer-fNgJ2 .framer-1cgekwc, .framer-fNgJ2 .framer-9u47dl, .framer-fNgJ2 .framer-101aaau, .framer-fNgJ2 .framer-18iek2e, .framer-fNgJ2 .framer-8f77kk, .framer-fNgJ2 .framer-pmd9pz, .framer-fNgJ2 .framer-1o8ntbe, .framer-fNgJ2 .framer-1oasbun, .framer-fNgJ2 .framer-zon27b, .framer-fNgJ2 .framer-6kytwy, .framer-fNgJ2 .framer-ca3rd, .framer-fNgJ2 .framer-xk1c1i, .framer-fNgJ2 .framer-cnkfn3, .framer-fNgJ2 .framer-1g3xvc2, .framer-fNgJ2 .framer-dnkeu2, .framer-fNgJ2 .framer-1qsz5zk, .framer-fNgJ2 .framer-yla5fs, .framer-fNgJ2 .framer-rb3em3, .framer-fNgJ2 .framer-97kj9h, .framer-fNgJ2 .framer-tsln94, .framer-fNgJ2 .framer-1mzh8ik, .framer-fNgJ2 .framer-1gw8kz6, .framer-fNgJ2 .framer-jeh4x7, .framer-fNgJ2 .framer-nq1f0b, .framer-fNgJ2 .framer-1bjvcwa, .framer-fNgJ2 .framer-1dt12zm, .framer-fNgJ2 .framer-cqej44, .framer-fNgJ2 .framer-12pke83, .framer-fNgJ2 .framer-nz4ehw, .framer-fNgJ2 .framer-6kna29, .framer-fNgJ2 .framer-1m9lwsk, .framer-fNgJ2 .framer-ysaosw, .framer-fNgJ2 .framer-x0hu1w, .framer-fNgJ2 .framer-gkalu0, .framer-fNgJ2 .framer-1b37e2w, .framer-fNgJ2 .framer-3ymgv1, .framer-fNgJ2 .framer-pu5ta1, .framer-fNgJ2 .framer-1v9dem, .framer-fNgJ2 .framer-ycmuud, .framer-fNgJ2 .framer-xuezwq, .framer-fNgJ2 .framer-pbbi8o { gap: 0px; } .framer-fNgJ2.framer-59ibs6 > *, .framer-fNgJ2 .framer-8uftoh > *, .framer-fNgJ2 .framer-vz9fy2 > *, .framer-fNgJ2 .framer-101aaau > *, .framer-fNgJ2 .framer-tsln94 > *, .framer-fNgJ2 .framer-1gw8kz6 > *, .framer-fNgJ2 .framer-nq1f0b > *, .framer-fNgJ2 .framer-1dt12zm > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-fNgJ2.framer-59ibs6 > :first-child, .framer-fNgJ2 .framer-16h9oyk > :first-child, .framer-fNgJ2 .framer-185ka75 > :first-child, .framer-fNgJ2 .framer-ew206p > :first-child, .framer-fNgJ2 .framer-gbktea > :first-child, .framer-fNgJ2 .framer-1hothrq > :first-child, .framer-fNgJ2 .framer-1uv1fpb > :first-child, .framer-fNgJ2 .framer-dt37y2 > :first-child, .framer-fNgJ2 .framer-s30bvy > :first-child, .framer-fNgJ2 .framer-19wk0zr > :first-child, .framer-fNgJ2 .framer-10q9moq > :first-child, .framer-fNgJ2 .framer-1q7dyrx > :first-child, .framer-fNgJ2 .framer-8uftoh > :first-child, .framer-fNgJ2 .framer-1lq9o2n > :first-child, .framer-fNgJ2 .framer-1lrexxp > :first-child, .framer-fNgJ2 .framer-vz9fy2 > :first-child, .framer-fNgJ2 .framer-736ndx > :first-child, .framer-fNgJ2 .framer-1npddol > :first-child, .framer-fNgJ2 .framer-101aaau > :first-child, .framer-fNgJ2 .framer-18iek2e > :first-child, .framer-fNgJ2 .framer-8f77kk > :first-child, .framer-fNgJ2 .framer-6kytwy > :first-child, .framer-fNgJ2 .framer-cnkfn3 > :first-child, .framer-fNgJ2 .framer-1g3xvc2 > :first-child, .framer-fNgJ2 .framer-yla5fs > :first-child, .framer-fNgJ2 .framer-rb3em3 > :first-child, .framer-fNgJ2 .framer-97kj9h > :first-child, .framer-fNgJ2 .framer-tsln94 > :first-child, .framer-fNgJ2 .framer-1gw8kz6 > :first-child, .framer-fNgJ2 .framer-nq1f0b > :first-child, .framer-fNgJ2 .framer-1dt12zm > :first-child, .framer-fNgJ2 .framer-12pke83 > :first-child, .framer-fNgJ2 .framer-nz4ehw > :first-child, .framer-fNgJ2 .framer-1m9lwsk > :first-child, .framer-fNgJ2 .framer-ysaosw > :first-child, .framer-fNgJ2 .framer-x0hu1w > :first-child, .framer-fNgJ2 .framer-1b37e2w > :first-child, .framer-fNgJ2 .framer-3ymgv1 > :first-child, .framer-fNgJ2 .framer-pu5ta1 > :first-child, .framer-fNgJ2 .framer-ycmuud > :first-child, .framer-fNgJ2 .framer-xuezwq > :first-child, .framer-fNgJ2 .framer-pbbi8o > :first-child { margin-top: 0px; } .framer-fNgJ2.framer-59ibs6 > :last-child, .framer-fNgJ2 .framer-16h9oyk > :last-child, .framer-fNgJ2 .framer-185ka75 > :last-child, .framer-fNgJ2 .framer-ew206p > :last-child, .framer-fNgJ2 .framer-gbktea > :last-child, .framer-fNgJ2 .framer-1hothrq > :last-child, .framer-fNgJ2 .framer-1uv1fpb > :last-child, .framer-fNgJ2 .framer-dt37y2 > :last-child, .framer-fNgJ2 .framer-s30bvy > :last-child, .framer-fNgJ2 .framer-19wk0zr > :last-child, .framer-fNgJ2 .framer-10q9moq > :last-child, .framer-fNgJ2 .framer-1q7dyrx > :last-child, .framer-fNgJ2 .framer-8uftoh > :last-child, .framer-fNgJ2 .framer-1lq9o2n > :last-child, .framer-fNgJ2 .framer-1lrexxp > :last-child, .framer-fNgJ2 .framer-vz9fy2 > :last-child, .framer-fNgJ2 .framer-736ndx > :last-child, .framer-fNgJ2 .framer-1npddol > :last-child, .framer-fNgJ2 .framer-101aaau > :last-child, .framer-fNgJ2 .framer-18iek2e > :last-child, .framer-fNgJ2 .framer-8f77kk > :last-child, .framer-fNgJ2 .framer-6kytwy > :last-child, .framer-fNgJ2 .framer-cnkfn3 > :last-child, .framer-fNgJ2 .framer-1g3xvc2 > :last-child, .framer-fNgJ2 .framer-yla5fs > :last-child, .framer-fNgJ2 .framer-rb3em3 > :last-child, .framer-fNgJ2 .framer-97kj9h > :last-child, .framer-fNgJ2 .framer-tsln94 > :last-child, .framer-fNgJ2 .framer-1gw8kz6 > :last-child, .framer-fNgJ2 .framer-nq1f0b > :last-child, .framer-fNgJ2 .framer-1dt12zm > :last-child, .framer-fNgJ2 .framer-12pke83 > :last-child, .framer-fNgJ2 .framer-nz4ehw > :last-child, .framer-fNgJ2 .framer-1m9lwsk > :last-child, .framer-fNgJ2 .framer-ysaosw > :last-child, .framer-fNgJ2 .framer-x0hu1w > :last-child, .framer-fNgJ2 .framer-1b37e2w > :last-child, .framer-fNgJ2 .framer-3ymgv1 > :last-child, .framer-fNgJ2 .framer-pu5ta1 > :last-child, .framer-fNgJ2 .framer-ycmuud > :last-child, .framer-fNgJ2 .framer-xuezwq > :last-child, .framer-fNgJ2 .framer-pbbi8o > :last-child { margin-bottom: 0px; } .framer-fNgJ2 .framer-339wdr > * { margin: 0px; margin-left: calc(18px / 2); margin-right: calc(18px / 2); } .framer-fNgJ2 .framer-339wdr > :first-child, .framer-fNgJ2 .framer-c60s0y > :first-child, .framer-fNgJ2 .framer-5egxvp > :first-child, .framer-fNgJ2 .framer-1qnvlkv > :first-child, .framer-fNgJ2 .framer-ggabz5 > :first-child, .framer-fNgJ2 .framer-1lj6e9q > :first-child, .framer-fNgJ2 .framer-1vikfnf > :first-child, .framer-fNgJ2 .framer-sww46f > :first-child, .framer-fNgJ2 .framer-1lb4k33 > :first-child, .framer-fNgJ2 .framer-1kjw91p > :first-child, .framer-fNgJ2 .framer-af023c > :first-child, .framer-fNgJ2 .framer-yyxhw5 > :first-child, .framer-fNgJ2 .framer-1drmb40 > :first-child, .framer-fNgJ2 .framer-3ns6hm > :first-child, .framer-fNgJ2 .framer-4cs9t9 > :first-child, .framer-fNgJ2 .framer-e4ai0z > :first-child, .framer-fNgJ2 .framer-12ds853 > :first-child, .framer-fNgJ2 .framer-1gknrfw > :first-child, .framer-fNgJ2 .framer-1kabiq4 > :first-child, .framer-fNgJ2 .framer-1tabfyq > :first-child, .framer-fNgJ2 .framer-t77nqf > :first-child, .framer-fNgJ2 .framer-1c2juwz > :first-child, .framer-fNgJ2 .framer-1ldq3r > :first-child, .framer-fNgJ2 .framer-10g6fci > :first-child, .framer-fNgJ2 .framer-n6i5s2 > :first-child, .framer-fNgJ2 .framer-1vwdy39 > :first-child, .framer-fNgJ2 .framer-gjaqp2 > :first-child, .framer-fNgJ2 .framer-1vo5svd > :first-child, .framer-fNgJ2 .framer-5xk407 > :first-child, .framer-fNgJ2 .framer-1cgekwc > :first-child, .framer-fNgJ2 .framer-9u47dl > :first-child, .framer-fNgJ2 .framer-pmd9pz > :first-child, .framer-fNgJ2 .framer-1o8ntbe > :first-child, .framer-fNgJ2 .framer-1oasbun > :first-child, .framer-fNgJ2 .framer-zon27b > :first-child, .framer-fNgJ2 .framer-ca3rd > :first-child, .framer-fNgJ2 .framer-xk1c1i > :first-child, .framer-fNgJ2 .framer-dnkeu2 > :first-child, .framer-fNgJ2 .framer-1qsz5zk > :first-child, .framer-fNgJ2 .framer-1mzh8ik > :first-child, .framer-fNgJ2 .framer-jeh4x7 > :first-child, .framer-fNgJ2 .framer-1bjvcwa > :first-child, .framer-fNgJ2 .framer-cqej44 > :first-child, .framer-fNgJ2 .framer-6kna29 > :first-child, .framer-fNgJ2 .framer-gkalu0 > :first-child, .framer-fNgJ2 .framer-1v9dem > :first-child { margin-left: 0px; } .framer-fNgJ2 .framer-339wdr > :last-child, .framer-fNgJ2 .framer-c60s0y > :last-child, .framer-fNgJ2 .framer-5egxvp > :last-child, .framer-fNgJ2 .framer-1qnvlkv > :last-child, .framer-fNgJ2 .framer-ggabz5 > :last-child, .framer-fNgJ2 .framer-1lj6e9q > :last-child, .framer-fNgJ2 .framer-1vikfnf > :last-child, .framer-fNgJ2 .framer-sww46f > :last-child, .framer-fNgJ2 .framer-1lb4k33 > :last-child, .framer-fNgJ2 .framer-1kjw91p > :last-child, .framer-fNgJ2 .framer-af023c > :last-child, .framer-fNgJ2 .framer-yyxhw5 > :last-child, .framer-fNgJ2 .framer-1drmb40 > :last-child, .framer-fNgJ2 .framer-3ns6hm > :last-child, .framer-fNgJ2 .framer-4cs9t9 > :last-child, .framer-fNgJ2 .framer-e4ai0z > :last-child, .framer-fNgJ2 .framer-12ds853 > :last-child, .framer-fNgJ2 .framer-1gknrfw > :last-child, .framer-fNgJ2 .framer-1kabiq4 > :last-child, .framer-fNgJ2 .framer-1tabfyq > :last-child, .framer-fNgJ2 .framer-t77nqf > :last-child, .framer-fNgJ2 .framer-1c2juwz > :last-child, .framer-fNgJ2 .framer-1ldq3r > :last-child, .framer-fNgJ2 .framer-10g6fci > :last-child, .framer-fNgJ2 .framer-n6i5s2 > :last-child, .framer-fNgJ2 .framer-1vwdy39 > :last-child, .framer-fNgJ2 .framer-gjaqp2 > :last-child, .framer-fNgJ2 .framer-1vo5svd > :last-child, .framer-fNgJ2 .framer-5xk407 > :last-child, .framer-fNgJ2 .framer-1cgekwc > :last-child, .framer-fNgJ2 .framer-9u47dl > :last-child, .framer-fNgJ2 .framer-pmd9pz > :last-child, .framer-fNgJ2 .framer-1o8ntbe > :last-child, .framer-fNgJ2 .framer-1oasbun > :last-child, .framer-fNgJ2 .framer-zon27b > :last-child, .framer-fNgJ2 .framer-ca3rd > :last-child, .framer-fNgJ2 .framer-xk1c1i > :last-child, .framer-fNgJ2 .framer-dnkeu2 > :last-child, .framer-fNgJ2 .framer-1qsz5zk > :last-child, .framer-fNgJ2 .framer-1mzh8ik > :last-child, .framer-fNgJ2 .framer-jeh4x7 > :last-child, .framer-fNgJ2 .framer-1bjvcwa > :last-child, .framer-fNgJ2 .framer-cqej44 > :last-child, .framer-fNgJ2 .framer-6kna29 > :last-child, .framer-fNgJ2 .framer-gkalu0 > :last-child, .framer-fNgJ2 .framer-1v9dem > :last-child { margin-right: 0px; } .framer-fNgJ2 .framer-16h9oyk > * { margin: 0px; margin-bottom: calc(95px / 2); margin-top: calc(95px / 2); } .framer-fNgJ2 .framer-c60s0y > *, .framer-fNgJ2 .framer-1qnvlkv > *, .framer-fNgJ2 .framer-ggabz5 > *, .framer-fNgJ2 .framer-1lj6e9q > *, .framer-fNgJ2 .framer-1vikfnf > *, .framer-fNgJ2 .framer-1lb4k33 > *, .framer-fNgJ2 .framer-af023c > *, .framer-fNgJ2 .framer-4cs9t9 > *, .framer-fNgJ2 .framer-e4ai0z > *, .framer-fNgJ2 .framer-n6i5s2 > *, .framer-fNgJ2 .framer-gjaqp2 > *, .framer-fNgJ2 .framer-5xk407 > *, .framer-fNgJ2 .framer-zon27b > *, .framer-fNgJ2 .framer-ca3rd > *, .framer-fNgJ2 .framer-xk1c1i > *, .framer-fNgJ2 .framer-dnkeu2 > *, .framer-fNgJ2 .framer-cqej44 > *, .framer-fNgJ2 .framer-6kna29 > *, .framer-fNgJ2 .framer-gkalu0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-fNgJ2 .framer-185ka75 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-fNgJ2 .framer-ew206p > *, .framer-fNgJ2 .framer-736ndx > *, .framer-fNgJ2 .framer-18iek2e > *, .framer-fNgJ2 .framer-97kj9h > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-fNgJ2 .framer-5egxvp > * { margin: 0px; margin-left: calc(14px / 2); margin-right: calc(14px / 2); } .framer-fNgJ2 .framer-gbktea > *, .framer-fNgJ2 .framer-cnkfn3 > * { margin: 0px; margin-bottom: calc(72px / 2); margin-top: calc(72px / 2); } .framer-fNgJ2 .framer-1hothrq > *, .framer-fNgJ2 .framer-1g3xvc2 > *, .framer-fNgJ2 .framer-nz4ehw > *, .framer-fNgJ2 .framer-pu5ta1 > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fNgJ2 .framer-1uv1fpb > * { margin: 0px; margin-bottom: calc(27px / 2); margin-top: calc(27px / 2); } .framer-fNgJ2 .framer-dt37y2 > *, .framer-fNgJ2 .framer-1lrexxp > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } .framer-fNgJ2 .framer-s30bvy > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-fNgJ2 .framer-19wk0zr > *, .framer-fNgJ2 .framer-1lq9o2n > *, .framer-fNgJ2 .framer-x0hu1w > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-fNgJ2 .framer-10q9moq > * { margin: 0px; margin-bottom: calc(17px / 2); margin-top: calc(17px / 2); } .framer-fNgJ2 .framer-sww46f > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-fNgJ2 .framer-1q7dyrx > * { margin: 0px; margin-bottom: calc(8px / 2); margin-top: calc(8px / 2); } .framer-fNgJ2 .framer-1kjw91p > *, .framer-fNgJ2 .framer-yyxhw5 > *, .framer-fNgJ2 .framer-1drmb40 > *, .framer-fNgJ2 .framer-3ns6hm > *, .framer-fNgJ2 .framer-1gknrfw > *, .framer-fNgJ2 .framer-1kabiq4 > *, .framer-fNgJ2 .framer-1tabfyq > *, .framer-fNgJ2 .framer-t77nqf > *, .framer-fNgJ2 .framer-1c2juwz > *, .framer-fNgJ2 .framer-1ldq3r > *, .framer-fNgJ2 .framer-1vwdy39 > *, .framer-fNgJ2 .framer-1vo5svd > *, .framer-fNgJ2 .framer-1cgekwc > *, .framer-fNgJ2 .framer-9u47dl > *, .framer-fNgJ2 .framer-pmd9pz > *, .framer-fNgJ2 .framer-1o8ntbe > *, .framer-fNgJ2 .framer-1oasbun > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-fNgJ2 .framer-12ds853 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-fNgJ2 .framer-10g6fci > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fNgJ2 .framer-1npddol > *, .framer-fNgJ2 .framer-3ymgv1 > *, .framer-fNgJ2 .framer-ycmuud > *, .framer-fNgJ2 .framer-xuezwq > *, .framer-fNgJ2 .framer-pbbi8o > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fNgJ2 .framer-8f77kk > * { margin: 0px; margin-bottom: calc(7px / 2); margin-top: calc(7px / 2); } .framer-fNgJ2 .framer-6kytwy > *, .framer-fNgJ2 .framer-ysaosw > * { margin: 0px; margin-bottom: calc(34px / 2); margin-top: calc(34px / 2); } .framer-fNgJ2 .framer-1qsz5zk > * { margin: 0px; margin-left: calc(72px / 2); margin-right: calc(72px / 2); } .framer-fNgJ2 .framer-yla5fs > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-fNgJ2 .framer-rb3em3 > *, .framer-fNgJ2 .framer-1m9lwsk > * { margin: 0px; margin-bottom: calc(38px / 2); margin-top: calc(38px / 2); } .framer-fNgJ2 .framer-1mzh8ik > *, .framer-fNgJ2 .framer-jeh4x7 > *, .framer-fNgJ2 .framer-1bjvcwa > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-fNgJ2 .framer-12pke83 > * { margin: 0px; margin-bottom: calc(52px / 2); margin-top: calc(52px / 2); } .framer-fNgJ2 .framer-1b37e2w > * { margin: 0px; margin-bottom: calc(60px / 2); margin-top: calc(60px / 2); } .framer-fNgJ2 .framer-1v9dem > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-fNgJ2[data-border=\"true\"]::after, .framer-fNgJ2 [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: 810px) and (max-width: 1199px) { .framer-fNgJ2.framer-59ibs6 { width: 810px; } .framer-fNgJ2 .framer-1vikfnf { height: 28px; width: 28px; } .framer-fNgJ2 .framer-af023c { gap: 3px; } .framer-fNgJ2 .framer-e4ai0z { height: var(--framer-aspect-ratio-supported, 28px); width: 28px; } .framer-fNgJ2 .framer-1g3xvc2 { max-width: 600px; } .framer-fNgJ2 .framer-16wc08 { grid-template-columns: repeat(2, minmax(50px, 1fr)); } .framer-fNgJ2 .framer-1eduaxe { gap: 38px; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fNgJ2 .framer-af023c, .framer-fNgJ2 .framer-1eduaxe { gap: 0px; } .framer-fNgJ2 .framer-af023c > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-fNgJ2 .framer-af023c > :first-child { margin-left: 0px; } .framer-fNgJ2 .framer-af023c > :last-child { margin-right: 0px; } .framer-fNgJ2 .framer-1eduaxe > *, .framer-fNgJ2 .framer-1eduaxe > :first-child, .framer-fNgJ2 .framer-1eduaxe > :last-child { margin: 0px; } }}\",\"@media (max-width: 809px) { .framer-fNgJ2.framer-59ibs6 { width: 390px; } .framer-fNgJ2 .framer-339wdr, .framer-fNgJ2 .framer-1lj6e9q, .framer-fNgJ2 .framer-zon27b, .framer-fNgJ2 .framer-xk1c1i, .framer-fNgJ2 .framer-dnkeu2, .framer-fNgJ2 .framer-cqej44, .framer-fNgJ2 .framer-1v9dem { flex-direction: column; } .framer-fNgJ2 .framer-16h9oyk, .framer-fNgJ2 .framer-6kytwy, .framer-fNgJ2 .framer-cnkfn3, .framer-fNgJ2 .framer-1qsz5zk, .framer-fNgJ2 .framer-12pke83 { flex: none; padding: 0px 20px 0px 20px; width: 100%; } .framer-fNgJ2 .framer-gbktea { flex: none; padding: 0px 16px 0px 16px; width: 100%; } .framer-fNgJ2 .framer-1juzh7d { grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-fNgJ2 .framer-1uv1fpb, .framer-fNgJ2 .framer-1lq9o2n { border-bottom-left-radius: 20px; border-bottom-right-radius: 20px; border-top-left-radius: 20px; border-top-right-radius: 20px; padding: 20px; } .framer-fNgJ2 .framer-1vikfnf { height: 28px; width: 28px; } .framer-fNgJ2 .framer-af023c { gap: 3px; } .framer-fNgJ2 .framer-e4ai0z { height: var(--framer-aspect-ratio-supported, 28px); width: 28px; } .framer-fNgJ2 .framer-1g3xvc2 { max-width: 600px; } .framer-fNgJ2 .framer-16wc08 { gap: 20px; grid-template-columns: repeat(1, minmax(50px, 1fr)); } .framer-fNgJ2 .framer-1eduaxe { gap: 72px; grid-auto-rows: min-content; grid-template-columns: repeat(1, minmax(50px, 1fr)); grid-template-rows: repeat(1, min-content); } .framer-fNgJ2 .framer-rb3em3 { height: auto; order: 0; } .framer-fNgJ2 .framer-6kna29 { flex-direction: column; padding: 28px 20px 28px 20px; } .framer-fNgJ2 .framer-1m9lwsk { border-bottom-left-radius: 34px; border-bottom-right-radius: 34px; border-top-left-radius: 34px; border-top-right-radius: 34px; flex: none; padding: 48px 28px 48px 28px; width: 100%; } .framer-fNgJ2 .framer-ycmuud, .framer-fNgJ2 .framer-xuezwq { flex: none; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-fNgJ2 .framer-339wdr, .framer-fNgJ2 .framer-1lj6e9q, .framer-fNgJ2 .framer-af023c, .framer-fNgJ2 .framer-zon27b, .framer-fNgJ2 .framer-xk1c1i, .framer-fNgJ2 .framer-16wc08, .framer-fNgJ2 .framer-dnkeu2, .framer-fNgJ2 .framer-1eduaxe, .framer-fNgJ2 .framer-cqej44, .framer-fNgJ2 .framer-6kna29, .framer-fNgJ2 .framer-1v9dem { gap: 0px; } .framer-fNgJ2 .framer-339wdr > * { margin: 0px; margin-bottom: calc(18px / 2); margin-top: calc(18px / 2); } .framer-fNgJ2 .framer-339wdr > :first-child, .framer-fNgJ2 .framer-1lj6e9q > :first-child, .framer-fNgJ2 .framer-zon27b > :first-child, .framer-fNgJ2 .framer-xk1c1i > :first-child, .framer-fNgJ2 .framer-dnkeu2 > :first-child, .framer-fNgJ2 .framer-cqej44 > :first-child, .framer-fNgJ2 .framer-6kna29 > :first-child, .framer-fNgJ2 .framer-1v9dem > :first-child { margin-top: 0px; } .framer-fNgJ2 .framer-339wdr > :last-child, .framer-fNgJ2 .framer-1lj6e9q > :last-child, .framer-fNgJ2 .framer-zon27b > :last-child, .framer-fNgJ2 .framer-xk1c1i > :last-child, .framer-fNgJ2 .framer-dnkeu2 > :last-child, .framer-fNgJ2 .framer-cqej44 > :last-child, .framer-fNgJ2 .framer-6kna29 > :last-child, .framer-fNgJ2 .framer-1v9dem > :last-child { margin-bottom: 0px; } .framer-fNgJ2 .framer-1lj6e9q > *, .framer-fNgJ2 .framer-zon27b > *, .framer-fNgJ2 .framer-xk1c1i > *, .framer-fNgJ2 .framer-dnkeu2 > *, .framer-fNgJ2 .framer-cqej44 > *, .framer-fNgJ2 .framer-6kna29 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fNgJ2 .framer-af023c > * { margin: 0px; margin-left: calc(3px / 2); margin-right: calc(3px / 2); } .framer-fNgJ2 .framer-af023c > :first-child { margin-left: 0px; } .framer-fNgJ2 .framer-af023c > :last-child { margin-right: 0px; } .framer-fNgJ2 .framer-16wc08 > *, .framer-fNgJ2 .framer-16wc08 > :first-child, .framer-fNgJ2 .framer-16wc08 > :last-child, .framer-fNgJ2 .framer-1eduaxe > *, .framer-fNgJ2 .framer-1eduaxe > :first-child, .framer-fNgJ2 .framer-1eduaxe > :last-child { margin: 0px; } .framer-fNgJ2 .framer-1v9dem > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5449.5\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"Y_LU3Nn5K\":{\"layout\":[\"fixed\",\"auto\"]},\"GPRR7v2cF\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"NnDzd7SrT\":{\"pattern\":\":NnDzd7SrT\",\"name\":\"services\"},\"TpVq6CPXS\":{\"pattern\":\":TpVq6CPXS\",\"name\":\"chatbot\"},\"CwCSrK8Nf\":{\"pattern\":\":CwCSrK8Nf\",\"name\":\"workflow\"},\"XCvnx5zDf\":{\"pattern\":\":XCvnx5zDf\",\"name\":\"features\"},\"AtjwkP4h7\":{\"pattern\":\":AtjwkP4h7\",\"name\":\"how-it-works\"},\"V9kt_z5_7\":{\"pattern\":\":V9kt_z5_7\",\"name\":\"cta\"}}\n * @framerResponsiveScreen\n */const FramerHUwiUU0KQ=withCSS(Component,css,\"framer-fNgJ2\");export default FramerHUwiUU0KQ;FramerHUwiUU0KQ.displayName=\"Home\";FramerHUwiUU0KQ.defaultProps={height:5449.5,width:1200};addFonts(FramerHUwiUU0KQ,[{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:\"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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuFuYMZ1rib2Bg-4.woff2\",weight:\"700\"},{family:\"Inter\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/inter/v18/UcCO3FwrK3iLTeHuS_nVMrMxCp50SjIw2boKoduKmMEVuLyfMZ1rib2Bg-4.woff2\",weight:\"400\"}]},...ButtonFonts,...LabelFonts,...PhosphorFonts,...TextWrapFonts,...FeatureCardFonts,...HowItWorksFonts,...SectionFaqFonts,...Button1Fonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerHUwiUU0KQ\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Y_LU3Nn5K\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GPRR7v2cF\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerScrollSections\":\"{\\\"NnDzd7SrT\\\":{\\\"pattern\\\":\\\":NnDzd7SrT\\\",\\\"name\\\":\\\"services\\\"},\\\"TpVq6CPXS\\\":{\\\"pattern\\\":\\\":TpVq6CPXS\\\",\\\"name\\\":\\\"chatbot\\\"},\\\"CwCSrK8Nf\\\":{\\\"pattern\\\":\\\":CwCSrK8Nf\\\",\\\"name\\\":\\\"workflow\\\"},\\\"XCvnx5zDf\\\":{\\\"pattern\\\":\\\":XCvnx5zDf\\\",\\\"name\\\":\\\"features\\\"},\\\"AtjwkP4h7\\\":{\\\"pattern\\\":\\\":AtjwkP4h7\\\",\\\"name\\\":\\\"how-it-works\\\"},\\\"V9kt_z5_7\\\":{\\\"pattern\\\":\\\":V9kt_z5_7\\\",\\\"name\\\":\\\"cta\\\"}}\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerResponsiveScreen\":\"\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"5449.5\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["TextWrap", "layers", "text", "slot", "font", "color", "layerGap", "transform", "layerAlign", "decoration", "balance", "userSelect", "tag", "style", "Tag", "parts", "content", "i", "p", "InlineLayer", "addPropertyControls", "ControlType", "props", "children", "align", "gap", "MotionDivWithFX", "withFX", "motion", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "animation", "transformTemplate1", "_", "t", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "ref1", "pe", "isDisplayed", "isDisplayed1", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "css", "FramerkORP1qm2A", "withCSS", "kORP1qm2A_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "serializationHash", "variantClassNames", "transition1", "toResponsiveImage", "value", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "icon", "id", "name1", "text", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "UvRWWLOI1", "ff0KG4PIC", "MjP0kV7Tr", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "Image2", "getLoadingLazyAtYPosition", "RichText2", "css", "FramerCpDqtRA3_", "withCSS", "CpDqtRA3_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "introduction", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "yybE76D_s", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "RichText2", "css", "FramerH9ib0OpTu", "withCSS", "H9ib0OpTu_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MotionDivWithFX", "withFX", "motion", "serializationHash", "variantClassNames", "animation", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "description", "heading", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "pDNu_TBLO", "WwcaK_b1g", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "MotionDivWithFX", "RichText2", "css", "FramerjhkC20gf9", "withCSS", "jhkC20gf9_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "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", "hFWTiskGo", "OjMK8RFig", "s8rLZouMu", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap22t344", "args", "scopingClassNames", "cx", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "RichText2", "Image2", "getLoadingLazyAtYPosition", "css", "Framerteci4C4LZ", "withCSS", "teci4C4LZ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "FaqItemFonts", "getFonts", "teci4C4LZ_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "animation", "transition2", "transition3", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "s8rLZouMu1mqoc0t", "args", "s8rLZouMu8e5w8h", "s8rLZouMu1jphs4p", "scopingClassNames", "cx", "LayoutGroup", "u", "ComponentViewportProvider", "css", "Framero1EnKqu5D", "withCSS", "o1EnKqu5D_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "MotionDivWithFX", "withFX", "motion", "ButtonFonts", "getFonts", "gZ2EcYYC_default", "ContainerWithFX", "Container", "LabelFonts", "H9ib0OpTu_default", "PhosphorFonts", "Icon", "TextWrapFonts", "TextWrap", "FeatureCardFonts", "CpDqtRA3_default", "HowItWorksFonts", "jhkC20gf9_default", "SectionFaqFonts", "o1EnKqu5D_default", "Button1Fonts", "kORP1qm2A_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "animation", "transition1", "textEffect", "textEffect1", "textEffect2", "animation1", "transition2", "animation2", "textEffect3", "animation3", "transition3", "animation4", "textEffect4", "transition4", "animation5", "transition5", "animation6", "transition6", "animation7", "transition7", "animation8", "transition8", "transition9", "transition10", "animation9", "animation10", "transition11", "animation11", "animation12", "transition12", "textEffect5", "animation13", "transition13", "addImageAlt", "image", "alt", "transition14", "transition15", "transition16", "transition17", "transition18", "transition19", "transition20", "formVariants", "form", "variants", "currentVariant", "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", "isDisplayed", "router", "useRouter", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "elementId2", "ref3", "elementId3", "ref4", "elementId4", "ref5", "elementId5", "ref6", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "RichText2", "x", "Image2", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "PropertyOverrides2", "resolvedLinks1", "FormContainer", "formState", "l", "FormPlainTextInput2", "css", "FramerHUwiUU0KQ", "withCSS", "HUwiUU0KQ_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
