{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js", "ssg:https://framerusercontent.com/modules/ASCteRqkHV599sGczVPT/Hob0vEUaUuJ5tKnqPPZn/CrYrx6Ie7.js", "ssg:https://framerusercontent.com/modules/OatE89V81RPWDHyVhDwd/Ar0L9YQkLvI6aRI7Pc9h/zfEF9J6Nu.js", "ssg:https://framerusercontent.com/modules/7mR5Ewq0zL4LyXYaVvkh/gpesnBveLma2g5I9u5X7/zfEF9J6Nu.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,useMotionValue,useTransform}from\"framer-motion\";/**\n * ANIMATOR\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Animator(props){/* Properties */const{pathAnimation,from,to,animate,shouldLoop,loopOptions,slots=[],endCircle}=props;/* State */const hasChildren=Children.count(slots)>0;/* Empty State */let customShape=/*#__PURE__*/_jsxs(\"div\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u270D\uFE0F\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Graphic\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Animates single or joined paths on Web Pages only.\"})]});if(hasChildren){/* Grab the SVG from the Graphic */const firstChild=getFirstChild(slots);const svgChild=getFirstChild(firstChild.props.svg);const isSpring=pathAnimation.type===\"spring\";/* Shape transition properties *//* Dividing stiffness and damping by 1000 is a trick I got from Matt \n        which helps with pathLength animations, which otherwise are so fast \n        you never even see them happen in the preview. */const shapeTransition={pathLength:{...pathAnimation,repeat:shouldLoop?Infinity:0,repeatType:loopOptions,stiffness:isSpring?pathAnimation.stiffness/1e3:pathAnimation.stiffness,damping:isSpring?pathAnimation.damping/1e3:pathAnimation.damping}};/* Add our own properties to the Path */const pathLength=useMotionValue(0);const opacity=useTransform(pathLength,[0,.025],[0,1]);const shapeProps={variants:{start:{pathLength:from/100},end:{pathLength:to/100}},transition:shapeTransition};/* Prevent animating or adjusting pathLength on the Canvas */const isCanvas=RenderTarget.current()===RenderTarget.canvas;/* Just render the full connected Graphic on Canvas, when connected */if(isCanvas){customShape=firstChild;}/* If on a web page */if(!isCanvas&&svgChild){/* Pass Attributes */let attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.includes(\"d=\")){pathD=splitAndReplace(element);}if(element.includes(\"stroke=\")){stroke=splitAndReplace(element);}if(element.includes(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.includes(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.includes(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}/* Grab viewbox */let svgViewbox;svgViewbox=svgChild.split(\"viewBox=\")[1];svgViewbox=svgViewbox.split(\">\")[0];svgViewbox=svgViewbox.replace(/^\"(.+(?=\"$))\"$/,\"$1\");customShape=/*#__PURE__*/_jsx(motion.div,{initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\",style:{width:\"100%\",height:\"100%\",display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\"},children:/*#__PURE__*/_jsx(motion.svg,{xmlns:\"http://www.w3.org/2000/svg\",width:\"100%\",height:\"100%\",viewBox:svgViewbox,children:/*#__PURE__*/_jsx(motion.path,{...shapeProps,d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",style:!endCircle&&{pathLength,opacity},initial:isCanvas||animate===false?false:\"start\",animate:isCanvas||animate===false?false:\"end\"})})});}}return customShape;}/* Default Properties */Animator.defaultProps={animate:true,shouldLoop:false,loopOptions:\"reverse\",from:0,to:100,pathAnimation:{type:\"tween\",duration:2},endCircle:true};/* Property Controls */addPropertyControls(Animator,{slots:{type:ControlType.ComponentInstance,title:\"Children\"},animate:{title:\"Animate\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.animate,enabledTitle:\"True\",disabledTitle:\"False\"},shouldLoop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.shouldLoop,enabledTitle:\"True\",disabledTitle:\"False\",hidden(props){return props.animate===false;}},loopOptions:{type:ControlType.Enum,title:\"Type\",defaultValue:Animator.defaultProps.loopOptions,options:[\"loop\",\"reverse\",\"mirror\"],optionTitles:[\"Loop\",\"Reverse\",\"Mirror\"],hidden(props){return props.shouldLoop===false;}},endCircle:{title:\"End Circle\",type:ControlType.Boolean,defaultValue:Animator.defaultProps.endCircle,enabledTitle:\"Show\",disabledTitle:\"Hide\",hidden(props){return props.animate===false;}},from:{title:\"From\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.from,unit:\"%\",hidden(props){return props.animate===false;}},to:{title:\"To\",type:ControlType.Number,min:0,max:100,displayStepper:true,step:1,defaultValue:Animator.defaultProps.to,unit:\"%\",hidden(props){return props.animate===false;}},pathAnimation:{title:\" \",type:ControlType.Transition,defaultValue:Animator.defaultProps.pathAnimation,hidden(props){return props.animate===false;}}});/* Method to get stringless attributes */const splitAndReplace=string=>{return string.split(\"=\")[1].replace(/['\"]+/g,\"\");};/* Method to get the first child */function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Animator\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Animator.map", "// Generated by Framer (cf240c2)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Untitled Sans Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Untitled Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/PndIz0vgwOtDRYV40L3IB5xrJCs.woff2\"}]}];export const css=['.framer-SktAe .framer-styles-preset-hha2pg:not(.rich-text-wrapper), .framer-SktAe .framer-styles-preset-hha2pg.rich-text-wrapper p { --framer-font-family: \"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 25px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 0.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }','@media (max-width: 1449px) and (min-width: 1200px) { .framer-SktAe .framer-styles-preset-hha2pg:not(.rich-text-wrapper), .framer-SktAe .framer-styles-preset-hha2pg.rich-text-wrapper p { --framer-font-family: \"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 20px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 0.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 1199px) and (min-width: 810px) { .framer-SktAe .framer-styles-preset-hha2pg:not(.rich-text-wrapper), .framer-SktAe .framer-styles-preset-hha2pg.rich-text-wrapper p { --framer-font-family: \"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 16px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 0.1em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }','@media (max-width: 809px) and (min-width: 0px) { .framer-SktAe .framer-styles-preset-hha2pg:not(.rich-text-wrapper), .framer-SktAe .framer-styles-preset-hha2pg.rich-text-wrapper p { --framer-font-family: \"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 13px; --framer-font-style: normal; --framer-font-weight: 400; --framer-letter-spacing: -0.02em; --framer-line-height: 0.5em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: #000000; --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; } }'];export const className=\"framer-SktAe\";\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 (013b13c)\nimport{LazyValue}from\"framer\";const valuesByLocaleId={l0Qhz2Tpj:new LazyValue(()=>import(\"./zfEF9J6Nu-0.js\"))};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values.read()[key];if(value)return value;}locale=locale.fallback;}}function preload(locale){const promises=[];while(locale){const values=valuesByLocaleId[locale.id];if(values){const promise=values.preload();if(promise)promises.push(promise);}locale=locale.fallback;}if(promises.length>0)return Promise.all(promises);}export function usePreloadLocalizedValues(locale){const preloadPromise=preload(locale);if(preloadPromise)throw preloadPromise;}\nexport const __FramerMetadata__ = {\"exports\":{\"usePreloadLocalizedValues\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (013b13c)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PropertyOverrides,ResolveLinks,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouter,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import{Icon as Material}from\"https://framerusercontent.com/modules/6Ldpz1V0DkD45gXvi67I/PCgBX5d6MdQT7E7nhdXn/Material.js\";import Animator from\"https://framerusercontent.com/modules/gh5xmpM9GHT9MXnnMpPc/YOcbb3cyk0md6ytVCE3R/Animator.js\";import CasesElement from\"#framer/local/canvasComponent/biXpU3WAa/biXpU3WAa.js\";import AliciaNavigationCopy from\"#framer/local/canvasComponent/DfXgL8Bao/DfXgL8Bao.js\";import Buttons from\"#framer/local/canvasComponent/DfXwNxCBi/DfXwNxCBi.js\";import Cursor from\"#framer/local/canvasComponent/dG67FVv7I/dG67FVv7I.js\";import HomeTicker from\"#framer/local/canvasComponent/dxUdu8fCq/dxUdu8fCq.js\";import Footer from\"#framer/local/canvasComponent/eZIbrvPWr/eZIbrvPWr.js\";import CTA from\"#framer/local/canvasComponent/T1Uz1JzsQ/T1Uz1JzsQ.js\";import HowWeWork from\"#framer/local/canvasComponent/VxJm0LeaX/VxJm0LeaX.js\";import*as sharedStyle6 from\"#framer/local/css/cA9ClpeSK/cA9ClpeSK.js\";import*as sharedStyle2 from\"#framer/local/css/CrYrx6Ie7/CrYrx6Ie7.js\";import*as sharedStyle from\"#framer/local/css/JscfKS2S1/JscfKS2S1.js\";import*as sharedStyle4 from\"#framer/local/css/KtNdc9CPv/KtNdc9CPv.js\";import*as sharedStyle3 from\"#framer/local/css/O0U2tTrXk/O0U2tTrXk.js\";import*as sharedStyle5 from\"#framer/local/css/vF3lODYgg/vF3lODYgg.js\";import*as sharedStyle1 from\"#framer/local/css/zJAqeumkd/zJAqeumkd.js\";import getLocalizedValue,{usePreloadLocalizedValues}from\"#framer/local/localization/zfEF9J6Nu/zfEF9J6Nu.js\";import metadataProvider from\"#framer/local/webPageMetadata/zfEF9J6Nu/zfEF9J6Nu.js\";const AliciaNavigationCopyFonts=getFonts(AliciaNavigationCopy);const AnimatorFonts=getFonts(Animator);const ButtonsFonts=getFonts(Buttons);const HomeTickerFonts=getFonts(HomeTicker);const MaterialFonts=getFonts(Material);const HowWeWorkFonts=getFonts(HowWeWork);const CasesElementFonts=getFonts(CasesElement);const CTAFonts=getFonts(CTA);const FooterFonts=getFonts(Footer);const CursorFonts=getFonts(Cursor);const breakpoints={BxyXwdyez:\"(max-width: 809px)\",JtWeF00_1:\"(min-width: 1445px)\",mrHhDnoCV:\"(min-width: 1200px) and (max-width: 1444px)\",PDBSYH9MS:\"(min-width: 810px) and (max-width: 1199px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-LsXCU\";const variantClassNames={BxyXwdyez:\"framer-v-1hep379\",JtWeF00_1:\"framer-v-1x94j7f\",mrHhDnoCV:\"framer-v-1e85nsd\",PDBSYH9MS:\"framer-v-1l9y4f0\"};const transition1={damping:30,delay:0,mass:1,stiffness:400,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.1,skewX:0,skewY:0,transition:transition1};const transformTemplate1=(_,t)=>`translate(-50%, -50%) ${t}`;const transformTemplate2=(_,t)=>`translateX(-50%) ${t}`;const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:20};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"1-Desktop large\":\"JtWeF00_1\",\"2-Desktop\":\"mrHhDnoCV\",\"3-Tablet\":\"PDBSYH9MS\",\"4-Phone\":\"BxyXwdyez\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"JtWeF00_1\"};};const cursor={component:Cursor,variant:\"Oc0ZkjPdb\"};const cursor1={component:Cursor,variant:\"j2r8SK67M\"};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"BxyXwdyez\")return false;return true;};usePreloadLocalizedValues(activeLocale);const isDisplayed1=()=>{if(!isBrowser())return true;if([\"mrHhDnoCV\",\"PDBSYH9MS\"].includes(baseVariant))return false;return true;};const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"PDBSYH9MS\")return true;return false;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"mrHhDnoCV\")return true;return false;};const isDisplayed4=()=>{if(!isBrowser())return true;if(baseVariant===\"mrHhDnoCV\")return false;return true;};const router=useRouter();const isDisplayed5=()=>{if(!isBrowser())return true;if(baseVariant===\"BxyXwdyez\")return true;return false;};useCustomCursors({\"132mwst\":cursor1,\"1wn84ko\":cursor});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"JtWeF00_1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1x94j7f\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:119,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5vm4hb-container\",nodeId:\"LN6mBK2Co\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{variant:\"pqHddYOgy\"},mrHhDnoCV:{variant:\"pK7J4Wtns\"},PDBSYH9MS:{variant:\"ZtgoowrnL\"}},children:/*#__PURE__*/_jsx(AliciaNavigationCopy,{height:\"100%\",id:\"LN6mBK2Co\",layoutId:\"LN6mBK2Co\",style:{width:\"100%\"},variant:\"o6IY37CjX\",width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-1nk28kt hidden-1hep379\",\"data-framer-name\":\"hero\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1gaf8dq\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1v7oa3n\",\"data-framer-name\":\"hero text\",children:[/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:852,positionX:\"right\",positionY:\"center\"},className:\"framer-12qur7d\",\"data-framer-name\":\"Text and button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-rdvc9z\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-5iyak3\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-37qaaw\",\"data-styles-preset\":\"JscfKS2S1\",style:{\"--framer-text-alignment\":\"center\"},children:[\"Digital insurance\",/*#__PURE__*/_jsx(\"br\",{}),\"for brands\"]})}),className:\"framer-9svyy2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-klnvar\",\"data-styles-preset\":\"zJAqeumkd\",children:\"We embed, you grow. \"})}),className:\"framer-ghir65\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1fn47c1-container hidden-1e85nsd hidden-1l9y4f0\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"LXhLWqy9J\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"LXhLWqy9J\",layoutId:\"LXhLWqy9J\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:4,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-uwahta\",\"data-framer-name\":\"Line - large desktop\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 2560 752\"><path d=\"M -71 274 C -71 274 56.253 438.668 200 442 C 343.747 445.332 436.68 335.655 491 241 C 586.36 109.948 662.245 141.536 717.5 161 C 822.263 242.263 829.437 392.113 754 583 C 678.563 773.887 879.987 771.457 975.5 721 C 1071.013 670.543 1094.788 587.182 1317.5 599.5 C 1540.212 611.818 1473.985 436.545 1606 468.5 C 1769.65 508.112 1729.669 731 1841 731 C 1998.262 731 1901.81 386.8 1872 264 C 1808.171 41.819 2094.141 135.211 2229.5 161 C 2364.859 186.789 2622.5 126 2622.5 126\" fill=\"transparent\" stroke-width=\"2.43\" stroke=\"rgba(0,0,0,0.2)\" stroke-linejoin=\"round\" stroke-dasharray=\"4.86, 9.74\"></path></svg>',svgContentId:9266957944,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lm9euy\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-bsmm21-container hidden-1x94j7f hidden-1e85nsd\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"PME7u_Lia\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"PME7u_Lia\",layoutId:\"PME7u_Lia\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:4,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1p61x91\",\"data-framer-name\":\"Line - Tablet\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1199 450\"><path d=\"M 0 199.02 C 3.399 200.283 73.184 177.775 106.965 115.602 C 228.653 -61.029 323.5 250.006 323.5 305 C 323.5 359.994 350.901 411.781 412 399.5 C 473.099 387.219 476.637 261.465 639 285.5 C 720.181 297.517 734.658 229.06 805.5 238 C 907.272 264.018 852.765 399.5 922 399.5 C 1063.779 399.5 940.538 197.659 922 117 C 882.305 -28.936 1163.187 32.21 1199 0\" fill=\"transparent\" stroke-width=\"2.43\" stroke=\"rgba(0,0,0,0.2)\" stroke-linejoin=\"round\" stroke-dasharray=\"4.86, 9.74\"></path></svg>',svgContentId:9195372317,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-d1ttrz-container hidden-1x94j7f hidden-1l9y4f0\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dydOnsHEJ\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"dydOnsHEJ\",layoutId:\"dydOnsHEJ\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:4,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1dm4oce\",\"data-framer-name\":\"Line - desktop\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 1484 650\"><path d=\"M -24.456 153.776 C -19.683 155.457 57.291 -21.457 217 52 C 255.333 69.631 315.128 168.697 350.5 268.5 C 385.872 368.303 396.82 468.841 483 480.5 C 588.802 480.5 497.295 371.947 719.5 383.5 C 924.577 432.658 876.35 276.5 993 276.5 C 1196.168 228.92 1039.923 517.324 1183.5 480.5 C 1302.792 328.815 1104.473 209.058 1194 119.5 C 1245.88 88.886 1282.653 140.69 1354.5 132 C 1465.633 106.463 1406.403 0 1534 0\" fill=\"transparent\" stroke-width=\"2.12\" stroke=\"rgba(0,0,0,0.2)\" stroke-linejoin=\"round\" stroke-dasharray=\"4.24, 8.51\"></path></svg>',svgContentId:10478766622,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bo5bhh\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xlu4oz\",\"data-framer-name\":\"square 1 - Modules\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cNoIyBQCH\"},motionChild:true,nodeId:\"C7NtJ4KXv\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-q0caon framer-7i9pjq\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v2\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"Modular \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"tech\"})]}),className:\"framer-1507vpm\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bfz7jm\",\"data-border\":true,\"data-framer-name\":\"\u2013 data\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PDBSYH9MS:{children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Data\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v3\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"Data\"})}),className:\"framer-1044rpv\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-55+-5+70+0+48+58+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/WZjKjZJqaSvueTp5Vc5pAz5BBY.gif\"}},PDBSYH9MS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+100+50+0+0+38+62+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/WZjKjZJqaSvueTp5Vc5pAz5BBY.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-10+50+-30+2+38+58+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/WZjKjZJqaSvueTp5Vc5pAz5BBY.gif\"},className:\"framer-1j0owr6\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-bze98a\",\"data-border\":true,\"data-framer-name\":\"\u2013 data\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PDBSYH9MS:{children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"User portals\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v5\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"User portals\"})}),className:\"framer-135svf1\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-55+-5+70+0+48+150-64+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/XVjzZgXvMGquSkCECGfZTK74z0s.gif\"}},PDBSYH9MS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+100+50+0+0+38+150-65+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/XVjzZgXvMGquSkCECGfZTK74z0s.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-10+50+-30+2+38+150-64+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/XVjzZgXvMGquSkCECGfZTK74z0s.gif\"},className:\"framer-izp0ln\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zaxokd\",\"data-border\":true,\"data-framer-name\":\"\u2013 data\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PDBSYH9MS:{children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Policy admin\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v7\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"Policy admin\"})}),className:\"framer-1i6ha3j\",fonts:[\"CUSTOM;Untitled Sans Regular\"],id:\"1i6ha3j\",verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-55+-5+70+0+48+150-38.6+8.8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"}},PDBSYH9MS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+100+50+0+0+38+150-41.6+4.8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-10+50+-30+2+38+150-38.6+8.8),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"},className:\"framer-fj5had\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15hzh4t\",\"data-border\":true,\"data-framer-name\":\"\u2013 claims\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PDBSYH9MS:{children:getLocalizedValue(\"v10\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-text-alignment\":\"left\"},children:\"Claims\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-text-alignment\":\"left\"},children:\"Claims\"})}),className:\"framer-1m2vkrb\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-55+-5+70+0+48+33+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/v5U1GIofgryrs9c2Ll1SIBSSP0.gif\"}},PDBSYH9MS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+100+50+0+0+38+41+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/v5U1GIofgryrs9c2Ll1SIBSSP0.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-10+50+-30+2+38+33+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/v5U1GIofgryrs9c2Ll1SIBSSP0.gif\"},className:\"framer-15ls5mh\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yzd85k\",\"data-border\":true,\"data-framer-name\":\"\u2013\\xa0funnels\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PDBSYH9MS:{children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Funnels\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v11\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"13px\"},children:\"Funnels\"})}),className:\"framer-1neyox7\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-55+-5+70+0+48+7+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"}},PDBSYH9MS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+100+50+0+0+38+18+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+-10+50+-30+2+38+7+7),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"},className:\"framer-fej0zu\"})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1p3a0pr\",\"data-framer-name\":\"Group 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:109,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"109\" viewBox=\"0 0 22 109\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\">\\n<line y1=\"53.5\" x2=\"22\" y2=\"53.5\" stroke=\"black\"/>\\n<line x1=\"9.5\" y1=\"109\" x2=\"9.5\" y2=\"-2.18557e-08\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"28.5\" x2=\"22\" y2=\"28.5\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"108.5\" x2=\"22\" y2=\"108.5\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"81.5\" x2=\"22\" y2=\"81.5\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"0.5\" x2=\"22\" y2=\"0.5\" stroke=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1non34w\",\"data-framer-name\":\"square 2 - CSC\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"g92aaM1AX\"},motionChild:true,nodeId:\"KMLUM5vMp\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-1p9sgbh framer-7i9pjq\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v13\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"90%\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"CSAT\"})]}),className:\"framer-1jfp3nl\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w4nlt1\",style:{rotate:-.5},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{children:getLocalizedValue(\"v15\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\"},children:\"Customer care\"})})},PDBSYH9MS:{children:getLocalizedValue(\"v16\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Customer care\"})}),verticalAlignment:\"center\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v14\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\"},children:\"Customer care\"})}),className:\"framer-1q0893v\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1g60zwd\",\"data-framer-name\":\"square 2 - CSC\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"gLR44qzjC\"},motionChild:true,nodeId:\"BTfRcAAvY\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-hyviea framer-7i9pjq\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v17\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\">10 \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"risk \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"carriers\"})]}),className:\"framer-1dfx2wk\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed4()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-ba7yjb hidden-1e85nsd\",style:{rotate:-.5},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{PDBSYH9MS:{children:getLocalizedValue(\"v19\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Multi-insurer\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v18\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\"},children:\"Multi-insurer\"})}),className:\"framer-1v3bkai\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),isDisplayed3()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-15wq6oh hidden-1x94j7f hidden-1l9y4f0\",style:{rotate:-.5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v20\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\"},children:\"Multi-insurer\"})}),className:\"framer-13qxjdq\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nqz82w\",\"data-framer-name\":\"square 3 - insure anything\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"fBNBbMzt4\"},motionChild:true,nodeId:\"nQauQbjIb\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-sijyki framer-7i9pjq\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v21\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",style:{\"--framer-text-alignment\":\"left\"},children:\"Tailor-\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",style:{\"--framer-text-alignment\":\"left\"},children:\"made \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",style:{\"--framer-text-alignment\":\"left\"},children:\"solutions\"})]}),className:\"framer-25u852\",fonts:[\"Inter\"],transformTemplate:transformTemplate2,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oqvisb\",\"data-framer-name\":\"square 3 - insure anything\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"dDdJxltig\"},motionChild:true,nodeId:\"nq4no_ZRf\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-rj1n9h framer-7i9pjq\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v22\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"Award-\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"winning\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"innovator\"})]}),className:\"framer-lnpcxm\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ijv1bm\",\"data-framer-name\":\"square 4 -groen\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"cNoIyBQCH\"},motionChild:true,nodeId:\"N4uB68FBR\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-116yjc2 framer-7i9pjq\",whileHover:animation,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v23\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"API\"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-hha2pg\",\"data-styles-preset\":\"CrYrx6Ie7\",children:\"enabled\"})]}),className:\"framer-1d3zvgs\",fonts:[\"Inter\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1hpdwxf\",style:{rotate:-.5},children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{children:getLocalizedValue(\"v25\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\"},children:\"Easy integration\"})})},PDBSYH9MS:{children:getLocalizedValue(\"v26\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Easy integration\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v24\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"12px\"},children:\"Easy integration\"})}),className:\"framer-1dwvyaf\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})})]})]})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-x11m1a\",\"data-framer-name\":\"button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gLR44qzjC\"},implicitPathVariables:undefined},{href:{webPageId:\"gLR44qzjC\"},implicitPathVariables:undefined},{href:{webPageId:\"gLR44qzjC\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{y:(componentViewport?.y||0)+0+119+0+-55+-5+480+0+0},PDBSYH9MS:{y:(componentViewport?.y||0)+0+119+0+100+50+272+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,y:(componentViewport?.y||0)+0+119+0+-10+50+770-264+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pfh6ur-container\",nodeId:\"svO5BVWvA\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{rCwD1ej02:resolvedLinks[1]},PDBSYH9MS:{rCwD1ej02:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"svO5BVWvA\",layoutId:\"svO5BVWvA\",rCwD1ej02:resolvedLinks[0],SvJ3QWjij:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Learn more\"})}),variant:\"FIqdlZNCT\",width:\"100%\"})})})})})})})]})})}),isDisplayed5()&&/*#__PURE__*/_jsx(\"header\",{className:\"framer-179oxx hidden-1x94j7f hidden-1e85nsd hidden-1l9y4f0\",\"data-framer-name\":\"mobile hero\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1lsp4pr\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gr0ver-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"a3ax3dOEC\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Animator,{animate:true,endCircle:true,from:0,height:\"100%\",id:\"a3ax3dOEC\",layoutId:\"a3ax3dOEC\",loopOptions:\"reverse\",pathAnimation:{delay:0,duration:4,ease:[.44,0,.56,1],type:\"tween\"},shouldLoop:false,slots:[/*#__PURE__*/_jsx(SVG,{className:\"framer-rb0ski\",\"data-framer-name\":\"Line - Phone\",layout:\"position\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 809 804\"><path d=\"M 842 98.5 C 842 98.5 745.052 75.244 704.5 47 C 663.948 18.756 630.698 24.812 584.5 98.5 C 538.302 172.188 490.689 174.5 431.5 174.5 C 267.108 174.5 262.948 217.997 261.5 236 C 260.052 254.003 241.627 284.656 366 321 C 430.702 427.037 503.284 489.349 520 454 C 499.827 408.262 404.5 430.645 404.5 517.5 C 404.5 604.355 520 553.938 520 609 C 520 664.062 430.326 705.866 271 730.5 C 111.674 755.134 -7.671 585.068 82.5 609 C 172.671 632.932 -110.5 789.5 -110.5 789.5\" fill=\"transparent\" stroke-width=\"1.95\" stroke=\"rgba(0,0,0,0.2)\" stroke-linejoin=\"round\" stroke-dasharray=\"3.91, 7.83\"></path></svg>',svgContentId:10826551671,withExternalLayout:true})],style:{height:\"100%\",width:\"100%\"},to:100,width:\"100%\"})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-w3pplp\",\"data-framer-name\":\"hero text\",children:[/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",intrinsicHeight:756,intrinsicWidth:852,positionX:\"right\",positionY:\"center\"},className:\"framer-vu6tpa\",\"data-framer-name\":\"Text and button\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-xrwnmx\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ijxlir\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v28\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h1\",{className:\"framer-styles-preset-37qaaw\",\"data-styles-preset\":\"JscfKS2S1\",style:{\"--framer-text-alignment\":\"center\"},children:[/*#__PURE__*/_jsx(\"strong\",{children:\"Digital insurance\"}),/*#__PURE__*/_jsx(\"strong\",{children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"strong\",{children:\"for brands\"})]})}),className:\"framer-bc31en\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v1\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-klnvar\",\"data-styles-preset\":\"zJAqeumkd\",children:\"We embed, you grow. \"})}),className:\"framer-1b73gzx\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15808k\",\"data-framer-name\":\"button\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"gLR44qzjC\"},implicitPathVariables:undefined},{href:{webPageId:\"gLR44qzjC\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{y:(componentViewport?.y||0)+0+119+0+0+40+0+171.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,children:/*#__PURE__*/_jsx(Container,{className:\"framer-w4nfn9-container\",nodeId:\"hFDBR5vg2\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{rCwD1ej02:resolvedLinks1[1]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"hFDBR5vg2\",layoutId:\"hFDBR5vg2\",rCwD1ej02:resolvedLinks1[0],SvJ3QWjij:getLocalizedValue(\"v27\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Learn more\"})}),variant:\"FIqdlZNCT\",width:\"100%\"})})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15pym9h\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1oj09if\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-16ivx5q\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ze3z1j\",\"data-framer-name\":\"square 2 - CSC\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1dfnlc2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v29\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\">10\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"risk\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"carriers\"})]}),className:\"framer-p6hh7j\",fonts:[\"CUSTOM;Untitled Sans Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ku58ty\",style:{rotate:-.5},transformTemplate:transformTemplate2,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v30\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-text-alignment\":\"center\"},children:\"Multi-insurer\"})}),className:\"framer-1w2mlcv\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1brnfnf\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-z3f1cs\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1b2j9xi\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1m6jysd\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-62ukly\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15n0hv\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-155rjl9\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-115hya4\",\"data-framer-name\":\"square 1 - Modules\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ixgmid\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v31\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Modular \"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"tech\"})]}),className:\"framer-1684o3t\",fonts:[\"CUSTOM;Untitled Sans Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1bvbhjs\",\"data-border\":true,\"data-framer-name\":\"\u2013 data\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v4\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Data\"})}),className:\"framer-6yvfs7\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+0+806-601+20+96.6667+39.8316+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/v5U1GIofgryrs9c2Ll1SIBSSP0.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/v5U1GIofgryrs9c2Ll1SIBSSP0.gif\"},className:\"framer-plol22\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ebjakk\",\"data-border\":true,\"data-framer-name\":\"\u2013 data\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v6\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"User portals\"})}),className:\"framer-12asv8v\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+0+806-601+20+96.6667+96.6667-38+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/ZFj6CsfAZGQwKAT83pcZeiNwlug.gif\"},className:\"framer-mr7hx5\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cwhzbv\",\"data-border\":true,\"data-framer-name\":\"\u2013 data\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v8\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Policy admin\"})}),className:\"framer-1g54pxq\",fonts:[\"CUSTOM;Untitled Sans Regular\"],id:\"1g54pxq\",verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+0+806-601+20+96.6667+96.6667-18+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/WZjKjZJqaSvueTp5Vc5pAz5BBY.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/WZjKjZJqaSvueTp5Vc5pAz5BBY.gif\"},className:\"framer-1qub1qh\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-esjpm7\",\"data-border\":true,\"data-framer-name\":\"\u2013 claims\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v32\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\",\"--framer-text-alignment\":\"left\"},children:\"Claims\"})}),className:\"framer-1cfo46z\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+0+806-601+20+96.6667+19.9004+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/XVjzZgXvMGquSkCECGfZTK74z0s.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/XVjzZgXvMGquSkCECGfZTK74z0s.gif\"},className:\"framer-rllurk\"})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-33pt84\",\"data-border\":true,\"data-framer-name\":\"\u2013\\xa0funnels\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v12\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgUmVndWxhcg==\",\"--framer-font-family\":'\"Untitled Sans Regular\", \"Untitled Sans Regular Placeholder\", sans-serif',\"--framer-font-size\":\"8px\"},children:\"Funnels\"})}),className:\"framer-1knrewg\",fonts:[\"CUSTOM;Untitled Sans Regular\"],verticalAlignment:\"center\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+119+0+0+806-601+20+96.6667+0+6),pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/2m8jgrIxQYEwhwdwct0uXCjMUtA.gif\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:20,intrinsicWidth:20,pixelHeight:20,pixelWidth:20,src:\"https://framerusercontent.com/images/2m8jgrIxQYEwhwdwct0uXCjMUtA.gif\"},className:\"framer-1bhww1h\"})})]}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1afp623\",\"data-framer-name\":\"Group 4\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:109,intrinsicWidth:22,svg:'<svg width=\"22\" height=\"109\" viewBox=\"0 0 22 109\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g opacity=\"0.2\">\\n<line y1=\"53.5\" x2=\"22\" y2=\"53.5\" stroke=\"black\"/>\\n<line x1=\"9.5\" y1=\"109\" x2=\"9.5\" y2=\"-2.18557e-08\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"28.5\" x2=\"22\" y2=\"28.5\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"108.5\" x2=\"22\" y2=\"108.5\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"81.5\" x2=\"22\" y2=\"81.5\" stroke=\"black\"/>\\n<line x1=\"10\" y1=\"0.5\" x2=\"22\" y2=\"0.5\" stroke=\"black\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fmia4f\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-5cn55y\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-vg0ceb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1upkd6x\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-157sl2c\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-74skcd\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5kxgxl\",\"data-framer-name\":\"square 2 - CSC\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-177r2n7\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v33\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"90%\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"CSAT\"})]}),className:\"framer-1s7qnw9\",fonts:[\"CUSTOM;Untitled Sans Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ffgfxp\",style:{rotate:-.5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v34\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-text-alignment\":\"center\"},children:\"Customer care\"})}),className:\"framer-c5erkr\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-15doywm\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-fl1a86\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-gfiwtj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-12kc6xj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-41z9iy\",\"data-framer-name\":\"square 3 - insure anything\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1up0mbs\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v35\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:\"Tailor-\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:\"made\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"left\"},children:\"solutions\"})]}),className:\"framer-p9r9j\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-b0j3rj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10iudr9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vgkwzx\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-148mpvc\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-4r34oe\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-r8t3sr\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-17m7lo9\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-11jtzdg\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11g6k9v\",\"data-framer-name\":\"square 4 -groen\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1htx4ub\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v36\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"API\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"enabled\"})]}),className:\"framer-5jdm54\",fonts:[\"CUSTOM;Untitled Sans Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-w5llpu\",style:{rotate:-.5},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v37\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"7px\",\"--framer-text-alignment\":\"center\"},children:\"Easy integration\"})}),className:\"framer-1m5oqlg\",fonts:[\"CUSTOM;Untitled Sans Medium\"],verticalAlignment:\"center\",withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-61miod\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1649uqj\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hvlhb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ezulwa\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-99zfwb\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ippvas\",\"data-framer-name\":\"square 3 - insure anything\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1byqx7p\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v38\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"Award-\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"winning\"}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"Q1VTVE9NO1VudGl0bGVkIFNhbnMgTWVkaXVt\",\"--framer-font-family\":'\"Untitled Sans Medium\", \"Untitled Sans Medium Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-text-alignment\":\"center\"},children:\"innovator\"})]}),className:\"framer-w2p5qb\",fonts:[\"CUSTOM;Untitled Sans Medium\"],transformTemplate:transformTemplate1,verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-10qrehx\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-jvs9yw\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kz190w\"})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1mef2hd\",\"data-framer-name\":\"Alicia USPs\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-10fodjb\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{height:100,y:(componentViewport?.y||0)+0+965+34+0+0},mrHhDnoCV:{y:(componentViewport?.y||0)+0+769+50+0+0},PDBSYH9MS:{height:100,y:(componentViewport?.y||0)+0+919+34+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,width:`max(${componentViewport?.width||\"100vw\"}, 1px)`,y:(componentViewport?.y||0)+0+969+50+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1rwia35-container\",nodeId:\"a9YejdLOa\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{variant:\"d5DsbDw6H\"},PDBSYH9MS:{variant:\"d5DsbDw6H\"}},children:/*#__PURE__*/_jsx(HomeTicker,{height:\"100%\",id:\"a9YejdLOa\",layoutId:\"a9YejdLOa\",style:{height:\"100%\",width:\"100%\"},variant:\"LhgzDQROc\",width:\"100%\"})})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jau1tg\",\"data-framer-name\":\"Alicia USPs\",children:/*#__PURE__*/_jsxs(\"div\",{background:{alt:\"\",fit:\"fill\",positionX:\"right\",positionY:\"center\"},className:\"framer-10qjtkp\",children:[isDisplayed()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{mrHhDnoCV:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.5,intrinsicWidth:119.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1019+120+0+229.9058),pixelHeight:227,pixelWidth:239,src:\"https://framerusercontent.com/images/vFPMgl6crFlOs77VAUKJ5oYcU.svg\"},transformTemplate:transformTemplate1},PDBSYH9MS:{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.5,intrinsicWidth:119.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1087+120+0+221.8823),pixelHeight:227,pixelWidth:239,src:\"https://framerusercontent.com/images/vFPMgl6crFlOs77VAUKJ5oYcU.svg\"},transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:113.5,intrinsicWidth:119.5,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1219+120+0+510-248.5051),pixelHeight:227,pixelWidth:239,src:\"https://framerusercontent.com/images/vFPMgl6crFlOs77VAUKJ5oYcU.svg\"},className:\"framer-vd7g12 hidden-1hep379\",\"data-framer-name\":\"alicia_insure_small_arrow_down_purple\",style:{rotate:13},transformTemplate:transformTemplate2})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1133+120+0+0),pixelHeight:1426,pixelWidth:2038,positionX:\"center\",positionY:\"center\",sizes:`min((${componentViewport?.width||\"100vw\"} - 40px) * 0.9, 810px)`,src:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png\",srcSet:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png 2038w\"}},mrHhDnoCV:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1019+120+0+0),pixelHeight:1426,pixelWidth:2038,positionX:\"center\",positionY:\"center\",sizes:`calc(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.9, 1200px) * 0.444)`,src:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png\",srcSet:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png 2038w\"}},PDBSYH9MS:{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1087+120+0+0),pixelHeight:1426,pixelWidth:2038,positionX:\"center\",positionY:\"center\",sizes:`calc(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.9, 810px) * 0.6)`,src:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png\",srcSet:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png 2038w\"}}},children:/*#__PURE__*/_jsxs(Image,{background:{alt:\"\",fit:\"stretch\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1219+120+0+0),pixelHeight:1426,pixelWidth:2038,positionX:\"center\",positionY:\"center\",sizes:`calc(min((${componentViewport?.width||\"100vw\"} - 40px) * 0.9, 1445px) * 0.444)`,src:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png\",srcSet:\"https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=512 512w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/xCw8TyaXQhcz6k09H4WTFnhgyY.png 2038w\"},className:\"framer-iz8zr0\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1kgu8zo\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v39\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-vksg9s\",\"data-styles-preset\":\"O0U2tTrXk\",children:/*#__PURE__*/_jsx(\"strong\",{children:\"Hi, we're Alicia.\"})})}),className:\"framer-16w1oy8\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v40\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-klnvar\",\"data-styles-preset\":\"zJAqeumkd\",style:{\"--framer-text-alignment\":\"left\"},children:\"We help you unlock the power of fully digital, seamless insurance, that works for your business and your users.\"})}),className:\"framer-1qdw2ey\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1l50ksv\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"ggAou9_te\"},implicitPathVariables:undefined},{href:{webPageId:\"ggAou9_te\"},implicitPathVariables:undefined},{href:{webPageId:\"ggAou9_te\"},implicitPathVariables:undefined},{href:{webPageId:\"ggAou9_te\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{y:(componentViewport?.y||0)+0+1133+120+0+0+32+393+0},mrHhDnoCV:{y:(componentViewport?.y||0)+0+1019+120+0+0+32+393+0},PDBSYH9MS:{y:(componentViewport?.y||0)+0+1087+120+0+0+32+393+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:53,y:(componentViewport?.y||0)+0+1219+120+0+0+32+393+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-eak9me-container\",nodeId:\"VsB3sP0sd\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{rCwD1ej02:resolvedLinks2[3]},mrHhDnoCV:{rCwD1ej02:resolvedLinks2[1]},PDBSYH9MS:{rCwD1ej02:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(Buttons,{height:\"100%\",id:\"VsB3sP0sd\",layoutId:\"VsB3sP0sd\",rCwD1ej02:resolvedLinks2[0],SvJ3QWjij:getLocalizedValue(\"v41\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{children:\"Learn more about us\"})}),variant:\"xckPXaaUp\",width:\"100%\"})})})})})})})]})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-n66mbw\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-zaxp2w\",\"data-framer-name\":\"Industries\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xuq0w9\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v42\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-5c7ry7\",\"data-styles-preset\":\"KtNdc9CPv\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:/*#__PURE__*/_jsx(\"strong\",{children:\"Solutions for any business\"})})}),className:\"framer-x3we4y\",fonts:[\"Inter\",\"Inter-Bold\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v43\",activeLocale)??/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"Embedded insurance can help boost any business, in any industry. \"}),/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"Check out what it can do for your business.\"})]}),className:\"framer-vc4adf\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-24izkj\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1fjfpt\",\"data-framer-name\":\"Data\",children:[/*#__PURE__*/_jsx(Link,{href:{webPageId:\"yZQncWzPw\"},motionChild:true,nodeId:\"H6tWoeUIM\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-yz2ete framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v45\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For banks\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v44\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For banks\"})}),className:\"framer-1y9p4uv\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vmw8bu-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RQNmgltJ0\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-c2589847-4f8d-4643-bd74-6f1e4629b4c0, rgb(180, 251, 156))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"RQNmgltJ0\",layoutId:\"RQNmgltJ0\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"zjj3sYcpc\"},motionChild:true,nodeId:\"ibY49qi2m\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-pd90ex framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v48\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For brokers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v47\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For brokers\"})}),className:\"framer-njt0ga\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-s39v5o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"ouxzlZaD4\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-13a0d2ef-607e-40d0-8752-ea5918add37d, rgb(230, 177, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"ouxzlZaD4\",layoutId:\"ouxzlZaD4\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"TCm8YgVQ5\"},motionChild:true,nodeId:\"vmOXnaVLy\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1kv48lj framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v50\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For e-commerce & retail\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v49\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For e-commerce & retail\"})}),className:\"framer-6aydwl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-f26y5o-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"DJlaMUIvu\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, rgb(181, 201, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"DJlaMUIvu\",layoutId:\"DJlaMUIvu\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"etPz5BXfI\"},motionChild:true,nodeId:\"bBfOXa_rj\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-50hoc6 framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v52\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For insurers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v51\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For insurers\"})}),className:\"framer-19y3mb\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-17i5vpv-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"sI9gCPM6m\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-a7650a16-0bfa-45c9-b810-ee7e4f78c2f7, rgb(255, 189, 112))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"sI9gCPM6m\",layoutId:\"sI9gCPM6m\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"MMI4X4uJe\"},motionChild:true,nodeId:\"PJYIxDh85\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-ldoxhw framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v54\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For telco & utilities providers\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v53\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For telco & utilities providers\"})}),className:\"framer-rnllfa\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-wyh72r-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"k5vhV4UIj\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-5d41443d-ec12-43db-87c5-dc61b21f84be, rgb(252, 144, 144))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"k5vhV4UIj\",layoutId:\"k5vhV4UIj\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"WiaQF4C2r\"},motionChild:true,nodeId:\"xA3QJBHzK\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-60yci5 framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v56\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For the world of work\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v55\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For the world of work\"})}),className:\"framer-cfi69t\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-me97nz-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"UO_ERNFI7\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-5774c937-6c21-4487-a2bf-f16ec15ea1f0, rgb(234, 255, 1))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"UO_ERNFI7\",layoutId:\"UO_ERNFI7\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(Link,{href:{webPageId:\"ytw_02u0L\"},motionChild:true,nodeId:\"OWxGZrmHV\",openInNewTab:false,scopeId:\"zfEF9J6Nu\",smoothScroll:true,children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1hzrmon framer-7i9pjq\",\"data-border\":true,whileHover:animation1,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{children:getLocalizedValue(\"v58\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-zyo0mp\",\"data-styles-preset\":\"vF3lODYgg\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For any business\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v57\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-s34ndq\",\"data-styles-preset\":\"cA9ClpeSK\",style:{\"--framer-text-color\":\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\"},children:\"For any business\"})}),className:\"framer-mvo3cc\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-5x9suo-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"zN0a5bZOh\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(Material,{color:\"var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, rgb(255, 255, 255))\",height:\"100%\",iconSearch:getLocalizedValue(\"v46\",activeLocale)??\"Home\",iconSelection:\"ArrowForward\",iconStyle15:\"Filled\",iconStyle2:\"Filled\",iconStyle7:\"Filled\",id:\"zN0a5bZOh\",layoutId:\"zN0a5bZOh\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})})]})})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{y:(componentViewport?.y||0)+0+4191},mrHhDnoCV:{y:(componentViewport?.y||0)+0+3409},PDBSYH9MS:{y:(componentViewport?.y||0)+0+3477}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:899,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+3609,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10m6p3u-container\",nodeId:\"ZGT2LWkuo\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{variant:\"CXgV5NVoq\"}},children:/*#__PURE__*/_jsx(HowWeWork,{height:\"100%\",id:\"ZGT2LWkuo\",layoutId:\"ZGT2LWkuo\",style:{width:\"100%\"},variant:\"RmwEmbPFm\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{y:(componentViewport?.y||0)+0+5090},mrHhDnoCV:{y:(componentViewport?.y||0)+0+4308},PDBSYH9MS:{y:(componentViewport?.y||0)+0+4376}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:692,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+4508,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{\"data-framer-cursor\":\"132mwst\"},PDBSYH9MS:{\"data-framer-cursor\":\"132mwst\"}},children:/*#__PURE__*/_jsx(Container,{className:\"framer-dafko5-container\",\"data-framer-cursor\":\"1wn84ko\",nodeId:\"Qx15YArj4\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{variant:\"CtCjufUJ4\"},mrHhDnoCV:{variant:\"Ig9f9tZSU\"},PDBSYH9MS:{variant:\"PtMeI7kUP\"}},children:/*#__PURE__*/_jsx(CasesElement,{height:\"100%\",id:\"Qx15YArj4\",layoutId:\"Qx15YArj4\",style:{width:\"100%\"},variant:\"fKtnxY3rL\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{y:(componentViewport?.y||0)+0+5782},mrHhDnoCV:{y:(componentViewport?.y||0)+0+5e3},PDBSYH9MS:{y:(componentViewport?.y||0)+0+5068}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:335,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5200,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1un4eya-container\",nodeId:\"n8VbYm8pE\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"n8VbYm8pE\",layoutId:\"n8VbYm8pE\",style:{width:\"100%\"},variant:\"ENmZWH7Sa\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{y:(componentViewport?.y||0)+0+6117},mrHhDnoCV:{y:(componentViewport?.y||0)+0+5335},PDBSYH9MS:{y:(componentViewport?.y||0)+0+5403}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:455,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5535,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1reegn7-container\",nodeId:\"aZU48e2ax\",scopeId:\"zfEF9J6Nu\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{BxyXwdyez:{variant:\"yfQxKSDmE\"},PDBSYH9MS:{variant:\"YloSHCwOY\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"aZU48e2ax\",layoutId:\"aZU48e2ax\",style:{width:\"100%\"},variant:\"NGcsrsg20\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-LsXCU.framer-7i9pjq, .framer-LsXCU .framer-7i9pjq { display: block; }\",\".framer-LsXCU.framer-1x94j7f { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1445px; }\",\".framer-LsXCU .framer-5vm4hb-container, .framer-LsXCU .framer-10m6p3u-container, .framer-LsXCU .framer-dafko5-container, .framer-LsXCU .framer-1un4eya-container, .framer-LsXCU .framer-1reegn7-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-LsXCU .framer-1nk28kt { align-content: center; align-items: center; background-color: var(--token-a31e87ae-b5c4-406a-8947-667408ae6d55, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 85vh; justify-content: center; min-height: 770px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LsXCU .framer-1gaf8dq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 870px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LsXCU .framer-1v7oa3n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 770px; justify-content: center; overflow: hidden; padding: 0px 0px 90px 0px; position: relative; width: 1px; }\",\".framer-LsXCU .framer-12qur7d { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 0px 43px 0px; position: relative; width: min-content; z-index: 10; }\",\".framer-LsXCU .framer-rdvc9z, .framer-LsXCU .framer-xrwnmx { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-LsXCU .framer-5iyak3, .framer-LsXCU .framer-1ijxlir { 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: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-LsXCU .framer-9svyy2, .framer-LsXCU .framer-1i6ha3j, .framer-LsXCU .framer-bc31en { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-LsXCU .framer-ghir65, .framer-LsXCU .framer-1b73gzx { flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-LsXCU .framer-1fn47c1-container { bottom: 83px; flex: none; left: -557px; position: absolute; right: -558px; top: -83px; z-index: 1; }\",\".framer-LsXCU .framer-uwahta { height: 752px; position: relative; width: 2560px; }\",\".framer-LsXCU .framer-1lm9euy { align-content: center; align-items: center; bottom: 30px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: calc(50.0507099391481% - 1920px / 2); overflow: hidden; padding: 20px 0px 0px 0px; position: absolute; top: -30px; width: 1920px; z-index: 1; }\",\".framer-LsXCU .framer-bsmm21-container { flex: none; height: 450px; left: calc(49.95829858215182% - 1199px / 2); position: absolute; top: calc(50.00000000000002% - 450px / 2); width: 1199px; z-index: 1; }\",\".framer-LsXCU .framer-1p61x91 { height: 450px; position: relative; width: 1199px; }\",\".framer-LsXCU .framer-d1ttrz-container { flex: none; height: 650px; position: relative; width: 1439px; z-index: 1; }\",\".framer-LsXCU .framer-1dm4oce { height: 650px; position: relative; width: 1484px; }\",\".framer-LsXCU .framer-1bo5bhh { flex: none; height: 770px; left: calc(50.00000000000002% - 1920px / 2); overflow: hidden; position: absolute; top: calc(50.25974025974028% - 770px / 2); width: 1920px; z-index: 1; }\",\".framer-LsXCU .framer-1xlu4oz { flex: none; height: 150px; left: 300px; overflow: hidden; position: absolute; top: 38px; width: 345px; }\",\".framer-LsXCU .framer-q0caon { background-color: var(--token-13a0d2ef-607e-40d0-8752-ea5918add37d, #e6b1ff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 130px; left: 12px; overflow: hidden; position: absolute; text-decoration: none; top: calc(48.00000000000002% - 130px / 2); width: 130px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1507vpm, .framer-LsXCU .framer-1jfp3nl, .framer-LsXCU .framer-1dfx2wk, .framer-LsXCU .framer-1d3zvgs, .framer-LsXCU .framer-p6hh7j, .framer-LsXCU .framer-1684o3t, .framer-LsXCU .framer-1s7qnw9, .framer-LsXCU .framer-5jdm54 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 51%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-LsXCU .framer-1bfz7jm { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 162px; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 46%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1044rpv, .framer-LsXCU .framer-135svf1, .framer-LsXCU .framer-1m2vkrb, .framer-LsXCU .framer-1neyox7, .framer-LsXCU .framer-1q0893v, .framer-LsXCU .framer-1v3bkai, .framer-LsXCU .framer-1dwvyaf, .framer-LsXCU .framer-1w2mlcv, .framer-LsXCU .framer-6yvfs7, .framer-LsXCU .framer-12asv8v, .framer-LsXCU .framer-1g54pxq, .framer-LsXCU .framer-1cfo46z, .framer-LsXCU .framer-1knrewg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 12px; position: relative; white-space: pre; width: auto; }\",\".framer-LsXCU .framer-1j0owr6, .framer-LsXCU .framer-izp0ln, .framer-LsXCU .framer-fj5had, .framer-LsXCU .framer-15ls5mh, .framer-LsXCU .framer-fej0zu { aspect-ratio: 1 / 1; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: var(--framer-aspect-ratio-supported, 8px); overflow: hidden; position: relative; width: 8px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-bze98a { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; bottom: 42px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 162px; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-zaxokd { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; bottom: 13px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 162px; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-15hzh4t { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 162px; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 33px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1yzd85k { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 162px; overflow: hidden; padding: 5px 10px 5px 10px; position: absolute; top: 7px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1p3a0pr { flex: none; height: 107px; left: 140px; position: absolute; top: calc(46.66666666666669% - 107px / 2); width: 22px; }\",\".framer-LsXCU .framer-1non34w { flex: none; height: 161px; left: 398px; overflow: hidden; position: absolute; top: calc(51.48514851485151% - 161px / 2); width: 160px; }\",\".framer-LsXCU .framer-1p9sgbh { background-color: var(--token-5774c937-6c21-4487-a2bf-f16ec15ea1f0, #effb00); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 124px; left: 17px; overflow: hidden; position: absolute; text-decoration: none; top: calc(49.33333333333336% - 124px / 2); width: 124px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-w4nlt1 { align-content: center; align-items: center; background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: absolute; right: 12px; top: 8px; width: min-content; z-index: 1; }\",\".framer-LsXCU .framer-1g60zwd { bottom: 249px; flex: none; height: 161px; left: 1238px; overflow: hidden; position: absolute; width: 160px; }\",\".framer-LsXCU .framer-hyviea { background-color: var(--token-c2589847-4f8d-4643-bd74-6f1e4629b4c0, #b4fb9c); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 124px; left: 17px; overflow: hidden; position: absolute; text-decoration: none; top: calc(49.33333333333336% - 124px / 2); width: 124px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-ba7yjb { align-content: center; align-items: center; background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; left: 54px; overflow: hidden; padding: 5px; position: absolute; top: 8px; width: min-content; z-index: 1; }\",\".framer-LsXCU .framer-15wq6oh { background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); flex: none; height: 20px; left: 44px; overflow: hidden; position: absolute; top: 18px; width: 88px; z-index: 1; }\",\".framer-LsXCU .framer-13qxjdq { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 12px; position: absolute; right: -6px; top: 3px; white-space: pre-wrap; width: 88px; word-break: break-word; word-wrap: break-word; }\",\".framer-LsXCU .framer-nqz82w { bottom: 40px; flex: none; height: 161px; left: 613px; overflow: hidden; position: absolute; width: 160px; }\",\".framer-LsXCU .framer-sijyki { background-color: var(--token-c2589847-4f8d-4643-bd74-6f1e4629b4c0, #b4fb9c); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 146px; left: calc(50.00000000000002% - 140px / 2); overflow: hidden; position: absolute; text-decoration: none; top: calc(50.3105590062112% - 146px / 2); width: 140px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-25u852 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 49%; position: absolute; top: 23px; transform: translateX(-50%); white-space: pre; width: auto; }\",\".framer-LsXCU .framer-1oqvisb { bottom: 0px; flex: none; height: 166px; left: 1415px; overflow: hidden; position: absolute; width: 160px; }\",\".framer-LsXCU .framer-rj1n9h { background-color: var(--token-13a0d2ef-607e-40d0-8752-ea5918add37d, #e6b1ff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 136px; left: calc(50.00000000000002% - 140px / 2); overflow: hidden; position: absolute; text-decoration: none; top: calc(50.00000000000002% - 136px / 2); width: 140px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-lnpcxm, .framer-LsXCU .framer-w2p5qb { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 50%; position: absolute; top: 48%; transform: translate(-50%, -50%); white-space: pre; width: auto; }\",\".framer-LsXCU .framer-ijv1bm { flex: none; height: 161px; overflow: hidden; position: absolute; right: 300px; top: 101px; width: 154px; }\",\".framer-LsXCU .framer-116yjc2 { background-color: var(--token-5774c937-6c21-4487-a2bf-f16ec15ea1f0, #effb00); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: 124px; left: calc(50.649350649350666% - 124px / 2); overflow: hidden; position: absolute; text-decoration: none; top: calc(49.06832298136648% - 124px / 2); width: 124px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1hpdwxf { align-content: center; align-items: center; background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 5px; position: absolute; right: 17px; top: 8px; width: min-content; z-index: 1; }\",\".framer-LsXCU .framer-x11m1a { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; bottom: 211px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; left: 50%; overflow: visible; padding: 0px; position: absolute; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-LsXCU .framer-pfh6ur-container, .framer-LsXCU .framer-w4nfn9-container, .framer-LsXCU .framer-eak9me-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-LsXCU .framer-179oxx { align-content: center; align-items: center; background-color: var(--token-a31e87ae-b5c4-406a-8947-667408ae6d55, #fafafa); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; min-height: 500px; overflow: hidden; padding: 0px 0px 40px 0px; position: relative; width: 809px; }\",\".framer-LsXCU .framer-1lsp4pr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: 806px; justify-content: center; overflow: hidden; padding: 40px 0px 0px 0px; position: relative; width: 809px; }\",\".framer-LsXCU .framer-gr0ver-container { flex: none; height: 804px; left: calc(49.938195302843035% - 809px / 2); position: absolute; top: calc(52.72952853598017% - 804px / 2); width: 809px; z-index: 1; }\",\".framer-LsXCU .framer-rb0ski { height: 804px; position: relative; width: 809px; }\",\".framer-LsXCU .framer-w3pplp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px 0px 30px 0px; position: absolute; top: 40px; transform: translateX(-50%); width: 809px; z-index: 1; }\",\".framer-LsXCU .framer-vu6tpa { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 10; }\",\".framer-LsXCU .framer-15808k { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 35px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-LsXCU .framer-15pym9h { bottom: 1px; display: grid; flex: none; gap: 0px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(7, minmax(50px, 1fr)); grid-template-rows: repeat(4, minmax(0, 1fr)); height: 600px; justify-content: center; left: 0px; overflow: hidden; padding: 20px 0px 0px 0px; position: absolute; width: 809px; z-index: 1; }\",\".framer-LsXCU .framer-1oj09if, .framer-LsXCU .framer-1brnfnf, .framer-LsXCU .framer-z3f1cs, .framer-LsXCU .framer-1b2j9xi, .framer-LsXCU .framer-1m6jysd, .framer-LsXCU .framer-62ukly, .framer-LsXCU .framer-15n0hv, .framer-LsXCU .framer-155rjl9, .framer-LsXCU .framer-fmia4f, .framer-LsXCU .framer-5cn55y, .framer-LsXCU .framer-vg0ceb, .framer-LsXCU .framer-1upkd6x, .framer-LsXCU .framer-157sl2c, .framer-LsXCU .framer-74skcd, .framer-LsXCU .framer-15doywm, .framer-LsXCU .framer-fl1a86, .framer-LsXCU .framer-gfiwtj, .framer-LsXCU .framer-12kc6xj, .framer-LsXCU .framer-b0j3rj, .framer-LsXCU .framer-10iudr9, .framer-LsXCU .framer-1vgkwzx, .framer-LsXCU .framer-148mpvc, .framer-LsXCU .framer-4r34oe, .framer-LsXCU .framer-r8t3sr, .framer-LsXCU .framer-17m7lo9, .framer-LsXCU .framer-11jtzdg, .framer-LsXCU .framer-61miod, .framer-LsXCU .framer-1649uqj, .framer-LsXCU .framer-hvlhb, .framer-LsXCU .framer-ezulwa, .framer-LsXCU .framer-99zfwb, .framer-LsXCU .framer-10qrehx, .framer-LsXCU .framer-jvs9yw, .framer-LsXCU .framer-kz190w { align-self: center; flex: none; height: 100%; justify-self: center; position: relative; width: 100%; }\",\".framer-LsXCU .framer-16ivx5q { align-self: center; flex: none; height: 100%; justify-self: center; position: relative; width: 116px; }\",\".framer-LsXCU .framer-ze3z1j, .framer-LsXCU .framer-5kxgxl, .framer-LsXCU .framer-41z9iy, .framer-LsXCU .framer-11g6k9v, .framer-LsXCU .framer-1ippvas { align-self: start; flex: none; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-LsXCU .framer-1dfnlc2 { aspect-ratio: 1 / 1; background-color: var(--token-c2589847-4f8d-4643-bd74-6f1e4629b4c0, #b4fb9c); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 37%; overflow: hidden; position: absolute; top: 20px; transform: translateX(-50%); width: 78px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-ku58ty { align-content: center; align-items: center; background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 16px; justify-content: center; left: 51%; overflow: hidden; padding: 0px 3px 0px 3px; position: absolute; top: 16px; transform: translateX(-50%); width: min-content; z-index: 1; }\",\".framer-LsXCU .framer-115hya4 { align-self: start; flex: none; grid-column: auto / span 2; height: 100%; justify-self: start; overflow: hidden; position: relative; width: 100%; }\",\".framer-LsXCU .framer-1ixgmid { aspect-ratio: 1 / 1; background-color: var(--token-13a0d2ef-607e-40d0-8752-ea5918add37d, #e6b1ff); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 1px; overflow: hidden; position: absolute; top: 50%; transform: translateY(-50%); width: 78px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1bvbhjs { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 99px; overflow: hidden; padding: 3px 7px 3px 7px; position: absolute; top: 51%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-plol22, .framer-LsXCU .framer-mr7hx5, .framer-LsXCU .framer-1qub1qh, .framer-LsXCU .framer-rllurk, .framer-LsXCU .framer-1bhww1h { aspect-ratio: 1 / 1; border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; flex: none; height: var(--framer-aspect-ratio-supported, 6px); overflow: hidden; position: relative; width: 6px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-ebjakk { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; bottom: 20px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 99px; overflow: hidden; padding: 3px 7px 3px 7px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1cwhzbv { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 99px; overflow: hidden; padding: 3px 7px 3px 7px; position: absolute; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-esjpm7 { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 99px; overflow: hidden; padding: 3px 7px 3px 7px; position: absolute; top: 30%; transform: translateY(-50%); width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-33pt84 { --border-bottom-width: 1px; --border-color: #cecece; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); border-bottom-left-radius: 26px; border-bottom-right-radius: 26px; border-top-left-radius: 26px; border-top-right-radius: 26px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: center; left: 99px; overflow: hidden; padding: 3px 7px 3px 7px; position: absolute; top: 0px; width: min-content; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1afp623 { flex: none; height: 83px; left: 78px; position: absolute; top: calc(49.48453608247425% - 83px / 2); width: 22px; }\",\".framer-LsXCU .framer-177r2n7 { aspect-ratio: 1 / 1; background-color: var(--token-5774c937-6c21-4487-a2bf-f16ec15ea1f0, #effb00); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; bottom: 1px; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 26px; overflow: hidden; position: absolute; width: 78px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1ffgfxp { background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); flex: none; height: 16px; left: 45px; overflow: hidden; position: absolute; top: 16px; width: 60px; z-index: 1; }\",\".framer-LsXCU .framer-c5erkr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 12px; left: calc(50.00000000000002% - 56px / 2); position: absolute; top: calc(50.00000000000002% - 12px / 2); white-space: pre-wrap; width: 56px; word-break: break-word; word-wrap: break-word; }\",\".framer-LsXCU .framer-1up0mbs { aspect-ratio: 1 / 1; background-color: var(--token-c2589847-4f8d-4643-bd74-6f1e4629b4c0, #b4fb9c); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 49%; overflow: hidden; position: absolute; top: 19px; transform: translateX(-50%); width: 78px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-p9r9j { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; left: 10px; position: absolute; top: 12px; white-space: pre; width: auto; }\",\".framer-LsXCU .framer-1htx4ub { aspect-ratio: 1 / 1; background-color: var(--token-5774c937-6c21-4487-a2bf-f16ec15ea1f0, #effb00); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 50%; overflow: hidden; position: absolute; top: 50%; transform: translate(-50%, -50%); width: 78px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-w5llpu { background-color: var(--token-b1d925b0-fbc6-4bfd-ad3d-8603f392580d, #b5c9ff); flex: none; height: 17px; left: 37px; overflow: hidden; position: absolute; top: 4px; width: 65px; z-index: 1; }\",\".framer-LsXCU .framer-1m5oqlg { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: 12px; left: calc(49.230769230769255% - 61px / 2); position: absolute; top: calc(47.05882352941179% - 12px / 2); white-space: pre-wrap; width: 61px; word-break: break-word; word-wrap: break-word; }\",\".framer-LsXCU .framer-1byqx7p { aspect-ratio: 1 / 1; background-color: var(--token-13a0d2ef-607e-40d0-8752-ea5918add37d, #e6b1ff); border-bottom-left-radius: 21px; border-bottom-right-radius: 21px; border-top-left-radius: 21px; border-top-right-radius: 21px; flex: none; height: var(--framer-aspect-ratio-supported, 78px); left: 19px; overflow: hidden; position: absolute; top: 39%; transform: translateY(-50%); width: 78px; will-change: var(--framer-will-change-override, transform); z-index: 1; }\",\".framer-LsXCU .framer-1mef2hd { align-content: center; align-items: center; background-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 0px 50px 0px; position: relative; width: 100%; }\",\".framer-LsXCU .framer-10fodjb { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 45px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-LsXCU .framer-1rwia35-container { flex: none; height: 150px; position: relative; width: 100%; }\",\".framer-LsXCU .framer-1jau1tg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 20px 60px 20px; position: relative; width: 100%; }\",\".framer-LsXCU .framer-10qjtkp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 22px; height: min-content; justify-content: flex-start; max-width: 1445px; overflow: hidden; padding: 0px; position: relative; width: 90%; }\",\".framer-LsXCU .framer-vd7g12 { aspect-ratio: 1.0521472392638036 / 1; bottom: 125px; flex: none; height: var(--framer-aspect-ratio-supported, 124px); left: 52%; max-width: 170px; overflow: visible; position: absolute; transform: translateX(-50%); width: 10%; z-index: 1; }\",\".framer-LsXCU .framer-iz8zr0 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 68px; height: min-content; justify-content: center; overflow: hidden; padding: 32px; position: relative; width: 44%; }\",\".framer-LsXCU .framer-1kgu8zo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-LsXCU .framer-16w1oy8, .framer-LsXCU .framer-1qdw2ey, .framer-LsXCU .framer-x3we4y, .framer-LsXCU .framer-vc4adf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-LsXCU .framer-1l50ksv { align-content: center; align-items: center; border-bottom-left-radius: 37px; border-bottom-right-radius: 37px; border-top-left-radius: 37px; border-top-right-radius: 37px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-LsXCU .framer-n66mbw { align-content: center; align-items: center; background-color: var(--token-1b6a6848-33c1-4b8d-ade0-019733edcb2a, #444951); 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-LsXCU .framer-zaxp2w { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1350px; overflow: hidden; padding: 140px 0px 140px 0px; position: relative; width: 90%; }\",\".framer-LsXCU .framer-xuq0w9 { 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; position: relative; width: 50%; }\",\".framer-LsXCU .framer-24izkj { 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: hidden; padding: 0px; position: relative; width: 45%; }\",\".framer-LsXCU .framer-1fjfpt { 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: hidden; padding: 0px; position: relative; width: 70%; }\",\".framer-LsXCU .framer-yz2ete, .framer-LsXCU .framer-pd90ex, .framer-LsXCU .framer-1kv48lj, .framer-LsXCU .framer-50hoc6, .framer-LsXCU .framer-ldoxhw, .framer-LsXCU .framer-60yci5, .framer-LsXCU .framer-1hzrmon { --border-bottom-width: 1px; --border-color: var(--token-1376dd33-c94d-4913-8be0-38d736afaabb, #ffffff); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 10px 0px; position: relative; text-decoration: none; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-LsXCU .framer-1y9p4uv, .framer-LsXCU .framer-njt0ga, .framer-LsXCU .framer-6aydwl, .framer-LsXCU .framer-19y3mb, .framer-LsXCU .framer-rnllfa, .framer-LsXCU .framer-cfi69t, .framer-LsXCU .framer-mvo3cc { flex: 1 0 0px; height: auto; overflow: visible; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-LsXCU .framer-1vmw8bu-container, .framer-LsXCU .framer-s39v5o-container, .framer-LsXCU .framer-f26y5o-container, .framer-LsXCU .framer-17i5vpv-container, .framer-LsXCU .framer-wyh72r-container, .framer-LsXCU .framer-me97nz-container, .framer-LsXCU .framer-5x9suo-container { flex: none; height: 25px; position: relative; width: 25px; }\",\"@supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LsXCU.framer-1x94j7f, .framer-LsXCU .framer-1nk28kt, .framer-LsXCU .framer-1gaf8dq, .framer-LsXCU .framer-1v7oa3n, .framer-LsXCU .framer-12qur7d, .framer-LsXCU .framer-rdvc9z, .framer-LsXCU .framer-5iyak3, .framer-LsXCU .framer-1lm9euy, .framer-LsXCU .framer-1bfz7jm, .framer-LsXCU .framer-bze98a, .framer-LsXCU .framer-zaxokd, .framer-LsXCU .framer-15hzh4t, .framer-LsXCU .framer-1yzd85k, .framer-LsXCU .framer-w4nlt1, .framer-LsXCU .framer-ba7yjb, .framer-LsXCU .framer-1hpdwxf, .framer-LsXCU .framer-x11m1a, .framer-LsXCU .framer-179oxx, .framer-LsXCU .framer-1lsp4pr, .framer-LsXCU .framer-w3pplp, .framer-LsXCU .framer-vu6tpa, .framer-LsXCU .framer-xrwnmx, .framer-LsXCU .framer-1ijxlir, .framer-LsXCU .framer-15808k, .framer-LsXCU .framer-ku58ty, .framer-LsXCU .framer-1bvbhjs, .framer-LsXCU .framer-ebjakk, .framer-LsXCU .framer-1cwhzbv, .framer-LsXCU .framer-esjpm7, .framer-LsXCU .framer-33pt84, .framer-LsXCU .framer-1mef2hd, .framer-LsXCU .framer-10fodjb, .framer-LsXCU .framer-1jau1tg, .framer-LsXCU .framer-10qjtkp, .framer-LsXCU .framer-iz8zr0, .framer-LsXCU .framer-1kgu8zo, .framer-LsXCU .framer-1l50ksv, .framer-LsXCU .framer-n66mbw, .framer-LsXCU .framer-xuq0w9, .framer-LsXCU .framer-24izkj, .framer-LsXCU .framer-1fjfpt, .framer-LsXCU .framer-yz2ete, .framer-LsXCU .framer-pd90ex, .framer-LsXCU .framer-1kv48lj, .framer-LsXCU .framer-50hoc6, .framer-LsXCU .framer-ldoxhw, .framer-LsXCU .framer-60yci5, .framer-LsXCU .framer-1hzrmon { gap: 0px; } .framer-LsXCU.framer-1x94j7f > *, .framer-LsXCU .framer-1nk28kt > *, .framer-LsXCU .framer-1v7oa3n > *, .framer-LsXCU .framer-rdvc9z > *, .framer-LsXCU .framer-179oxx > *, .framer-LsXCU .framer-1lsp4pr > *, .framer-LsXCU .framer-xrwnmx > * { margin: 0px; margin-bottom: calc(0px / 2); margin-top: calc(0px / 2); } .framer-LsXCU.framer-1x94j7f > :first-child, .framer-LsXCU .framer-1nk28kt > :first-child, .framer-LsXCU .framer-1v7oa3n > :first-child, .framer-LsXCU .framer-12qur7d > :first-child, .framer-LsXCU .framer-rdvc9z > :first-child, .framer-LsXCU .framer-5iyak3 > :first-child, .framer-LsXCU .framer-w4nlt1 > :first-child, .framer-LsXCU .framer-ba7yjb > :first-child, .framer-LsXCU .framer-1hpdwxf > :first-child, .framer-LsXCU .framer-x11m1a > :first-child, .framer-LsXCU .framer-179oxx > :first-child, .framer-LsXCU .framer-1lsp4pr > :first-child, .framer-LsXCU .framer-w3pplp > :first-child, .framer-LsXCU .framer-vu6tpa > :first-child, .framer-LsXCU .framer-xrwnmx > :first-child, .framer-LsXCU .framer-1ijxlir > :first-child, .framer-LsXCU .framer-15808k > :first-child, .framer-LsXCU .framer-ku58ty > :first-child, .framer-LsXCU .framer-10fodjb > :first-child, .framer-LsXCU .framer-1jau1tg > :first-child, .framer-LsXCU .framer-iz8zr0 > :first-child, .framer-LsXCU .framer-1kgu8zo > :first-child, .framer-LsXCU .framer-xuq0w9 > :first-child, .framer-LsXCU .framer-1fjfpt > :first-child { margin-top: 0px; } .framer-LsXCU.framer-1x94j7f > :last-child, .framer-LsXCU .framer-1nk28kt > :last-child, .framer-LsXCU .framer-1v7oa3n > :last-child, .framer-LsXCU .framer-12qur7d > :last-child, .framer-LsXCU .framer-rdvc9z > :last-child, .framer-LsXCU .framer-5iyak3 > :last-child, .framer-LsXCU .framer-w4nlt1 > :last-child, .framer-LsXCU .framer-ba7yjb > :last-child, .framer-LsXCU .framer-1hpdwxf > :last-child, .framer-LsXCU .framer-x11m1a > :last-child, .framer-LsXCU .framer-179oxx > :last-child, .framer-LsXCU .framer-1lsp4pr > :last-child, .framer-LsXCU .framer-w3pplp > :last-child, .framer-LsXCU .framer-vu6tpa > :last-child, .framer-LsXCU .framer-xrwnmx > :last-child, .framer-LsXCU .framer-1ijxlir > :last-child, .framer-LsXCU .framer-15808k > :last-child, .framer-LsXCU .framer-ku58ty > :last-child, .framer-LsXCU .framer-10fodjb > :last-child, .framer-LsXCU .framer-1jau1tg > :last-child, .framer-LsXCU .framer-iz8zr0 > :last-child, .framer-LsXCU .framer-1kgu8zo > :last-child, .framer-LsXCU .framer-xuq0w9 > :last-child, .framer-LsXCU .framer-1fjfpt > :last-child { margin-bottom: 0px; } .framer-LsXCU .framer-1gaf8dq > *, .framer-LsXCU .framer-1lm9euy > *, .framer-LsXCU .framer-1bfz7jm > *, .framer-LsXCU .framer-bze98a > *, .framer-LsXCU .framer-zaxokd > *, .framer-LsXCU .framer-15hzh4t > *, .framer-LsXCU .framer-1yzd85k > *, .framer-LsXCU .framer-1l50ksv > *, .framer-LsXCU .framer-n66mbw > *, .framer-LsXCU .framer-24izkj > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-LsXCU .framer-1gaf8dq > :first-child, .framer-LsXCU .framer-1lm9euy > :first-child, .framer-LsXCU .framer-1bfz7jm > :first-child, .framer-LsXCU .framer-bze98a > :first-child, .framer-LsXCU .framer-zaxokd > :first-child, .framer-LsXCU .framer-15hzh4t > :first-child, .framer-LsXCU .framer-1yzd85k > :first-child, .framer-LsXCU .framer-1bvbhjs > :first-child, .framer-LsXCU .framer-ebjakk > :first-child, .framer-LsXCU .framer-1cwhzbv > :first-child, .framer-LsXCU .framer-esjpm7 > :first-child, .framer-LsXCU .framer-33pt84 > :first-child, .framer-LsXCU .framer-1mef2hd > :first-child, .framer-LsXCU .framer-10qjtkp > :first-child, .framer-LsXCU .framer-1l50ksv > :first-child, .framer-LsXCU .framer-n66mbw > :first-child, .framer-LsXCU .framer-24izkj > :first-child, .framer-LsXCU .framer-yz2ete > :first-child, .framer-LsXCU .framer-pd90ex > :first-child, .framer-LsXCU .framer-1kv48lj > :first-child, .framer-LsXCU .framer-50hoc6 > :first-child, .framer-LsXCU .framer-ldoxhw > :first-child, .framer-LsXCU .framer-60yci5 > :first-child, .framer-LsXCU .framer-1hzrmon > :first-child { margin-left: 0px; } .framer-LsXCU .framer-1gaf8dq > :last-child, .framer-LsXCU .framer-1lm9euy > :last-child, .framer-LsXCU .framer-1bfz7jm > :last-child, .framer-LsXCU .framer-bze98a > :last-child, .framer-LsXCU .framer-zaxokd > :last-child, .framer-LsXCU .framer-15hzh4t > :last-child, .framer-LsXCU .framer-1yzd85k > :last-child, .framer-LsXCU .framer-1bvbhjs > :last-child, .framer-LsXCU .framer-ebjakk > :last-child, .framer-LsXCU .framer-1cwhzbv > :last-child, .framer-LsXCU .framer-esjpm7 > :last-child, .framer-LsXCU .framer-33pt84 > :last-child, .framer-LsXCU .framer-1mef2hd > :last-child, .framer-LsXCU .framer-10qjtkp > :last-child, .framer-LsXCU .framer-1l50ksv > :last-child, .framer-LsXCU .framer-n66mbw > :last-child, .framer-LsXCU .framer-24izkj > :last-child, .framer-LsXCU .framer-yz2ete > :last-child, .framer-LsXCU .framer-pd90ex > :last-child, .framer-LsXCU .framer-1kv48lj > :last-child, .framer-LsXCU .framer-50hoc6 > :last-child, .framer-LsXCU .framer-ldoxhw > :last-child, .framer-LsXCU .framer-60yci5 > :last-child, .framer-LsXCU .framer-1hzrmon > :last-child { margin-right: 0px; } .framer-LsXCU .framer-12qur7d > *, .framer-LsXCU .framer-x11m1a > *, .framer-LsXCU .framer-15808k > * { margin: 0px; margin-bottom: calc(35px / 2); margin-top: calc(35px / 2); } .framer-LsXCU .framer-5iyak3 > *, .framer-LsXCU .framer-w4nlt1 > *, .framer-LsXCU .framer-ba7yjb > *, .framer-LsXCU .framer-1hpdwxf > *, .framer-LsXCU .framer-1ijxlir > *, .framer-LsXCU .framer-ku58ty > *, .framer-LsXCU .framer-xuq0w9 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LsXCU .framer-w3pplp > *, .framer-LsXCU .framer-vu6tpa > *, .framer-LsXCU .framer-1jau1tg > * { margin: 0px; margin-bottom: calc(20px / 2); margin-top: calc(20px / 2); } .framer-LsXCU .framer-1bvbhjs > *, .framer-LsXCU .framer-ebjakk > *, .framer-LsXCU .framer-1cwhzbv > *, .framer-LsXCU .framer-esjpm7 > *, .framer-LsXCU .framer-33pt84 > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-LsXCU .framer-1mef2hd > * { margin: 0px; margin-left: calc(20px / 2); margin-right: calc(20px / 2); } .framer-LsXCU .framer-10fodjb > * { margin: 0px; margin-bottom: calc(45px / 2); margin-top: calc(45px / 2); } .framer-LsXCU .framer-10qjtkp > * { margin: 0px; margin-left: calc(22px / 2); margin-right: calc(22px / 2); } .framer-LsXCU .framer-iz8zr0 > * { margin: 0px; margin-bottom: calc(68px / 2); margin-top: calc(68px / 2); } .framer-LsXCU .framer-1kgu8zo > * { margin: 0px; margin-bottom: calc(28px / 2); margin-top: calc(28px / 2); } .framer-LsXCU .framer-1fjfpt > * { margin: 0px; margin-bottom: calc(15px / 2); margin-top: calc(15px / 2); } .framer-LsXCU .framer-yz2ete > *, .framer-LsXCU .framer-pd90ex > *, .framer-LsXCU .framer-1kv48lj > *, .framer-LsXCU .framer-50hoc6 > *, .framer-LsXCU .framer-ldoxhw > *, .framer-LsXCU .framer-60yci5 > *, .framer-LsXCU .framer-1hzrmon > * { margin: 0px; margin-left: calc(0px / 2); margin-right: calc(0px / 2); } }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,'.framer-LsXCU[data-border=\"true\"]::after, .framer-LsXCU [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 1200px) and (max-width: 1444px) { .framer-LsXCU.framer-1x94j7f { width: 1200px; } .framer-LsXCU .framer-1nk28kt { height: 650px; min-height: 650px; width: 1439px; } .framer-LsXCU .framer-1gaf8dq { height: 760px; order: 0; width: 1444px; } .framer-LsXCU .framer-1v7oa3n { flex: none; width: 1430px; } .framer-LsXCU .framer-1lm9euy { bottom: -30px; left: -5px; top: 70px; width: 1439px; } .framer-LsXCU .framer-d1ttrz-container { order: 0; } .framer-LsXCU .framer-1bo5bhh { height: 650px; left: calc(50.034746351633096% - 1430px / 2); order: 2; top: 0px; width: 1430px; } .framer-LsXCU .framer-1xlu4oz { left: 150px; top: 48px; } .framer-LsXCU .framer-q0caon { height: 110px; left: 30px; top: calc(48.00000000000002% - 110px / 2); width: 110px; } .framer-LsXCU .framer-1bfz7jm, .framer-LsXCU .framer-bze98a, .framer-LsXCU .framer-zaxokd, .framer-LsXCU .framer-15hzh4t, .framer-LsXCU .framer-1yzd85k { left: 160px; } .framer-LsXCU .framer-1non34w { left: 278px; top: calc(51.428571428571445% - 161px / 2); } .framer-LsXCU .framer-1p9sgbh, .framer-LsXCU .framer-hyviea { height: 110px; top: calc(49.33333333333336% - 110px / 2); width: 110px; } .framer-LsXCU .framer-w4nlt1 { top: 18px; } .framer-LsXCU .framer-1g60zwd { bottom: unset; left: 938px; top: calc(50.92307692307695% - 161px / 2); } .framer-LsXCU .framer-nqz82w { left: 393px; } .framer-LsXCU .framer-sijyki { height: 110px; left: calc(50.00000000000002% - 110px / 2); top: calc(50.3105590062112% - 110px / 2); width: 110px; } .framer-LsXCU .framer-1oqvisb { bottom: 40px; left: 1095px; } .framer-LsXCU .framer-rj1n9h { height: 110px; left: calc(48.12500000000002% - 110px / 2); top: calc(50.00000000000002% - 110px / 2); width: 110px; } .framer-LsXCU .framer-ijv1bm { right: 150px; } .framer-LsXCU .framer-116yjc2 { height: 110px; left: calc(50.649350649350666% - 110px / 2); top: calc(49.06832298136648% - 110px / 2); width: 110px; } .framer-LsXCU .framer-1hpdwxf { left: 38px; right: unset; top: 15px; width: 97px; } .framer-LsXCU .framer-x11m1a { bottom: unset; height: 50px; left: 50%; top: 480px; } .framer-LsXCU .framer-10fodjb { gap: 16px; } .framer-LsXCU .framer-10qjtkp { max-width: 1200px; } .framer-LsXCU .framer-vd7g12 { bottom: unset; height: var(--framer-aspect-ratio-supported, 102px); left: 50%; top: 55%; transform: translate(-50%, -50%); width: 10%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LsXCU .framer-10fodjb { gap: 0px; } .framer-LsXCU .framer-10fodjb > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-LsXCU .framer-10fodjb > :first-child { margin-top: 0px; } .framer-LsXCU .framer-10fodjb > :last-child { margin-bottom: 0px; } }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-LsXCU.framer-1x94j7f { width: 810px; } .framer-LsXCU .framer-1nk28kt { height: 80vh; min-height: 450px; overflow: visible; } .framer-LsXCU .framer-1gaf8dq { height: 600px; overflow: visible; } .framer-LsXCU .framer-1v7oa3n { flex: none; height: 500px; justify-content: flex-start; width: 1199px; } .framer-LsXCU .framer-12qur7d { gap: 10px; justify-content: flex-start; order: 0; padding: 112px 0px 0px 0px; } .framer-LsXCU .framer-1lm9euy { left: calc(49.95829858215182% - 1199px / 2); order: 2; top: 0px; width: 1199px; } .framer-LsXCU .framer-1bo5bhh { height: 450px; left: calc(49.95829858215182% - 1199px / 2); top: 0px; width: 1199px; } .framer-LsXCU .framer-1xlu4oz { left: 200px; } .framer-LsXCU .framer-q0caon { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 84px; left: 11px; top: calc(48.00000000000002% - 84px / 2); width: 84px; } .framer-LsXCU .framer-1bfz7jm { gap: 5px; left: 116px; padding: 3px 7px 3px 7px; top: 47%; } .framer-LsXCU .framer-1j0owr6, .framer-LsXCU .framer-izp0ln, .framer-LsXCU .framer-fj5had, .framer-LsXCU .framer-15ls5mh, .framer-LsXCU .framer-fej0zu { height: var(--framer-aspect-ratio-supported, 6px); width: 6px; } .framer-LsXCU .framer-bze98a { bottom: 47px; gap: 5px; left: 115px; padding: 3px 7px 3px 7px; } .framer-LsXCU .framer-zaxokd { bottom: 26px; gap: 5px; left: 115px; padding: 3px 7px 3px 7px; } .framer-LsXCU .framer-15hzh4t { gap: 5px; left: 115px; padding: 3px 7px 3px 7px; top: 41px; } .framer-LsXCU .framer-1yzd85k { gap: 5px; left: 115px; padding: 3px 7px 3px 7px; top: 18px; } .framer-LsXCU .framer-1p3a0pr { height: 89px; left: 95px; top: calc(48.00000000000002% - 89px / 2); } .framer-LsXCU .framer-1non34w { bottom: 139px; height: 120px; left: 255px; top: unset; width: 112px; } .framer-LsXCU .framer-1p9sgbh, .framer-LsXCU .framer-hyviea { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 77px; top: calc(49.33333333333336% - 77px / 2); width: 77px; } .framer-LsXCU .framer-w4nlt1 { height: 14px; left: 32px; right: unset; top: 16px; } .framer-LsXCU .framer-1q0893v { height: 9px; } .framer-LsXCU .framer-1g60zwd { bottom: 134px; height: 123px; left: 754px; width: 113px; } .framer-LsXCU .framer-ba7yjb { height: 13px; left: 37px; top: 15px; } .framer-LsXCU .framer-nqz82w { bottom: 13px; height: 108px; left: 353px; width: 124px; } .framer-LsXCU .framer-sijyki { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 83px; left: calc(45.16129032258067% - 84px / 2); top: calc(47.22222222222224% - 83px / 2); width: 84px; } .framer-LsXCU .framer-25u852 { left: 49%; top: 19px; } .framer-LsXCU .framer-1oqvisb { bottom: 20px; height: 99px; left: unset; right: 214px; width: 120px; } .framer-LsXCU .framer-rj1n9h { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 83px; left: calc(53.33333333333336% - 84px / 2); top: calc(47.474747474747495% - 83px / 2); width: 84px; } .framer-LsXCU .framer-ijv1bm { height: 117px; right: 230px; top: 35px; width: 116px; } .framer-LsXCU .framer-116yjc2 { border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: 75px; left: calc(50.649350649350666% - 75px / 2); top: calc(49.06832298136648% - 75px / 2); width: 75px; } .framer-LsXCU .framer-1hpdwxf { height: 16px; left: 34px; right: unset; top: 11px; } .framer-LsXCU .framer-x11m1a { bottom: unset; height: 38px; left: 50%; order: 3; top: 272px; } .framer-LsXCU .framer-1mef2hd { padding: 34px 0px 34px 0px; } .framer-LsXCU .framer-10fodjb { gap: 30px; } .framer-LsXCU .framer-1rwia35-container { height: 100px; } .framer-LsXCU .framer-10qjtkp { max-width: 810px; } .framer-LsXCU .framer-vd7g12 { bottom: unset; height: var(--framer-aspect-ratio-supported, 162px); left: 69%; top: 50%; transform: translate(-50%, -50%); width: 10%; } .framer-LsXCU .framer-iz8zr0 { width: 60%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LsXCU .framer-12qur7d, .framer-LsXCU .framer-1bfz7jm, .framer-LsXCU .framer-bze98a, .framer-LsXCU .framer-zaxokd, .framer-LsXCU .framer-15hzh4t, .framer-LsXCU .framer-1yzd85k, .framer-LsXCU .framer-10fodjb { gap: 0px; } .framer-LsXCU .framer-12qur7d > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LsXCU .framer-12qur7d > :first-child, .framer-LsXCU .framer-10fodjb > :first-child { margin-top: 0px; } .framer-LsXCU .framer-12qur7d > :last-child, .framer-LsXCU .framer-10fodjb > :last-child { margin-bottom: 0px; } .framer-LsXCU .framer-1bfz7jm > *, .framer-LsXCU .framer-bze98a > *, .framer-LsXCU .framer-zaxokd > *, .framer-LsXCU .framer-15hzh4t > *, .framer-LsXCU .framer-1yzd85k > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } .framer-LsXCU .framer-1bfz7jm > :first-child, .framer-LsXCU .framer-bze98a > :first-child, .framer-LsXCU .framer-zaxokd > :first-child, .framer-LsXCU .framer-15hzh4t > :first-child, .framer-LsXCU .framer-1yzd85k > :first-child { margin-left: 0px; } .framer-LsXCU .framer-1bfz7jm > :last-child, .framer-LsXCU .framer-bze98a > :last-child, .framer-LsXCU .framer-zaxokd > :last-child, .framer-LsXCU .framer-15hzh4t > :last-child, .framer-LsXCU .framer-1yzd85k > :last-child { margin-right: 0px; } .framer-LsXCU .framer-10fodjb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } }}\",\"@media (max-width: 809px) { .framer-LsXCU.framer-1x94j7f { width: 360px; } .framer-LsXCU .framer-1oj09if { order: 0; } .framer-LsXCU .framer-16ivx5q { order: 1; } .framer-LsXCU .framer-ze3z1j { order: 2; } .framer-LsXCU .framer-1brnfnf { order: 3; } .framer-LsXCU .framer-z3f1cs { order: 4; } .framer-LsXCU .framer-1b2j9xi { order: 5; } .framer-LsXCU .framer-1m6jysd { order: 6; } .framer-LsXCU .framer-62ukly { order: 7; } .framer-LsXCU .framer-15n0hv { order: 8; } .framer-LsXCU .framer-155rjl9 { order: 9; } .framer-LsXCU .framer-115hya4 { order: 10; } .framer-LsXCU .framer-fmia4f { order: 11; } .framer-LsXCU .framer-5cn55y { order: 12; } .framer-LsXCU .framer-vg0ceb { order: 13; } .framer-LsXCU .framer-1upkd6x { order: 14; } .framer-LsXCU .framer-157sl2c { order: 15; } .framer-LsXCU .framer-74skcd { order: 16; } .framer-LsXCU .framer-5kxgxl { order: 17; } .framer-LsXCU .framer-15doywm { order: 18; } .framer-LsXCU .framer-fl1a86 { order: 19; } .framer-LsXCU .framer-gfiwtj { order: 20; } .framer-LsXCU .framer-12kc6xj { order: 21; } .framer-LsXCU .framer-41z9iy { order: 23; } .framer-LsXCU .framer-b0j3rj { order: 22; } .framer-LsXCU .framer-10iudr9 { order: 24; } .framer-LsXCU .framer-1vgkwzx { order: 25; } .framer-LsXCU .framer-148mpvc { order: 26; } .framer-LsXCU .framer-4r34oe { order: 27; } .framer-LsXCU .framer-r8t3sr { order: 28; } .framer-LsXCU .framer-17m7lo9 { order: 29; } .framer-LsXCU .framer-11jtzdg { order: 30; } .framer-LsXCU .framer-11g6k9v { order: 31; } .framer-LsXCU .framer-61miod { order: 32; } .framer-LsXCU .framer-1649uqj { order: 33; } .framer-LsXCU .framer-hvlhb { order: 34; } .framer-LsXCU .framer-ezulwa { order: 35; } .framer-LsXCU .framer-99zfwb { order: 36; } .framer-LsXCU .framer-1ippvas { order: 37; } .framer-LsXCU .framer-10qrehx { order: 38; } .framer-LsXCU .framer-jvs9yw { order: 39; } .framer-LsXCU .framer-kz190w { order: 40; } .framer-LsXCU .framer-1mef2hd { padding: 34px 0px 34px 0px; } .framer-LsXCU .framer-10fodjb { gap: 30px; } .framer-LsXCU .framer-1rwia35-container { height: 100px; } .framer-LsXCU .framer-10qjtkp { max-width: 810px; } .framer-LsXCU .framer-iz8zr0, .framer-LsXCU .framer-xuq0w9, .framer-LsXCU .framer-1fjfpt { width: 100%; } .framer-LsXCU .framer-n66mbw { flex-direction: column; } .framer-LsXCU .framer-zaxp2w { flex-direction: column; gap: 50px; justify-content: center; width: 80%; } .framer-LsXCU .framer-24izkj { justify-content: center; width: 100%; } @supports (background: -webkit-named-image(i)) and (not (scale:1)) { .framer-LsXCU .framer-10fodjb, .framer-LsXCU .framer-n66mbw, .framer-LsXCU .framer-zaxp2w { gap: 0px; } .framer-LsXCU .framer-10fodjb > * { margin: 0px; margin-bottom: calc(30px / 2); margin-top: calc(30px / 2); } .framer-LsXCU .framer-10fodjb > :first-child, .framer-LsXCU .framer-n66mbw > :first-child, .framer-LsXCU .framer-zaxp2w > :first-child { margin-top: 0px; } .framer-LsXCU .framer-10fodjb > :last-child, .framer-LsXCU .framer-n66mbw > :last-child, .framer-LsXCU .framer-zaxp2w > :last-child { margin-bottom: 0px; } .framer-LsXCU .framer-n66mbw > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-LsXCU .framer-zaxp2w > * { margin: 0px; margin-bottom: calc(50px / 2); margin-top: calc(50px / 2); } }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 4821\n * @framerIntrinsicWidth 1445\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"mrHhDnoCV\":{\"layout\":[\"fixed\",\"auto\"]},\"PDBSYH9MS\":{\"layout\":[\"fixed\",\"auto\"]},\"BxyXwdyez\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections\n * @framerResponsiveScreen\n */const FramerzfEF9J6Nu=withCSS(Component,css,\"framer-LsXCU\");export default FramerzfEF9J6Nu;FramerzfEF9J6Nu.displayName=\"Home\";FramerzfEF9J6Nu.defaultProps={height:4821,width:1445};addFonts(FramerzfEF9J6Nu,[{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:\"Untitled Sans Regular\",source:\"custom\",url:\"https://framerusercontent.com/assets/9TYOnYF7Vb6Cewz5qsvH2hOXJmU.woff2\"},{family:\"Untitled Sans Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/PndIz0vgwOtDRYV40L3IB5xrJCs.woff2\"},{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\"}]},...AliciaNavigationCopyFonts,...AnimatorFonts,...ButtonsFonts,...HomeTickerFonts,...MaterialFonts,...HowWeWorkFonts,...CasesElementFonts,...CTAFonts,...FooterFonts,...CursorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerzfEF9J6Nu\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"1445\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"4821\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"mrHhDnoCV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"PDBSYH9MS\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"BxyXwdyez\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerScrollSections\":\"* @framerResponsiveScreen\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["Animator", "props", "pathAnimation", "from", "to", "animate", "shouldLoop", "loopOptions", "slots", "endCircle", "hasChildren", "j", "customShape", "u", "placeholderStyles", "p", "emojiStyles", "titleStyles", "subtitleStyles", "firstChild", "getFirstChild", "svgChild", "isSpring", "shapeTransition", "pathLength", "useMotionValue", "opacity", "useTransform", "shapeProps", "isCanvas", "RenderTarget", "attributes", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "element", "splitAndReplace", "svgViewbox", "motion", "addPropertyControls", "ControlType", "string", "child", "fontStore", "fonts", "css", "className", "valuesByLocaleId", "LazyValue", "getLocalizedValue", "key", "locale", "values", "value", "preload", "promises", "promise", "usePreloadLocalizedValues", "preloadPromise", "AliciaNavigationCopyFonts", "getFonts", "DfXgL8Bao_default", "AnimatorFonts", "Animator", "ButtonsFonts", "DfXwNxCBi_default", "HomeTickerFonts", "dxUdu8fCq_default", "MaterialFonts", "Icon", "HowWeWorkFonts", "VxJm0LeaX_default", "CasesElementFonts", "biXpU3WAa_default", "CTAFonts", "T1Uz1JzsQ_default", "FooterFonts", "eZIbrvPWr_default", "CursorFonts", "dG67FVv7I_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "transformTemplate1", "_", "t", "transformTemplate2", "animation1", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "cursor", "cursor1", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "isDisplayed", "usePreloadLocalizedValues", "isDisplayed1", "isDisplayed2", "isDisplayed3", "isDisplayed4", "router", "useRouter", "isDisplayed5", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "ComponentViewportProvider", "Container", "PropertyOverrides2", "RichText2", "getLocalizedValue", "x", "SVG", "Link", "getLoadingLazyAtYPosition", "Image2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerzfEF9J6Nu", "withCSS", "zfEF9J6Nu_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
