{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js", "ssg:https://framerusercontent.com/modules/hIdSwiSrC4pIVbKJcy31/KHDjzB1UZSUG6RDsXGQS/L9Bb1QnHm.js", "ssg:https://framerusercontent.com/modules/hffJdVqcl5A0gnNhyy7q/2w2v3XEiYMBGCl4YlNdg/wLUGNS0FC.js", "ssg:https://framerusercontent.com/modules/J0trRXeoGtTmpFQ0vEtZ/skDF4e2fVedlvXTNBJxf/Z_17ewhnE.js", "ssg:https://framerusercontent.com/modules/7Hk3QvmtjkMXpoveLeCi/fUMoVg1U22jwK5lbmVbH/H3uuqy22O.js", "ssg:https://framerusercontent.com/modules/qqE0gYKVJWnx6LR48fwT/JkvukorL8xkoRLn3SrAO/kCEoWPh44.js", "ssg:https://framerusercontent.com/modules/Sn20CbBqfCRVa0Jb4Cit/4RTbjBtxzaiHOaWNv7Fk/seVQaMYbs.js", "ssg:https://framerusercontent.com/modules/WywzTfRqPigDVjzs5Lr7/evTzUHQrFxFrje9U2dwT/xMFtjobLI.js", "ssg:https://framerusercontent.com/modules/fRVwMA8vdGXfUkjffEjG/dASTwAsHMMmBt9R4SyO4/Xjh51IA16.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{motion}from\"framer-motion\";var IconType;(function(IconType){IconType[\"Default\"]=\"Default\";IconType[\"Custom\"]=\"Custom\";})(IconType||(IconType={}));var SrcType;(function(SrcType){SrcType[\"Upload\"]=\"Upload\";SrcType[\"URL\"]=\"URL\";})(SrcType||(SrcType={}));// Check for the Search Index Meta Tag\n// Currently the only way to differenciate between Preview & Publish\nconst metaTagSelector='meta[name=\"framer-search-index\"]';// We can hopefully remove this check when new Preview ships\nfunction isPublishedSiteOrSSG(){if(typeof document===\"undefined\")return true;const metaTag=document.querySelector(metaTagSelector);return!!metaTag;}/**\n *\n * DOWNLOAD\n * By Hunter\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 100\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */ export default function Download(props){const{styleOptions,hoverOptions,iconOptions}=props;const{backgroundColor,color,borderRadius,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,gap}=styleOptions;const isInPublishedSiteOrSSG=isPublishedSiteOrSSG();let downloadURL=undefined;if(isInPublishedSiteOrSSG){if(props.srcType===SrcType.URL)downloadURL=props.srcURL;if(props.srcType===SrcType.Upload)downloadURL=props.srcFile;}const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;const getIcon=()=>{var ref,ref1;if(!iconOptions)return;const iconStyle={order:iconOptions.alignment===\"start\"?0:2,flexShrink:0};return iconOptions.type===IconType.Custom&&!!((ref=iconOptions.image)===null||ref===void 0?void 0:ref.src)?/*#__PURE__*/ _jsx(\"img\",{style:iconStyle,alt:((ref1=iconOptions.image)===null||ref1===void 0?void 0:ref1.alt)&&iconOptions.image.alt.length>0?iconOptions.image.alt:\"download icon\",src:iconOptions.image.src,width:iconOptions.size,height:iconOptions.size}):/*#__PURE__*/ _jsx(\"svg\",{style:iconStyle,xmlns:\"http://www.w3.org/2000/svg\",width:iconOptions.size,height:iconOptions.size,fill:iconOptions.color,viewBox:\"0 0 256 256\",children:/*#__PURE__*/ _jsx(\"path\",{d:\"M228 152v56a20 20 0 0 1-20 20H48a20 20 0 0 1-20-20v-56a12 12 0 0 1 24 0v52h152v-52a12 12 0 0 1 24 0Zm-108.49 8.49a12 12 0 0 0 17 0l40-40a12 12 0 0 0-17-17L140 123V40a12 12 0 0 0-24 0v83l-19.51-19.49a12 12 0 0 0-17 17Z\"})});};const getCursor=()=>{if(props.srcType===SrcType.URL&&props.srcURL)return\"pointer\";if(props.srcType===SrcType.Upload&&props.srcFile)return\"pointer\";return\"auto\";};const buttonTitle=isInPublishedSiteOrSSG?\"Download File\":\"Publish to Download\";return /*#__PURE__*/ _jsxs(motion.a,{target:\"_blank\",href:downloadURL,download:true,title:buttonTitle,style:{gap,fontSize:16,lineHeight:1,fontFamily:\"Inter\",fontWeight:500,width:\"max-content\",...props.style,...buttonStyles,...props.fontControl,padding:paddingValue,color:color,backgroundColor:backgroundColor,borderRadius:borderRadius,userSelect:\"none\",placeContent:flexAlignSwitch(props.fontControl),whiteSpace:\"nowrap\",cursor:getCursor()},whileHover:hoverOptions,transition:hoverOptions===null||hoverOptions===void 0?void 0:hoverOptions.transition,children:[getIcon(),props.text]});};Download.displayName=\"Download\";addPropertyControls(Download,{text:{title:\"Text\",type:ControlType.String,defaultValue:\"Download\"},srcType:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Source\",options:[SrcType.Upload,SrcType.URL]},srcURL:{type:ControlType.String,title:\" \",placeholder:\"../example.pdf\",hidden:props=>props.srcType===SrcType.Upload},srcFile:{type:ControlType.File,title:\" \",allowedFileTypes:[],hidden:props=>props.srcType===SrcType.URL},fontControl:{// @ts-ignore - Internal\ntype:ControlType.Font,title:\"Font\",controls:\"extended\"},iconOptions:{type:ControlType.Object,optional:true,title:\"Icon\",buttonTitle:\"Size, Color\",controls:{type:{title:\"Type\",type:ControlType.Enum,options:Object.values(IconType),optionTitles:Object.values(IconType),displaySegmentedControl:true},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#FFF\",hidden:props=>props.type===IconType.Custom},image:{title:\"File\",type:ControlType.ResponsiveImage,allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type===IconType.Default},size:{type:ControlType.Number,displayStepper:true,min:5,defaultValue:16,max:250},alignment:{title:\"Align\",type:ControlType.Enum,displaySegmentedControl:true,options:[\"start\",\"end\"],optionTitles:[\"Start\",\"End\"]}}},styleOptions:{type:ControlType.Object,title:\"Styles\",buttonTitle:\"Button, Font\",controls:{backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#111\"},color:{type:ControlType.Color,defaultValue:\"#FFF\"},borderRadius:{type:ControlType.Number,title:\"Radius\",displayStepper:true,defaultValue:50},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],defaultValue:10,valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},gap:{title:\"Gap\",type:ControlType.Number,displayStepper:true,defaultValue:5}}},hoverOptions:{type:ControlType.Object,title:\"Hover\",buttonTitle:\"Effect\",optional:true,controls:{scale:{type:ControlType.Number,title:\"Scale\",min:0,max:10,displayStepper:true,step:.01,defaultValue:1.1},backgroundColor:{type:ControlType.Color,title:\"Fill\",defaultValue:\"#333\",optional:true},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\",optional:true},transition:{type:ControlType.Transition,title:\"Transition\",defaultValue:{type:\"spring\",stiffness:400,damping:30}}}}});const buttonStyles={display:\"flex\",placeItems:\"center\",placeContent:\"center\",textDecoration:\"none\"};/* Match flex content alignment with text align */ const flexAlignSwitch=fontControlStyles=>{if(!(fontControlStyles===null||fontControlStyles===void 0?void 0:fontControlStyles.textAlign)){return\"left\";}if(fontControlStyles.textAlign===\"left\"){return\"flex-start\";}if(fontControlStyles.textAlign===\"right\"){return\"flex-end\";}return\"center\";};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Download\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"100\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerIntrinsicWidth\":\"200\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Download.map", "// Generated by Framer (0f540f8)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-light\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/R46SR2KWPHAT6QKQ5J22GMKGX57ZRVAR/Z5WLPW3IGEZJHN5HBLPCBJIK6QBBSHX6/2W7RU2QRQHEAEGUDZDHBPHR6WI27JNIQ.woff2\",weight:\"300\"},{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:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",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/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-MYVDM .framer-styles-preset-fv9qrc:not(.rich-text-wrapper), .framer-MYVDM .framer-styles-preset-fv9qrc.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-weight: 300; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: left; --framer-text-color: var(--token-d022ccf3-1b87-4983-9538-c066eb7660cc, #f28b31); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-MYVDM\";\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 (0f540f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Image,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/hIdSwiSrC4pIVbKJcy31/KHDjzB1UZSUG6RDsXGQS/L9Bb1QnHm.js\";const cycleOrder=[\"Ai7MTlZCW\",\"ctZUU7BcM\",\"rOFWtMVAC\",\"q4YUtkjrk\",\"Z1GXge9KB\",\"WXFAhiGT5\",\"mg8LPUHF0\",\"P3AfFLf1i\",\"IuKmW0OZX\",\"Kmzl2uKLV\"];const serializationHash=\"framer-W9bTV\";const variantClassNames={Ai7MTlZCW:\"framer-v-1oovlf5\",ctZUU7BcM:\"framer-v-15j02od\",IuKmW0OZX:\"framer-v-1w7g4u2\",Kmzl2uKLV:\"framer-v-yn8jbc\",mg8LPUHF0:\"framer-v-1mihznn\",P3AfFLf1i:\"framer-v-bhx690\",q4YUtkjrk:\"framer-v-1w32urp\",rOFWtMVAC:\"framer-v-zuaky8\",WXFAhiGT5:\"framer-v-88o1ki\",Z1GXge9KB:\"framer-v-1t2nb4\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:300,type:\"spring\"};const transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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 toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const Variants=motion(React.Fragment);const humanReadableVariantMap={\"Info-mobile\":\"mg8LPUHF0\",\"Research-mobile\":\"WXFAhiGT5\",\"Usability-mobile\":\"IuKmW0OZX\",\"Visual Design\":\"Z1GXge9KB\",\"Visual-mobile\":\"Kmzl2uKLV\",\"Wireframe-mobile\":\"P3AfFLf1i\",Information:\"ctZUU7BcM\",Research:\"Ai7MTlZCW\",Usability:\"q4YUtkjrk\",Wireframing:\"rOFWtMVAC\"};const getProps=({height,id,processImage1,processImage2,processImage3,processImage4,processImage5,processTitle1,processTitle2,processTitle3,processTitle4,processTitle5,procesText1,procesText2,procesText3,procesText4,procesText5,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4,_ref5,_ref6,_ref7,_ref8,_humanReadableVariantMap_props_variant,_ref9,_ref10;return{...props,BcnUyeihS:(_ref=procesText4!==null&&procesText4!==void 0?procesText4:props.BcnUyeihS)!==null&&_ref!==void 0?_ref:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",cgDS64hCX:(_ref1=procesText3!==null&&procesText3!==void 0?procesText3:props.cgDS64hCX)!==null&&_ref1!==void 0?_ref1:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",cRRK_775_:processImage2!==null&&processImage2!==void 0?processImage2:props.cRRK_775_,dCCJdLsOM:processImage3!==null&&processImage3!==void 0?processImage3:props.dCCJdLsOM,eSL0lgktg:(_ref2=processTitle1!==null&&processTitle1!==void 0?processTitle1:props.eSL0lgktg)!==null&&_ref2!==void 0?_ref2:\"Research & Analysis Research & AnalysisResearch & Analysis\",fPl3BmIwy:(_ref3=procesText2!==null&&procesText2!==void 0?procesText2:props.fPl3BmIwy)!==null&&_ref3!==void 0?_ref3:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",IVnRTc7KI:(_ref4=procesText5!==null&&procesText5!==void 0?procesText5:props.IVnRTc7KI)!==null&&_ref4!==void 0?_ref4:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",JCwBi0FYK:(_ref5=processTitle2!==null&&processTitle2!==void 0?processTitle2:props.JCwBi0FYK)!==null&&_ref5!==void 0?_ref5:\"Information Architecture\",K5uyYWJJv:processImage5!==null&&processImage5!==void 0?processImage5:props.K5uyYWJJv,mWwv3JDPk:(_ref6=procesText1!==null&&procesText1!==void 0?procesText1:props.mWwv3JDPk)!==null&&_ref6!==void 0?_ref6:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",nig0yTMcF:(_ref7=processTitle5!==null&&processTitle5!==void 0?processTitle5:props.nig0yTMcF)!==null&&_ref7!==void 0?_ref7:\"Information Architecture\",pSH7A2qfN:(_ref8=processTitle3!==null&&processTitle3!==void 0?processTitle3:props.pSH7A2qfN)!==null&&_ref8!==void 0?_ref8:\"Information Architecture\",RXtMoQsvM:processImage4!==null&&processImage4!==void 0?processImage4:props.RXtMoQsvM,variant:(_ref9=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref9!==void 0?_ref9:\"Ai7MTlZCW\",xXLS9zKYy:processImage1!==null&&processImage1!==void 0?processImage1:props.xXLS9zKYy,ZH5kz8Jrg:(_ref10=processTitle4!==null&&processTitle4!==void 0?processTitle4:props.ZH5kz8Jrg)!==null&&_ref10!==void 0?_ref10:\"Information Architecture\"};};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,eSL0lgktg,JCwBi0FYK,pSH7A2qfN,ZH5kz8Jrg,nig0yTMcF,mWwv3JDPk,fPl3BmIwy,cgDS64hCX,BcnUyeihS,IVnRTc7KI,xXLS9zKYy,cRRK_775_,dCCJdLsOM,RXtMoQsvM,K5uyYWJJv,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"Ai7MTlZCW\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter13n737y=activeVariantCallback(async(...args)=>{setVariant(\"Ai7MTlZCW\");});const onTapj3fwml=activeVariantCallback(async(...args)=>{setVariant(\"WXFAhiGT5\");});const onMouseEnterdjent6=activeVariantCallback(async(...args)=>{setVariant(\"ctZUU7BcM\");});const onTapowu50m=activeVariantCallback(async(...args)=>{setVariant(\"mg8LPUHF0\");});const onMouseEnter1nb0uzk=activeVariantCallback(async(...args)=>{setVariant(\"rOFWtMVAC\");});const onTaposuqr9=activeVariantCallback(async(...args)=>{setVariant(\"P3AfFLf1i\");});const onMouseEnter1bfjirn=activeVariantCallback(async(...args)=>{setVariant(\"q4YUtkjrk\");});const onTapctge6s=activeVariantCallback(async(...args)=>{setVariant(\"IuKmW0OZX\");});const onMouseEnter6dyf07=activeVariantCallback(async(...args)=>{setVariant(\"Z1GXge9KB\");});const onTap548fne=activeVariantCallback(async(...args)=>{setVariant(\"Kmzl2uKLV\");});const ref1=React.useRef(null);const isDisplayed=()=>{if([\"WXFAhiGT5\",\"mg8LPUHF0\",\"P3AfFLf1i\",\"IuKmW0OZX\",\"Kmzl2uKLV\"].includes(baseVariant))return false;return true;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1oovlf5\",className,classNames),\"data-framer-name\":\"Research\",layoutDependency:layoutDependency,layoutId:\"Ai7MTlZCW\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({ctZUU7BcM:{\"data-framer-name\":\"Information\"},IuKmW0OZX:{\"data-framer-name\":\"Usability-mobile\"},Kmzl2uKLV:{\"data-framer-name\":\"Visual-mobile\"},mg8LPUHF0:{\"data-framer-name\":\"Info-mobile\"},P3AfFLf1i:{\"data-framer-name\":\"Wireframe-mobile\"},q4YUtkjrk:{\"data-framer-name\":\"Usability\"},rOFWtMVAC:{\"data-framer-name\":\"Wireframing\"},WXFAhiGT5:{\"data-framer-name\":\"Research-mobile\"},Z1GXge9KB:{\"data-framer-name\":\"Visual Design\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-x9say4\",\"data-framer-name\":\"txt\",layoutDependency:layoutDependency,layoutId:\"RvWtgK6R0\",children:[/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1xg1cry\",\"data-framer-name\":\"research\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"WIcBT8RDP\",onMouseEnter:onMouseEnter13n737y,style:{borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({IuKmW0OZX:{onMouseEnter:undefined,onTap:onTapj3fwml},Kmzl2uKLV:{onMouseEnter:undefined,onTap:onTapj3fwml},mg8LPUHF0:{onMouseEnter:undefined,onTap:onTapj3fwml},P3AfFLf1i:{onMouseEnter:undefined,onTap:onTapj3fwml},WXFAhiGT5:{onMouseEnter:undefined,onTap:onTapj3fwml}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1d91mkd\",\"data-framer-name\":\"heading\",layoutDependency:layoutDependency,layoutId:\"df9DY870q\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-bnopnv\",\"data-framer-name\":\"head-txt\",layoutDependency:layoutDependency,layoutId:\"KyTsvj60F\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fv9qrc\",\"data-styles-preset\":\"L9Bb1QnHm\",children:\"01 \"})}),className:\"framer-1rlkc5m\",\"data-framer-name\":\"01 Research & Analysis\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"mYXV6_svR\",style:{opacity:.75},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Research & Analysis\"})}),className:\"framer-1xx4yxi\",\"data-framer-name\":\"01 Research & Analysis\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"g4i4o0OFK\",style:{\"--extracted-1lwpl3i\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},text:eSL0lgktg,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IuKmW0OZX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Research & Analysis Research & AnalysisResearch & Analysis\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},Kmzl2uKLV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Research & Analysis Research & AnalysisResearch & Analysis\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},mg8LPUHF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Research & Analysis Research & AnalysisResearch & Analysis\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},P3AfFLf1i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Research & Analysis Research & AnalysisResearch & Analysis\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},WXFAhiGT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Research & Analysis Research & AnalysisResearch & Analysis\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112)))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),className:\"framer-agbxnp\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"XJ8v9UWWm\",style:{\"--extracted-r6o4lv\":\"var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112))\",opacity:1},text:mWwv3JDPk,variants:{ctZUU7BcM:{opacity:0},IuKmW0OZX:{opacity:0},Kmzl2uKLV:{opacity:0},mg8LPUHF0:{opacity:0},P3AfFLf1i:{opacity:0},q4YUtkjrk:{opacity:0},rOFWtMVAC:{opacity:0},Z1GXge9KB:{opacity:0}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({WXFAhiGT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112)))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})})}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1pekcpn\",\"data-framer-name\":\"info\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"RYCgC5Yjw\",onMouseEnter:onMouseEnterdjent6,...addPropertyOverrides({IuKmW0OZX:{onMouseEnter:undefined,onTap:onTapowu50m},Kmzl2uKLV:{onMouseEnter:undefined,onTap:onTapowu50m},mg8LPUHF0:{onMouseEnter:undefined,onTap:onTapowu50m},P3AfFLf1i:{onMouseEnter:undefined,onTap:onTapowu50m},WXFAhiGT5:{onMouseEnter:undefined,onTap:onTapowu50m}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hb2iu3\",\"data-framer-name\":\"heading\",layoutDependency:layoutDependency,layoutId:\"JdrOijbib\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ulvvhd\",\"data-framer-name\":\"head-txt\",layoutDependency:layoutDependency,layoutId:\"yIgBnJnRu\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fv9qrc\",\"data-styles-preset\":\"L9Bb1QnHm\",children:\"02\"})}),className:\"framer-1xedoa9\",\"data-framer-name\":\"02 Information Architecture\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BE3_HqBXB\",style:{opacity:.75},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),className:\"framer-e1u1o6\",\"data-framer-name\":\"02 Information Architecture\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"qsST17Ian\",style:{\"--extracted-1lwpl3i\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},text:JCwBi0FYK,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IuKmW0OZX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},Kmzl2uKLV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},mg8LPUHF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},P3AfFLf1i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},WXFAhiGT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),className:\"framer-p64tdo\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"rFf7EXRaT\",style:{\"--extracted-r6o4lv\":\"rgb(92, 100, 112)\",opacity:0},variants:{ctZUU7BcM:{\"--extracted-r6o4lv\":\"var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112))\",opacity:1},mg8LPUHF0:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({ctZUU7BcM:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112)))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),text:fPl3BmIwy},mg8LPUHF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})})}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1llg6lf\",\"data-framer-name\":\"wireframing\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"E3u6F_Zr5\",onMouseEnter:onMouseEnter1nb0uzk,...addPropertyOverrides({IuKmW0OZX:{onMouseEnter:undefined,onTap:onTaposuqr9},Kmzl2uKLV:{onMouseEnter:undefined,onTap:onTaposuqr9},mg8LPUHF0:{onMouseEnter:undefined,onTap:onTaposuqr9},P3AfFLf1i:{onMouseEnter:undefined,onTap:onTaposuqr9},WXFAhiGT5:{onMouseEnter:undefined,onTap:onTaposuqr9}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1fisliq\",\"data-framer-name\":\"heading\",layoutDependency:layoutDependency,layoutId:\"HM_tOrK_C\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1cdhn0o\",\"data-framer-name\":\"head-txt\",layoutDependency:layoutDependency,layoutId:\"z3oijh1Mq\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fv9qrc\",\"data-styles-preset\":\"L9Bb1QnHm\",children:\"03\"})}),className:\"framer-n1gqnn\",\"data-framer-name\":\"03\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"ee22aKC4L\",style:{opacity:.75},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Wireframing & Prototyping\"})}),className:\"framer-y3xawv\",\"data-framer-name\":\"Wireframing & Prototyping\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"iC0j9MF79\",style:{\"--extracted-1lwpl3i\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},text:pSH7A2qfN,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IuKmW0OZX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},Kmzl2uKLV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},mg8LPUHF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},P3AfFLf1i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},WXFAhiGT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),className:\"framer-1j7htrj\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"o9W2M8a3C\",style:{\"--extracted-r6o4lv\":\"rgb(92, 100, 112)\",opacity:0},variants:{P3AfFLf1i:{opacity:1},rOFWtMVAC:{\"--extracted-r6o4lv\":\"var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({P3AfFLf1i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})})},rOFWtMVAC:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112)))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),text:cgDS64hCX}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-iskkh8\",\"data-framer-name\":\"usability\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"fd9gY108V\",onMouseEnter:onMouseEnter1bfjirn,...addPropertyOverrides({IuKmW0OZX:{onMouseEnter:undefined,onTap:onTapctge6s},Kmzl2uKLV:{onMouseEnter:undefined,onTap:onTapctge6s},mg8LPUHF0:{onMouseEnter:undefined,onTap:onTapctge6s},P3AfFLf1i:{onMouseEnter:undefined,onTap:onTapctge6s},WXFAhiGT5:{onMouseEnter:undefined,onTap:onTapctge6s}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-n679uu\",\"data-framer-name\":\"heading\",layoutDependency:layoutDependency,layoutId:\"h8OWeKzZU\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-g8095d\",\"data-framer-name\":\"head-txt\",layoutDependency:layoutDependency,layoutId:\"Mk8dzWKlb\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fv9qrc\",\"data-styles-preset\":\"L9Bb1QnHm\",children:\"04\"})}),className:\"framer-4wilye\",\"data-framer-name\":\"04 Usability Testing\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"r2jBahfLm\",style:{opacity:.75},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Usability Testing\"})}),className:\"framer-t91uch\",\"data-framer-name\":\"04 Usability Testing\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"r6FaonHwp\",style:{\"--extracted-1lwpl3i\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},text:ZH5kz8Jrg,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IuKmW0OZX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},Kmzl2uKLV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},mg8LPUHF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},P3AfFLf1i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},WXFAhiGT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),className:\"framer-zdg0m4\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"yV3MtuWyK\",style:{\"--extracted-r6o4lv\":\"rgb(92, 100, 112)\",opacity:0},variants:{IuKmW0OZX:{opacity:1},q4YUtkjrk:{\"--extracted-r6o4lv\":\"var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112))\",opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IuKmW0OZX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})})},q4YUtkjrk:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-b16a7865-924d-449a-9a9b-b11ba99dad5b, rgb(92, 100, 112)))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),text:BcnUyeihS}},baseVariant,gestureVariant)})})]})}),/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1x2zgr0\",\"data-framer-name\":\"Visual\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"MqdZqbQph\",onMouseEnter:onMouseEnter6dyf07,style:{borderBottomLeftRadius:24,borderBottomRightRadius:24},...addPropertyOverrides({IuKmW0OZX:{onMouseEnter:undefined,onTap:onTap548fne},Kmzl2uKLV:{onMouseEnter:undefined,onTap:onTap548fne},mg8LPUHF0:{onMouseEnter:undefined,onTap:onTap548fne},P3AfFLf1i:{onMouseEnter:undefined,onTap:onTap548fne},WXFAhiGT5:{onMouseEnter:undefined,onTap:onTap548fne}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-bcipi5\",\"data-framer-name\":\"heading\",layoutDependency:layoutDependency,layoutId:\"x37nzEv_F\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1whm9hq\",\"data-framer-name\":\"head-txt\",layoutDependency:layoutDependency,layoutId:\"ZmeqOfzxG\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-fv9qrc\",\"data-styles-preset\":\"L9Bb1QnHm\",children:\"05\"})}),className:\"framer-1gvz2hi\",\"data-framer-name\":\"05 Visual Design & Style Guide\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"BWX_u372L\",style:{opacity:.75},verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"R0Y7SW5zdHJ1bWVudCBTYW5zLXJlZ3VsYXI=\",\"--framer-font-family\":'\"Instrument Sans\", \"Instrument Sans Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Visual Design & Style Guide\"})}),className:\"framer-18f20n3\",\"data-framer-name\":\"05 Visual Design & Style Guide\",fonts:[\"GF;Instrument Sans-regular\"],layoutDependency:layoutDependency,layoutId:\"cqbfzECsO\",style:{\"--extracted-1lwpl3i\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},text:nig0yTMcF,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({IuKmW0OZX:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},Kmzl2uKLV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},mg8LPUHF0:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},P3AfFLf1i:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"},WXFAhiGT5:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"-0.02px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Information Architecture\"})}),fonts:[\"FS;Manrope-regular\"],verticalAlignment:\"center\"}},baseVariant,gestureVariant)})]})}),/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"20px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})}),className:\"framer-d0jxgc\",\"data-framer-name\":\"Almost before we kne\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"yXx8_6E5f\",style:{\"--extracted-r6o4lv\":\"rgb(92, 100, 112)\",opacity:0},variants:{Kmzl2uKLV:{opacity:1},Z1GXge9KB:{opacity:1}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({Kmzl2uKLV:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"150%\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(92, 100, 112))\"},children:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\"})})},Z1GXge9KB:{text:IVnRTc7KI}},baseVariant,gestureVariant)})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1dyjim\",\"data-framer-name\":\"images\",layoutDependency:layoutDependency,layoutId:\"nWIGC8M7q\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3600,intrinsicWidth:2400,pixelHeight:3600,pixelWidth:2400,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(xXLS9zKYy),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1gkw5j2\",\"data-framer-name\":\"image\",layoutDependency:layoutDependency,layoutId:\"ZKpPGmdDT\",style:{borderBottomLeftRadius:24,borderBottomRightRadius:24,borderTopLeftRadius:24,borderTopRightRadius:24},...addPropertyOverrides({ctZUU7BcM:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:2400,intrinsicWidth:3600,pixelHeight:2400,pixelWidth:3600,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(cRRK_775_),...{positionX:\"center\",positionY:\"center\"}}},q4YUtkjrk:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3648,intrinsicWidth:5472,pixelHeight:3648,pixelWidth:5472,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(RXtMoQsvM),...{positionX:\"center\",positionY:\"center\"}}},rOFWtMVAC:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:4e3,intrinsicWidth:4e3,pixelHeight:4e3,pixelWidth:4e3,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(dCCJdLsOM),...{positionX:\"center\",positionY:\"center\"}}},Z1GXge9KB:{background:{alt:\"\",fit:\"fit\",intrinsicHeight:3744,intrinsicWidth:4238,pixelHeight:3744,pixelWidth:4238,sizes:(componentViewport===null||componentViewport===void 0?void 0:componentViewport.width)||\"100vw\",...toResponsiveImage(K5uyYWJJv),...{positionX:\"center\",positionY:\"center\"}}}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-W9bTV.framer-1hc4cn0, .framer-W9bTV .framer-1hc4cn0 { display: block; }\",\".framer-W9bTV.framer-1oovlf5 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1060px; }\",\".framer-W9bTV .framer-x9say4 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W9bTV .framer-1xg1cry { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 20px 20px 30px 20px; position: relative; width: 100%; }\",\".framer-W9bTV .framer-1d91mkd, .framer-W9bTV .framer-1hb2iu3, .framer-W9bTV .framer-n679uu { 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-W9bTV .framer-bnopnv { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W9bTV .framer-1rlkc5m, .framer-W9bTV .framer-1xedoa9, .framer-W9bTV .framer-n1gqnn, .framer-W9bTV .framer-4wilye, .framer-W9bTV .framer-1gvz2hi { flex: none; height: 39px; position: relative; white-space: pre; width: auto; }\",\".framer-W9bTV .framer-1xx4yxi, .framer-W9bTV .framer-e1u1o6, .framer-W9bTV .framer-y3xawv, .framer-W9bTV .framer-t91uch, .framer-W9bTV .framer-18f20n3 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-W9bTV .framer-agbxnp { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-W9bTV .framer-1pekcpn, .framer-W9bTV .framer-1llg6lf, .framer-W9bTV .framer-iskkh8, .framer-W9bTV .framer-1x2zgr0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 100%; }\",\".framer-W9bTV .framer-1ulvvhd, .framer-W9bTV .framer-1cdhn0o, .framer-W9bTV .framer-g8095d, .framer-W9bTV .framer-1whm9hq { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W9bTV .framer-p64tdo, .framer-W9bTV .framer-1j7htrj, .framer-W9bTV .framer-zdg0m4, .framer-W9bTV .framer-d0jxgc { bottom: -120px; flex: none; height: auto; left: 20px; overflow: hidden; position: absolute; right: 20px; white-space: pre-wrap; word-break: break-word; word-wrap: break-word; }\",\".framer-W9bTV .framer-1fisliq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W9bTV .framer-bcipi5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-W9bTV .framer-1dyjim { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: auto; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-W9bTV .framer-1gkw5j2 { flex: 1 0 0px; height: 1px; position: relative; width: 100%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9bTV.framer-1oovlf5, .framer-W9bTV .framer-x9say4, .framer-W9bTV .framer-1xg1cry, .framer-W9bTV .framer-1d91mkd, .framer-W9bTV .framer-bnopnv, .framer-W9bTV .framer-1pekcpn, .framer-W9bTV .framer-1hb2iu3, .framer-W9bTV .framer-1ulvvhd, .framer-W9bTV .framer-1llg6lf, .framer-W9bTV .framer-1fisliq, .framer-W9bTV .framer-1cdhn0o, .framer-W9bTV .framer-iskkh8, .framer-W9bTV .framer-n679uu, .framer-W9bTV .framer-g8095d, .framer-W9bTV .framer-1x2zgr0, .framer-W9bTV .framer-bcipi5, .framer-W9bTV .framer-1whm9hq, .framer-W9bTV .framer-1dyjim { gap: 0px; } .framer-W9bTV.framer-1oovlf5 > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-W9bTV.framer-1oovlf5 > :first-child, .framer-W9bTV .framer-1d91mkd > :first-child, .framer-W9bTV .framer-bnopnv > :first-child, .framer-W9bTV .framer-1hb2iu3 > :first-child, .framer-W9bTV .framer-1ulvvhd > :first-child, .framer-W9bTV .framer-1fisliq > :first-child, .framer-W9bTV .framer-1cdhn0o > :first-child, .framer-W9bTV .framer-n679uu > :first-child, .framer-W9bTV .framer-g8095d > :first-child, .framer-W9bTV .framer-bcipi5 > :first-child, .framer-W9bTV .framer-1whm9hq > :first-child { margin-left: 0px; } .framer-W9bTV.framer-1oovlf5 > :last-child, .framer-W9bTV .framer-1d91mkd > :last-child, .framer-W9bTV .framer-bnopnv > :last-child, .framer-W9bTV .framer-1hb2iu3 > :last-child, .framer-W9bTV .framer-1ulvvhd > :last-child, .framer-W9bTV .framer-1fisliq > :last-child, .framer-W9bTV .framer-1cdhn0o > :last-child, .framer-W9bTV .framer-n679uu > :last-child, .framer-W9bTV .framer-g8095d > :last-child, .framer-W9bTV .framer-bcipi5 > :last-child, .framer-W9bTV .framer-1whm9hq > :last-child { margin-right: 0px; } .framer-W9bTV .framer-x9say4 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-W9bTV .framer-x9say4 > :first-child, .framer-W9bTV .framer-1xg1cry > :first-child, .framer-W9bTV .framer-1pekcpn > :first-child, .framer-W9bTV .framer-1llg6lf > :first-child, .framer-W9bTV .framer-iskkh8 > :first-child, .framer-W9bTV .framer-1x2zgr0 > :first-child, .framer-W9bTV .framer-1dyjim > :first-child { margin-top: 0px; } .framer-W9bTV .framer-x9say4 > :last-child, .framer-W9bTV .framer-1xg1cry > :last-child, .framer-W9bTV .framer-1pekcpn > :last-child, .framer-W9bTV .framer-1llg6lf > :last-child, .framer-W9bTV .framer-iskkh8 > :last-child, .framer-W9bTV .framer-1x2zgr0 > :last-child, .framer-W9bTV .framer-1dyjim > :last-child { margin-bottom: 0px; } .framer-W9bTV .framer-1xg1cry > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-W9bTV .framer-1d91mkd > *, .framer-W9bTV .framer-1hb2iu3 > *, .framer-W9bTV .framer-1ulvvhd > *, .framer-W9bTV .framer-1fisliq > *, .framer-W9bTV .framer-1cdhn0o > *, .framer-W9bTV .framer-n679uu > *, .framer-W9bTV .framer-g8095d > *, .framer-W9bTV .framer-bcipi5 > *, .framer-W9bTV .framer-1whm9hq > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-W9bTV .framer-bnopnv > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-W9bTV .framer-1pekcpn > *, .framer-W9bTV .framer-1llg6lf > *, .framer-W9bTV .framer-iskkh8 > *, .framer-W9bTV .framer-1x2zgr0 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-W9bTV .framer-1dyjim > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } }\",\".framer-W9bTV.framer-v-15j02od .framer-agbxnp { bottom: -120px; left: 20px; overflow: hidden; position: absolute; right: 20px; width: unset; }\",\".framer-W9bTV.framer-v-15j02od .framer-1pekcpn { padding: 20px 20px 30px 20px; }\",\".framer-W9bTV.framer-v-15j02od .framer-p64tdo, .framer-W9bTV.framer-v-zuaky8 .framer-1j7htrj, .framer-W9bTV.framer-v-1w32urp .framer-zdg0m4, .framer-W9bTV.framer-v-1t2nb4 .framer-d0jxgc { bottom: unset; left: unset; position: relative; right: unset; width: 474px; }\",\".framer-W9bTV.framer-v-zuaky8 .framer-agbxnp, .framer-W9bTV.framer-v-1w32urp .framer-agbxnp, .framer-W9bTV.framer-v-1t2nb4 .framer-agbxnp { bottom: -120px; left: 20px; position: absolute; right: 20px; width: unset; }\",\".framer-W9bTV.framer-v-zuaky8 .framer-p64tdo { bottom: unset; top: 79px; z-index: 1; }\",\".framer-W9bTV.framer-v-zuaky8 .framer-zdg0m4, .framer-W9bTV.framer-v-zuaky8 .framer-d0jxgc { z-index: 1; }\",\".framer-W9bTV.framer-v-1w32urp .framer-1j7htrj, .framer-W9bTV.framer-v-1mihznn .framer-1j7htrj, .framer-W9bTV.framer-v-1w7g4u2 .framer-1j7htrj { bottom: unset; top: 80px; }\",\".framer-W9bTV.framer-v-88o1ki.framer-1oovlf5 { flex-direction: column; gap: 48px; width: 650px; }\",\".framer-W9bTV.framer-v-88o1ki .framer-x9say4, .framer-W9bTV.framer-v-1mihznn .framer-x9say4, .framer-W9bTV.framer-v-bhx690 .framer-x9say4, .framer-W9bTV.framer-v-1w7g4u2 .framer-x9say4, .framer-W9bTV.framer-v-yn8jbc .framer-x9say4 { flex: none; width: 100%; }\",\".framer-W9bTV.framer-v-88o1ki .framer-1xg1cry, .framer-W9bTV.framer-v-88o1ki .framer-1pekcpn, .framer-W9bTV.framer-v-88o1ki .framer-1llg6lf, .framer-W9bTV.framer-v-88o1ki .framer-iskkh8, .framer-W9bTV.framer-v-88o1ki .framer-1x2zgr0, .framer-W9bTV.framer-v-1mihznn .framer-1xg1cry, .framer-W9bTV.framer-v-1mihznn .framer-1pekcpn, .framer-W9bTV.framer-v-1mihznn .framer-1llg6lf, .framer-W9bTV.framer-v-1mihznn .framer-iskkh8, .framer-W9bTV.framer-v-1mihznn .framer-1x2zgr0, .framer-W9bTV.framer-v-bhx690 .framer-1xg1cry, .framer-W9bTV.framer-v-bhx690 .framer-1pekcpn, .framer-W9bTV.framer-v-bhx690 .framer-1llg6lf, .framer-W9bTV.framer-v-bhx690 .framer-iskkh8, .framer-W9bTV.framer-v-bhx690 .framer-1x2zgr0, .framer-W9bTV.framer-v-1w7g4u2 .framer-1xg1cry, .framer-W9bTV.framer-v-1w7g4u2 .framer-1pekcpn, .framer-W9bTV.framer-v-1w7g4u2 .framer-1llg6lf, .framer-W9bTV.framer-v-1w7g4u2 .framer-iskkh8, .framer-W9bTV.framer-v-1w7g4u2 .framer-1x2zgr0, .framer-W9bTV.framer-v-yn8jbc .framer-1xg1cry, .framer-W9bTV.framer-v-yn8jbc .framer-1pekcpn, .framer-W9bTV.framer-v-yn8jbc .framer-1llg6lf, .framer-W9bTV.framer-v-yn8jbc .framer-iskkh8, .framer-W9bTV.framer-v-yn8jbc .framer-1x2zgr0 { cursor: pointer; }\",\".framer-W9bTV.framer-v-88o1ki .framer-bnopnv, .framer-W9bTV.framer-v-88o1ki .framer-1ulvvhd, .framer-W9bTV.framer-v-88o1ki .framer-1cdhn0o, .framer-W9bTV.framer-v-88o1ki .framer-g8095d, .framer-W9bTV.framer-v-1mihznn .framer-1cdhn0o, .framer-W9bTV.framer-v-1mihznn .framer-g8095d, .framer-W9bTV.framer-v-1mihznn .framer-1whm9hq, .framer-W9bTV.framer-v-bhx690 .framer-1ulvvhd, .framer-W9bTV.framer-v-bhx690 .framer-1cdhn0o, .framer-W9bTV.framer-v-bhx690 .framer-g8095d, .framer-W9bTV.framer-v-bhx690 .framer-1whm9hq, .framer-W9bTV.framer-v-1w7g4u2 .framer-1ulvvhd, .framer-W9bTV.framer-v-1w7g4u2 .framer-1cdhn0o, .framer-W9bTV.framer-v-1w7g4u2 .framer-g8095d, .framer-W9bTV.framer-v-1w7g4u2 .framer-1whm9hq, .framer-W9bTV.framer-v-yn8jbc .framer-1ulvvhd, .framer-W9bTV.framer-v-yn8jbc .framer-1cdhn0o, .framer-W9bTV.framer-v-yn8jbc .framer-g8095d, .framer-W9bTV.framer-v-yn8jbc .framer-1whm9hq { height: 39px; }\",\".framer-W9bTV.framer-v-88o1ki .framer-1rlkc5m, .framer-W9bTV.framer-v-88o1ki .framer-1xx4yxi, .framer-W9bTV.framer-v-88o1ki .framer-1xedoa9, .framer-W9bTV.framer-v-88o1ki .framer-e1u1o6, .framer-W9bTV.framer-v-88o1ki .framer-n1gqnn, .framer-W9bTV.framer-v-88o1ki .framer-y3xawv, .framer-W9bTV.framer-v-88o1ki .framer-4wilye, .framer-W9bTV.framer-v-88o1ki .framer-t91uch, .framer-W9bTV.framer-v-88o1ki .framer-18f20n3, .framer-W9bTV.framer-v-1mihznn .framer-bnopnv { height: 100%; }\",\".framer-W9bTV.framer-v-88o1ki .framer-p64tdo, .framer-W9bTV.framer-v-88o1ki .framer-zdg0m4, .framer-W9bTV.framer-v-88o1ki .framer-d0jxgc, .framer-W9bTV.framer-v-1mihznn .framer-zdg0m4, .framer-W9bTV.framer-v-1mihznn .framer-d0jxgc, .framer-W9bTV.framer-v-bhx690 .framer-p64tdo, .framer-W9bTV.framer-v-bhx690 .framer-zdg0m4, .framer-W9bTV.framer-v-bhx690 .framer-d0jxgc, .framer-W9bTV.framer-v-1w7g4u2 .framer-p64tdo, .framer-W9bTV.framer-v-1w7g4u2 .framer-d0jxgc, .framer-W9bTV.framer-v-yn8jbc .framer-p64tdo, .framer-W9bTV.framer-v-yn8jbc .framer-zdg0m4 { bottom: unset; top: 79px; }\",\".framer-W9bTV.framer-v-88o1ki .framer-1j7htrj { bottom: unset; top: 110px; }\",\".framer-W9bTV.framer-v-88o1ki .framer-1whm9hq, .framer-W9bTV.framer-v-1mihznn .framer-1xx4yxi, .framer-W9bTV.framer-v-1mihznn .framer-1ulvvhd, .framer-W9bTV.framer-v-1mihznn .framer-e1u1o6, .framer-W9bTV.framer-v-1mihznn .framer-y3xawv, .framer-W9bTV.framer-v-1mihznn .framer-t91uch, .framer-W9bTV.framer-v-1mihznn .framer-18f20n3, .framer-W9bTV.framer-v-bhx690 .framer-1xx4yxi, .framer-W9bTV.framer-v-bhx690 .framer-e1u1o6, .framer-W9bTV.framer-v-bhx690 .framer-y3xawv, .framer-W9bTV.framer-v-bhx690 .framer-t91uch, .framer-W9bTV.framer-v-bhx690 .framer-18f20n3, .framer-W9bTV.framer-v-1w7g4u2 .framer-1xx4yxi, .framer-W9bTV.framer-v-1w7g4u2 .framer-e1u1o6, .framer-W9bTV.framer-v-1w7g4u2 .framer-y3xawv, .framer-W9bTV.framer-v-1w7g4u2 .framer-t91uch, .framer-W9bTV.framer-v-1w7g4u2 .framer-18f20n3, .framer-W9bTV.framer-v-yn8jbc .framer-1xx4yxi, .framer-W9bTV.framer-v-yn8jbc .framer-e1u1o6, .framer-W9bTV.framer-v-yn8jbc .framer-y3xawv, .framer-W9bTV.framer-v-yn8jbc .framer-t91uch, .framer-W9bTV.framer-v-yn8jbc .framer-18f20n3 { height: 40px; }\",\".framer-W9bTV.framer-v-88o1ki .framer-1gvz2hi { height: 98%; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9bTV.framer-v-88o1ki.framer-1oovlf5 { gap: 0px; } .framer-W9bTV.framer-v-88o1ki.framer-1oovlf5 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-W9bTV.framer-v-88o1ki.framer-1oovlf5 > :first-child { margin-top: 0px; } .framer-W9bTV.framer-v-88o1ki.framer-1oovlf5 > :last-child { margin-bottom: 0px; } }\",\".framer-W9bTV.framer-v-1mihznn.framer-1oovlf5, .framer-W9bTV.framer-v-bhx690.framer-1oovlf5, .framer-W9bTV.framer-v-1w7g4u2.framer-1oovlf5, .framer-W9bTV.framer-v-yn8jbc.framer-1oovlf5 { flex-direction: column; width: 650px; }\",\".framer-W9bTV.framer-v-1mihznn .framer-1d91mkd { height: 48px; }\",\".framer-W9bTV.framer-v-1mihznn .framer-agbxnp, .framer-W9bTV.framer-v-bhx690 .framer-agbxnp, .framer-W9bTV.framer-v-1w7g4u2 .framer-agbxnp, .framer-W9bTV.framer-v-yn8jbc .framer-agbxnp { left: 20px; position: absolute; right: 20px; top: 79px; width: unset; }\",\".framer-W9bTV.framer-v-1mihznn .framer-p64tdo, .framer-W9bTV.framer-v-bhx690 .framer-1j7htrj, .framer-W9bTV.framer-v-1w7g4u2 .framer-zdg0m4, .framer-W9bTV.framer-v-yn8jbc .framer-d0jxgc { bottom: unset; left: unset; position: relative; right: unset; width: 610px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9bTV.framer-v-1mihznn.framer-1oovlf5 { gap: 0px; } .framer-W9bTV.framer-v-1mihznn.framer-1oovlf5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-W9bTV.framer-v-1mihznn.framer-1oovlf5 > :first-child { margin-top: 0px; } .framer-W9bTV.framer-v-1mihznn.framer-1oovlf5 > :last-child { margin-bottom: 0px; } }\",\".framer-W9bTV.framer-v-bhx690 .framer-bnopnv, .framer-W9bTV.framer-v-1w7g4u2 .framer-bnopnv, .framer-W9bTV.framer-v-yn8jbc .framer-bnopnv { height: 59px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9bTV.framer-v-bhx690.framer-1oovlf5 { gap: 0px; } .framer-W9bTV.framer-v-bhx690.framer-1oovlf5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-W9bTV.framer-v-bhx690.framer-1oovlf5 > :first-child { margin-top: 0px; } .framer-W9bTV.framer-v-bhx690.framer-1oovlf5 > :last-child { margin-bottom: 0px; } }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9bTV.framer-v-1w7g4u2.framer-1oovlf5 { gap: 0px; } .framer-W9bTV.framer-v-1w7g4u2.framer-1oovlf5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-W9bTV.framer-v-1w7g4u2.framer-1oovlf5 > :first-child { margin-top: 0px; } .framer-W9bTV.framer-v-1w7g4u2.framer-1oovlf5 > :last-child { margin-bottom: 0px; } }\",\".framer-W9bTV.framer-v-yn8jbc .framer-1j7htrj { bottom: unset; top: 78px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-W9bTV.framer-v-yn8jbc.framer-1oovlf5 { gap: 0px; } .framer-W9bTV.framer-v-yn8jbc.framer-1oovlf5 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-W9bTV.framer-v-yn8jbc.framer-1oovlf5 > :first-child { margin-top: 0px; } .framer-W9bTV.framer-v-yn8jbc.framer-1oovlf5 > :last-child { margin-bottom: 0px; } }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 580\n * @framerIntrinsicWidth 1060\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"ctZUU7BcM\":{\"layout\":[\"fixed\",\"auto\"]},\"rOFWtMVAC\":{\"layout\":[\"fixed\",\"auto\"]},\"q4YUtkjrk\":{\"layout\":[\"fixed\",\"auto\"]},\"Z1GXge9KB\":{\"layout\":[\"fixed\",\"auto\"]},\"WXFAhiGT5\":{\"layout\":[\"fixed\",\"auto\"]},\"mg8LPUHF0\":{\"layout\":[\"fixed\",\"auto\"]},\"P3AfFLf1i\":{\"layout\":[\"fixed\",\"auto\"]},\"IuKmW0OZX\":{\"layout\":[\"fixed\",\"auto\"]},\"Kmzl2uKLV\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"eSL0lgktg\":\"processTitle1\",\"JCwBi0FYK\":\"processTitle2\",\"pSH7A2qfN\":\"processTitle3\",\"ZH5kz8Jrg\":\"processTitle4\",\"nig0yTMcF\":\"processTitle5\",\"mWwv3JDPk\":\"procesText1\",\"fPl3BmIwy\":\"procesText2\",\"cgDS64hCX\":\"procesText3\",\"BcnUyeihS\":\"procesText4\",\"IVnRTc7KI\":\"procesText5\",\"xXLS9zKYy\":\"processImage1\",\"cRRK_775_\":\"processImage2\",\"dCCJdLsOM\":\"processImage3\",\"RXtMoQsvM\":\"processImage4\",\"K5uyYWJJv\":\"processImage5\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerwLUGNS0FC=withCSS(Component,css,\"framer-W9bTV\");export default FramerwLUGNS0FC;FramerwLUGNS0FC.displayName=\"Case Study Process\";FramerwLUGNS0FC.defaultProps={height:580,width:1060};addPropertyControls(FramerwLUGNS0FC,{variant:{options:[\"Ai7MTlZCW\",\"ctZUU7BcM\",\"rOFWtMVAC\",\"q4YUtkjrk\",\"Z1GXge9KB\",\"WXFAhiGT5\",\"mg8LPUHF0\",\"P3AfFLf1i\",\"IuKmW0OZX\",\"Kmzl2uKLV\"],optionTitles:[\"Research\",\"Information\",\"Wireframing\",\"Usability\",\"Visual Design\",\"Research-mobile\",\"Info-mobile\",\"Wireframe-mobile\",\"Usability-mobile\",\"Visual-mobile\"],title:\"Variant\",type:ControlType.Enum},eSL0lgktg:{defaultValue:\"Research & Analysis Research & AnalysisResearch & Analysis\",displayTextArea:false,title:\"Process Title 1\",type:ControlType.String},JCwBi0FYK:{defaultValue:\"Information Architecture\",displayTextArea:false,title:\"Process Title 2\",type:ControlType.String},pSH7A2qfN:{defaultValue:\"Information Architecture\",displayTextArea:false,title:\"Process Title 3\",type:ControlType.String},ZH5kz8Jrg:{defaultValue:\"Information Architecture\",displayTextArea:false,title:\"Process Title 4\",type:ControlType.String},nig0yTMcF:{defaultValue:\"Information Architecture\",displayTextArea:false,title:\"Process Title 5\",type:ControlType.String},mWwv3JDPk:{defaultValue:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",displayTextArea:false,title:\"Proces Text 1\",type:ControlType.String},fPl3BmIwy:{defaultValue:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",displayTextArea:false,title:\"Proces Text 2\",type:ControlType.String},cgDS64hCX:{defaultValue:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",displayTextArea:false,title:\"Proces Text 3\",type:ControlType.String},BcnUyeihS:{defaultValue:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",displayTextArea:false,title:\"Proces Text 4\",type:ControlType.String},IVnRTc7KI:{defaultValue:\"We conducted user interviews, surveys, and analyzed in-app analytics to understand the pain points and user needs. We also studied competitor apps and industry trends to gather insights\",displayTextArea:false,title:\"Proces Text 5\",type:ControlType.String},xXLS9zKYy:{title:\"Process Image 1\",type:ControlType.ResponsiveImage},cRRK_775_:{title:\"Process Image 2\",type:ControlType.ResponsiveImage},dCCJdLsOM:{title:\"Process Image 3\",type:ControlType.ResponsiveImage},RXtMoQsvM:{title:\"Process Image 4\",type:ControlType.ResponsiveImage},K5uyYWJJv:{title:\"Process Image 5\",type:ControlType.ResponsiveImage}});addFonts(FramerwLUGNS0FC,[{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:\"Instrument Sans\",source:\"google\",style:\"normal\",url:\"https://fonts.gstatic.com/s/instrumentsans/v1/pximypc9vsFDm051Uf6KVwgkfoSxQ0GsQv8ToedPibnr-yp2JGEJOH9npSTF-QfwmS0v3_7Y.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerwLUGNS0FC\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"580\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"eSL0lgktg\\\":\\\"processTitle1\\\",\\\"JCwBi0FYK\\\":\\\"processTitle2\\\",\\\"pSH7A2qfN\\\":\\\"processTitle3\\\",\\\"ZH5kz8Jrg\\\":\\\"processTitle4\\\",\\\"nig0yTMcF\\\":\\\"processTitle5\\\",\\\"mWwv3JDPk\\\":\\\"procesText1\\\",\\\"fPl3BmIwy\\\":\\\"procesText2\\\",\\\"cgDS64hCX\\\":\\\"procesText3\\\",\\\"BcnUyeihS\\\":\\\"procesText4\\\",\\\"IVnRTc7KI\\\":\\\"procesText5\\\",\\\"xXLS9zKYy\\\":\\\"processImage1\\\",\\\"cRRK_775_\\\":\\\"processImage2\\\",\\\"dCCJdLsOM\\\":\\\"processImage3\\\",\\\"RXtMoQsvM\\\":\\\"processImage4\\\",\\\"K5uyYWJJv\\\":\\\"processImage5\\\"}\",\"framerIntrinsicWidth\":\"1060\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"ctZUU7BcM\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"rOFWtMVAC\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"q4YUtkjrk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Z1GXge9KB\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"WXFAhiGT5\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mg8LPUHF0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"P3AfFLf1i\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IuKmW0OZX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"Kmzl2uKLV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./wLUGNS0FC.map", "// Generated by Framer (0f540f8)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";const MaterialFonts=getFonts(Material);const cycleOrder=[\"kOVC2XcRT\"];const serializationHash=\"framer-fjhqQ\";const variantClassNames={kOVC2XcRT:\"framer-v-cq894s\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const getProps=({_3Visible,cardText1,cardText2,cardText3,height,id,tituloCard,width,...props})=>{var _ref,_ref1,_ref2,_ref3,_ref4;return{...props,brqTAfey5:(_ref=tituloCard!==null&&tituloCard!==void 0?tituloCard:props.brqTAfey5)!==null&&_ref!==void 0?_ref:\"Seguridad\",byPDfaDQg:(_ref1=_3Visible!==null&&_3Visible!==void 0?_3Visible:props.byPDfaDQg)!==null&&_ref1!==void 0?_ref1:true,kSbS10ILe:(_ref2=cardText3!==null&&cardText3!==void 0?cardText3:props.kSbS10ILe)!==null&&_ref2!==void 0?_ref2:\"Antivirus 2\",LWpps6HO2:(_ref3=cardText2!==null&&cardText2!==void 0?cardText2:props.LWpps6HO2)!==null&&_ref3!==void 0?_ref3:\"Antivirus 2\",VKvqj0qFC:(_ref4=cardText1!==null&&cardText1!==void 0?cardText1:props.VKvqj0qFC)!==null&&_ref4!==void 0?_ref4:\"Antivirus\"};};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,brqTAfey5,VKvqj0qFC,LWpps6HO2,kSbS10ILe,byPDfaDQg,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kOVC2XcRT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cq894s\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"kOVC2XcRT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-50cd05fb-310d-48a3-bab2-b86bf212896f, rgb(255, 235, 217))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-12ohvif\",\"data-framer-name\":\"Badge\",layoutDependency:layoutDependency,layoutId:\"eM5xsGymO\",style:{backgroundColor:\"var(--token-d022ccf3-1b87-4983-9538-c066eb7660cc, rgb(242, 139, 49))\",borderBottomLeftRadius:30,borderBottomRightRadius:30}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-b81lr5\",layoutDependency:layoutDependency,layoutId:\"dnpnFaFrN\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h4,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"25px\",\"--framer-font-weight\":\"700\",\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-1eung3n, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Seguridad\"})}),className:\"framer-h6m46s\",\"data-framer-name\":\"Description\",fonts:[\"FS;Manrope-bold\"],layoutDependency:layoutDependency,layoutId:\"YXR_pxiSD\",style:{\"--extracted-1eung3n\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:brqTAfey5,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-xtt468\",\"data-framer-name\":\"Information\",layoutDependency:layoutDependency,layoutId:\"nKlgvBVwV\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-y99kvl\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"FtT1WzYjp\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-gvbir1-container\",layoutDependency:layoutDependency,layoutId:\"jAJmSBRGF-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-d022ccf3-1b87-4983-9538-c066eb7660cc, rgb(242, 139, 49))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DoubleArrow\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"jAJmSBRGF\",layoutId:\"jAJmSBRGF\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Antivirus\"})}),className:\"framer-c4snyy\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"gKnH0FYN_\",style:{\"--extracted-r6o4lv\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:VKvqj0qFC,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-oy7vag\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"gWaO2BHxn\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-19b6srj-container\",layoutDependency:layoutDependency,layoutId:\"MmiThk0D5-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-d022ccf3-1b87-4983-9538-c066eb7660cc, rgb(242, 139, 49))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DoubleArrow\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"MmiThk0D5\",layoutId:\"MmiThk0D5\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"Seguridad Perimetra\"})}),className:\"framer-yur7av\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"SH1cSqYOF\",style:{\"--extracted-r6o4lv\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:LWpps6HO2,verticalAlignment:\"top\",withExternalLayout:true})]}),byPDfaDQg&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1umgfhg\",\"data-framer-name\":\"List\",layoutDependency:layoutDependency,layoutId:\"QPD8Aaez1\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ljgg57-container\",layoutDependency:layoutDependency,layoutId:\"lDDsYshph-container\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-d022ccf3-1b87-4983-9538-c066eb7660cc, rgb(242, 139, 49))\",height:\"100%\",iconSearch:\"Home\",iconSelection:\"DoubleArrow\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"lDDsYshph\",layoutId:\"lDDsYshph\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-line-height\":\"1.4em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71)))\"},children:\"SOC\"})}),className:\"framer-19bjug8\",fonts:[\"FS;Manrope-regular\"],layoutDependency:layoutDependency,layoutId:\"AFlEBJ6Gy\",style:{\"--extracted-r6o4lv\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:kSbS10ILe,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-fjhqQ.framer-18u789y, .framer-fjhqQ .framer-18u789y { display: block; }\",\".framer-fjhqQ.framer-cq894s { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; min-height: 300px; overflow: visible; padding: 20px 20px 30px 20px; position: relative; width: 374px; }\",\".framer-fjhqQ .framer-12ohvif { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: 40px; justify-content: center; overflow: visible; padding: 6px; position: absolute; right: 20px; top: 0px; width: 30px; z-index: 1; }\",\".framer-fjhqQ .framer-b81lr5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fjhqQ .framer-h6m46s { flex: none; height: auto; max-width: 80%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-fjhqQ .framer-xtt468 { 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-fjhqQ .framer-y99kvl, .framer-fjhqQ .framer-oy7vag, .framer-fjhqQ .framer-1umgfhg { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-fjhqQ .framer-gvbir1-container, .framer-fjhqQ .framer-19b6srj-container, .framer-fjhqQ .framer-1ljgg57-container { align-self: stretch; flex: none; height: auto; position: relative; width: 16px; }\",\".framer-fjhqQ .framer-c4snyy, .framer-fjhqQ .framer-yur7av, .framer-fjhqQ .framer-19bjug8 { flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-fjhqQ.framer-cq894s, .framer-fjhqQ .framer-12ohvif, .framer-fjhqQ .framer-b81lr5, .framer-fjhqQ .framer-xtt468, .framer-fjhqQ .framer-y99kvl, .framer-fjhqQ .framer-oy7vag, .framer-fjhqQ .framer-1umgfhg { gap: 0px; } .framer-fjhqQ.framer-cq894s > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-fjhqQ.framer-cq894s > :first-child, .framer-fjhqQ .framer-b81lr5 > :first-child, .framer-fjhqQ .framer-xtt468 > :first-child { margin-top: 0px; } .framer-fjhqQ.framer-cq894s > :last-child, .framer-fjhqQ .framer-b81lr5 > :last-child, .framer-fjhqQ .framer-xtt468 > :last-child { margin-bottom: 0px; } .framer-fjhqQ .framer-12ohvif > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-fjhqQ .framer-12ohvif > :first-child, .framer-fjhqQ .framer-y99kvl > :first-child, .framer-fjhqQ .framer-oy7vag > :first-child, .framer-fjhqQ .framer-1umgfhg > :first-child { margin-left: 0px; } .framer-fjhqQ .framer-12ohvif > :last-child, .framer-fjhqQ .framer-y99kvl > :last-child, .framer-fjhqQ .framer-oy7vag > :last-child, .framer-fjhqQ .framer-1umgfhg > :last-child { margin-right: 0px; } .framer-fjhqQ .framer-b81lr5 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-fjhqQ .framer-xtt468 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-fjhqQ .framer-y99kvl > *, .framer-fjhqQ .framer-oy7vag > *, .framer-fjhqQ .framer-1umgfhg > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 300\n * @framerIntrinsicWidth 374\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"300px\",null]}}}\n * @framerVariables {\"brqTAfey5\":\"tituloCard\",\"VKvqj0qFC\":\"cardText1\",\"LWpps6HO2\":\"cardText2\",\"kSbS10ILe\":\"cardText3\",\"byPDfaDQg\":\"_3Visible\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ_17ewhnE=withCSS(Component,css,\"framer-fjhqQ\");export default FramerZ_17ewhnE;FramerZ_17ewhnE.displayName=\"Card Variable\";FramerZ_17ewhnE.defaultProps={height:300,width:374};addPropertyControls(FramerZ_17ewhnE,{brqTAfey5:{defaultValue:\"Seguridad\",displayTextArea:false,title:\"Titulo Card\",type:ControlType.String},VKvqj0qFC:{defaultValue:\"Antivirus\",displayTextArea:false,title:\"Card Text 1\",type:ControlType.String},LWpps6HO2:{defaultValue:\"Antivirus 2\",placeholder:\"\",title:\"Card Text 2\",type:ControlType.String},kSbS10ILe:{defaultValue:\"Antivirus 2\",placeholder:\"\",title:\"Card Text 3\",type:ControlType.String},byPDfaDQg:{defaultValue:true,title:\".3 Visible\",type:ControlType.Boolean}});addFonts(FramerZ_17ewhnE,[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"}]},...MaterialFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ_17ewhnE\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"300px\\\",null]}}}\",\"framerVariables\":\"{\\\"brqTAfey5\\\":\\\"tituloCard\\\",\\\"VKvqj0qFC\\\":\\\"cardText1\\\",\\\"LWpps6HO2\\\":\\\"cardText2\\\",\\\"kSbS10ILe\\\":\\\"cardText3\\\",\\\"byPDfaDQg\\\":\\\"_3Visible\\\"}\",\"framerIntrinsicWidth\":\"374\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"300\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z_17ewhnE.map", "import{fontStore}from\"framer\";fontStore.loadFonts([\"GF;Fragment Mono-regular\"]);export const fonts=[{family:\"Fragment Mono\",style:\"normal\",url:\"https://fonts.gstatic.com/s/fragmentmono/v4/4iCr6K5wfMRRjxp0DA6-2CLnN4FNh4UI_1U.woff2\",weight:\"400\"}];export const css=['.framer-dFEsm .framer-styles-preset-12k8a2c { --framer-code-font-family: \"Fragment Mono\", monospace; --framer-code-font-style: normal; --framer-code-font-weight: 400; --framer-code-text-color: #333; --framer-font-size-scale: 1; background-color: rgba(0, 0, 0, 0.1); border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; padding-bottom: 0.1em; padding-left: 0.2em; padding-right: 0.2em; padding-top: 0.1em; }'];export const className=\"framer-dFEsm\";\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 (315fd46)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-bold\",\"FS;Manrope-extrabold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/7EWHG4AMROQSXDCQTDPGBVASATB7CED2/TJSQTK5FHJ2MYKML5IXF2G6YTGFJLTYL/K4ZMLVLHYIFVTTTWGVOTVGOFUUX7NVGI.woff2\",weight:\"800\"}]}];export const css=['.framer-JeNt7 .framer-styles-preset-vgpt00:not(.rich-text-wrapper), .framer-JeNt7 .framer-styles-preset-vgpt00.rich-text-wrapper h4 { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 700; --framer-font-weight-bold: 800; --framer-letter-spacing: 0em; --framer-line-height: 1.4em; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --framer-text-color: #333333; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-JeNt7\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (315fd46)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-regular\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-XzXD2 .framer-styles-preset-1qne2j7:not(.rich-text-wrapper), .framer-XzXD2 .framer-styles-preset-1qne2j7.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 35px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-letter-spacing: 0px; --framer-line-height: 120%; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, #0a2f47); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-XzXD2\";\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 (315fd46)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"FS;Manrope-semibold\",\"FS;Manrope-bold\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"}]}];export const css=['.framer-wdgZO .framer-styles-preset-kcots3:not(.rich-text-wrapper), .framer-wdgZO .framer-styles-preset-kcots3.rich-text-wrapper p { --framer-font-family: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-family-bold: \"Manrope\", \"Manrope Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 18px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-weight: 600; --framer-font-weight-bold: 700; --framer-letter-spacing: 0em; --framer-line-height: 150%; --framer-paragraph-spacing: 20px; --framer-text-alignment: start; --framer-text-color: var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, #111011); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-wdgZO\";\nexport const __FramerMetadata__ = {\"exports\":{\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (20caf11)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,NotFoundError,PropertyOverrides,RichText,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useLocaleInfo,useQueryData,withCSS,withFX}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import Download from\"https://framerusercontent.com/modules/kBkaj3LmBqcSU2IkUsBC/kvFSr6fSU7VcYZyNyfaK/Download.js\";import Navbar from\"#framer/local/canvasComponent/PLTi8pu0T/PLTi8pu0T.js\";import CaseStudyProcess from\"#framer/local/canvasComponent/wLUGNS0FC/wLUGNS0FC.js\";import CardVariable from\"#framer/local/canvasComponent/Z_17ewhnE/Z_17ewhnE.js\";import Footer from\"#framer/local/canvasComponent/ZPzL4zqtl/ZPzL4zqtl.js\";import Soluciones from\"#framer/local/collection/JVSfKPYgn/JVSfKPYgn.js\";import*as sharedStyle2 from\"#framer/local/css/bKvs_i8q2/bKvs_i8q2.js\";import*as sharedStyle from\"#framer/local/css/C5Lz8f3eW/C5Lz8f3eW.js\";import*as sharedStyle6 from\"#framer/local/css/H3uuqy22O/H3uuqy22O.js\";import*as sharedStyle4 from\"#framer/local/css/IYNffVmHF/IYNffVmHF.js\";import*as sharedStyle3 from\"#framer/local/css/kCEoWPh44/kCEoWPh44.js\";import*as sharedStyle7 from\"#framer/local/css/seVQaMYbs/seVQaMYbs.js\";import*as sharedStyle5 from\"#framer/local/css/t2dzLhvyK/t2dzLhvyK.js\";import*as sharedStyle1 from\"#framer/local/css/WGf0PE3EJ/WGf0PE3EJ.js\";import*as sharedStyle8 from\"#framer/local/css/xMFtjobLI/xMFtjobLI.js\";import metadataProvider from\"#framer/local/webPageMetadata/Xjh51IA16/Xjh51IA16.js\";const NavbarFonts=getFonts(Navbar);const RichTextWithFX=withFX(RichText);const CaseStudyProcessFonts=getFonts(CaseStudyProcess);const ContainerWithFX=withFX(Container);const CardVariableFonts=getFonts(CardVariable);const DownloadFonts=getFonts(Download);const FooterFonts=getFonts(Footer);const breakpoints={aPUGfjSlb:\"(min-width: 1200px) and (max-width: 1535px)\",d47eP6SLA:\"(min-width: 768px) and (max-width: 1199px)\",rUwpNHTlA:\"(min-width: 1536px)\",VbQY6vNOg:\"(max-width: 767px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-4ziZ8\";const variantClassNames={aPUGfjSlb:\"framer-v-g0gjgk\",d47eP6SLA:\"framer-v-b9g445\",rUwpNHTlA:\"framer-v-xx9218\",VbQY6vNOg:\"framer-v-1pmiidn\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,x:0,y:50};const transition1={damping:30,delay:0,mass:1,stiffness:500,type:\"spring\"};const animation1={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition1,x:0,y:50};const transition2={damping:30,delay:.2,mass:1,stiffness:500,type:\"spring\"};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition2,x:0,y:50};const animation3={opacity:1,rotate:10,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,x:0,y:0};const transition3={damping:9,delay:0,mass:1,stiffness:119,type:\"spring\"};const animation4={opacity:1,rotate:10,rotateX:0,rotateY:0,scale:1.5,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const metadata=metadataProvider();const humanReadableVariantMap={Desktop:\"rUwpNHTlA\",Laptop:\"aPUGfjSlb\",Mobile:\"VbQY6vNOg\",Tablet:\"d47eP6SLA\"};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:\"rUwpNHTlA\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"Xjh51IA16\",data:Soluciones,type:\"Collection\"},select:[{collection:\"Xjh51IA16\",name:\"Z3OhZvt7E\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"IWT1fQAX_\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"yuG3T1XXG\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"vty020rlN\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"YhvTyodAY\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"km88XOhzk\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"hHtWo75U1\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"yzvhbK_fQ\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"P2mebsI0O\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"Z7xEpjeV4\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"SMwU5EVk3\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"cUje_RpDu\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"wAtCDOY21\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"ixLzyV1eO\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"FooScEfss\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"vRinEanHa\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"SMycwQwO4\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"Fwiy_0EJ2\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"pD8y3OpsI\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"Jsfxj3UPS\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"PyEJ_rt5u\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"YH6btmKCw\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"KXWrpRScr\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"nM0MoggNN\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"B9OT17gHC\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"QULt5k4TG\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"ZI8XSWG3B\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"afRLZ4Ruw\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"JebLy6Izq\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"FkJsYSYWf\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"EDQHGE37F\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"SUwQztqI3\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"hgRpJamNJ\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"Br7QZc1oD\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"dd4_7Sz3l\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"sVUvzFgoj\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"yn4YUesId\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"wX5B_JDgG\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"Nrt13GxxQ\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"aGaKsIbK7\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"ipSuLtn3E\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"IHUdFmU0r\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"O_cCXtaWh\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"qT9SIPyZM\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"QhFLayMza\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"zdRSG7i8F\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"sL4T42TYI\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"dq55WtrrQ\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"c5rbunyAo\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"QZDyp9SgT\",type:\"Identifier\"},{collection:\"Xjh51IA16\",name:\"rkyBhNmZy\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables)});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,Z3OhZvt7E=getFromCurrentRouteData(\"Z3OhZvt7E\"),yuG3T1XXG=getFromCurrentRouteData(\"yuG3T1XXG\"),IWT1fQAX_=getFromCurrentRouteData(\"IWT1fQAX_\"),oee5K_oQB,rkyBhNmZy=getFromCurrentRouteData(\"rkyBhNmZy\"),vty020rlN=getFromCurrentRouteData(\"vty020rlN\"),hHtWo75U1=getFromCurrentRouteData(\"hHtWo75U1\"),YhvTyodAY=getFromCurrentRouteData(\"YhvTyodAY\"),yzvhbK_fQ=getFromCurrentRouteData(\"yzvhbK_fQ\"),km88XOhzk=getFromCurrentRouteData(\"km88XOhzk\"),P2mebsI0O=getFromCurrentRouteData(\"P2mebsI0O\"),ZI8XSWG3B=getFromCurrentRouteData(\"ZI8XSWG3B\"),QULt5k4TG=getFromCurrentRouteData(\"QULt5k4TG\"),B9OT17gHC=getFromCurrentRouteData(\"B9OT17gHC\"),Z7xEpjeV4=getFromCurrentRouteData(\"Z7xEpjeV4\"),SMwU5EVk3=getFromCurrentRouteData(\"SMwU5EVk3\"),cUje_RpDu=getFromCurrentRouteData(\"cUje_RpDu\"),wAtCDOY21=getFromCurrentRouteData(\"wAtCDOY21\"),ixLzyV1eO=getFromCurrentRouteData(\"ixLzyV1eO\"),FooScEfss=getFromCurrentRouteData(\"FooScEfss\"),vRinEanHa=getFromCurrentRouteData(\"vRinEanHa\"),SMycwQwO4=getFromCurrentRouteData(\"SMycwQwO4\"),Fwiy_0EJ2=getFromCurrentRouteData(\"Fwiy_0EJ2\"),pD8y3OpsI=getFromCurrentRouteData(\"pD8y3OpsI\"),Jsfxj3UPS=getFromCurrentRouteData(\"Jsfxj3UPS\"),PyEJ_rt5u=getFromCurrentRouteData(\"PyEJ_rt5u\"),YH6btmKCw=getFromCurrentRouteData(\"YH6btmKCw\"),KXWrpRScr=getFromCurrentRouteData(\"KXWrpRScr\"),nM0MoggNN=getFromCurrentRouteData(\"nM0MoggNN\"),Br7QZc1oD=getFromCurrentRouteData(\"Br7QZc1oD\"),dd4_7Sz3l=getFromCurrentRouteData(\"dd4_7Sz3l\"),wX5B_JDgG=getFromCurrentRouteData(\"wX5B_JDgG\"),Nrt13GxxQ=getFromCurrentRouteData(\"Nrt13GxxQ\"),aGaKsIbK7=getFromCurrentRouteData(\"aGaKsIbK7\"),dq55WtrrQ=getFromCurrentRouteData(\"dq55WtrrQ\"),sVUvzFgoj=getFromCurrentRouteData(\"sVUvzFgoj\"),ipSuLtn3E=getFromCurrentRouteData(\"ipSuLtn3E\"),IHUdFmU0r=getFromCurrentRouteData(\"IHUdFmU0r\"),O_cCXtaWh=getFromCurrentRouteData(\"O_cCXtaWh\"),c5rbunyAo=getFromCurrentRouteData(\"c5rbunyAo\"),yn4YUesId=getFromCurrentRouteData(\"yn4YUesId\"),qT9SIPyZM=getFromCurrentRouteData(\"qT9SIPyZM\"),QhFLayMza=getFromCurrentRouteData(\"QhFLayMza\"),zdRSG7i8F=getFromCurrentRouteData(\"zdRSG7i8F\"),QZDyp9SgT=getFromCurrentRouteData(\"QZDyp9SgT\"),sL4T42TYI=getFromCurrentRouteData(\"sL4T42TYI\"),afRLZ4Ruw=getFromCurrentRouteData(\"afRLZ4Ruw\"),JebLy6Izq=getFromCurrentRouteData(\"JebLy6Izq\"),FkJsYSYWf=getFromCurrentRouteData(\"FkJsYSYWf\"),EDQHGE37F=getFromCurrentRouteData(\"EDQHGE37F\"),SUwQztqI3=getFromCurrentRouteData(\"SUwQztqI3\"),hgRpJamNJ=getFromCurrentRouteData(\"hgRpJamNJ\"),...restProps}=getProps(props);React.useEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);if(metadata1.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata1.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata1.robots);document.head.appendChild(robotsTag);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata1=metadataProvider(currentRouteData,activeLocale);document.title=metadata1.title||\"\";if(metadata1.viewport){var _document_querySelector;(_document_querySelector=document.querySelector('meta[name=\"viewport\"]'))===null||_document_querySelector===void 0?void 0:_document_querySelector.setAttribute(\"content\",metadata1.viewport);}const bodyCls=metadata1.bodyClassName;if(bodyCls){const body=document.body;body.classList.forEach(c=>c.startsWith(\"framer-body-\")&&body.classList.remove(c));body.classList.add(`${metadata1.bodyClassName}-framer-4ziZ8`);}return()=>{if(bodyCls)document.body.classList.remove(`${metadata1.bodyClassName}-framer-4ziZ8`);};},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className];useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"rUwpNHTlA\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:[/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(serializationHash,...sharedStyleClassNames,\"framer-xx9218\",className),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-185opyf\",\"data-framer-name\":\"hero-section\",name:\"hero-section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-luk696\",\"data-framer-name\":\"wrapper-filled\",name:\"wrapper-filled\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{width:\"calc(100vw - 20px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:111,width:\"calc(100vw - 100px)\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ms3wcs-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d47eP6SLA:{variant:\"bwkUKkUrv\"},VbQY6vNOg:{variant:\"bwkUKkUrv\"}},children:/*#__PURE__*/_jsx(Navbar,{height:\"100%\",id:\"GJ5_lFwgC\",layoutId:\"GJ5_lFwgC\",style:{width:\"100%\"},variant:\"OVL7Azpt7\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1472uof\",\"data-framer-name\":\"hero-container\",name:\"hero-container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1d108gk\",\"data-framer-name\":\"Post\",name:\"Post\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-y1xyw1\",\"data-framer-name\":\"content\",name:\"content\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-2tka51\",\"data-framer-name\":\"category+txt\",name:\"category+txt\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-1eghmkv\",\"data-styles-preset\":\"C5Lz8f3eW\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-a378a457-09c9-4e21-8971-31a4dc6ae8ea, rgb(17, 16, 17))\"},children:\"Title\"})}),className:\"framer-1kradsz\",\"data-framer-name\":\"Budget Planner Finance App\",fonts:[\"Inter\"],name:\"Budget Planner Finance App\",text:Z3OhZvt7E,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{background:{alt:\"\",fit:\"fill\",sizes:\"calc((min(100vw - 20px, 1280px) - 40px) * 0.99)\",...toResponsiveImage(yuG3T1XXG)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.99)\",...toResponsiveImage(yuG3T1XXG)},className:\"framer-1djsktt\",\"data-framer-name\":\"Banner\",name:\"Banner\"})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xjnpk3\",\"data-framer-name\":\"Container\",name:\"Container\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-7n08ek\",\"data-framer-name\":\"Wrapper\",name:\"Wrapper\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-d8ekc8\",\"data-framer-name\":\"about\",name:\"about\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-kouw\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1n4svf1\",\"data-framer-name\":\"content\",name:\"content\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jtrffz\",\"data-framer-name\":\"about\",name:\"about\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tysyzi\",\"data-framer-name\":\"headquarters\",name:\"headquarters\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"\\xbfQue es?\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"\\xbfQue es?\"})}),className:\"framer-1szsjv1\",\"data-framer-name\":\"Headquarters\",fonts:[\"FS;Manrope-bold\"],name:\"Headquarters\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"El Centro de Inteligencia Financiera Estatal y Municipal (CIFEM) de BTech es una herramienta dise\\xf1ada para mejorar la captaci\\xf3n y gesti\\xf3n de recursos financieros locales. A trav\\xe9s de an\\xe1lisis de datos en tiempo real e inteligencia artificial, CIFEM permite identificar oportunidades de recaudaci\\xf3n no aprovechadas, maximizar ingresos y reducir costos operativos. Esta soluci\\xf3n fortalece la transparencia y eficiencia gubernamental, impulsando una mejor rendici\\xf3n de cuentas y aumentando la confianza p\\xfablica en la gesti\\xf3n financiera local. Ideal para gobiernos que buscan optimizar sus ingresos y cumplir con los marcos legales vigentes.\"})})},VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"El Centro de Inteligencia Financiera Estatal y Municipal (CIFEM) de BTech es una herramienta dise\\xf1ada para mejorar la captaci\\xf3n y gesti\\xf3n de recursos financieros locales. A trav\\xe9s de an\\xe1lisis de datos en tiempo real e inteligencia artificial, CIFEM permite identificar oportunidades de recaudaci\\xf3n no aprovechadas, maximizar ingresos y reducir costos operativos. Esta soluci\\xf3n fortalece la transparencia y eficiencia gubernamental, impulsando una mejor rendici\\xf3n de cuentas y aumentando la confianza p\\xfablica en la gesti\\xf3n financiera local. Ideal para gobiernos que buscan optimizar sus ingresos y cumplir con los marcos legales vigentes.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"El Centro de Inteligencia Financiera Estatal y Municipal (CIFEM) de BTech es una herramienta dise\\xf1ada para mejorar la captaci\\xf3n y gesti\\xf3n de recursos financieros locales. A trav\\xe9s de an\\xe1lisis de datos en tiempo real e inteligencia artificial, CIFEM permite identificar oportunidades de recaudaci\\xf3n no aprovechadas, maximizar ingresos y reducir costos operativos. Esta soluci\\xf3n fortalece la transparencia y eficiencia gubernamental, impulsando una mejor rendici\\xf3n de cuentas y aumentando la confianza p\\xfablica en la gesti\\xf3n financiera local. Ideal para gobiernos que buscan optimizar sus ingresos y cumplir con los marcos legales vigentes.\"})}),className:\"framer-19fhbqx\",\"data-framer-name\":\"London\",fonts:[\"FS;Manrope-regular\"],name:\"London\",text:IWT1fQAX_,verticalAlignment:\"top\",withExternalLayout:true})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xm2os\",\"data-framer-name\":\"text\",name:\"text\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:oee5K_oQB,className:\"framer-wd9bs6\",\"data-framer-name\":\"Content\",fonts:[\"Inter\"],name:\"Content\",stylesPresetsClassNames:{a:\"framer-styles-preset-1a4uf2a\",code:\"framer-styles-preset-12k8a2c\",h1:\"framer-styles-preset-1eghmkv\",h2:\"framer-styles-preset-ettx7\",h3:\"framer-styles-preset-hhigr0\",h4:\"framer-styles-preset-vgpt00\",p:\"framer-styles-preset-z4gv3n\"},verticalAlignment:\"top\",withExternalLayout:true})})]}),rkyBhNmZy&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fsovz9\",\"data-framer-name\":\"metrics\",name:\"metrics\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1dsnuw\",\"data-framer-name\":\"1\",name:\"1\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1um0zug\",\"data-framer-name\":\"12\",name:\"12\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qne2j7\",\"data-styles-preset\":\"seVQaMYbs\",children:\"Metric Number 1.\"})}),className:\"framer-1rk3edx\",\"data-framer-name\":\"12\",fonts:[\"Inter\"],name:\"12\",text:vty020rlN,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kcots3\",\"data-styles-preset\":\"xMFtjobLI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Metric Title 1.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kcots3\",\"data-styles-preset\":\"xMFtjobLI\",children:\"Metric Title 1.\"})}),className:\"framer-1vwt3ij\",\"data-framer-name\":\"years experience\",fonts:[\"Inter\"],name:\"years experience\",text:hHtWo75U1,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17a9mw6\",\"data-framer-name\":\"2\",name:\"2\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1lgur8y\",\"data-framer-name\":\"12\",name:\"12\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qne2j7\",\"data-styles-preset\":\"seVQaMYbs\",children:\"3x\"})}),className:\"framer-1yaorkn\",\"data-framer-name\":\"12\",fonts:[\"Inter\"],name:\"12\",text:YhvTyodAY,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kcots3\",\"data-styles-preset\":\"xMFtjobLI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Rapidez\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kcots3\",\"data-styles-preset\":\"xMFtjobLI\",children:\"Rapidez\"})}),className:\"framer-vhqt1e\",\"data-framer-name\":\"years experience\",fonts:[\"Inter\"],name:\"years experience\",text:yzvhbK_fQ,verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mfb1m\",\"data-framer-name\":\"3\",name:\"3\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-9c83ah\",\"data-framer-name\":\"12\",name:\"12\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1qne2j7\",\"data-styles-preset\":\"seVQaMYbs\",children:\"5\"})}),className:\"framer-afdt76\",\"data-framer-name\":\"12\",fonts:[\"Inter\"],name:\"12\",text:km88XOhzk,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kcots3\",\"data-styles-preset\":\"xMFtjobLI\",style:{\"--framer-text-alignment\":\"center\"},children:\"Casos de \\xe9xito\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-kcots3\",\"data-styles-preset\":\"xMFtjobLI\",children:\"Casos de \\xe9xito\"})}),className:\"framer-wlucdy\",\"data-framer-name\":\"years experience\",fonts:[\"Inter\"],name:\"years experience\",text:P2mebsI0O,verticalAlignment:\"top\",withExternalLayout:true})})]})]})]})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kxhjmh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1igsok7\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10tq4af\",\"data-framer-name\":\"Tituilos Contexto\",name:\"Tituilos Contexto\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Contexto\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Contexto\"})}),className:\"framer-zi4yrs\",\"data-framer-name\":\"Contexto\",fonts:[\"FS;Manrope-bold\"],name:\"Contexto\",verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"21px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Objetivo\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1ib2xk\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"120%\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Objetivo\"})}),className:\"framer-1our9f4\",\"data-framer-name\":\"Objetivo\",fonts:[\"FS;Manrope-bold\"],name:\"Objetivo\",verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mrtfgc\",\"data-framer-name\":\"Objetivo\",name:\"Objetivo\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Los estados y municipios enfrentan un desaf\\xedo financiero significativo debido a la necesidad de equilibrar ingresos y egresos para satisfacer las demandas de sus poblaciones. Aunque cuentan con apoyo y presupuesto de la Federaci\\xf3n, los gobiernos locales a menudo enfrentan d\\xe9ficits debido a la ineficiencia en la captaci\\xf3n y administraci\\xf3n de recursos financieros locales.\"})})},VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Los estados y municipios enfrentan un desaf\\xedo financiero significativo debido a la necesidad de equilibrar ingresos y egresos para satisfacer las demandas de sus poblaciones. Aunque cuentan con apoyo y presupuesto de la Federaci\\xf3n, los gobiernos locales a menudo enfrentan d\\xe9ficits debido a la ineficiencia en la captaci\\xf3n y administraci\\xf3n de recursos financieros locales.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Los estados y municipios enfrentan un desaf\\xedo financiero significativo debido a la necesidad de equilibrar ingresos y egresos para satisfacer las demandas de sus poblaciones. Aunque cuentan con apoyo y presupuesto de la Federaci\\xf3n, los gobiernos locales a menudo enfrentan d\\xe9ficits debido a la ineficiencia en la captaci\\xf3n y administraci\\xf3n de recursos financieros locales.\"})}),className:\"framer-vyzkit\",\"data-framer-name\":\"London\",fonts:[\"FS;Manrope-regular\"],name:\"London\",text:ZI8XSWG3B,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"18px\",\"--framer-letter-spacing\":\"0px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Tener un modelo que permita el cobro de impuestos estatales y municipales adicionales dentro del marco de ley rector actual a trav\\xe9s del entendimiento de la informaci\\xf3n, los impuestos no cobrados y aquellos mal cobrados con un proceso integral de adquisici\\xf3n y cobro sustentable para el estado y la empresa.\"})})},VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"15px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Tener un modelo que permita el cobro de impuestos estatales y municipales adicionales dentro del marco de ley rector actual a trav\\xe9s del entendimiento de la informaci\\xf3n, los impuestos no cobrados y aquellos mal cobrados con un proceso integral de adquisici\\xf3n y cobro sustentable para el estado y la empresa.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1yZWd1bGFy\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"22px\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"justify\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Tener un modelo que permita el cobro de impuestos estatales y municipales adicionales dentro del marco de ley rector actual a trav\\xe9s del entendimiento de la informaci\\xf3n, los impuestos no cobrados y aquellos mal cobrados con un proceso integral de adquisici\\xf3n y cobro sustentable para el estado y la empresa.\"})}),className:\"framer-zbs63a\",\"data-framer-name\":\"London\",fonts:[\"FS;Manrope-regular\"],name:\"London\",text:QULt5k4TG,verticalAlignment:\"top\",withExternalLayout:true})})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hv2j3g\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{background:{alt:\"\",fit:\"fit\",sizes:\"max(min(100vw - 100px, 1280px) - 120px, 1px)\",...toResponsiveImage(B9OT17gHC),...{positionX:\"center\",positionY:\"center\"}}},d47eP6SLA:{background:{alt:\"\",fit:\"fit\",sizes:\"max(min(100vw - 100px, 1280px) - 120px, 1px)\",...toResponsiveImage(B9OT17gHC),...{positionX:\"center\",positionY:\"center\"}}},VbQY6vNOg:{background:{alt:\"\",fit:\"fit\",sizes:\"max(min(100vw - 20px, 1280px) - 40px, 1px)\",...toResponsiveImage(B9OT17gHC),...{positionX:\"center\",positionY:\"center\"}}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",sizes:\"min(min(100vw, 1280px) - 120px, 1536px)\",...toResponsiveImage(B9OT17gHC),...{positionX:\"center\",positionY:\"center\"}},className:\"framer-1f39z7\",\"data-framer-name\":\"Banner\",name:\"Banner\"})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zvtyuo\",\"data-framer-name\":\"Process&tools\",name:\"Process&tools\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-152ql54\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d47eP6SLA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",children:\"Proceso\"})}),fonts:[\"Inter\"]},VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",children:\"Proceso\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Proceso\"})}),className:\"framer-1x0z7w\",\"data-framer-name\":\"Process\",fonts:[\"FS;Manrope-semibold\"],name:\"Process\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{width:\"calc(min(100vw - 100px, 1280px) - 120px)\"},d47eP6SLA:{width:\"calc(min(100vw - 100px, 1280px) - 120px)\"},VbQY6vNOg:{width:\"calc(min(100vw - 20px, 1280px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:580,width:\"calc(min(100vw, 1280px) - 120px)\",children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation2,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1ktzedd-container\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d47eP6SLA:{variant:\"WXFAhiGT5\"},VbQY6vNOg:{variant:\"WXFAhiGT5\"}},children:/*#__PURE__*/_jsx(CaseStudyProcess,{BcnUyeihS:Fwiy_0EJ2,cgDS64hCX:SMycwQwO4,cRRK_775_:toResponsiveImage(PyEJ_rt5u),dCCJdLsOM:toResponsiveImage(YH6btmKCw),eSL0lgktg:Z7xEpjeV4,fPl3BmIwy:vRinEanHa,height:\"100%\",id:\"gIL_65Wqw\",IVnRTc7KI:pD8y3OpsI,JCwBi0FYK:SMwU5EVk3,K5uyYWJJv:toResponsiveImage(nM0MoggNN),layoutId:\"gIL_65Wqw\",mWwv3JDPk:FooScEfss,nig0yTMcF:ixLzyV1eO,pSH7A2qfN:cUje_RpDu,RXtMoQsvM:toResponsiveImage(KXWrpRScr),style:{width:\"100%\"},variant:\"Ai7MTlZCW\",width:\"100%\",xXLS9zKYy:toResponsiveImage(Jsfxj3UPS),ZH5kz8Jrg:wAtCDOY21})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qmygkc\",\"data-framer-name\":\"container\",name:\"container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d47eP6SLA:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",children:\"Proceso\"})}),fonts:[\"Inter\"]},VbQY6vNOg:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-ettx7\",\"data-styles-preset\":\"WGf0PE3EJ\",children:\"Proceso\"})}),fonts:[\"Inter\"]}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Proceso\"})}),className:\"framer-1pj1eyv\",\"data-framer-name\":\"Process\",fonts:[\"FS;Manrope-semibold\"],name:\"Process\",style:{transformPerspective:1200},text:Br7QZc1oD,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1huvd7d\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{width:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.36)\"},d47eP6SLA:{width:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.4059)\"},VbQY6vNOg:{width:\"calc(min(100vw - 20px, 1280px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-uyjuse-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{style:{width:\"100%\"}},d47eP6SLA:{style:{width:\"100%\"}},VbQY6vNOg:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardVariable,{brqTAfey5:dd4_7Sz3l,byPDfaDQg:dq55WtrrQ,height:\"100%\",id:\"mCnpD9KRM\",kSbS10ILe:aGaKsIbK7,layoutId:\"mCnpD9KRM\",LWpps6HO2:Nrt13GxxQ,VKvqj0qFC:wX5B_JDgG,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{width:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.36)\"},d47eP6SLA:{width:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.4059)\"},VbQY6vNOg:{width:\"calc(min(100vw - 20px, 1280px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-o7hn63-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{style:{width:\"100%\"}},d47eP6SLA:{style:{width:\"100%\"}},VbQY6vNOg:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardVariable,{brqTAfey5:sVUvzFgoj,byPDfaDQg:c5rbunyAo,height:\"100%\",id:\"mIqzHgkQH\",kSbS10ILe:O_cCXtaWh,layoutId:\"mIqzHgkQH\",LWpps6HO2:IHUdFmU0r,VKvqj0qFC:ipSuLtn3E,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{width:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.36)\"},d47eP6SLA:{width:\"calc((min(100vw - 100px, 1280px) - 120px) * 0.4059)\"},VbQY6vNOg:{width:\"calc(min(100vw - 20px, 1280px) - 40px)\"}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:300,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1dtd23l-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{aPUGfjSlb:{style:{width:\"100%\"}},d47eP6SLA:{style:{width:\"100%\"}},VbQY6vNOg:{style:{width:\"100%\"}}},children:/*#__PURE__*/_jsx(CardVariable,{brqTAfey5:yn4YUesId,byPDfaDQg:QZDyp9SgT,height:\"100%\",id:\"CAYhoIr8N\",kSbS10ILe:zdRSG7i8F,layoutId:\"CAYhoIr8N\",LWpps6HO2:QhFLayMza,VKvqj0qFC:qT9SIPyZM,width:\"100%\"})})})})})]})]})]}),sL4T42TYI&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-jr5xlb\",\"data-framer-name\":\"images\",name:\"images\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1hawt3j\",\"data-framer-name\":\"container\",name:\"container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-prb7tk\",children:[/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition1},__framer__animateOnce:true,__framer__enter:animation,__framer__exit:animation1,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"RlM7TWFucm9wZS1zZW1pYm9sZA==\",\"--framer-font-family\":'\"Manrope\", \"Manrope Placeholder\", sans-serif',\"--framer-font-size\":\"40px\",\"--framer-font-weight\":\"600\",\"--framer-letter-spacing\":\"-0.32px\",\"--framer-line-height\":\"120%\",\"--framer-text-color\":\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\"},children:\"Clientes\"})}),className:\"framer-1skqnt5\",\"data-framer-name\":\"Process\",fonts:[\"FS;Manrope-semibold\"],name:\"Process\",style:{transformPerspective:1200},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-stfe7x\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"0.25px\",...toResponsiveImage(afRLZ4Ruw)},className:\"framer-1mxz7v9\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"0.25px\",...toResponsiveImage(JebLy6Izq)},className:\"framer-oa372v\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"0.25px\",...toResponsiveImage(FkJsYSYWf)},className:\"framer-18tbm5h\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"0.25px\",...toResponsiveImage(FkJsYSYWf)},className:\"framer-1wp7me8\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"0.25px\",...toResponsiveImage(EDQHGE37F)},className:\"framer-hu5uc1\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",sizes:\"0.25px\",...toResponsiveImage(SUwQztqI3)},className:\"framer-1dgenwx\"})]})]})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15slpni\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition3},__framer__animateOnce:false,__framer__enter:animation3,__framer__exit:animation4,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1b5wynv-container\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(Download,{fontControl:{fontFamily:'\"Manrope\", \"Manrope Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:600,letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",hoverOptions:{backgroundColor:\"var(--token-067b1576-cf6e-4c06-bfc6-dad18dd8988c, rgb(10, 47, 71))\",color:\"rgb(255, 255, 255)\",scale:1.03,transition:{damping:19,delay:0,mass:1.1,stiffness:790,type:\"spring\"}},iconOptions:{alignment:\"start\",color:\"rgb(255, 255, 255)\",size:20,type:\"Default\"},id:\"NWsNvf9lu\",layoutId:\"NWsNvf9lu\",srcFile:hgRpJamNJ,srcType:\"Upload\",srcURL:\"\",styleOptions:{backgroundColor:\"var(--token-d022ccf3-1b87-4983-9538-c066eb7660cc, rgb(242, 139, 49))\",borderRadius:10,color:\"rgb(255, 255, 255)\",gap:5,padding:20,paddingBottom:20,paddingLeft:20,paddingPerSide:false,paddingRight:20,paddingTop:20},text:\"Descargar Presentaci\\xf3n\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:471,width:\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-a2k7h0-container\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{d47eP6SLA:{variant:\"SH_zxL5Vq\"},VbQY6vNOg:{variant:\"TSeotqQjL\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"sW0nud3pp\",layoutId:\"sW0nud3pp\",style:{width:\"100%\"},variant:\"Vobo7pRP3\",width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{className:cx(serializationHash,...sharedStyleClassNames),id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",`.${metadata.bodyClassName}-framer-4ziZ8 { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); }`,\".framer-4ziZ8.framer-1cc9mvj, .framer-4ziZ8 .framer-1cc9mvj { display: block; }\",\".framer-4ziZ8.framer-xx9218 { align-content: center; align-items: center; background-color: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, #eae8e1); display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1536px; }\",\".framer-4ziZ8 .framer-185opyf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 20px 50px 50px 50px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-luk696 { align-content: center; align-items: center; background: linear-gradient(180deg, #f7f4f2 0%, rgba(247, 244, 242, 0) 83.55469107627869%); border-bottom-left-radius: 36px; border-bottom-right-radius: 36px; border-top-left-radius: 36px; border-top-right-radius: 36px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1ms3wcs-container, .framer-4ziZ8 .framer-1ktzedd-container, .framer-4ziZ8 .framer-a2k7h0-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1472uof { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: flex-start; max-width: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1d108gk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-y1xyw1 { 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; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-2tka51 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1kradsz, .framer-4ziZ8 .framer-1szsjv1, .framer-4ziZ8 .framer-19fhbqx, .framer-4ziZ8 .framer-1x0z7w, .framer-4ziZ8 .framer-1pj1eyv { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-4ziZ8 .framer-1djsktt { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 640px; position: relative; width: 99%; }\",\".framer-4ziZ8 .framer-1xjnpk3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 30px 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-7n08ek { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 80px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 82%; }\",\".framer-4ziZ8 .framer-d8ekc8 { 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-4ziZ8 .framer-kouw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 84px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1n4svf1 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1jtrffz { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 32px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1tysyzi { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-4ziZ8 .framer-1xm2os { align-content: center; align-items: center; display: flex; flex: 5 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-4ziZ8 .framer-wd9bs6 { --framer-paragraph-spacing: 32px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-4ziZ8 .framer-1fsovz9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1dsnuw, .framer-4ziZ8 .framer-17a9mw6, .framer-4ziZ8 .framer-1mfb1m { -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: var(--token-50cd05fb-310d-48a3-bab2-b86bf212896f, #ffebd9); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; overflow: visible; padding: 24px; position: relative; width: 1px; }\",\".framer-4ziZ8 .framer-1um0zug, .framer-4ziZ8 .framer-1lgur8y, .framer-4ziZ8 .framer-9c83ah { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-4ziZ8 .framer-1rk3edx, .framer-4ziZ8 .framer-1vwt3ij, .framer-4ziZ8 .framer-1yaorkn, .framer-4ziZ8 .framer-vhqt1e, .framer-4ziZ8 .framer-afdt76, .framer-4ziZ8 .framer-wlucdy { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-4ziZ8 .framer-1kxhjmh { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 60px 0px 60px 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1igsok7 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 31px; height: min-content; justify-content: center; overflow: hidden; padding: 41px 0px 41px 0px; position: relative; width: 87%; }\",\".framer-4ziZ8 .framer-10tq4af { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 73px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-zi4yrs, .framer-4ziZ8 .framer-1our9f4, .framer-4ziZ8 .framer-vyzkit, .framer-4ziZ8 .framer-zbs63a { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 40%; word-break: break-word; word-wrap: break-word; }\",\".framer-4ziZ8 .framer-1mrtfgc { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 73px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1hv2j3g { 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: 1280px; overflow: hidden; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1f39z7 { border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; flex: none; height: 769px; max-width: 1536px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-zvtyuo { 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-4ziZ8 .framer-152ql54 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 60px 60px 55px 60px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1qmygkc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 64px; height: min-content; justify-content: center; max-width: 1280px; overflow: hidden; padding: 60px 60px 38px 60px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1huvd7d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 42px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-4ziZ8 .framer-uyjuse-container, .framer-4ziZ8 .framer-o7hn63-container, .framer-4ziZ8 .framer-1dtd23l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-4ziZ8 .framer-jr5xlb { align-content: center; align-items: center; border-bottom-left-radius: 64px; border-bottom-right-radius: 64px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px 0px 40px 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1hawt3j { 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: 1280px; overflow: visible; padding: 0px 60px 0px 60px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-prb7tk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 49px; height: min-content; justify-content: center; overflow: visible; padding: 80px 0px 0px 0px; position: relative; width: 100%; }\",\".framer-4ziZ8 .framer-1skqnt5 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 1160px; word-break: break-word; word-wrap: break-word; }\",\".framer-4ziZ8 .framer-stfe7x { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 49px; height: 193px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 133%; }\",\".framer-4ziZ8 .framer-1mxz7v9, .framer-4ziZ8 .framer-oa372v, .framer-4ziZ8 .framer-18tbm5h, .framer-4ziZ8 .framer-hu5uc1, .framer-4ziZ8 .framer-1dgenwx { aspect-ratio: 2 / 1; flex: none; height: 65%; position: relative; width: var(--framer-aspect-ratio-supported, 251px); }\",\".framer-4ziZ8 .framer-1wp7me8 { aspect-ratio: 2 / 1; flex: none; height: 65%; position: relative; width: var(--framer-aspect-ratio-supported, 250px); }\",\".framer-4ziZ8 .framer-15slpni { flex: none; height: 60px; overflow: visible; position: relative; width: 248px; }\",\".framer-4ziZ8 .framer-1b5wynv-container { cursor: pointer; flex: none; height: auto; left: 50%; position: absolute; top: 50%; transform: translate(-50%, -50%); width: auto; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4ziZ8.framer-xx9218, .framer-4ziZ8 .framer-185opyf, .framer-4ziZ8 .framer-luk696, .framer-4ziZ8 .framer-1472uof, .framer-4ziZ8 .framer-1d108gk, .framer-4ziZ8 .framer-y1xyw1, .framer-4ziZ8 .framer-2tka51, .framer-4ziZ8 .framer-1xjnpk3, .framer-4ziZ8 .framer-7n08ek, .framer-4ziZ8 .framer-d8ekc8, .framer-4ziZ8 .framer-kouw, .framer-4ziZ8 .framer-1n4svf1, .framer-4ziZ8 .framer-1jtrffz, .framer-4ziZ8 .framer-1tysyzi, .framer-4ziZ8 .framer-1xm2os, .framer-4ziZ8 .framer-1fsovz9, .framer-4ziZ8 .framer-1dsnuw, .framer-4ziZ8 .framer-1um0zug, .framer-4ziZ8 .framer-17a9mw6, .framer-4ziZ8 .framer-1lgur8y, .framer-4ziZ8 .framer-1mfb1m, .framer-4ziZ8 .framer-9c83ah, .framer-4ziZ8 .framer-1kxhjmh, .framer-4ziZ8 .framer-1igsok7, .framer-4ziZ8 .framer-10tq4af, .framer-4ziZ8 .framer-1mrtfgc, .framer-4ziZ8 .framer-1hv2j3g, .framer-4ziZ8 .framer-zvtyuo, .framer-4ziZ8 .framer-152ql54, .framer-4ziZ8 .framer-1qmygkc, .framer-4ziZ8 .framer-1huvd7d, .framer-4ziZ8 .framer-jr5xlb, .framer-4ziZ8 .framer-1hawt3j, .framer-4ziZ8 .framer-prb7tk, .framer-4ziZ8 .framer-stfe7x { gap: 0px; } .framer-4ziZ8.framer-xx9218 > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-4ziZ8.framer-xx9218 > :first-child, .framer-4ziZ8 .framer-185opyf > :first-child, .framer-4ziZ8 .framer-luk696 > :first-child, .framer-4ziZ8 .framer-1472uof > :first-child, .framer-4ziZ8 .framer-1d108gk > :first-child, .framer-4ziZ8 .framer-y1xyw1 > :first-child, .framer-4ziZ8 .framer-2tka51 > :first-child, .framer-4ziZ8 .framer-1xjnpk3 > :first-child, .framer-4ziZ8 .framer-7n08ek > :first-child, .framer-4ziZ8 .framer-kouw > :first-child, .framer-4ziZ8 .framer-1tysyzi > :first-child, .framer-4ziZ8 .framer-1dsnuw > :first-child, .framer-4ziZ8 .framer-17a9mw6 > :first-child, .framer-4ziZ8 .framer-1mfb1m > :first-child, .framer-4ziZ8 .framer-1kxhjmh > :first-child, .framer-4ziZ8 .framer-1igsok7 > :first-child, .framer-4ziZ8 .framer-zvtyuo > :first-child, .framer-4ziZ8 .framer-152ql54 > :first-child, .framer-4ziZ8 .framer-1qmygkc > :first-child, .framer-4ziZ8 .framer-jr5xlb > :first-child, .framer-4ziZ8 .framer-1hawt3j > :first-child, .framer-4ziZ8 .framer-prb7tk > :first-child { margin-top: 0px; } .framer-4ziZ8.framer-xx9218 > :last-child, .framer-4ziZ8 .framer-185opyf > :last-child, .framer-4ziZ8 .framer-luk696 > :last-child, .framer-4ziZ8 .framer-1472uof > :last-child, .framer-4ziZ8 .framer-1d108gk > :last-child, .framer-4ziZ8 .framer-y1xyw1 > :last-child, .framer-4ziZ8 .framer-2tka51 > :last-child, .framer-4ziZ8 .framer-1xjnpk3 > :last-child, .framer-4ziZ8 .framer-7n08ek > :last-child, .framer-4ziZ8 .framer-kouw > :last-child, .framer-4ziZ8 .framer-1tysyzi > :last-child, .framer-4ziZ8 .framer-1dsnuw > :last-child, .framer-4ziZ8 .framer-17a9mw6 > :last-child, .framer-4ziZ8 .framer-1mfb1m > :last-child, .framer-4ziZ8 .framer-1kxhjmh > :last-child, .framer-4ziZ8 .framer-1igsok7 > :last-child, .framer-4ziZ8 .framer-zvtyuo > :last-child, .framer-4ziZ8 .framer-152ql54 > :last-child, .framer-4ziZ8 .framer-1qmygkc > :last-child, .framer-4ziZ8 .framer-jr5xlb > :last-child, .framer-4ziZ8 .framer-1hawt3j > :last-child, .framer-4ziZ8 .framer-prb7tk > :last-child { margin-bottom: 0px; } .framer-4ziZ8 .framer-185opyf > *, .framer-4ziZ8 .framer-1xjnpk3 > *, .framer-4ziZ8 .framer-1kxhjmh > *, .framer-4ziZ8 .framer-zvtyuo > *, .framer-4ziZ8 .framer-jr5xlb > *, .framer-4ziZ8 .framer-1hawt3j > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-4ziZ8 .framer-luk696 > *, .framer-4ziZ8 .framer-152ql54 > *, .framer-4ziZ8 .framer-1qmygkc > * { margin: 0px; margin-bottom: calc(64px / 2); margin-top: calc(64px / 2); } .framer-4ziZ8 .framer-1472uof > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-4ziZ8 .framer-1d108gk > *, .framer-4ziZ8 .framer-kouw > * { margin: 0px; margin-bottom: calc(84px / 2); margin-top: calc(84px / 2); } .framer-4ziZ8 .framer-y1xyw1 > *, .framer-4ziZ8 .framer-2tka51 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-4ziZ8 .framer-7n08ek > * { margin: 0px; margin-bottom: calc(80px / 2); margin-top: calc(80px / 2); } .framer-4ziZ8 .framer-d8ekc8 > *, .framer-4ziZ8 .framer-1xm2os > *, .framer-4ziZ8 .framer-1hv2j3g > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-4ziZ8 .framer-d8ekc8 > :first-child, .framer-4ziZ8 .framer-1n4svf1 > :first-child, .framer-4ziZ8 .framer-1jtrffz > :first-child, .framer-4ziZ8 .framer-1xm2os > :first-child, .framer-4ziZ8 .framer-1fsovz9 > :first-child, .framer-4ziZ8 .framer-1um0zug > :first-child, .framer-4ziZ8 .framer-1lgur8y > :first-child, .framer-4ziZ8 .framer-9c83ah > :first-child, .framer-4ziZ8 .framer-10tq4af > :first-child, .framer-4ziZ8 .framer-1mrtfgc > :first-child, .framer-4ziZ8 .framer-1hv2j3g > :first-child, .framer-4ziZ8 .framer-1huvd7d > :first-child, .framer-4ziZ8 .framer-stfe7x > :first-child { margin-left: 0px; } .framer-4ziZ8 .framer-d8ekc8 > :last-child, .framer-4ziZ8 .framer-1n4svf1 > :last-child, .framer-4ziZ8 .framer-1jtrffz > :last-child, .framer-4ziZ8 .framer-1xm2os > :last-child, .framer-4ziZ8 .framer-1fsovz9 > :last-child, .framer-4ziZ8 .framer-1um0zug > :last-child, .framer-4ziZ8 .framer-1lgur8y > :last-child, .framer-4ziZ8 .framer-9c83ah > :last-child, .framer-4ziZ8 .framer-10tq4af > :last-child, .framer-4ziZ8 .framer-1mrtfgc > :last-child, .framer-4ziZ8 .framer-1hv2j3g > :last-child, .framer-4ziZ8 .framer-1huvd7d > :last-child, .framer-4ziZ8 .framer-stfe7x > :last-child { margin-right: 0px; } .framer-4ziZ8 .framer-1n4svf1 > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } .framer-4ziZ8 .framer-1jtrffz > * { margin: 0px; margin-left: calc(32px / 2); margin-right: calc(32px / 2); } .framer-4ziZ8 .framer-1tysyzi > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-4ziZ8 .framer-1fsovz9 > * { margin: 0px; margin-left: calc(24px / 2); margin-right: calc(24px / 2); } .framer-4ziZ8 .framer-1dsnuw > *, .framer-4ziZ8 .framer-17a9mw6 > *, .framer-4ziZ8 .framer-1mfb1m > * { margin: 0px; margin-bottom: calc(5px / 2); margin-top: calc(5px / 2); } .framer-4ziZ8 .framer-1um0zug > *, .framer-4ziZ8 .framer-1lgur8y > *, .framer-4ziZ8 .framer-9c83ah > * { margin: 0px; margin-left: calc(2.240963935852051px / 2); margin-right: calc(2.240963935852051px / 2); } .framer-4ziZ8 .framer-1igsok7 > * { margin: 0px; margin-bottom: calc(31px / 2); margin-top: calc(31px / 2); } .framer-4ziZ8 .framer-10tq4af > *, .framer-4ziZ8 .framer-1mrtfgc > * { margin: 0px; margin-left: calc(73px / 2); margin-right: calc(73px / 2); } .framer-4ziZ8 .framer-1huvd7d > * { margin: 0px; margin-left: calc(42px / 2); margin-right: calc(42px / 2); } .framer-4ziZ8 .framer-prb7tk > * { margin: 0px; margin-bottom: calc(49px / 2); margin-top: calc(49px / 2); } .framer-4ziZ8 .framer-stfe7x > * { margin: 0px; margin-left: calc(49px / 2); margin-right: calc(49px / 2); } }\",`@media (min-width: 1200px) and (max-width: 1535px) { .${metadata.bodyClassName}-framer-4ziZ8 { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); } .framer-4ziZ8.framer-xx9218 { width: 1200px; } .framer-4ziZ8 .framer-185opyf { order: 0; } .framer-4ziZ8 .framer-1xjnpk3 { order: 1; padding: 0px 50px 30px 50px; } .framer-4ziZ8 .framer-7n08ek, .framer-4ziZ8 .framer-1igsok7, .framer-4ziZ8 .framer-1skqnt5 { width: 100%; } .framer-4ziZ8 .framer-1dsnuw, .framer-4ziZ8 .framer-17a9mw6, .framer-4ziZ8 .framer-1mfb1m { flex: none; width: min-content; } .framer-4ziZ8 .framer-1kxhjmh { order: 2; padding: 60px 50px 60px 50px; } .framer-4ziZ8 .framer-1f39z7 { flex: 1 0 0px; max-width: unset; width: 1px; } .framer-4ziZ8 .framer-zvtyuo { order: 3; padding: 0px 50px 0px 50px; } .framer-4ziZ8 .framer-1qmygkc { overflow: visible; } .framer-4ziZ8 .framer-1huvd7d { gap: 30px; overflow: visible; width: 120%; } .framer-4ziZ8 .framer-uyjuse-container, .framer-4ziZ8 .framer-o7hn63-container, .framer-4ziZ8 .framer-1dtd23l-container { width: 30%; } .framer-4ziZ8 .framer-jr5xlb { order: 4; padding: 0px 50px 40px 50px; } .framer-4ziZ8 .framer-15slpni { order: 5; } .framer-4ziZ8 .framer-a2k7h0-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4ziZ8 .framer-1huvd7d { gap: 0px; } .framer-4ziZ8 .framer-1huvd7d > * { margin: 0px; margin-left: calc(30px / 2); margin-right: calc(30px / 2); } .framer-4ziZ8 .framer-1huvd7d > :first-child { margin-left: 0px; } .framer-4ziZ8 .framer-1huvd7d > :last-child { margin-right: 0px; } }}`,`@media (min-width: 768px) and (max-width: 1199px) { .${metadata.bodyClassName}-framer-4ziZ8 { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); } .framer-4ziZ8.framer-xx9218 { width: 768px; } .framer-4ziZ8 .framer-185opyf { order: 0; } .framer-4ziZ8 .framer-luk696 { gap: 48px; } .framer-4ziZ8 .framer-1xjnpk3 { order: 1; padding: 0px 50px 30px 50px; } .framer-4ziZ8 .framer-d8ekc8 { width: 128%; } .framer-4ziZ8 .framer-1tysyzi, .framer-4ziZ8 .framer-1dsnuw, .framer-4ziZ8 .framer-17a9mw6, .framer-4ziZ8 .framer-1mfb1m { flex: none; width: 100%; } .framer-4ziZ8 .framer-1fsovz9 { flex-direction: column; } .framer-4ziZ8 .framer-1kxhjmh { order: 2; padding: 60px 50px 60px 50px; } .framer-4ziZ8 .framer-1hv2j3g { height: 374px; } .framer-4ziZ8 .framer-1f39z7 { flex: 1 0 0px; height: 100%; max-width: unset; width: 1px; } .framer-4ziZ8 .framer-zvtyuo { order: 3; padding: 0px 50px 0px 50px; } .framer-4ziZ8 .framer-152ql54 { padding: 60px 60px 80px 60px; } .framer-4ziZ8 .framer-1qmygkc { overflow: visible; padding: 60px 60px 80px 60px; } .framer-4ziZ8 .framer-1huvd7d { gap: 22px; overflow: visible; width: 123%; } .framer-4ziZ8 .framer-uyjuse-container, .framer-4ziZ8 .framer-o7hn63-container, .framer-4ziZ8 .framer-1dtd23l-container { width: 33%; } .framer-4ziZ8 .framer-jr5xlb { order: 4; padding: 0px 50px 40px 50px; } .framer-4ziZ8 .framer-1mxz7v9, .framer-4ziZ8 .framer-oa372v, .framer-4ziZ8 .framer-18tbm5h, .framer-4ziZ8 .framer-1wp7me8, .framer-4ziZ8 .framer-hu5uc1, .framer-4ziZ8 .framer-1dgenwx { width: var(--framer-aspect-ratio-supported, 400px); } .framer-4ziZ8 .framer-15slpni { order: 5; } .framer-4ziZ8 .framer-a2k7h0-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4ziZ8 .framer-luk696, .framer-4ziZ8 .framer-1fsovz9, .framer-4ziZ8 .framer-1huvd7d { gap: 0px; } .framer-4ziZ8 .framer-luk696 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-4ziZ8 .framer-luk696 > :first-child, .framer-4ziZ8 .framer-1fsovz9 > :first-child { margin-top: 0px; } .framer-4ziZ8 .framer-luk696 > :last-child, .framer-4ziZ8 .framer-1fsovz9 > :last-child { margin-bottom: 0px; } .framer-4ziZ8 .framer-1fsovz9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-4ziZ8 .framer-1huvd7d > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-4ziZ8 .framer-1huvd7d > :first-child { margin-left: 0px; } .framer-4ziZ8 .framer-1huvd7d > :last-child { margin-right: 0px; } }}`,`@media (max-width: 767px) { .${metadata.bodyClassName}-framer-4ziZ8 { background: var(--token-f0989dd8-6b42-4981-882e-6f9fe7f602ce, rgb(234, 232, 225)); } .framer-4ziZ8.framer-xx9218 { width: 320px; } .framer-4ziZ8 .framer-185opyf { order: 0; padding: 20px 10px 50px 10px; } .framer-4ziZ8 .framer-luk696, .framer-4ziZ8 .framer-1d108gk { gap: 48px; } .framer-4ziZ8 .framer-1472uof, .framer-4ziZ8 .framer-7n08ek, .framer-4ziZ8 .framer-1hawt3j { padding: 0px 20px 0px 20px; } .framer-4ziZ8 .framer-1djsktt { height: 320px; } .framer-4ziZ8 .framer-1xjnpk3 { order: 1; padding: 50px 10px 30px 10px; } .framer-4ziZ8 .framer-kouw { gap: 36px; } .framer-4ziZ8 .framer-1n4svf1 { flex-direction: column; gap: 32px; } .framer-4ziZ8 .framer-1xm2os, .framer-4ziZ8 .framer-1dsnuw, .framer-4ziZ8 .framer-17a9mw6, .framer-4ziZ8 .framer-1mfb1m { flex: none; width: 100%; } .framer-4ziZ8 .framer-1fsovz9 { flex-direction: column; } .framer-4ziZ8 .framer-1vwt3ij, .framer-4ziZ8 .framer-vhqt1e, .framer-4ziZ8 .framer-wlucdy { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; } .framer-4ziZ8 .framer-1kxhjmh { order: 2; padding: 12px 10px 12px 10px; } .framer-4ziZ8 .framer-1igsok7 { gap: 14px; padding: 21px 0px 21px 0px; width: 90%; } .framer-4ziZ8 .framer-10tq4af, .framer-4ziZ8 .framer-1mrtfgc { gap: 20px; } .framer-4ziZ8 .framer-vyzkit, .framer-4ziZ8 .framer-zbs63a { flex: 1 0 0px; width: 1px; } .framer-4ziZ8 .framer-1hv2j3g { height: 174px; padding: 0px 20px 0px 20px; } .framer-4ziZ8 .framer-1f39z7 { flex: 1 0 0px; height: 100%; max-width: unset; width: 1px; } .framer-4ziZ8 .framer-zvtyuo { order: 3; padding: 0px 10px 0px 10px; } .framer-4ziZ8 .framer-152ql54 { gap: 48px; padding: 60px 20px 0px 20px; } .framer-4ziZ8 .framer-1qmygkc { gap: 48px; padding: 39px 20px 39px 20px; } .framer-4ziZ8 .framer-1huvd7d { flex-direction: column; width: 100%; } .framer-4ziZ8 .framer-uyjuse-container, .framer-4ziZ8 .framer-o7hn63-container, .framer-4ziZ8 .framer-1dtd23l-container { width: 100%; } .framer-4ziZ8 .framer-jr5xlb { order: 4; padding: 0px 10px 40px 10px; } .framer-4ziZ8 .framer-1mxz7v9, .framer-4ziZ8 .framer-oa372v, .framer-4ziZ8 .framer-18tbm5h, .framer-4ziZ8 .framer-1wp7me8, .framer-4ziZ8 .framer-hu5uc1, .framer-4ziZ8 .framer-1dgenwx { width: var(--framer-aspect-ratio-supported, 400px); } .framer-4ziZ8 .framer-15slpni { order: 5; } .framer-4ziZ8 .framer-a2k7h0-container { order: 6; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-4ziZ8 .framer-luk696, .framer-4ziZ8 .framer-1d108gk, .framer-4ziZ8 .framer-kouw, .framer-4ziZ8 .framer-1n4svf1, .framer-4ziZ8 .framer-1fsovz9, .framer-4ziZ8 .framer-1igsok7, .framer-4ziZ8 .framer-10tq4af, .framer-4ziZ8 .framer-1mrtfgc, .framer-4ziZ8 .framer-152ql54, .framer-4ziZ8 .framer-1qmygkc, .framer-4ziZ8 .framer-1huvd7d { gap: 0px; } .framer-4ziZ8 .framer-luk696 > *, .framer-4ziZ8 .framer-1d108gk > *, .framer-4ziZ8 .framer-152ql54 > *, .framer-4ziZ8 .framer-1qmygkc > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-4ziZ8 .framer-luk696 > :first-child, .framer-4ziZ8 .framer-1d108gk > :first-child, .framer-4ziZ8 .framer-kouw > :first-child, .framer-4ziZ8 .framer-1n4svf1 > :first-child, .framer-4ziZ8 .framer-1fsovz9 > :first-child, .framer-4ziZ8 .framer-1igsok7 > :first-child, .framer-4ziZ8 .framer-152ql54 > :first-child, .framer-4ziZ8 .framer-1qmygkc > :first-child, .framer-4ziZ8 .framer-1huvd7d > :first-child { margin-top: 0px; } .framer-4ziZ8 .framer-luk696 > :last-child, .framer-4ziZ8 .framer-1d108gk > :last-child, .framer-4ziZ8 .framer-kouw > :last-child, .framer-4ziZ8 .framer-1n4svf1 > :last-child, .framer-4ziZ8 .framer-1fsovz9 > :last-child, .framer-4ziZ8 .framer-1igsok7 > :last-child, .framer-4ziZ8 .framer-152ql54 > :last-child, .framer-4ziZ8 .framer-1qmygkc > :last-child, .framer-4ziZ8 .framer-1huvd7d > :last-child { margin-bottom: 0px; } .framer-4ziZ8 .framer-kouw > * { margin: 0px; margin-bottom: calc(36px / 2); margin-top: calc(36px / 2); } .framer-4ziZ8 .framer-1n4svf1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-4ziZ8 .framer-1fsovz9 > * { margin: 0px; margin-bottom: calc(24px / 2); margin-top: calc(24px / 2); } .framer-4ziZ8 .framer-1igsok7 > * { margin: 0px; margin-bottom: calc(14px / 2); margin-top: calc(14px / 2); } .framer-4ziZ8 .framer-10tq4af > *, .framer-4ziZ8 .framer-1mrtfgc > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-4ziZ8 .framer-10tq4af > :first-child, .framer-4ziZ8 .framer-1mrtfgc > :first-child { margin-left: 0px; } .framer-4ziZ8 .framer-10tq4af > :last-child, .framer-4ziZ8 .framer-1mrtfgc > :last-child { margin-right: 0px; } .framer-4ziZ8 .framer-1huvd7d > * { margin: 0px; margin-bottom: calc(42px / 2); margin-top: calc(42px / 2); } }}`,...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4579\n * @framerIntrinsicWidth 1536\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"aPUGfjSlb\":{\"layout\":[\"fixed\",\"auto\"]},\"d47eP6SLA\":{\"layout\":[\"fixed\",\"auto\"]},\"VbQY6vNOg\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerResponsiveScreen\n */const FramerXjh51IA16=withCSS(Component,css,\"framer-4ziZ8\");export default FramerXjh51IA16;FramerXjh51IA16.displayName=\"Project\";FramerXjh51IA16.defaultProps={height:4579,width:1536};addFonts(FramerXjh51IA16,[{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:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NGBUP45ES3F7RD5XGKPEDJ6QEPO4TMOK/EXDVWJ2EDDVVV65UENMX33EDDYBX6OF7/6P4FPMFQH7CCC7RZ4UU4NKSGJ2RLF7V5.woff2\",weight:\"700\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/2TYFCBHUANEXS6QGR5EQDUNAFH6LSWM3/AYNOU3VEA4LRTDNKJQUFNVNUTYSGOUOP/UXO4O7K2G3HI3D2VKD7UXVJVJD26P4BQ.woff2\",weight:\"400\"},{family:\"Manrope\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/6U2SGH566NSNERG6RGEV3DSNEK7DL2RF/JRDYRKMSAW2H35IWEQIPL67HAJQ35MG5/JNU3GNMUBPWW6V6JTED3S27XL5HN7NM5.woff2\",weight:\"600\"}]},...NavbarFonts,...CaseStudyProcessFonts,...CardVariableFonts,...DownloadFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerXjh51IA16\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerResponsiveScreen\":\"\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicWidth\":\"1536\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"aPUGfjSlb\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"d47eP6SLA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"VbQY6vNOg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"4579\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "k5BAA+I,IAAIA,IAAU,SAASA,EAAS,CAACA,EAAS,QAAW,UAAUA,EAAS,OAAU,QAAS,GAAGA,KAAWA,GAAS,CAAC,EAAE,EAAE,IAAIC,GAAS,SAASA,EAAQ,CAACA,EAAQ,OAAU,SAASA,EAAQ,IAAO,KAAM,GAAGA,IAAUA,EAAQ,CAAC,EAAE,EAE7W,IAAMC,GAAgB,mCACtB,SAASC,IAAsB,CAAC,OAAG,OAAO,SAAW,IAAmB,GAAiE,CAAC,CAA/C,SAAS,cAAcD,EAAe,CAAkB,CAYhI,SAARE,GAA0BC,EAAM,CAAC,GAAK,CAAC,aAAAC,EAAa,aAAAC,EAAa,YAAAC,CAAW,EAAEH,EAAW,CAAC,gBAAAI,EAAgB,MAAAC,EAAM,aAAAC,EAAa,QAAAC,EAAQ,eAAAC,EAAe,WAAAC,EAAW,aAAAC,EAAa,cAAAC,EAAc,YAAAC,EAAY,IAAAC,CAAG,EAAEZ,EAAmBa,EAAuBhB,GAAqB,EAAMiB,EAAyBD,IAA2Bd,EAAM,UAAUJ,EAAQ,MAAImB,EAAYf,EAAM,QAAUA,EAAM,UAAUJ,EAAQ,SAAOmB,EAAYf,EAAM,UAAS,IAAMgB,EAAaR,EAAe,GAAGC,OAAgBC,OAAkBC,OAAmBC,MAAgB,GAAGL,MAAkBU,EAAQ,IAAI,CAAC,IAAIC,EAAIC,EAAK,GAAG,CAAChB,EAAY,OAAO,IAAMiB,EAAU,CAAC,MAAMjB,EAAY,YAAY,QAAQ,EAAE,EAAE,WAAW,CAAC,EAAE,OAAOA,EAAY,OAAOR,GAAS,SAAY,GAAAuB,EAAIf,EAAY,SAAS,MAAMe,IAAM,SAAcA,EAAI,KAAmBG,EAAK,MAAM,CAAC,MAAMD,EAAU,IAAM,GAAAD,EAAKhB,EAAY,SAAS,MAAMgB,IAAO,SAAcA,EAAK,KAAMhB,EAAY,MAAM,IAAI,OAAO,EAAEA,EAAY,MAAM,IAAI,gBAAgB,IAAIA,EAAY,MAAM,IAAI,MAAMA,EAAY,KAAK,OAAOA,EAAY,IAAI,CAAC,EAAgBkB,EAAK,MAAM,CAAC,MAAMD,EAAU,MAAM,6BAA6B,MAAMjB,EAAY,KAAK,OAAOA,EAAY,KAAK,KAAKA,EAAY,MAAM,QAAQ,cAAc,SAAuBkB,EAAK,OAAO,CAAC,EAAE,2NAA2N,CAAC,CAAC,CAAC,CAAE,EAAQC,EAAU,IAAQtB,EAAM,UAAUJ,EAAQ,KAAKI,EAAM,QAA0BA,EAAM,UAAUJ,EAAQ,QAAQI,EAAM,QAAc,UAAgB,OAAeuB,EAAYT,EAAuB,gBAAgB,sBAAsB,OAAqBU,EAAMC,EAAO,EAAE,CAAC,OAAO,SAAS,KAAKV,EAAY,SAAS,GAAK,MAAMQ,EAAY,MAAM,CAAC,IAAAV,EAAI,SAAS,GAAG,WAAW,EAAE,WAAW,QAAQ,WAAW,IAAI,MAAM,cAAc,GAAGb,EAAM,MAAM,GAAG0B,GAAa,GAAG1B,EAAM,YAAY,QAAQgB,EAAa,MAAMX,EAAM,gBAAgBD,EAAgB,aAAaE,EAAa,WAAW,OAAO,aAAaqB,GAAgB3B,EAAM,WAAW,EAAE,WAAW,SAAS,OAAOsB,EAAU,CAAC,EAAE,WAAWpB,EAAa,WAA6DA,GAAa,WAAW,SAAS,CAACe,EAAQ,EAAEjB,EAAM,IAAI,CAAC,CAAC,CAAE,CAAED,GAAS,YAAY,WAAW6B,GAAoB7B,GAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAK8B,EAAY,OAAO,aAAa,UAAU,EAAE,QAAQ,CAAC,KAAKA,EAAY,KAAK,wBAAwB,GAAK,MAAM,SAAS,QAAQ,CAACjC,EAAQ,OAAOA,EAAQ,GAAG,CAAC,EAAE,OAAO,CAAC,KAAKiC,EAAY,OAAO,MAAM,IAAI,YAAY,iBAAiB,OAAO7B,GAAOA,EAAM,UAAUJ,EAAQ,MAAM,EAAE,QAAQ,CAAC,KAAKiC,EAAY,KAAK,MAAM,IAAI,iBAAiB,CAAC,EAAE,OAAO7B,GAAOA,EAAM,UAAUJ,EAAQ,GAAG,EAAE,YAAY,CAC7uF,KAAKiC,EAAY,KAAK,MAAM,OAAO,SAAS,UAAU,EAAE,YAAY,CAAC,KAAKA,EAAY,OAAO,SAAS,GAAK,MAAM,OAAO,YAAY,cAAc,SAAS,CAAC,KAAK,CAAC,MAAM,OAAO,KAAKA,EAAY,KAAK,QAAQ,OAAO,OAAOlC,EAAQ,EAAE,aAAa,OAAO,OAAOA,EAAQ,EAAE,wBAAwB,EAAI,EAAE,MAAM,CAAC,MAAM,QAAQ,KAAKkC,EAAY,MAAM,aAAa,OAAO,OAAO7B,GAAOA,EAAM,OAAOL,GAAS,MAAM,EAAE,MAAM,CAAC,MAAM,OAAO,KAAKkC,EAAY,gBAAgB,iBAAiB,CAAC,MAAM,MAAM,KAAK,EAAE,OAAO7B,GAAOA,EAAM,OAAOL,GAAS,OAAO,EAAE,KAAK,CAAC,KAAKkC,EAAY,OAAO,eAAe,GAAK,IAAI,EAAE,aAAa,GAAG,IAAI,GAAG,EAAE,UAAU,CAAC,MAAM,QAAQ,KAAKA,EAAY,KAAK,wBAAwB,GAAK,QAAQ,CAAC,QAAQ,KAAK,EAAE,aAAa,CAAC,QAAQ,KAAK,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,YAAY,eAAe,SAAS,CAAC,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,MAAM,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,aAAa,MAAM,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,SAAS,eAAe,GAAK,aAAa,EAAE,EAAE,QAAQ,CAAC,MAAM,UAAU,KAAKA,EAAY,YAAY,UAAU,iBAAiB,aAAa,CAAC,UAAU,kBAAkB,EAAE,aAAa,GAAG,UAAU,CAAC,aAAa,eAAe,gBAAgB,aAAc,EAAE,YAAY,CAAC,IAAI,IAAI,IAAI,GAAG,EAAE,IAAI,CAAC,EAAE,IAAI,CAAC,MAAM,MAAM,KAAKA,EAAY,OAAO,eAAe,GAAK,aAAa,CAAC,CAAC,CAAC,EAAE,aAAa,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,YAAY,SAAS,SAAS,GAAK,SAAS,CAAC,MAAM,CAAC,KAAKA,EAAY,OAAO,MAAM,QAAQ,IAAI,EAAE,IAAI,GAAG,eAAe,GAAK,KAAK,IAAI,aAAa,GAAG,EAAE,gBAAgB,CAAC,KAAKA,EAAY,MAAM,MAAM,OAAO,aAAa,OAAO,SAAS,EAAI,EAAE,MAAM,CAAC,KAAKA,EAAY,MAAM,MAAM,QAAQ,aAAa,OAAO,SAAS,EAAI,EAAE,WAAW,CAAC,KAAKA,EAAY,WAAW,MAAM,aAAa,aAAa,CAAC,KAAK,SAAS,UAAU,IAAI,QAAQ,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAMH,GAAa,CAAC,QAAQ,OAAO,WAAW,SAAS,aAAa,SAAS,eAAe,MAAM,EAA2DC,GAAgBG,GAAqFA,GAAkB,UAA6BA,EAAkB,YAAY,OAAc,aAAiBA,EAAkB,YAAY,QAAe,WAAkB,SAAvI,OCfxlEC,EAAU,UAAU,CAAC,mBAAmB,aAAa,mBAAmB,cAAc,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,uEAAuE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,ilCAAilC,EAAeC,GAAU,eCA9qL,IAAMC,GAAW,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,mBAAmB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,iBAAiB,EAAE,SAASC,EAAqBC,KAAaC,EAAS,CAAC,IAAMC,EAAc,CAAC,EAAE,OAA0CD,GAAS,QAAQE,GAASA,GAAS,OAAO,OAAOD,EAAcF,EAAUG,CAAO,CAAC,CAAC,EAASD,CAAc,CAAC,IAAME,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAY,CAAC,MAAM,EAAE,SAAS,GAAG,KAAK,CAAC,IAAI,EAAE,IAAI,CAAC,EAAE,KAAK,OAAO,EAAQC,EAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAAkBT,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBU,GAASC,EAAaC,CAAQ,EAAQC,GAAwB,CAAC,cAAc,YAAY,kBAAkB,YAAY,mBAAmB,YAAY,gBAAgB,YAAY,gBAAgB,YAAY,mBAAmB,YAAY,YAAY,YAAY,SAAS,YAAY,UAAU,YAAY,YAAY,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,cAAAC,EAAc,YAAAC,EAAY,YAAAC,EAAY,YAAAC,EAAY,YAAAC,EAAY,YAAAC,EAAY,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAMC,EAAuCC,GAAMC,GAAO,MAAM,CAAC,GAAGZ,EAAM,WAAWC,EAAKJ,GAAqDG,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,4LAA4L,WAAWC,EAAMN,GAAqDI,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,4LAA4L,UAAUjB,GAA2De,EAAM,UAAU,UAAUd,GAA2Dc,EAAM,UAAU,WAAWG,EAAMd,GAA2DW,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,6DAA6D,WAAWC,EAAMT,GAAqDK,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,4LAA4L,WAAWC,EAAMP,GAAqDE,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,4LAA4L,WAAWC,EAAMhB,GAA2DU,EAAM,aAAa,MAAMM,IAAQ,OAAOA,EAAM,2BAA2B,UAAUlB,GAA2DY,EAAM,UAAU,WAAWO,EAAMb,GAAqDM,EAAM,aAAa,MAAMO,IAAQ,OAAOA,EAAM,4LAA4L,WAAWC,EAAMf,GAA2DO,EAAM,aAAa,MAAMQ,IAAQ,OAAOA,EAAM,2BAA2B,WAAWC,EAAMlB,GAA2DS,EAAM,aAAa,MAAMS,IAAQ,OAAOA,EAAM,2BAA2B,UAAUtB,GAA2Da,EAAM,UAAU,SAASW,IAAOD,EAAuC9B,GAAwBoB,EAAM,OAAO,KAAK,MAAMU,IAAyC,OAAOA,EAAuCV,EAAM,WAAW,MAAMW,KAAQ,OAAOA,GAAM,YAAY,UAAU3B,GAA2DgB,EAAM,UAAU,WAAWY,GAAOpB,GAA2DQ,EAAM,aAAa,MAAMY,KAAS,OAAOA,GAAO,0BAA0B,CAAE,EAAQC,GAAuB,CAACb,EAAMvC,IAAeuC,EAAM,iBAAwBvC,EAAS,KAAK,GAAG,EAAEuC,EAAM,iBAAwBvC,EAAS,KAAK,GAAG,EAAUqD,GAA6BC,GAAW,SAASf,EAAMgB,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAA3D,EAAQ,UAAA4D,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEzD,GAASmB,CAAK,EAAO,CAAC,YAAAuC,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,GAAU,gBAAAC,GAAgB,WAAAC,EAAW,SAAArF,EAAQ,EAAEsF,GAAgB,CAAC,WAAA3F,GAAW,eAAe,YAAY,QAAAO,EAAQ,kBAAAL,EAAiB,CAAC,EAAQ0F,EAAiBnC,GAAuBb,EAAMvC,EAAQ,EAAO,CAAC,sBAAAwF,EAAsB,MAAAC,EAAK,EAAEC,GAAyBZ,CAAW,EAAQa,GAAoBH,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQQ,GAAYL,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQS,GAAmBN,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQU,GAAYP,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQW,GAAoBR,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQY,GAAYT,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQa,GAAoBV,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQc,GAAYX,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQe,GAAmBZ,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQgB,GAAYb,EAAsB,SAASI,IAAO,CAACP,EAAW,WAAW,CAAE,CAAC,EAAQiB,GAAWC,GAAO,IAAI,EAAQC,GAAY,IAAQ,EAAC,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,SAAS1B,CAAW,EAAmC2B,GAAsBC,GAAM,EAAQC,GAAsB,CAAa/C,EAAS,EAAQgD,EAAkBC,GAAqB,EAAE,OAAoB/F,EAAKgG,GAAY,CAAC,GAAGjD,GAA4C4C,GAAgB,SAAsB3F,EAAKE,GAAS,CAAC,QAAQhB,GAAS,QAAQ,GAAM,SAAsBc,EAAKT,EAAW,CAAC,MAAMF,GAAY,SAAsB4G,EAAM9F,EAAO,IAAI,CAAC,GAAG4D,EAAU,GAAGI,EAAgB,UAAU+B,GAAGpH,GAAkB,GAAG+G,GAAsB,iBAAiB/C,EAAUmB,CAAU,EAAE,mBAAmB,WAAW,iBAAiBQ,EAAiB,SAAS,YAAY,IAAIhC,GAA6B+C,GAAK,MAAM,CAAC,GAAG3C,CAAK,EAAE,GAAG7D,EAAqB,CAAC,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,eAAe,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,kBAAkB,EAAE,UAAU,CAAC,mBAAmB,WAAW,EAAE,UAAU,CAAC,mBAAmB,aAAa,EAAE,UAAU,CAAC,mBAAmB,iBAAiB,EAAE,UAAU,CAAC,mBAAmB,eAAe,CAAC,EAAEgF,EAAYI,CAAc,EAAE,SAAS,CAAc6B,EAAM9F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,MAAM,iBAAiBsE,EAAiB,SAAS,YAAY,SAAS,CAAczE,EAAKT,EAAW,CAAC,MAAMF,GAAY,SAAsB4G,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiB,GAAK,iBAAiBsE,EAAiB,SAAS,YAAY,aAAaI,GAAoB,MAAM,CAAC,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAG7F,EAAqB,CAAC,UAAU,CAAC,aAAa,OAAU,MAAM+F,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,CAAC,EAAEf,EAAYI,CAAc,EAAE,SAAS,CAAcpE,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBsE,EAAiB,SAAS,YAAY,SAAsBwB,EAAM9F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBsE,EAAiB,SAAS,YAAY,SAAS,CAAczE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,MAAM,CAAC,OAAO,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAezE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,yBAAyB,MAAM,CAAC,4BAA4B,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,KAAKzB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGhE,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,4DAA4D,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,uEAAuE,QAAQ,CAAC,EAAE,KAAKpB,EAAU,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGrE,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,0BAA0B,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMF,GAAY,SAAsB4G,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB,GAAK,iBAAiBsE,EAAiB,SAAS,YAAY,aAAaO,GAAmB,GAAGhG,EAAqB,CAAC,UAAU,CAAC,aAAa,OAAU,MAAMiG,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,CAAC,EAAEjB,EAAYI,CAAc,EAAE,SAAS,CAAcpE,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBsE,EAAiB,SAAS,YAAY,SAAsBwB,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBsE,EAAiB,SAAS,YAAY,SAAS,CAAczE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,8BAA8B,MAAM,CAAC,OAAO,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAezE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,8BAA8B,MAAM,CAAC,4BAA4B,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,KAAKxB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGjE,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,qBAAqB,uEAAuE,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzF,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,KAAKmD,CAAS,EAAE,UAAU,CAAC,SAAsBtD,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMF,GAAY,SAAsB4G,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,cAAc,iBAAiB,GAAK,iBAAiBsE,EAAiB,SAAS,YAAY,aAAaS,GAAoB,GAAGlG,EAAqB,CAAC,UAAU,CAAC,aAAa,OAAU,MAAMmG,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,CAAC,EAAEnB,EAAYI,CAAc,EAAE,SAAS,CAAcpE,EAAKG,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,UAAU,iBAAiBsE,EAAiB,SAAS,YAAY,SAAsBwB,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBsE,EAAiB,SAAS,YAAY,SAAS,CAAczE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,KAAK,MAAM,CAAC,OAAO,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAezE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,2BAA2B,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,4BAA4B,MAAM,CAAC,4BAA4B,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,KAAKvB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGlE,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,uBAAuB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzF,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,KAAKoD,CAAS,CAAC,EAAES,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMF,GAAY,SAAsB4G,EAAM9F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,YAAY,iBAAiB,GAAK,iBAAiBsE,EAAiB,SAAS,YAAY,aAAaW,GAAoB,GAAGpG,EAAqB,CAAC,UAAU,CAAC,aAAa,OAAU,MAAMqG,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,CAAC,EAAErB,EAAYI,CAAc,EAAE,SAAS,CAAcpE,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBsE,EAAiB,SAAS,YAAY,SAAsBwB,EAAM9F,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,WAAW,iBAAiBsE,EAAiB,SAAS,YAAY,SAAS,CAAczE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,OAAO,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAezE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,mBAAmB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,4BAA4B,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,KAAKtB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGnE,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,qBAAqB,uEAAuE,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzF,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,+FAA+F,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,KAAKqD,CAAS,CAAC,EAAEQ,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMF,GAAY,SAAsB4G,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,SAAS,iBAAiB,GAAK,iBAAiBsE,EAAiB,SAAS,YAAY,aAAaa,GAAmB,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,EAAE,EAAE,GAAGtG,EAAqB,CAAC,UAAU,CAAC,aAAa,OAAU,MAAMuG,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,EAAE,UAAU,CAAC,aAAa,OAAU,MAAMA,EAAW,CAAC,EAAEvB,EAAYI,CAAc,EAAE,SAAS,CAAcpE,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,UAAU,iBAAiBsE,EAAiB,SAAS,YAAY,SAAsBwB,EAAM9F,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,WAAW,iBAAiBsE,EAAiB,SAAS,YAAY,SAAS,CAAczE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,UAAU,8BAA8B,qBAAqB,YAAY,SAAS,IAAI,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iCAAiC,MAAM,CAAC,OAAO,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,QAAQ,GAAG,EAAE,kBAAkB,SAAS,mBAAmB,EAAI,CAAC,EAAezE,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uCAAuC,uBAAuB,+DAA+D,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,6BAA6B,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,mBAAmB,iCAAiC,MAAM,CAAC,4BAA4B,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,oEAAoE,EAAE,KAAKrB,EAAU,kBAAkB,MAAM,mBAAmB,GAAK,GAAGpE,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,EAAE,UAAU,CAAC,SAAsBH,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,0BAA0B,UAAU,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,0BAA0B,CAAC,CAAC,CAAC,EAAE,MAAM,CAAC,oBAAoB,EAAE,kBAAkB,QAAQ,CAAC,EAAE6D,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAepE,EAAKT,EAAW,CAAC,MAAMD,GAAY,SAAsBU,EAAKmG,EAAS,CAAC,sBAAsB,GAAK,SAAsBnG,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,uBAAuB,MAAM,CAAC,oBAAoB,EAAE,iBAAiBsE,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,oBAAoB,QAAQ,CAAC,EAAE,SAAS,CAAC,UAAU,CAAC,QAAQ,CAAC,EAAE,UAAU,CAAC,QAAQ,CAAC,CAAC,EAAE,kBAAkB,MAAM,mBAAmB,GAAK,GAAGzF,EAAqB,CAAC,UAAU,CAAC,SAAsBgB,EAAWI,EAAS,CAAC,SAAsBJ,EAAKG,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,qBAAqB,OAAO,0BAA0B,MAAM,uBAAuB,OAAO,sBAAsB,4CAA4C,EAAE,SAAS,2LAA2L,CAAC,CAAC,CAAC,CAAC,EAAE,UAAU,CAAC,KAAKsD,CAAS,CAAC,EAAEO,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAEsB,GAAY,GAAgB1F,EAAKG,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,SAAS,iBAAiBsE,EAAiB,SAAS,YAAY,SAAsBzE,EAAKoG,EAAM,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAmEN,GAAkB,OAAQ,QAAQ,GAAG7F,GAAkByD,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,EAAE,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiBe,EAAiB,SAAS,YAAY,MAAM,CAAC,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,EAAE,EAAE,GAAGzF,EAAqB,CAAC,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAmE8G,GAAkB,OAAQ,QAAQ,GAAG7F,GAAkB0D,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAmEmC,GAAkB,OAAQ,QAAQ,GAAG7F,GAAkB4D,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,IAAI,eAAe,IAAI,YAAY,IAAI,WAAW,IAAI,MAAmEiC,GAAkB,OAAQ,QAAQ,GAAG7F,GAAkB2D,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,EAAE,UAAU,CAAC,WAAW,CAAC,IAAI,GAAG,IAAI,MAAM,gBAAgB,KAAK,eAAe,KAAK,YAAY,KAAK,WAAW,KAAK,MAAmEkC,GAAkB,OAAQ,QAAQ,GAAG7F,GAAkB6D,CAAS,EAAM,UAAU,SAAS,UAAU,QAAS,CAAC,CAAC,EAAEE,EAAYI,CAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQiC,GAAI,CAAC,kFAAkF,kFAAkF,6QAA6Q,6RAA6R,ySAAyS,+UAA+U,0RAA0R,2OAA2O,gSAAgS,oKAAoK,sXAAsX,wXAAwX,6SAA6S,sRAAsR,6QAA6Q,4SAA4S,iGAAiG,y6GAAy6G,iJAAiJ,mFAAmF,4QAA4Q,2NAA2N,yFAAyF,6GAA6G,+KAA+K,oGAAoG,sQAAsQ,krCAAkrC,i5BAAi5B,oeAAoe,2kBAA2kB,+EAA+E,4hCAA4hC,iEAAiE,+aAA+a,qOAAqO,mEAAmE,qQAAqQ,4QAA4Q,mbAAmb,8JAA8J,+aAA+a,mbAAmb,8EAA8E,+aAA+a,GAAeA,EAAG,EAStu6DC,GAAgBC,GAAQhE,GAAU8D,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,qBAAqBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,IAAI,EAAEG,GAAoBH,GAAgB,CAAC,QAAQ,CAAC,QAAQ,CAAC,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,YAAY,WAAW,EAAE,aAAa,CAAC,WAAW,cAAc,cAAc,YAAY,gBAAgB,kBAAkB,cAAc,mBAAmB,mBAAmB,eAAe,EAAE,MAAM,UAAU,KAAKI,EAAY,IAAI,EAAE,UAAU,CAAC,aAAa,6DAA6D,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,2BAA2B,gBAAgB,GAAM,MAAM,kBAAkB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4LAA4L,gBAAgB,GAAM,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4LAA4L,gBAAgB,GAAM,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4LAA4L,gBAAgB,GAAM,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4LAA4L,gBAAgB,GAAM,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,4LAA4L,gBAAgB,GAAM,MAAM,gBAAgB,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,EAAE,UAAU,CAAC,MAAM,kBAAkB,KAAKA,EAAY,eAAe,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,0EAA0E,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,wDAAwD,IAAI,yEAAyE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,cAAc,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,uGAAuG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,6JAA6J,IAAI,sEAAsE,OAAO,KAAK,EAAE,CAAC,OAAO,QAAQ,OAAO,SAAS,MAAM,SAAS,aAAa,oGAAoG,IAAI,wEAAwE,OAAO,KAAK,EAAE,CAAC,OAAO,kBAAkB,OAAO,SAAS,MAAM,SAAS,IAAI,+HAA+H,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAoCC,EAAK,CAAC,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECTzkJ,IAAMC,GAAcC,EAASC,EAAQ,EAAQC,GAAW,CAAC,WAAW,EAAQC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,iBAAiB,EAAkO,IAAMC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,CAAC,MAAAC,EAAM,SAAAC,CAAQ,IAAI,CAAC,IAAMC,EAAaC,GAAWC,EAAmB,EAAQC,EAAWL,GAAmCE,EAAO,WAAiBI,EAAmBC,GAAQ,KAAK,CAAC,GAAGL,EAAO,WAAAG,CAAU,GAAG,CAAC,KAAK,UAAUA,CAAU,CAAC,CAAC,EAAE,OAAoBG,EAAKJ,GAAoB,SAAS,CAAC,MAAME,EAAa,SAASL,CAAQ,CAAC,CAAE,EAAQQ,GAASC,EAAaC,CAAQ,EAAQC,GAAS,CAAC,CAAC,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,OAAAC,EAAO,GAAAC,EAAG,WAAAC,EAAW,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAKC,EAAMC,EAAMC,EAAMC,EAAM,MAAM,CAAC,GAAGL,EAAM,WAAWC,EAAKH,GAAkDE,EAAM,aAAa,MAAMC,IAAO,OAAOA,EAAK,YAAY,WAAWC,EAAMV,GAA+CQ,EAAM,aAAa,MAAME,IAAQ,OAAOA,EAAM,GAAK,WAAWC,EAAMR,GAA+CK,EAAM,aAAa,MAAMG,IAAQ,OAAOA,EAAM,cAAc,WAAWC,EAAMV,GAA+CM,EAAM,aAAa,MAAMI,IAAQ,OAAOA,EAAM,cAAc,WAAWC,EAAMZ,GAA+CO,EAAM,aAAa,MAAMK,IAAQ,OAAOA,EAAM,WAAW,CAAE,EAAQC,GAAuB,CAACN,EAAMO,IAAeP,EAAM,iBAAwBO,EAAS,KAAK,GAAG,EAAEP,EAAM,iBAAwBO,EAAS,KAAK,GAAG,EAAUC,GAA6BC,GAAW,SAAST,EAAMU,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAO,CAAC,MAAAC,EAAM,UAAAC,EAAU,SAAAC,EAAS,QAAAC,EAAQ,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,UAAAC,EAAU,GAAGC,CAAS,EAAEhC,GAASS,CAAK,EAAO,CAAC,YAAAwB,EAAY,WAAAC,EAAW,oBAAAC,EAAoB,gBAAAC,EAAgB,eAAAC,EAAe,UAAAC,EAAU,gBAAAC,EAAgB,WAAAC,EAAW,SAAAxB,CAAQ,EAAEyB,GAAgB,CAAC,WAAAC,GAAW,eAAe,YAAY,QAAAhB,EAAQ,kBAAAiB,EAAiB,CAAC,EAAQC,EAAiB7B,GAAuBN,EAAMO,CAAQ,EAAQ6B,EAAWC,GAAO,IAAI,EAAQC,EAAsBC,GAAM,EAAQC,EAAsB,CAAC,EAAQC,EAAkBC,GAAqB,EAAE,OAAoBvD,EAAKwD,GAAY,CAAC,GAAG3B,GAA4CsB,EAAgB,SAAsBnD,EAAKC,GAAS,CAAC,QAAQmB,EAAS,QAAQ,GAAM,SAAsBpB,EAAKT,GAAW,CAAC,MAAMD,GAAY,SAAsBmE,EAAMvD,EAAO,IAAI,CAAC,GAAGkC,EAAU,GAAGI,EAAgB,UAAUkB,GAAGC,GAAkB,GAAGN,EAAsB,gBAAgBzB,EAAUU,CAAU,EAAE,mBAAmB,YAAY,iBAAiBU,EAAiB,SAAS,YAAY,IAAIzB,GAA6B0B,EAAK,MAAM,CAAC,gBAAgB,wEAAwE,uBAAuB,GAAG,wBAAwB,GAAG,oBAAoB,GAAG,qBAAqB,GAAG,GAAGtB,CAAK,EAAE,SAAS,CAAc3B,EAAKE,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,QAAQ,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,gBAAgB,uEAAuE,uBAAuB,GAAG,wBAAwB,EAAE,CAAC,CAAC,EAAeS,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAAsB5D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,GAAG,CAAC,MAAM,CAAC,kBAAkB,uBAAuB,uBAAuB,+CAA+C,qBAAqB,OAAO,uBAAuB,MAAM,uBAAuB,QAAQ,sBAAsB,8FAA8F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,mBAAmB,cAAc,MAAM,CAAC,iBAAiB,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,sBAAsB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKjB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,EAAe0B,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,cAAc,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAcS,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAKE,EAAO,IAAI,CAAC,UAAU,0BAA0B,iBAAiB8C,EAAiB,SAAS,sBAAsB,SAAsBhD,EAAK8D,GAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,OAAO,cAAc,cAAc,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAAsB5D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,WAAW,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKhB,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAeyB,EAAMvD,EAAO,IAAI,CAAC,UAAU,gBAAgB,mBAAmB,OAAO,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8C,EAAiB,SAAS,sBAAsB,SAAsBhD,EAAK8D,GAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,OAAO,cAAc,cAAc,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAAsB5D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,qBAAqB,CAAC,CAAC,CAAC,EAAE,UAAU,gBAAgB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKf,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,EAAEE,GAAwBsB,EAAMvD,EAAO,IAAI,CAAC,UAAU,iBAAiB,mBAAmB,OAAO,iBAAiB8C,EAAiB,SAAS,YAAY,SAAS,CAAchD,EAAK6D,EAA0B,CAAC,SAAsB7D,EAAKE,EAAO,IAAI,CAAC,UAAU,2BAA2B,iBAAiB8C,EAAiB,SAAS,sBAAsB,SAAsBhD,EAAK8D,GAAS,CAAC,MAAM,uEAAuE,OAAO,OAAO,WAAW,OAAO,cAAc,cAAc,YAAY,SAAS,WAAW,SAAS,WAAW,SAAS,GAAG,YAAY,SAAS,YAAY,SAAS,GAAM,aAAa,GAAK,MAAM,CAAC,OAAO,OAAO,MAAM,MAAM,EAAE,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,EAAe9D,EAAK4D,EAAS,CAAC,sBAAsB,GAAK,SAAsB5D,EAAWG,EAAS,CAAC,SAAsBH,EAAKE,EAAO,EAAE,CAAC,MAAM,CAAC,kBAAkB,2BAA2B,uBAAuB,+CAA+C,uBAAuB,QAAQ,sBAAsB,6FAA6F,EAAE,SAAS,KAAK,CAAC,CAAC,CAAC,EAAE,UAAU,iBAAiB,MAAM,CAAC,oBAAoB,EAAE,iBAAiB8C,EAAiB,SAAS,YAAY,MAAM,CAAC,qBAAqB,qEAAqE,2BAA2B,mBAAmB,gCAAgC,WAAW,EAAE,KAAKd,EAAU,kBAAkB,MAAM,mBAAmB,EAAI,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAE,CAAC,EAAQ6B,GAAI,CAAC,kFAAkF,kFAAkF,mTAAmT,ySAAyS,4RAA4R,oLAAoL,gRAAgR,iVAAiV,+MAA+M,mOAAmO,2lDAA2lD,EAS1maC,GAAgBC,GAAQ5C,GAAU0C,GAAI,cAAc,EAASG,GAAQF,GAAgBA,GAAgB,YAAY,gBAAgBA,GAAgB,aAAa,CAAC,OAAO,IAAI,MAAM,GAAG,EAAEG,GAAoBH,GAAgB,CAAC,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,cAAc,KAAKI,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,YAAY,gBAAgB,GAAM,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,YAAY,GAAG,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,cAAc,YAAY,GAAG,MAAM,cAAc,KAAKA,EAAY,MAAM,EAAE,UAAU,CAAC,aAAa,GAAK,MAAM,aAAa,KAAKA,EAAY,OAAO,CAAC,CAAC,EAAEC,GAASL,GAAgB,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,EAAE,GAAGM,EAAa,EAAE,CAAC,6BAA6B,EAAI,CAAC,ECV7uCC,EAAU,UAAU,CAAC,0BAA0B,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,OAAO,gBAAgB,MAAM,SAAS,IAAI,wFAAwF,OAAO,KAAK,CAAC,EAAeC,GAAI,CAAC,+dAA+d,EAAeC,GAAU,eCCluBC,EAAU,UAAU,CAAC,kBAAkB,sBAAsB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,wvBAAwvB,EAAeC,GAAU,eCAn3CC,EAAU,UAAU,CAAC,qBAAqB,iBAAiB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,4yBAA4yB,EAAeC,GAAU,eCAr6CC,EAAU,UAAU,CAAC,sBAAsB,iBAAiB,CAAC,EAAS,IAAMC,GAAM,CAAC,CAAC,cAAc,GAAK,MAAM,CAAC,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,EAAE,CAAC,OAAO,UAAU,OAAO,YAAY,MAAM,SAAS,IAAI,yKAAyK,OAAO,KAAK,CAAC,CAAC,CAAC,EAAeC,GAAI,CAAC,yyBAAyyB,EAAeC,GAAU,eCA2L,IAAMC,GAAYC,EAASC,EAAM,EAAQC,GAAeC,GAAOC,CAAQ,EAAQC,GAAsBL,EAASM,EAAgB,EAAQC,GAAgBJ,GAAOK,EAAS,EAAQC,GAAkBT,EAASU,EAAY,EAAQC,GAAcX,EAASY,EAAQ,EAAQC,GAAYb,EAASc,EAAM,EAAQC,GAAY,CAAC,UAAU,8CAA8C,UAAU,6CAA6C,UAAU,sBAAsB,UAAU,oBAAoB,EAAoD,IAAMC,GAAkB,eAAqBC,GAAkB,CAAC,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,UAAU,kBAAkB,EAAQC,EAAkBC,GAAW,OAAOA,GAAQ,UAAUA,IAAQ,MAAM,OAAOA,EAAM,KAAM,SAAiBA,EAAc,OAAOA,GAAQ,SAAS,CAAC,IAAIA,CAAK,EAAE,OAAkBC,GAAU,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,EAAE,EAAE,EAAE,EAAE,EAAQC,GAAY,CAAC,QAAQ,GAAG,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAY,CAAC,QAAQ,GAAG,MAAM,GAAG,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,EAAE,MAAM,EAAE,MAAM,EAAE,MAAM,EAAE,qBAAqB,KAAK,WAAWD,GAAY,EAAE,EAAE,EAAE,EAAE,EAAQE,GAAW,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,EAAE,EAAE,EAAE,CAAC,EAAQC,GAAY,CAAC,QAAQ,EAAE,MAAM,EAAE,KAAK,EAAE,UAAU,IAAI,KAAK,QAAQ,EAAQC,GAAW,CAAC,QAAQ,EAAE,OAAO,GAAG,QAAQ,EAAE,QAAQ,EAAE,MAAM,IAAI,MAAM,EAAE,MAAM,EAAE,WAAWD,GAAY,EAAE,EAAE,EAAE,CAAC,EAAQE,GAAmB,CAACC,EAAEC,IAAI,yBAAyBA,IAAUC,GAASA,GAAiB,EAAQC,GAAwB,CAAC,QAAQ,YAAY,OAAO,YAAY,OAAO,YAAY,OAAO,WAAW,EAAQC,GAAS,CAAC,CAAC,OAAAC,EAAO,GAAAC,EAAG,MAAAC,EAAM,GAAGC,CAAK,IAAI,CAAC,IAAIC,EAAuCC,EAAK,MAAM,CAAC,GAAGF,EAAM,SAASE,GAAMD,EAAuCN,GAAwBK,EAAM,OAAO,KAAK,MAAMC,IAAyC,OAAOA,EAAuCD,EAAM,WAAW,MAAME,IAAO,OAAOA,EAAK,WAAW,CAAE,EAAQC,GAA6BC,GAAW,SAASJ,EAAMK,EAAI,CAAC,GAAK,CAAC,aAAAC,EAAa,UAAAC,CAAS,EAAEC,GAAc,EAAQC,EAAqBC,GAAwB,EAAO,CAACC,CAAgB,EAAEC,GAAa,CAAC,KAAK,CAAC,MAAM,YAAY,KAAKC,GAAW,KAAK,YAAY,EAAE,OAAO,CAAC,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WAAW,YAAY,KAAK,YAAY,KAAK,YAAY,EAAE,CAAC,WA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",
  "names": ["IconType", "SrcType", "metaTagSelector", "isPublishedSiteOrSSG", "Download", "props", "styleOptions", "hoverOptions", "iconOptions", "backgroundColor", "color", "borderRadius", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "gap", "isInPublishedSiteOrSSG", "downloadURL", "paddingValue", "getIcon", "ref", "ref1", "iconStyle", "p", "getCursor", "buttonTitle", "u", "motion", "buttonStyles", "flexAlignSwitch", "addPropertyControls", "ControlType", "fontControlStyles", "fontStore", "fonts", "css", "className", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "toResponsiveImage", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "processImage1", "processImage2", "processImage3", "processImage4", "processImage5", "processTitle1", "processTitle2", "processTitle3", "processTitle4", "processTitle5", "procesText1", "procesText2", "procesText3", "procesText4", "procesText5", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "_ref5", "_ref6", "_ref7", "_ref8", "_humanReadableVariantMap_props_variant", "_ref9", "_ref10", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "eSL0lgktg", "JCwBi0FYK", "pSH7A2qfN", "ZH5kz8Jrg", "nig0yTMcF", "mWwv3JDPk", "fPl3BmIwy", "cgDS64hCX", "BcnUyeihS", "IVnRTc7KI", "xXLS9zKYy", "cRRK_775_", "dCCJdLsOM", "RXtMoQsvM", "K5uyYWJJv", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter13n737y", "args", "onTapj3fwml", "onMouseEnterdjent6", "onTapowu50m", "onMouseEnter1nb0uzk", "onTaposuqr9", "onMouseEnter1bfjirn", "onTapctge6s", "onMouseEnter6dyf07", "onTap548fne", "ref1", "pe", "isDisplayed", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "RichText2", "Image2", "css", "FramerwLUGNS0FC", "withCSS", "wLUGNS0FC_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MaterialFonts", "getFonts", "Icon", "cycleOrder", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "_3Visible", "cardText1", "cardText2", "cardText3", "height", "id", "tituloCard", "width", "props", "_ref", "_ref1", "_ref2", "_ref3", "_ref4", "createLayoutDependency", "variants", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "variant", "brqTAfey5", "VKvqj0qFC", "LWpps6HO2", "kSbS10ILe", "byPDfaDQg", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "serializationHash", "RichText2", "ComponentViewportProvider", "Icon", "css", "FramerZ_17ewhnE", "withCSS", "Z_17ewhnE_default", "addPropertyControls", "ControlType", "addFonts", "MaterialFonts", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "fontStore", "fonts", "css", "className", "NavbarFonts", "getFonts", "PLTi8pu0T_default", "RichTextWithFX", "withFX", "RichText2", "CaseStudyProcessFonts", "wLUGNS0FC_default", "ContainerWithFX", "Container", "CardVariableFonts", "Z_17ewhnE_default", "DownloadFonts", "Download", "FooterFonts", "ZPzL4zqtl_default", "breakpoints", "serializationHash", "variantClassNames", "toResponsiveImage", "value", "animation", "transition1", "animation1", "transition2", "animation2", "animation3", "transition3", "animation4", "transformTemplate1", "_", "t", "metadata", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "currentPathVariables", "useCurrentPathVariables", "currentRouteData", "useQueryData", "JVSfKPYgn_default", "getWhereExpressionFromPathVariables", "getFromCurrentRouteData", "key", "NotFoundError", "style", "className", "layoutId", "variant", "Z3OhZvt7E", "yuG3T1XXG", "IWT1fQAX_", "oee5K_oQB", "rkyBhNmZy", "vty020rlN", "hHtWo75U1", "YhvTyodAY", "yzvhbK_fQ", "km88XOhzk", "P2mebsI0O", "ZI8XSWG3B", "QULt5k4TG", "B9OT17gHC", "Z7xEpjeV4", "SMwU5EVk3", "cUje_RpDu", "wAtCDOY21", "ixLzyV1eO", "FooScEfss", "vRinEanHa", "SMycwQwO4", "Fwiy_0EJ2", "pD8y3OpsI", "Jsfxj3UPS", "PyEJ_rt5u", "YH6btmKCw", "KXWrpRScr", "nM0MoggNN", "Br7QZc1oD", "dd4_7Sz3l", "wX5B_JDgG", "Nrt13GxxQ", "aGaKsIbK7", "dq55WtrrQ", "sVUvzFgoj", "ipSuLtn3E", "IHUdFmU0r", "O_cCXtaWh", "c5rbunyAo", "yn4YUesId", "qT9SIPyZM", "QhFLayMza", "zdRSG7i8F", "QZDyp9SgT", "sL4T42TYI", "afRLZ4Ruw", "JebLy6Izq", "FkJsYSYWf", "EDQHGE37F", "SUwQztqI3", "hgRpJamNJ", "restProps", "ue", "metadata1", "robotsTag", "ie", "_document_querySelector", "bodyCls", "body", "c", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "breakpoints", "gestureVariant", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "useCustomCursors", "p", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "cx", "PropertyOverrides2", "ComponentViewportProvider", "Container", "PLTi8pu0T_default", "RichText2", "x", "Image2", "RichTextWithFX", "ContainerWithFX", "wLUGNS0FC_default", "Z_17ewhnE_default", "Download", "ZPzL4zqtl_default", "css", "FramerXjh51IA16", "withCSS", "Xjh51IA16_default", "addFonts", "NavbarFonts", "CaseStudyProcessFonts", "CardVariableFonts", "DownloadFonts", "FooterFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
