{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js", "ssg:https://framer.com/m/Utils-Component-Message-ZVoG.js", "ssg:https://framerusercontent.com/modules/IT2yoWfYkMOUw1y7WouH/isISNFDBgUSYCbGGymyI/SVGPathShimmer_Prod.js", "ssg:https://framerusercontent.com/modules/PIEkHJ7RgKSmmx0yoLn6/tsspK8dSeDCeJEjT9K8h/KNyyhsm9O.js", "ssg:https://framerusercontent.com/modules/nZgUkzhA2sWJlgS5wArq/zbODsmiz6wv0hprRmc1w/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{useState,useEffect}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{motion,AnimatePresence}from\"framer-motion\";const MAX_SPEED=20;const defaultTransition={// ease: \"power4.out\",\nease:[.11,.72,0,1]};/**\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function StaggeredTextCycleV2({text,speed,delay,font,userSelect,color,alignment,tag,loop,stagger}){const Tag=tag;const content=text.split(\", \").map(phrase=>phrase.replace(/\\s+/g,\" \").trim());const[iteration,setIteration]=useState(0);const speedFormatted=(MAX_SPEED-speed+1)/MAX_SPEED*5;const delayFormattedMs=delay*1e3;const speedFormattedMs=speedFormatted*1e3;const isCanvas=RenderTarget.current()===RenderTarget.canvas;const[isFirstRender,setIsFirstRender]=useState(true);useEffect(()=>{const timeout=isFirstRender?speedFormattedMs/3+delayFormattedMs:speedFormattedMs+delayFormattedMs;const interval=setInterval(()=>{setIsFirstRender(false);if(iteration<content.length-1){setIteration(prev=>prev+1);}else if(loop){setIteration(0);}},timeout);return()=>clearInterval(interval);},[iteration,loop,isFirstRender]);return /*#__PURE__*/_jsxs(\"div\",{style:{userSelect:userSelect?\"auto\":\"none\",position:\"relative\",display:\"flex\",flexDirection:\"row\",overflow:\"visible\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\"},children:[/*#__PURE__*/_jsx(Tag,{\"aria-hidden\":true,style:{fontSize:\"24px\",...font,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",pointerEvents:\"none\",opacity:0,whiteSpace:\"pre-wrap\",width:\"100%\",textAlign:alignment},children:content.reduce((longest,current)=>current.length>longest.length?current:longest)}),isCanvas&&/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",whiteSpace:\"pre-wrap\",position:\"absolute\",top:0,left:0,width:\"100%\",textAlign:alignment},children:content[0]}),!isCanvas&&/*#__PURE__*/_jsx(_Fragment,{children:content.map((sentence,sentenceIndex)=>{let charIndex=0;// Split sentence into segments\nconst segments=sentence.split(/(\\s+|\\b)/).map(segment=>({text:segment,chars:segment.split(\"\").map(char=>({char,originalIndex:charIndex++}))}));console.log(segments);return /*#__PURE__*/_jsx(\"div\",{style:{position:\"absolute\",top:0,left:0,overflow:\"visible\",width:\"100%\",textAlign:alignment},children:/*#__PURE__*/_jsx(AnimatePresence,{mode:\"sync\",children:iteration===sentenceIndex&&/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",flexWrap:\"wrap\",width:\"100%\",justifyContent:alignment===\"center\"?\"center\":alignment===\"right\"?\"flex-end\":\"flex-start\",gap:0},children:segments.map((segment,segmentIndex)=>/*#__PURE__*/_jsx(\"div\",{style:{display:\"inline-flex\",flexWrap:\"nowrap\",whiteSpace:\"pre\",overflow:\"hidden\"},children:segment.chars.map(({char,originalIndex})=>{const baseDelay=originalIndex/(sentence.length-1);const delayInitial=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const delayAnimate=baseDelay*(speedFormatted*.4)// 40% of speed\n    ;const delayExit=baseDelay*(speedFormatted*.3)// 30% of speed\n    ;const itemTransition={initial:{transform:`translate(0px, 150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayInitial*stagger}},animate:{transform:`translate(0px, 0px)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayAnimate*stagger}},exit:{transform:`translate(0px, -150%)`,transition:{...defaultTransition,duration:speedFormatted/2,delay:delayExit*stagger}}};return /*#__PURE__*/_jsx(motion.div,{variants:itemTransition,initial:isFirstRender?false:\"initial\",animate:isFirstRender?false:\"animate\",exit:\"exit\",style:{display:\"inline-block\"},children:/*#__PURE__*/_jsx(Tag,{style:{fontSize:\"24px\",...font,color,marginBlockStart:\"0px\",marginBlockEnd:\"0px\",opacity:1},children:char})},sentence+originalIndex);})},segmentIndex))})})},sentenceIndex);})})]});}StaggeredTextCycleV2.displayName=\"Staggered Cycle\";addPropertyControls(StaggeredTextCycleV2,{text:{type:ControlType.String,title:\"Text\",defaultValue:\"DESIGNER, DEVELOPER\",description:\"Divide the words with a comma (,) if you want to display them separately.\"},speed:{type:ControlType.Number,title:\"Speed\",defaultValue:MAX_SPEED/2,min:1,max:MAX_SPEED},delay:{type:ControlType.Number,title:\"Delay\",defaultValue:1,min:0,max:10,unit:\"s\"},stagger:{title:\"Stagger\",description:\"The delay between each word.\",type:ControlType.Number,defaultValue:.5,step:.1,min:0,max:1},font:{title:\"Font\",type:ControlType.Font,controls:\"extended\"},alignment:{type:ControlType.Enum,displaySegmentedControl:true,title:\"Alignment\",defaultValue:\"left\",options:[\"left\",\"center\",\"right\"],optionTitles:[\"Left\",\"Center\",\"Right\"]},userSelect:{title:\"User Select\",type:ControlType.Boolean,defaultValue:false},color:{title:\"Color\",type:ControlType.Color,defaultValue:\"#ffffff\"},tag:{type:ControlType.Enum,title:\"Tag\",defaultValue:\"p\",displaySegmentedControl:true,segmentedControlDirection:\"horizontal\",options:[\"h1\",\"h2\",\"h3\",\"p\"],optionTitles:[\"H1\",\"H2\",\"H3\",\"P\"]},loop:{title:\"Loop\",type:ControlType.Boolean,defaultValue:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"StaggeredTextCycleV2\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"*\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./StaggeredTextCycle_Prod.map", "// Generated by Framer (0afc761)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,RichText,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const serializationHash=\"framer-qPoZ0\";const variantClassNames={XvqTw0Be9:\"framer-v-jjcw9a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,subtitle,title,width,...props})=>{return{...props,WuF2iG84P:subtitle??props.WuF2iG84P??\"Set up the component by adding background and bouncer elements to the component properties.\",yeAnKbEUZ:title??props.yeAnKbEUZ??\"Screen Saver\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,yeAnKbEUZ,WuF2iG84P,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"XvqTw0Be9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-jjcw9a\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"XvqTw0Be9\",ref:refBinding,style:{backgroundColor:\"rgba(136, 85, 255, 0.1)\",...style},children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-uh2i08\",layoutDependency:layoutDependency,layoutId:\"aM7oiNoFL\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-flw0dh\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"GthLmGmBt\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 28 28\"><g id=\"ss11036020200_1\"><path d=\"M 0 0 L 28 0 L 28 28 L 0 28 Z\" fill=\"transparent\"></path><path d=\"M 21 7.113 C 21 7.041 21.029 6.971 21.079 6.921 L 27.534 0.465 C 27.613 0.388 27.73 0.365 27.831 0.407 C 27.933 0.449 28 0.548 28 0.658 L 28 13.888 C 28 13.96 27.971 14.028 27.921 14.079 L 21 21 Z M 7 21 L 7 7.658 C 7 7.548 6.933 7.449 6.831 7.407 C 6.73 7.365 6.613 7.388 6.534 7.465 L 0.079 13.921 C 0.028 13.972 0 14.041 0 14.113 L 0 27.728 C 0 27.877 0.122 28 0.273 28 L 13.888 28 C 13.96 28 14.028 27.971 14.079 27.921 L 21 21 Z\" fill=\"rgb(153, 102, 255)\"></path></g></svg>',svgContentId:11036020200,withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k3ullq\",layoutDependency:layoutDependency,layoutId:\"E3DQBYSAf\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItQm9sZA==\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"11px\",\"--framer-font-weight\":\"700\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(153, 102, 255))\"},children:\"Screen Saver\"})}),className:\"framer-q0gs4u\",\"data-framer-name\":\"Title\",fonts:[\"Inter-Bold\"],layoutDependency:layoutDependency,layoutId:\"UqJwZqJjg\",style:{\"--extracted-r6o4lv\":\"rgb(153, 102, 255)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:yeAnKbEUZ,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--framer-font-size\":\"11px\",\"--framer-letter-spacing\":\"-0.03em\",\"--framer-line-height\":\"1.4em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgba(153, 102, 255, 0.7))\"},children:\"Set up the component by adding background and bouncer elements to the component properties.\"})}),className:\"framer-g5dqhc\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"RJ7UF99m8\",style:{\"--extracted-r6o4lv\":\"rgba(153, 102, 255, 0.7)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:WuF2iG84P,verticalAlignment:\"top\",withExternalLayout:true})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-qPoZ0.framer-qanqo2, .framer-qPoZ0 .framer-qanqo2 { display: block; }\",\".framer-qPoZ0.framer-jjcw9a { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 200px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-qPoZ0 .framer-uh2i08 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-qPoZ0 .framer-flw0dh { flex: none; height: 28px; position: relative; width: 28px; }\",\".framer-qPoZ0 .framer-k3ullq { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; max-width: 200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-qPoZ0 .framer-q0gs4u, .framer-qPoZ0 .framer-g5dqhc { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-qPoZ0.framer-jjcw9a, .framer-qPoZ0 .framer-uh2i08, .framer-qPoZ0 .framer-k3ullq { gap: 0px; } .framer-qPoZ0.framer-jjcw9a > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-qPoZ0.framer-jjcw9a > :first-child { margin-left: 0px; } .framer-qPoZ0.framer-jjcw9a > :last-child { margin-right: 0px; } .framer-qPoZ0 .framer-uh2i08 > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } .framer-qPoZ0 .framer-uh2i08 > :first-child, .framer-qPoZ0 .framer-k3ullq > :first-child { margin-top: 0px; } .framer-qPoZ0 .framer-uh2i08 > :last-child, .framer-qPoZ0 .framer-k3ullq > :last-child { margin-bottom: 0px; } .framer-qPoZ0 .framer-k3ullq > * { margin: 0px; margin-bottom: calc(12px / 2); margin-top: calc(12px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 200\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"yeAnKbEUZ\":\"title\",\"WuF2iG84P\":\"subtitle\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW7oLCU4_B=withCSS(Component,css,\"framer-qPoZ0\");export default FramerW7oLCU4_B;FramerW7oLCU4_B.displayName=\"Utils/Component Message\";FramerW7oLCU4_B.defaultProps={height:200,width:400};addPropertyControls(FramerW7oLCU4_B,{yeAnKbEUZ:{defaultValue:\"Screen Saver\",displayTextArea:false,title:\"Title\",type:ControlType.String},WuF2iG84P:{defaultValue:\"Set up the component by adding background and bouncer elements to the component properties.\",displayTextArea:false,title:\"Subtitle\",type:ControlType.String}});addFonts(FramerW7oLCU4_B,[{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/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"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\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW7oLCU4_B\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"yeAnKbEUZ\\\":\\\"title\\\",\\\"WuF2iG84P\\\":\\\"subtitle\\\"}\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./W7oLCU4_B.map", "import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{Children,useEffect,useState,useMemo,useRef,cloneElement}from\"react\";import{motion,useInView,animate,useMotionValue,useTransform}from\"framer-motion\";import UtilsComponentMessage from\"https://framer.com/m/Utils-Component-Message-ZVoG.js\";var Mode;(function(Mode){Mode[\"Layer\"]=\"layer\";Mode[\"SVG\"]=\"svg\";})(Mode||(Mode={}));var SVGType;(function(SVGType){SVGType[\"Image\"]=\"image\";SVGType[\"File\"]=\"file\";})(SVGType||(SVGType={}));/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any-prefer-fixed\n *\n * @framerDisableUnlink\n *\n * @framerIntrinsicWidth 200\n * @framerIntrinsicHeight 200\n */export default function SVGPathShimmer({mode,layer,svgType,svgImage,svgFile,baseColor,shimmerColor,length,transition,direction,loopMode,loopDelay,trigger,replay,style}){const isCanvas=RenderTarget.current()===RenderTarget.canvas;const hasChildren=mode===\"layer\"?Children.count(layer)>0:false;const reverse=direction===\"reverse\";const loop=loopMode!==\"once\";const shapeTransition={...transition,repeat:loop?Infinity:0,repeatType:loopMode===\"mirror\"?\"reverse\":loopMode,repeatDelay:loop?loopDelay:0};const[svgContent,setSvgContent]=useState(null);const[isLoading,setIsLoading]=useState(false);const[loadingError,setLoadingError]=useState(null);const[currentAnimation,setCurrentAnimation]=useState(null);const ref=useRef(null);const isInView=useInView(ref,{once:!replay&&!loop,amount:\"some\"});const progressMotionValue=useMotionValue(0);const[scale,setScale]=useState(1);const[padding,setPadding]=useState({horizontal:0,vertical:0});const[originalSize,setOriginalSize]=useState({width:0,height:0});const containerRef=useRef(null);const hasSvg=mode===\"svg\"?!!svgContent:hasChildren;const runAnimation=()=>{if(isCanvas)return;if(currentAnimation){currentAnimation.stop();}setCurrentAnimation(animate(0,1,{...shapeTransition,onUpdate:latest=>{progressMotionValue.set(latest);}}));};useEffect(()=>{async function fetchSVG(){if(mode!==\"svg\")return;setIsLoading(true);setLoadingError(null);setSvgContent(null);const url=svgType===\"image\"?svgImage?.src:svgFile;if(!url){setIsLoading(false);return;}const content=await loadAndValidateSVG(url);if(!content){setLoadingError(true);setIsLoading(false);return;}setSvgContent(content);setIsLoading(false);}fetchSVG();},[mode,svgType,svgType===\"image\"?svgImage?.src:svgFile]);useEffect(()=>{if(trigger===\"appear\"){runAnimation();}// Add cleanup function\nreturn()=>{if(currentAnimation){currentAnimation.stop();}};},[trigger,hasSvg]);useEffect(()=>{if(trigger===\"layerInView\"){if(isInView&&hasSvg){runAnimation();}else{if(currentAnimation){currentAnimation.stop();}progressMotionValue.set(0);}}},[isInView,trigger,hasSvg]);// First effect to capture original SVG size once ref is available\nuseEffect(()=>{if(!isCanvas||mode!==\"layer\"||!hasChildren)return;// Use rAF to ensure we measure after the ref is attached\nconst measureSvg=()=>{const svg=containerRef.current?.querySelector(\"div:has(> svg)\");if(!svg){requestAnimationFrame(measureSvg);return;}setOriginalSize({width:svg.offsetWidth,height:svg.offsetHeight});};requestAnimationFrame(measureSvg);},[isCanvas,mode,hasChildren]);// Second effect to handle resize observation\nuseEffect(()=>{if(!isCanvas||mode!==\"layer\"||!hasChildren||!containerRef.current)return;const container=containerRef.current;const updateScale=()=>{const containerWidth=container.offsetWidth;const containerHeight=container.offsetHeight;let newScale=1;const newPadding={horizontal:0,vertical:0};// Only proceed with scaling if we have the dimensions we need\nif(style?.width&&style?.height){if(originalSize.width&&originalSize.height){newScale=Math.min(containerWidth/originalSize.width,containerHeight/originalSize.height);}}else if(style?.width){if(originalSize.width){newScale=containerWidth/originalSize.width;newPadding.vertical=(containerHeight*newScale-containerHeight)/2;}}else if(style?.height){if(originalSize.height){newScale=containerHeight/originalSize.height;newPadding.horizontal=(containerWidth*newScale-containerWidth)/2;}}setScale(newScale);setPadding(newPadding);};const resizeObserver=new ResizeObserver(updateScale);resizeObserver.observe(container);updateScale()// Initial calculation\n;return()=>{resizeObserver.disconnect();};},[isCanvas,mode,hasChildren,originalSize.width,originalSize.height,style?.width,style?.height]);let svgElement=null;let svgContents=null;let svgViewbox=\"\";let viewboxWidth=0;let viewboxHeight=0;const start=100+length+length;const end=length;const parsedSvgData=useMemo(()=>{if(mode!==\"svg\"||!svgContent||isLoading){return null;}const parser=new DOMParser;const doc=parser.parseFromString(svgContent,\"image/svg+xml\");const svg=doc.querySelector(\"svg\");const path=doc.querySelector(\"path\");if(!svg||!path){return null;}const width=parseFloat(svg.getAttribute(\"width\")||\"100\");const height=parseFloat(svg.getAttribute(\"height\")||\"100\");const viewBox=svg.getAttribute(\"viewBox\")||`0 0 ${width} ${height}`;const pathD=path.getAttribute(\"d\")||\"\";const stroke=path.getAttribute(\"stroke\")||\"transparent\";const strokeWidth=path.getAttribute(\"stroke-width\")||\"1\";const strokeLinecap=path.getAttribute(\"stroke-linecap\")||\"round\";const strokeLinejoin=path.getAttribute(\"stroke-linejoin\")||\"round\";return{width,height,viewBox,pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin};},[mode,svgContent,isLoading]);const parsedLayerData=useMemo(()=>{if(mode!==\"layer\"||!hasChildren||isCanvas){return null;}const firstChild=getFirstChild(layer);const svgChild=getFirstChild(firstChild?.props?.svg);if(!svgChild){return null;}const attributes=svgChild.match(/[\\w-]+=\"[^\"]*\"/g);let pathD;let stroke;let strokeWidth;let strokeLinecap;let strokeLinejoin;for(const element of attributes){if(element.startsWith(\"d=\")){pathD=splitAndReplace(element);}if(element.startsWith(\"stroke=\")){stroke=splitAndReplace(element);}if(element.startsWith(\"stroke-width=\")){strokeWidth=splitAndReplace(element);}if(element.startsWith(\"stroke-linecap=\")){strokeLinecap=splitAndReplace(element);}if(element.startsWith(\"stroke-linejoin=\")){strokeLinejoin=splitAndReplace(element);}}const viewBoxMatch=svgChild.split(\"viewBox=\")[1];const viewBox=viewBoxMatch.split(\">\")[0].replace(/^\"(.+(?=\"$))\"$/,\"$1\");const viewBoxWidth=parseFloat(viewBox.split(\" \")[2]);const viewBoxHeight=parseFloat(viewBox.split(\" \")[3]);return{pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin,viewBox,viewBoxWidth,viewBoxHeight};},[mode,layer,hasChildren,isCanvas]);const opacity=useTransform(progressMotionValue,value=>{const strokeLinecap=mode===\"svg\"?parsedSvgData?.strokeLinecap:parsedLayerData?.strokeLinecap;if(strokeLinecap===\"round\"||strokeLinecap===\"square\"){return transformOpacity(value);}return 1;});const strokeDashoffsetTransform=useTransform(progressMotionValue,[0,1],reverse?[end,start]:[start,end]);if(mode===\"svg\"){if(!isLoading&&svgContent&&parsedSvgData){const{width,height,viewBox,pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin}=parsedSvgData;viewboxWidth=width;viewboxHeight=height;svgViewbox=viewBox;svgContents=[/*#__PURE__*/_jsx(\"path\",{d:pathD,stroke:baseColor||stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\"}),/*#__PURE__*/_jsx(motion.path,{style:{strokeDashoffset:strokeDashoffsetTransform},strokeDasharray:`${length} 100`,d:pathD,stroke:shimmerColor,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",pathLength:100,opacity:opacity})];}}else if(hasChildren){if(isCanvas){svgElement=getFirstChild(layer);}else if(parsedLayerData){const{pathD,stroke,strokeWidth,strokeLinecap,strokeLinejoin,viewBox,viewBoxWidth,viewBoxHeight}=parsedLayerData;svgViewbox=viewBox;viewboxWidth=viewBoxWidth;viewboxHeight=viewBoxHeight;svgContents=[/*#__PURE__*/_jsx(\"path\",{d:pathD,stroke:stroke,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\"}),/*#__PURE__*/_jsx(motion.path,{style:{strokeDashoffset:strokeDashoffsetTransform},strokeDasharray:`${length} 100`,d:pathD,stroke:shimmerColor,strokeWidth:strokeWidth,strokeLinejoin:strokeLinejoin,strokeLinecap:strokeLinecap,fill:\"transparent\",pathLength:100,opacity:opacity})];}}// Apply the scale and padding after they're calculated\nif(svgElement&&isCanvas){svgElement=/*#__PURE__*/cloneElement(svgElement,{style:{transform:`scale(${scale})`,transformOrigin:\"center\",...svgElement.props.style}});}return svgElement||svgContents?/*#__PURE__*/_jsx(\"div\",{style:{display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",overflow:\"hidden\",position:\"relative\",paddingLeft:padding.horizontal,paddingRight:padding.horizontal,paddingTop:padding.vertical,paddingBottom:padding.vertical,...style},children:/*#__PURE__*/_jsx(\"div\",{\"data-tag-here\":true,ref:containerRef,style:{display:\"flex\",placeContent:\"center\",placeItems:\"center\",backgroundColor:\"transparent\",position:\"relative\",...style},children:svgElement||/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:svgViewbox,style:{width:style?.width??(style?.height?\"auto\":viewboxWidth),height:style?.height??(style?.width?\"auto\":viewboxHeight)},children:svgContents})})}):mode===\"svg\"&&!isLoading&&!svgContent&&!(svgType===\"image\"?svgImage?.src:svgFile)||mode===\"layer\"&&!hasChildren?/*#__PURE__*/_jsx(\"div\",{ref:ref,style:style,children:/*#__PURE__*/_jsx(UtilsComponentMessage,{style:style,title:loadingError?\"Error loading SVG\":\"SVG Path Shimmer\",subtitle:loadingError?\"Invalid SVG file. Please provide a valid SVG.\":\"Connect a graphic layer using the handle or upload an SVG file.\"})}):/*#__PURE__*/_jsx(\"div\",{ref:ref,style:style});}SVGPathShimmer.displayName=\"SVG Path Shimmer\";addPropertyControls(SVGPathShimmer,{mode:{type:ControlType.Enum,defaultValue:\"layer\",options:[\"layer\",\"svg\"],optionTitles:[\"Graphic\",\"SVG\"],displaySegmentedControl:true},layer:{type:ControlType.ComponentInstance,description:\"Select a Graphic layer\",hidden:props=>props.mode!==\"layer\"},svgType:{type:ControlType.Enum,defaultValue:\"image\",options:[\"image\",\"file\"],optionTitles:[\"Image\",\"File\"],displaySegmentedControl:true,title:\"SVG Type\",hidden:props=>props.mode!==\"svg\"},svgImage:{type:ControlType.ResponsiveImage,title:\"SVG\",description:\"Must be an SVG file\",hidden:props=>props.mode!==\"svg\"||props.svgType!==\"image\"},svgFile:{type:ControlType.File,allowedFileTypes:[\"svg\"],title:\"SVG\",description:\"Must be an SVG file\",hidden:props=>props.mode!==\"svg\"||props.svgType!==\"file\"},baseColor:{type:ControlType.Color,optional:true,title:\"Color\",hidden:props=>props.mode!==\"svg\"},shimmerColor:{type:ControlType.Color,title:\"Shimmer\",defaultValue:\"#0099FF\"},length:{type:ControlType.Number,defaultValue:20,min:0,max:100,step:1,unit:\"%\"},transition:{type:ControlType.Transition,defaultValue:{type:\"tween\",ease:[0,0,1,1],duration:2,delay:0}},trigger:{type:ControlType.Enum,defaultValue:\"appear\",options:[\"appear\",\"layerInView\"],optionTitles:[\"Appear\",\"Layer in View\"],displaySegmentedControl:true,segmentedControlDirection:\"vertical\"},loopMode:{type:ControlType.Enum,defaultValue:\"loop\",options:[\"loop\",\"mirror\",\"once\"],optionTitles:[\"Loop\",\"Mirror\",\"Once\"],displaySegmentedControl:true,title:\"Animation\"},loopDelay:{type:ControlType.Number,defaultValue:0,min:0,max:60,step:.1,hidden:props=>props.loopMode===\"once\"},replay:{type:ControlType.Boolean,defaultValue:true,hidden:props=>props.trigger!==\"layerInView\"||props.loopMode!==\"once\"},direction:{type:ControlType.Enum,defaultValue:\"default\",options:[\"default\",\"reverse\"],optionTitles:[\"Default\",\"Reverse\"],displaySegmentedControl:true,description:\"More components at [Framer University](https://frameruni.link/cc).\"}});function getFirstChild(slots){let firstChild;Children.map(slots,child=>{if(firstChild===undefined){firstChild=child;}});return firstChild;}function splitAndReplace(string){return string.split(\"=\")[1].replace(/['\"]+/g,\"\");}async function loadAndValidateSVG(url){try{const response=await fetch(url);const text=await response.text();// Basic validation that it's an SVG\nif(!text.includes(\"<svg\")||!text.includes(\"</svg>\")){return null;}return text;}catch(error){console.error(\"Error loading SVG:\",error);return null;}}function transformOpacity(input){// Ensure input is within the valid range\nif(input<0||input>1){return 0;}const lowerThreshold=.01;const upperThreshold=1-lowerThreshold;if(input<=lowerThreshold){// Linear interpolation from 0 to 1 for inputs between 0 and 0.025\nreturn input/lowerThreshold;}else if(input>=upperThreshold){// Linear interpolation from 1 to 0 for inputs between 0.975 and 1\nreturn(1-input)/lowerThreshold;}else{// All values between 0.025 and 0.975 return 1\nreturn 1;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"SVGPathShimmer\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"200\",\"framerSupportedLayoutHeight\":\"any-prefer-fixed\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"200\",\"framerDisableUnlink\":\"*\",\"framerSupportedLayoutWidth\":\"any-prefer-fixed\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./SVGPathShimmer_Prod.map", "// Generated by Framer (5351ffe)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"Inter\",\"Inter-Bold\",\"Inter-BoldItalic\",\"Inter-Italic\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/DpPBYI0sL4fYLgAkX8KXOPVt7c.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/4RAEQdEOrcnDkhHiiCbJOw92Lk.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/1K3W8DizY3v4emK8Mb08YHxTbs.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/tUSCtfYVM1I1IchuyCwz9gDdQ.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/VgYFWiwsAC5OYxAycRXXvhze58.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/DXD0Q7LSl7HEvDzucnyLnGBHM.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/GIryZETIX4IFypco5pYZONKhJIo.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/H89BbHkbHDzlxZzxi8uPzTsp90.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/u6gJwDuwB143kpNK1T1MDKDWkMc.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/43sJ6MfOPh1LCJt46OvyDuSbA6o.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/wccHG0r4gBDAIRhfHiOlq6oEkqw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/WZ367JPwf9bRW6LdTHN8rXgSjw.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/QxmhnWTzLtyjIiZcfaLIJ8EFBXU.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/2A4Xx7CngadFGlVV4xrO06OBHY.woff2\",weight:\"700\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/CfMzU8w2e7tHgF4T4rATMPuWosA.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/867QObYax8ANsfX4TGEVU9YiCM.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Oyn2ZbENFdnW7mt2Lzjk1h9Zb9k.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/cdAe8hgZ1cMyLu9g005pAW3xMo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/DOfvtmE1UplCq161m6Hj8CSQYg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vFzuJY0c65av44uhEKB6vyjFMg.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"italic\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/tKtBcDnBMevsEEJKdNGhhkLzYo.woff2\",weight:\"400\"}]}];export const css=['.framer-S8oxV .framer-styles-preset-r9zm35:not(.rich-text-wrapper), .framer-S8oxV .framer-styles-preset-r9zm35.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 49px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --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: 1727px) and (min-width: 1024px) { .framer-S8oxV .framer-styles-preset-r9zm35:not(.rich-text-wrapper), .framer-S8oxV .framer-styles-preset-r9zm35.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 44px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --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: 1023px) and (min-width: 768px) { .framer-S8oxV .framer-styles-preset-r9zm35:not(.rich-text-wrapper), .framer-S8oxV .framer-styles-preset-r9zm35.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 36px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --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: 767px) and (min-width: 0px) { .framer-S8oxV .framer-styles-preset-r9zm35:not(.rich-text-wrapper), .framer-S8oxV .framer-styles-preset-r9zm35.rich-text-wrapper h2 { --framer-font-family: \"Inter\", sans-serif; --framer-font-family-bold: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-bold-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-family-italic: \"Inter\", \"Inter Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 28px; --framer-font-style: normal; --framer-font-style-bold: normal; --framer-font-style-bold-italic: italic; --framer-font-style-italic: italic; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-font-weight-bold: 700; --framer-font-weight-bold-italic: 700; --framer-font-weight-italic: 400; --framer-letter-spacing: 0em; --framer-line-height: 120%; --framer-paragraph-spacing: 40px; --framer-text-alignment: start; --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-S8oxV\";\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 (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,PropertyOverrides,RichText,SVG,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useRouteElementId,withCSS}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import StaggeredCycle from\"https://framerusercontent.com/modules/4lPJUInr9BbZwDYdxSgD/MtDBVuDoZ2YXDgn8MBbB/StaggeredTextCycle_Prod.js\";import SVGPathShimmer from\"https://framerusercontent.com/modules/IT2yoWfYkMOUw1y7WouH/isISNFDBgUSYCbGGymyI/SVGPathShimmer_Prod.js\";import Footer from\"#framer/local/canvasComponent/b9thVwt4U/b9thVwt4U.js\";import ButtonPrimary from\"#framer/local/canvasComponent/pASCADmRk/pASCADmRk.js\";import ButtonSecondary from\"#framer/local/canvasComponent/tpNzfgCJT/tpNzfgCJT.js\";import Accordion from\"#framer/local/canvasComponent/vcCHhVfvq/vcCHhVfvq.js\";import Navigation3 from\"#framer/local/canvasComponent/y7CnB8er8/y7CnB8er8.js\";import*as sharedStyle1 from\"#framer/local/css/BPUOjfPwD/BPUOjfPwD.js\";import*as sharedStyle from\"#framer/local/css/KNyyhsm9O/KNyyhsm9O.js\";import*as sharedStyle4 from\"#framer/local/css/mROcdb54n/mROcdb54n.js\";import*as sharedStyle3 from\"#framer/local/css/NDAhsv1Cq/NDAhsv1Cq.js\";import*as sharedStyle2 from\"#framer/local/css/WPXWFUv2R/WPXWFUv2R.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const Navigation3Fonts=getFonts(Navigation3);const StaggeredCycleFonts=getFonts(StaggeredCycle);const ButtonPrimaryFonts=getFonts(ButtonPrimary);const ButtonSecondaryFonts=getFonts(ButtonSecondary);const SVGPathShimmerFonts=getFonts(SVGPathShimmer);const AccordionFonts=getFonts(Accordion);const FooterFonts=getFonts(Footer);const breakpoints={CV27j0XUR:\"(min-width: 768px) and (max-width: 1199px)\",RNsiJat8l:\"(max-width: 767px)\",UOPWEnqN2:\"(min-width: 1200px) and (max-width: 1727px)\",WQLkyLRf1:\"(min-width: 1728px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-bPkvc\";const variantClassNames={CV27j0XUR:\"framer-v-k9fkr7\",RNsiJat8l:\"framer-v-193iykd\",UOPWEnqN2:\"framer-v-1m3uz18\",WQLkyLRf1:\"framer-v-72rtr7\"};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"Desktop-Large\":\"WQLkyLRf1\",\"Tab-Large\":\"UOPWEnqN2\",\"Tab-Small\":\"CV27j0XUR\",Phone:\"RNsiJat8l\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"WQLkyLRf1\"};};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);if(metadata.robots){let robotsTag=document.querySelector('meta[name=\"robots\"]');if(robotsTag){robotsTag.setAttribute(\"content\",metadata.robots);}else{robotsTag=document.createElement(\"meta\");robotsTag.setAttribute(\"name\",\"robots\");robotsTag.setAttribute(\"content\",metadata.robots);document.head.appendChild(robotsTag);}}},[undefined,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(undefined,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[undefined,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"zRK2OUf3n\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"r3Ky6Gg82\");const ref2=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if(baseVariant===\"UOPWEnqN2\")return false;return true;};const isDisplayed1=()=>{if(!isBrowser())return true;if(baseVariant===\"UOPWEnqN2\")return true;return false;};useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"WQLkyLRf1\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: rgb(255, 255, 255); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1pub6u5\",\"data-border\":true,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RNsiJat8l:{height:64,width:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,y:(componentViewport?.y||0)+0+0+0+0},UOPWEnqN2:{width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), ${componentViewport?.width||\"100vw\"} - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:80,width:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1216px)`,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mkenhu-container\",nodeId:\"pKiNqQcjZ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RNsiJat8l:{style:{maxWidth:\"100%\",width:\"100%\"},variant:\"VrICi9em6\"}},children:/*#__PURE__*/_jsx(Navigation3,{height:\"100%\",id:\"pKiNqQcjZ\",layoutId:\"pKiNqQcjZ\",style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},variant:\"OrFSFVpzs\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-a9lx12\",\"data-framer-name\":\"Hero Container\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(\"header\",{className:\"framer-xr7f44\",\"data-framer-name\":\"Hero\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y190ts\",\"data-framer-name\":\"Left\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg\",srcSet:\"https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg 800w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+64+40+0+0+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg\",srcSet:\"https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg 800w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+80+80+0+0+0),pixelHeight:800,pixelWidth:800,src:\"https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg\",srcSet:\"https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg?scale-down-to=512 512w,https://framerusercontent.com/images/Y7OBmBf43tX1NAgWiD2v9VMSDCI.jpg 800w\"},className:\"framer-146ebo3\",\"data-framer-name\":\"Frame 11\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wyj7j4\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-prrvwu\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RNsiJat8l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-r9zm35\",\"data-styles-preset\":\"KNyyhsm9O\",style:{\"--framer-text-alignment\":\"left\"},children:\"Hi! I\u2019m Soumya.\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-r9zm35\",\"data-styles-preset\":\"KNyyhsm9O\",children:\"Hi! I\u2019m Soumya.\"})}),className:\"framer-kjne3p\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fhlynz\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{RNsiJat8l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-r9zm35\",\"data-styles-preset\":\"KNyyhsm9O\",style:{\"--framer-text-alignment\":\"left\"},children:\"I Design For\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-r9zm35\",\"data-styles-preset\":\"KNyyhsm9O\",children:\"I Design For\"})}),className:\"framer-161w109\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-i7z0ps-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"dZcpb294p\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"36px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"}},RNsiJat8l:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"28px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"}},UOPWEnqN2:{font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"44px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"}}},children:/*#__PURE__*/_jsx(StaggeredCycle,{alignment:\"left\",color:\"var(--token-36d321ea-ff26-471a-ba0d-90dff3889807, rgb(52, 52, 51))\",delay:1,font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"49px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1em\"},height:\"100%\",id:\"dZcpb294p\",layoutId:\"dZcpb294p\",loop:true,speed:10,stagger:.3,style:{width:\"100%\"},tag:\"p\",text:\"SaaS, Enterprise, Logistics, IOT, Travel, Sales\",userSelect:false,width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Design leader crafting scalable product experiences, currently heading UX at CNB. Formerly shaped systems at Capiot Software.\"})}),className:\"framer-3e2kkq\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-14rd4f\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+80+80+0+0+0+467+0},RNsiJat8l:{y:(componentViewport?.y||0)+0+64+40+0+0+0+0+457+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+80+80+0+0+467+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-k4sund-container\",nodeId:\"xOd3Z8E_d\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"xOd3Z8E_d\",layoutId:\"xOd3Z8E_d\",style:{height:\"100%\"},variant:\"IS4Uh033g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+80+80+0+0+0+467+0},RNsiJat8l:{y:(componentViewport?.y||0)+0+64+40+0+0+0+0+457+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+80+80+0+0+467+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pty1-container\",nodeId:\"vICJL4Ygy\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"vICJL4Ygy\",layoutId:\"vICJL4Ygy\",style:{height:\"100%\"},variant:\"HA_0CO7FT\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vyz75o\",\"data-framer-name\":\"Right\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-eumrjj\",\"data-framer-name\":\"Icon Stack\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-a8xzz1\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1gpukqb\",\"data-framer-name\":\"Np figma_1264470_000000\",fill:\"black\",intrinsicHeight:133,intrinsicWidth:133,svg:'<svg width=\"100pt\" height=\"100pt\" viewBox=\"0 0 100 100\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M35.363 30.523c-8.246 0-14.996-6.75-14.996-15 0-8.246 6.75-14.992 14.996-14.992h29.875c8.246 0 14.996 6.746 14.996 14.992 0 8.25-6.75 15-14.996 15zm-.394 34.329h15.266v-30H34.969c-4.117 0-7.867 1.688-10.586 4.406s-4.406 6.473-4.406 10.605c0 8.242 6.746 14.988 14.992 14.988M66.691 35.16c-8.281 0-14.996 6.715-14.996 14.996s6.715 14.996 14.996 14.996 14.996-6.715 14.996-14.996S74.972 35.16 66.691 35.16m-16.48 33.973H34.676v.027c-8.016.301-14.426 6.875-14.426 14.97 0 8.28 6.71 14.991 14.992 14.991 8.023 0 14.559-6.304 14.961-14.23h.008v-.172c.008-.195.031-.39.031-.59 0-.199-.023-.394-.031-.593z\" fill-rule=\"evenodd\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-o1wgyl\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-ya5m26\",\"data-framer-name\":\"Miro-svgrepo-com\",fill:\"black\",intrinsicHeight:800,intrinsicWidth:800,svg:'<svg width=\"800\" height=\"800\" viewBox=\"0 0 32 32\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M22.728 1.024h-4.356l3.868 6-8.182-6H9.696l3.872 7.862-8.182-7.862H1.024L4.83 11.172 1.024 30.976h4.362l8.18-21.234-3.87 21.234h4.36L22.24 7.88l-3.87 23.096h4.358l8.248-25.368-8.248-4.584z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1g1q6r8\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-10yrhgk\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:15,intrinsicWidth:15,svg:'<svg fill=\"none\" height=\"15\" width=\"15\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M3.258 3.117c.42.341.577.315 1.366.262l7.433-.446c.158 0 .027-.157-.026-.183l-1.235-.893c-.236-.184-.551-.394-1.155-.341l-7.198.525c-.262.026-.315.157-.21.262l1.025.814Zm.446 1.732v7.821c0 .42.21.578.683.552l8.17-.473c.472-.026.525-.315.525-.656V4.324c0-.34-.131-.525-.42-.499l-8.538.499c-.315.026-.42.184-.42.525Zm8.065.42c.052.236 0 .472-.237.499l-.394.078v5.774c-.341.184-.657.29-.92.29-.42 0-.525-.132-.84-.526L6.803 7.342v3.911l.815.184s0 .472-.657.472l-1.812.105c-.053-.105 0-.367.184-.42l.472-.13V6.292L5.15 6.24c-.053-.236.078-.577.446-.604l1.944-.13L10.22 9.6V5.978l-.683-.079c-.053-.289.157-.499.42-.525l1.813-.105Zm-9.93-3.937L9.326.781c.919-.08 1.155-.026 1.733.394l2.39 1.68c.395.288.526.367.526.682v9.212c0 .578-.21.92-.946.971l-8.694.525c-.552.027-.815-.052-1.104-.42l-1.76-2.283c-.315-.42-.446-.735-.446-1.103V2.25c0-.472.21-.866.814-.918Z\" fill=\"currentColor\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1yajxxq\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1w656s3\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:100,intrinsicWidth:100,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" width=\"100\" height=\"100\" viewBox=\"0 0 50 50\"><path d=\"M23.828 5.307c-3.46 0-6.519 1.703-8.41 4.31v16.106l4.014 2.257-.133-11.851a1.001 1.001 0 0 1 .496-.873l11.162-6.537c-1.746-2.138-4.34-3.412-7.129-3.412zm11.254 3.312-13.775 8.067.05 4.613 10.198-6.041a1.003 1.003 0 0 1 1-.014l11.273 6.342c.948-2.564.74-5.435-.637-7.818a10.35 10.35 0 0 0-6.322-4.852 10.288 10.288 0 0 0-1.787-.297zm-21.666 4.727a9.153 9.153 0 0 0-6.598 4.5 10.335 10.335 0 0 0-1.04 7.898c.171.643.422 1.248.706 1.834l13.801 7.762 3.97-2.352-10.33-5.81a1.001 1.001 0 0 1-.509-.871V13.346zm18.66 3.927-3.97 2.352 10.33 5.81c.314.179.51.51.51.872v12.945c2.757-.424 5.188-2.04 6.599-4.482a10.34 10.34 0 0 0 1.04-7.9 10.351 10.351 0 0 0-.708-1.837l-13.8-7.76zm-5.959 3.53-4.734 2.804.062 5.504 4.797 2.7 4.737-2.805-.061-5.504-4.8-2.7zm6.815 3.832.132 11.85c.004.355-.184.688-.49.87l-11.113 6.602c1.744 2.101 4.301 3.352 7.072 3.352 3.46 0 6.521-1.705 8.412-4.311V26.893l-4.013-2.258zM8.537 31.029c-.949 2.564-.745 5.426.635 7.817a10.342 10.342 0 0 0 6.32 4.85c.652.174 1.312.263 1.97.31l13.595-8.076-.051-4.616-10.197 6.041a1 1 0 0 1-1 .012L8.537 31.03z\"/></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-8ptf8l\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xdr6ey\",\"data-framer-name\":\"Cdnlogo.com cursor\",fill:\"black\",intrinsicHeight:45,intrinsicWidth:45,svg:'<svg id=\"Layer_2\" data-name=\"Layer 2\" xmlns=\"http://www.w3.org/2000/svg\" viewBox=\"0 0 45.35 45.35\"><defs><style>.cls-1{fill:#5f5f5f}.cls-1,.cls-11,.cls-15,.cls-16,.cls-18,.cls-20,.cls-22,.cls-25,.cls-26,.cls-27,.cls-32,.cls-36,.cls-38,.cls-41,.cls-44,.cls-45,.cls-46,.cls-48,.cls-5,.cls-53,.cls-55,.cls-6,.cls-65,.cls-7,.cls-72,.cls-75,.cls-79,.cls-80,.cls-83,.cls-84,.cls-86,.cls-88,.cls-93,.cls-96{stroke-width:0}.cls-5{fill:#797979}.cls-6{fill:#4f4f4f}.cls-7{fill:#787878}.cls-11{fill:#4d4d4d}.cls-15{fill:#474747}.cls-16{fill:#636363}.cls-18{fill:#6e6e6e}.cls-20{fill:#868686}.cls-22{fill:#6f6f6f}.cls-25{fill:#9b9b9b}.cls-26{fill:#262626}.cls-27{fill:#313130}.cls-32{fill:#3c3c3b}.cls-36{fill:#838383}.cls-38{fill:#3e3e3e}.cls-41{fill:#454545}.cls-44{fill:#373737}.cls-45{fill:#414141}.cls-46{fill:#404040}.cls-48{fill:#434343}.cls-53{fill:#121213}.cls-55{fill:#cbcbca}.cls-65{fill:#bbb}.cls-72{fill:#a5a4a4}.cls-75{fill:#b4b4b4}.cls-79{fill:#909090}.cls-80{fill:#737474}.cls-83{fill:#6c6c6c}.cls-84{fill:#969696}.cls-86{fill:#8b8a8a}.cls-88{fill:#9f9f9f}.cls-93{fill:#7f7f7f}.cls-96{fill:#e2e2e2}</style></defs><g id=\"Layer_1-2\" data-name=\"Layer 1\"><path d=\"M0 22.62C0 19 0 15.39.01 11.77c0-1.51.09-3.01.5-4.48C1.59 3.43 4.78.69 8.75.21 9.93.06 11.11 0 12.29 0h20.77c1.69 0 3.38.06 5.02.52 3.82 1.06 6.57 4.26 7.06 8.21.14 1.17.21 2.35.21 3.53v20.83c0 1.67-.06 3.34-.51 4.97-1.08 3.86-4.26 6.6-8.24 7.08-1.17.14-2.35.2-3.53.2H12.3c-1.69 0-3.38-.06-5.02-.52C3.46 43.76.71 40.56.23 36.61.06 35.41 0 34.2 0 32.98V22.62Z\" style=\"fill:#010101;stroke-width:0\"/><path d=\"M36.29 14.73s.02.06.01.09c-.04.04-.07.08-.11.12-2.73 1.62-5.47 3.19-8.21 4.8-1.72 1.01-3.43 2.02-5.17 3-.05.02-.1.02-.16.02-.44-.16-.82-.44-1.23-.65-.25-.25-.64-.28-.91-.52-.35-.27-.74-.48-1.13-.68-.21-.16-.45-.28-.67-.42-.13-.1-.28-.17-.43-.24-.19-.1-.36-.22-.54-.32-.08-.04-.17-.09-.25-.14-.23-.18-.5-.29-.76-.43-.42-.27-.85-.54-1.3-.75-.42-.29-.88-.52-1.33-.76-1.51-.92-3.02-1.85-4.59-2.66a.659.659 0 0 1-.24-.11c-.13-.15-.31-.3 0-.43.26-.08.54-.08.81-.08h25.14c.36 0 .72 0 1.06.17Z\" style=\"fill:#fff;stroke-width:0\"/><path d=\"M18.34 20.15c.16.03.29.12.4.23.08.16.09.31-.02.46-.62.77-1.27 1.48-2.32 1.67-.68.12-1.27-.04-1.74-.53-.73-.76-1.52-1.44-2.48-1.92-.47-.23-.74-.7-1.01-1.12-.52-.82-1.21-1.54-1.55-2.48.33 1.32.39 2.67.61 4 .11.63.27 1.26.34 1.9.06.55.33 1.1.47 1.66.34 1.31.73 2.61 1.39 3.81.12.21.07.46.15.69 0 .06 0 .11-.02.16-.16.16-.34.26-.58.26-.24-.14-.16-.42-.24-.62-.39-1.05-.85-2.06-1.23-3.11-.17-.48-.34-.96-.4-1.46-.07-.58-.33-1.1-.44-1.66-.15-.73-.19-1.46-.27-2.2-.06-.59-.14-1.17-.2-1.76.07-.7 0-1.41 0-1.84 0 1.63.13 3.53.1 5.43-.02.85.03 1.7.01 2.54-.07.46.07.94-.1 1.4-.04.07-.1.09-.17.06 0-3.61 0-7.23-.01-10.84 0-.11-.01-.22.1-.29.07.03.07.07.01.12-.04.19.18.19.23.31.07.19.22.33.29.52.05.14.14.26.21.39.25.55.67 1.01.89 1.57.64.97 1.34 1.89 2.49 2.31.23.09.4.24.56.42.49.59 1.11.97 1.82 1.24.26.1.49.08.73-.03.68-.31 1.36-.64 1.82-1.27.04-.05.08-.06.14-.02Z\" style=\"fill:#4a4a4a;stroke-width:0\"/><path class=\"cls-15\" d=\"m23.44 7.19 7.14 4.14c1.64.96 3.28 1.91 4.92 2.87.14.08.3.13.38.29-.66.24-1.35.06-2.02.11-2.19-1.3-4.42-2.51-6.48-4.04-1.35-1-2.67-2.05-3.98-3.1q-.13-.22.04-.27Z\"/><path class=\"cls-84\" d=\"M10.35 13.95c1.61-.95 3.21-1.9 4.82-2.84 2.47-1.45 4.93-2.9 7.4-4.35.17-.06.16.06.16.16-.02.05-.04.09-.08.13-.1.08-.2.15-.3.22-.3.18-.5.47-.78.68-3.09 2.58-6.71 4.24-10.33 5.89-.2.08-.38.2-.58.26-.12.04-.29.11-.31-.13Z\"/><path d=\"M36.31 29.98c-.04.25.11.53-.1.77-.06-.07-.14-.11-.21-.17-.11-.08-.24-.13-.36-.2-.12-.08-.24-.15-.38-.19-.2-.1-.44-.15-.54-.39-.01-.05-.02-.1-.01-.15.02-.63-.37-1.09-.69-1.57-.7-1.06-1.33-2.16-1.99-3.25a7.02 7.02 0 0 0-.49-.72c-.16-.21-.25-.44-.23-.71.02-.21.11-.36.31-.43.33.02.51.26.67.5.91 1.45 2.04 2.76 2.78 4.32.19.39.48.72.72 1.08.23.35.42.71.52 1.11Z\" style=\"fill:#232323;stroke-width:0\"/><path class=\"cls-26\" d=\"M36.31 29.98c-.74-1.22-1.42-2.49-2.23-3.66-.79-1.12-1.39-2.39-2.44-3.32-.06-.38.12-.62.43-.8.31.14.49.42.69.67.68.85 1.37 1.69 1.96 2.6.34.52.65 1.05 1.1 1.48.27.26.34.63.51.95v2.07Z\"/><path d=\"M36.31 24.09v2.18c-.7-.36-1.26-.93-1.62-1.59-.39-.71-.95-1.21-1.45-1.79-.33-.38-.71-.72-.9-1.21.08-.4.21-.78.59-1.01.54.64 1.22 1.15 1.74 1.8.37.46.75.87 1.25 1.17.18.11.26.29.39.44Z\" style=\"fill:#2e2e2d;stroke-width:0\"/><path d=\"M35 31.39c-.51.29-.97.66-1.53.87-1.02.2-1.97.56-2.89 1.06-1.27.69-2.53 1.42-3.74 2.2-.87.56-1.77 1.06-2.56 1.74-.24.14-.36.53-.74.36-.04-.28.19-.42.35-.58.85-.83 1.81-1.5 2.79-2.16 1.05-.7 2.01-1.53 3.12-2.17 1.08-.62 2.24-.91 3.4-1.23.42-.11.84-.22 1.28-.28.2-.03.44-.13.53.18Z\" style=\"fill:#d8d8d7;stroke-width:0\"/><path d=\"M35 31.39c-.26-.23-.52-.04-.77.02-1.28.27-2.58.5-3.75 1.1-.94.49-1.89.98-2.69 1.7-1.01.9-2.25 1.49-3.24 2.41-.35.32-.7.62-.99 1-.04.36-.29.54-.58.69-.05 0-.1-.02-.12-.07-.01-.42.25-.69.5-.97.24-.07.31-.35.52-.46 1.42-1.33 2.92-2.56 4.42-3.78 1.19-.96 2.6-1.44 4.11-1.74 1.08-.21 2.18-.35 3.26-.62.13 0 .3-.05.32.16-.33.19-.65.38-.98.56Z\" style=\"fill:#d3d3d3;stroke-width:0\"/><path class=\"cls-75\" d=\"M22.01 38.17c-.39-.17-.76-.39-1.1-.65-.52-.59-1.19-1.01-1.81-1.46-1.35-.98-2.7-1.95-4.14-2.81-1.1-.66-2.26-1.15-3.43-1.64-.21-.09-.53-.09-.53-.45.19-.14.38-.07.57-.02 1.98.53 3.8 1.41 5.51 2.53 1.65 1.08 3.12 2.36 4.54 3.71.14.12.25.27.37.41.05.13.31.25.01.38Z\"/><path d=\"M32.38 21.69c.55.66 1.1 1.33 1.74 1.91.51.46.67 1.16 1.16 1.65.34.34.78.58 1.02 1.02v1.64c-.64-.91-1.34-1.78-1.96-2.7-.62-.92-1.26-1.83-2.06-2.61-.1-.09-.14-.24-.21-.36-.05-.27 0-.49.32-.55Z\" style=\"fill:#2a2b2a;stroke-width:0\"/><path class=\"cls-27\" d=\"M36.31 24.09c-.64-.46-1.31-.85-1.75-1.55-.24-.39-.61-.72-.99-.98-.33-.23-.46-.54-.63-.85-.06-.38.12-.62.43-.79.3.49 1.99 1.94 2.63 2.23.26.11.2.35.3.53v1.42Z\"/><path d=\"M18.29 35.99c-1.95-1.13-3.9-2.25-5.85-3.38-.81-.47-1.61-.95-2.41-1.43 0-.22.17-.18.31-.18 2.37 1.04 4.69 2.16 6.77 3.73.38.28.81.48 1.17.79.25.22.25.29.02.48Z\" style=\"fill:#c0bfbf;stroke-width:0\"/><path class=\"cls-44\" d=\"M36.3 18.86v2.07c-.28.21-.62.21-.87.04-.65-.44-1.29-.91-1.79-1.54.03-.43.21-.79.56-1.05.23-.05.44.03.6.18.39.36.81.44 1.3.24.07-.03.14 0 .2.05Z\"/><path d=\"M24.2 37.18c.67-.7 1.54-1.12 2.33-1.64.91-.6 1.86-1.16 2.81-1.7 1.21-.68 2.44-1.35 3.8-1.71.14-.04.24.03.33.12-.86.54-1.7 1.1-2.61 1.55-.48-.02-.85.28-1.22.5-1.35.79-2.75 1.5-4.11 2.29-.27.15-.53.31-.78.48-.16.11-.32.25-.54.11Z\" style=\"fill:#dcdbdb;stroke-width:0\"/><path class=\"cls-65\" d=\"M18.29 35.99c.25-.27-.04-.34-.17-.43-2.4-1.65-4.82-3.26-7.55-4.33-.08-.03-.14-.1-.22-.15.02-.02.04-.04.06-.05.23-.07.43 0 .59.16.76.48 1.64.71 2.45 1.1 1.34.64 2.57 1.45 3.79 2.27 1.13.76 2.2 1.61 3.28 2.43.17.13.46.21.37.54-.9-.46-1.77-.98-2.61-1.53Z\"/><path d=\"M24.2 37.18c.87-.49 1.74-.99 2.61-1.48 1.22-.68 2.44-1.34 3.66-2.02.21-.12.29-.05.38.12-2.59 1.57-5.2 3.1-7.84 4.59-.12.05-.14-.02-.12-.12.28-.15.44-.43.65-.65.31 0 .4-.34.65-.44Z\" style=\"fill:#dfdfdf;stroke-width:0\"/><path d=\"M33.69 19.4c.56.47 1.12.94 1.68 1.4.28.23.62.08.93.13v1.74c-.13-.27-.28-.43-.63-.47-.39-.03-.57-.45-.87-.68-.47-.36-.84-.83-1.29-1.22-.14-.12.02-.3-.15-.36-.05-.27 0-.49.32-.55Z\" style=\"fill:#343434;stroke-width:0\"/><path d=\"M9.16 14.72s0-.08-.01-.12l.45-.21c.17.05.32-.06.48-.03.18 0 .35 0 .53.02.06 0 .12.02.18.04.95.08 1.9.02 2.86.03h7.53c.51.02 1.01-.03 1.52 0 .96-.03 1.93.02 2.89 0h7.03c1.16.12 2.33.08 3.49.14.08.03.19.01.2.14-.16 0-.33-.02-.49-.02l-26.1-.03c-.18 0-.36.02-.54.03Z\" style=\"fill:#828282;stroke-width:0\"/><path class=\"cls-32\" d=\"M36.3 18.86c-.57.29-1.11.33-1.59-.21-.11-.12-.32-.16-.48-.23.02-.59.35-1.02.77-1.4.43.09.86-.1 1.29-.02v1.85Z\"/><path class=\"cls-75\" d=\"M36.09 30.53c.14.02.16.1.12.22h-.11c-.23-.12-.47-.02-.7-.03-2.38-.19-4.75-.21-7.11.22-.27.05-.52.14-.78.22-.17.05-.34.16-.5-.02-.11-.35.09-.54.35-.71.98-.33 2.01-.43 3.03-.49 1.41-.08 2.81.11 4.2.29.2.03.4.02.6.02.33 0 .61.18.91.26Z\"/><path d=\"M22.01 38.17c.16-.17-.1-.21-.09-.33.17-.22.03-.45.02-.68-.05-.81.04-1.59.46-2.3.12-.21.27-.34.4 0 .06 1.04.04 2.08 0 3.12 0 .18-.02.36 0 .54-.36.1-.55-.19-.81-.34Z\" style=\"fill:#aeaeae;stroke-width:0\"/><path d=\"M22.81 38.51c-.21-.14-.14-.36-.14-.54v-3.29c-.21-.22-.11-.5-.15-.75-.01-.22 0-.45 0-.67-.02-.38.01-.76 0-1.14-.01-.12 0-.25 0-.37v-2.31c0-.18.01-.37 0-.55V26.3c0-.22 0-.44-.02-.65-.01-.14.02-.27.02-.41v-1.8c0-.21-.01-.42.05-.62.02-.06.06-.1.1-.15h.11c.21.22.17.51.17.78 0 1.43-.03 2.87-.02 4.3 0 .31-.01.62.01.94 0 .76-.03 1.52 0 2.28.01 1.08 0 2.17 0 3.25 0 1.35.04 2.7-.05 4.05l.12.12c-.04.09-.12.11-.2.12Z\" style=\"fill:#d2d2d2;stroke-width:0\"/><path class=\"cls-46\" d=\"M36.3 17c-.42.19-.86.27-1.31.11-.09-.24.06-.43.16-.6.35-.56.59-1.2 1.07-1.68.03 0 .05-.01.08-.02V17Z\"/><path class=\"cls-53\" d=\"M22.66 6.95c0-.08.02-.16-.09-.19.26-.2.35-.02.43.19v.07c.01.1 0 .21 0 .31 0 .12-.02.24-.06.35-.04 2.01.03 4.03 0 6.04 0 .27.15.64-.29.76-.2-.25-.15-.55-.15-.83-.02-1.68.03-3.35.02-5.03.06-.56-.13-1.14.14-1.68Z\"/><path class=\"cls-86\" d=\"M9.26 30.74s-.09-.06-.14-.09c-.02-.07 0-.13.05-.17.08-.06.18-.08.28-.09 1.21-.04 2.42-.05 3.64-.02.18 0 .36 0 .54.07.06.03.11.08.13.14a.23.23 0 0 1-.12.15c-.62.13-1.25.03-1.88.07h-1.57c-.31.03-.62-.06-.93-.05Z\"/><path d=\"M10.02 14.49c-.15-.02-.32.06-.43-.1.25-.15.51-.29.76-.44.36.19.55-.25.87-.22.1-.08.21-.06.32-.03.06.29-.18.37-.36.43-.34.09-.67.24-1.02.28a.38.38 0 0 0-.13.09Z\" style=\"fill:#919090;stroke-width:0\"/><path d=\"M36.09 14.59h-3.5c-.03-.07 0-.12.06-.16.35-.11.7-.16 1.03.07h2.2c.07.03.14.06.21.1Z\" style=\"fill:#3d3d3d;stroke-width:0\"/><path class=\"cls-6\" d=\"m9.15 30.53-.03.12c-.17-1.05-.05-2.11-.07-3.17.07-.03.13-.01.16.05.05.09.07.19.08.29.03.68.02 1.37.02 2.05 0 .23 0 .47-.16.66Z\"/><path class=\"cls-11\" d=\"M9.15 27.47h-.1v-1.74h.1c.26.58.26 1.16 0 1.74Z\"/><path class=\"cls-65\" d=\"M10.35 31.07c-.12 0-.24-.02-.32.1-.25-.11-.52-.19-.7-.42.09-.1.22-.06.33-.06.24.1.6 0 .69.37Z\"/><path class=\"cls-45\" d=\"M23.44 7.19c-.13.07-.02.15 0 .22.03.03.04.05.03.08 0 .03-.01.05-.02.05a.23.23 0 0 1-.14.04.322.322 0 0 1-.18-.12c-.09-.15-.18-.29-.12-.48v-.02c.17.03.33.09.44.23Z\"/><path class=\"cls-55\" d=\"M35.43 30.64c.22.04.47-.09.66.11-.04.02-.08.05-.12.07-.09-.1-.21-.08-.32-.08-.2.1-.42.05-.63.04-.05-.05-.06-.1-.03-.16.15-.04.3-.07.44.02Z\"/><path class=\"cls-88\" d=\"M9.7 30.75h-.41l-.03-.02c.27-.21.58-.06.87-.1.02.06 0 .1-.04.14-.13.02-.27.05-.39-.03Z\"/><path d=\"M36.23 14.84 35 17.12c-.29.42-.54.85-.75 1.31-.22.31-.42.63-.56.98-.15.16-.25.34-.32.55-.18.23-.33.49-.43.76-.22.31-.41.63-.56.98-.15.16-.25.34-.32.55-.15.25-.29.51-.44.76-.11.13-.21.26-.24.43-.05.17-.08.36-.33.23-.06-.45.32-.75.47-1.19-.48.01-.93.09-1.28.32-.71.47-1.54.49-2.32.67-.4.09-.84.15-1.17.34-.7.38-1.43.55-2.21.58-.4.02-.77.21-1.13.39-.29.14-.38.42-.38.73v1.58c0 .23.03.48-.1.69-.04.06-.1.07-.16.03v-5.13c.99-.73 2.11-1.26 3.16-1.89 2.27-1.35 4.55-2.69 6.84-4 1.14-.66 2.24-1.4 3.45-1.95Z\" style=\"fill:#e5e5e5;stroke-width:0\"/><path class=\"cls-15\" d=\"M12.52 28.56c-.17-.78-.65-1.43-.89-2.19-.13-.4-.23-.83-.46-1.23-.24-.43-.31-.98-.37-1.49-.04-.32-.14-.6-.27-.87-.12-.26-.25-.48-.1-.76.03-.06.03-.15 0-.21-.45-1.14-.45-2.36-.64-3.54-.11-.69-.26-1.38-.4-2.1.37.05.48.33.55.53.32.98 1.11 1.66 1.58 2.53.37.7 1.12.88 1.68 1.3.5.38 1.01.75 1.41 1.24.72.89 1.93.8 2.74.24.49-.34.91-.76 1.29-1.22.11-.14 0-.28.1-.39.26.1.49.23.7.41 0 .08-.03.16-.07.23-.68 1.05-1.35 2.09-2.52 2.7-.29.15-.52.23-.81.12-.6-.22-1.16-.5-1.57-1.02-.11-.14-.24-.27-.38-.39a.847.847 0 0 1-.14-.19c-.23-.53-.59-.89-1.15-1.14-.69-.3-1.29-.78-1.76-1.4-.12-.16-.23-.32-.45-.45.06 1.29.47 2.52.72 3.78.23 1.33.74 2.57 1.17 3.83.16.48.31.96.41 1.46-.04.22-.21.24-.39.23Z\"/><path d=\"M9.81 15.91a.337.337 0 0 1-.22-.33c.3-.16.43.09.57.25.77.93 1.65 1.75 2.74 2.26.84.39 1.58 1 2.54 1.19.48.1.93.02 1.39-.01.28.1.53.24.75.44-.28.6-.81.79-1.41.8-.69 0-1.33-.2-1.87-.61-.58-.44-1.23-.76-1.84-1.12-1.17-.7-1.94-1.75-2.65-2.86Z\" style=\"fill:#545453;stroke-width:0\"/><path class=\"cls-6\" d=\"M9.81 15.91c.62.78 1.28 1.51 1.96 2.24.35.37.81.62 1.22.77.7.26 1.19.81 1.86 1.11 1.05.47 1.85.48 2.74-.32.07.04.14.08.2.12.17.33.08.69-.33.92-.81.46-1.65.65-2.53.16-.46-.25-.92-.5-1.28-.91-.18-.21-.42-.36-.66-.46-1-.4-1.66-1.19-2.31-1.99-.23-.58-.74-1-.87-1.64Z\"/><path class=\"cls-48\" d=\"M19.29 20.93s.1-.09.15-.13c.4.19.8.38 1.13.68-.09.6-.28 1.18-.27 1.8 0 .24 0 .47.11.68.01.05 0 .1-.01.15-.37.28-.79.48-1.18.73-.23.14-.46.27-.74.3-.3-.04-.2-.25-.16-.41.24-1.06.5-2.13 1.08-3.07.18-.3.09-.51-.11-.73Z\"/><path d=\"M16.83 19.27c-.25.32-.64.27-.94.22-.63-.11-1.3-.14-1.8-.65-.35-.35-.88-.39-1.31-.63a9.934 9.934 0 0 1-2.82-2.42c-.09-.11-.2-.21-.37-.21-.06-.19-.35-.29-.2-.55.07 0 .13.02.2.03.36.34.72.68 1.07 1.03.78.71 1.61 1.35 2.65 1.64.27.07.49.23.73.37.46.26.93.49 1.48.42.46.22.9.46 1.3.76Z\" style=\"fill:#585858;stroke-width:0\"/><path class=\"cls-11\" d=\"M10.68 17.55c.58.44.95 1.16 1.64 1.46 1.07.46 1.81 1.42 2.87 1.89.77.34 1.99.05 2.51-.57.16-.19.08-.33.09-.49.21.06.4.17.56.32-.46.82-1.28 1.14-2.07 1.49-.52.24-.93-.23-1.4-.37a.99.99 0 0 1-.41-.26c-.66-.71-1.48-1.16-2.29-1.67-.66-.41-1.11-1.11-1.5-1.8Z\"/><path class=\"cls-38\" d=\"M20.38 23.98c-.27-.04-.22-.25-.21-.42.04-.71-.02-1.45.4-2.08.29.22.68.25.93.52-.15.48-.05.99-.2 1.47-.06.18-.22.26-.36.37-.18.07-.33.24-.56.15Z\"/><path class=\"cls-1\" d=\"M10.57 16.13c-.36-.32-.78-.6-.98-1.07 1.57.81 3.08 1.75 4.6 2.66.09.35-.1.31-.33.24-1.21-.4-2.33-.97-3.29-1.82Z\"/><path d=\"M10.57 16.13c.42.1.71.4 1.02.66.47.39 1.01.6 1.58.73.25.06.48.14.68.29.13.1.3.21.33-.1.44.27.94.45 1.34.79-.29.25-.63.17-.9.02-1.16-.66-2.5-.96-3.53-1.86-.19-.17-.39-.32-.53-.54Z\" style=\"fill:#5c5c5c;stroke-width:0\"/><path d=\"M21.26 23.44c.11-.47-.19-1.02.24-1.44.39.22.78.44 1.17.67 0 .04-.01.07-.02.11-.25.25-.58.38-.89.55-.16.06-.31.19-.5.12Z\" style=\"fill:#3b3b3a;stroke-width:0\"/><path class=\"cls-80\" d=\"M22.58 25.61c.18.2.08.44.08.66-.04.08-.09.16-.2.16-1.57-.03-2.99.44-4.26 1.33-.75.52-1.58.91-2.36 1.37-.51.3-1.15.65-1.84.38-.21-.08-.43 0-.65 0-.54.03-1.07.12-1.62.03-.14-.02-.29-.01-.4-.14-.09-.31.19-.33.35-.44.09-.05.2 0 .29-.07.18-.07.36-.15.54-.22.24-.07.43.12.65.14.64.14 1.16.11 1.82-.26 1.2-.68 2.29-1.52 3.48-2.2.06-.04.12-.09.19-.1.89-.14 1.75-.47 2.66-.46.4 0 .79-.09 1.18-.15.02 0 .05-.02.07-.02Z\"/><path class=\"cls-22\" d=\"M13.19 28.89c-.26.05-.47-.08-.66-.23v-.1c.12-.07.23-.14.35-.21a.51.51 0 0 1 .35-.27c.05 0 .1.02.14.05.29.31.62.24.85-.02.32-.36.74-.57 1.13-.81.33-.2.56-.44.62-.83.17-.22.4-.34.64-.45.44-.16.78-.53 1.27-.59.18.04.35.02.53-.02 1.01-.23 2.02-.36 3.06-.27.22.02.43.03.65-.02.21-.05.39 0 .54.16.06.13-.06.21-.08.32h-.02c-.72.22-1.47.11-2.21.19-1.52.15-2.84.72-3.98 1.71-.49.43-1.1.67-1.58 1.11-.46.42-1.04.3-1.59.26Z\"/><path class=\"cls-6\" d=\"M11.77 29c-.15.11-.29.22-.44.33-.04.04-.09.06-.14.07-.23 0-.29-.18-.37-.35-.54-1.11-1.05-2.23-1.53-3.36-.19-.44 0-.93-.14-1.38v-2.62c.35.08.32.39.35.64.18 1.31.59 2.56 1.06 3.78.24.61.4 1.28.84 1.81.17.34.31.7.37 1.08Z\"/><path d=\"M9.15 24.31s.09.09.09.13c-.08 1.12.59 2.01.95 2.99.21.57.53 1.1.79 1.65.06.12.09.24.25.24-.12.38-.43.48-.77.52-.42-.1-.48-.52-.67-.81-.27-.41-.56-.83-.63-1.34v-3.38Z\" style=\"fill:#535353;stroke-width:0\"/><path class=\"cls-11\" d=\"M11.77 29c-.3-.26-.29-.66-.44-.98-.2-.54-.45-1.06-.66-1.59-.62-1.51-1.05-3.07-1.32-4.67a12.39 12.39 0 0 1-.09-3.44c.05.05.16.09.16.14-.03.84.18 1.66.21 2.5.03.65.18 1.28.42 1.9.18.47.21 1.01.34 1.51.16.63.46 1.21.65 1.83.21.68.6 1.28.77 1.97.06.24.3.45.17.74-.05.08-.12.11-.21.11Z\"/><path class=\"cls-11\" d=\"M9.26 18.31c.03.78-.08 1.57.06 2.34.23 1.24.35 2.5.77 3.71.36 1.04.65 2.1 1.17 3.07.1.19.07.39.08.59-.59-.73-.82-1.64-1.16-2.49-.31-.78-.46-1.63-.72-2.43-.15-.46.07-1-.3-1.4v-6.1c.11.91.25 1.81.11 2.72Z\"/><path d=\"M23.44 7.52v-.11c.6.24 1.01.74 1.5 1.13 2.35 1.86 4.78 3.6 7.43 5.02.35.19.69.39 1.04.58.15.08.28.17.28.36H32.6c-.35.12-.71.02-1.06.05-.45-.19-.76-.58-1.15-.86-1.4-.99-2.7-2.11-3.98-3.27-.56-.51-1.07-1.08-1.71-1.49l-.12-.09c-.15-.22-.25-.49-.55-.57-.26-.2-.6-.34-.6-.74Z\" style=\"fill:#444;stroke-width:0\"/><path d=\"M11.55 13.73h-.33c1.59-.77 3.21-1.48 4.76-2.31 1.84-.99 3.68-2.02 5.27-3.41.1-.09.19-.17.33-.17.09.23-.05.38-.2.52-1.2 1.14-2.5 2.15-3.94 2.96-1.71.95-3.51 1.7-5.34 2.39-.18.04-.36.16-.55.02Z\" style=\"fill:#929191;stroke-width:0\"/><path d=\"M12.1 13.62c.78-.41 1.63-.65 2.42-1.01 1.85-.84 3.68-1.72 5.26-3.02.5-.41.98-.85 1.47-1.26.16-.13.25-.31.33-.49.22-.26.39-.58.76-.65.11.14.04.25-.04.37-.5.49-.83 1.13-1.38 1.58-.4.22-.69.59-1.02.89-1.48 1.33-3.23 2.17-5.03 2.94-.59.25-1.21.37-1.8.59-.33.04-.63.33-.98.07Z\" style=\"fill:#8f8e8e;stroke-width:0\"/><path class=\"cls-11\" d=\"M22.66 6.95v1.66c-.09.54-.05 1.08-.1 1.62-.11 1.25-.37 2.47-.65 3.69-.1.43-.29.68-.75.67h-.98c-.01-.11.06-.15.14-.19.3-.06.45-.26.54-.54.67-1.9 1.17-3.84 1.53-5.81.04-.2.01-.4.01-.6.02-.17.04-.33.17-.46.02-.01.05-.02.08-.03Z\"/><path class=\"cls-93\" d=\"m22.58 6.98-.11.43s.03.09.01.14c-.05.24-.09.49-.25.69-.18.17-.22.45-.44.6-.05.01-.1 0-.14-.03a.415.415 0 0 1-.05-.31c.16-.36.43-.65.64-.98.04-.11.07-.22.11-.33.04-.11.12-.18.23-.21Z\"/><path d=\"M31.08 23.68c.18.01.2-.17.31-.24.12.64.62 1.06.92 1.6.68 1.21 1.47 2.35 2.18 3.54.19.32.54.65.26 1.11-.41.1-.67-.22-.99-.37-.15-.11-.31-.2-.34-.41.01-.35-.16-.63-.33-.91-.66-1.06-1.19-2.19-1.86-3.25-.12-.19-.25-.35-.39-.52-.05-.24.04-.42.24-.55Z\" style=\"fill:#1e1e1e;stroke-width:0\"/><path class=\"cls-79\" d=\"M33.82 29.21c.31.15.62.31.92.46 0 .03.01.07 0 .1-.19.28-.42.1-.62.03-.72-.23-1.41-.51-2.14-.71-.95-.26-1.92-.28-2.89-.32-.23-.01-.47.04-.67-.13-.06-.15 0-.27.08-.39.04-.04.09-.06.14-.07.81-.22 1.61-.05 2.4.11.96.19 1.87.52 2.76.92Z\"/><path class=\"cls-84\" d=\"M28.46 28.57c.86.12 1.73.03 2.59.2.76.14 1.51.3 2.23.57.48.18.93.46 1.47.44.19.11.38.22.58.34.03.06.02.1-.03.14-.23.1-.43-.02-.64-.07-.44-.13-.86-.35-1.32-.43-.96-.33-1.95-.51-2.95-.66-.54-.08-1.11.06-1.67.05-.19 0-.4.11-.54-.11-.03-.23-.01-.43.28-.46Z\"/><path class=\"cls-88\" d=\"m34.67 30.09.65.11c.13 0 .24.05.36.09.16.04.29.11.41.23-.29-.04-.58-.07-.87-.11-.16-.13-.42.03-.56-.18 0-.02-.01-.05-.02-.08.01-.02.02-.05.03-.07Z\"/><path d=\"M35.68 30.29c-.13.01-.26.04-.36-.09v-.09c.16-.01.26.08.36.19Z\" style=\"fill:#919191;stroke-width:0\"/><path d=\"M22.89 38.27c-.18-.16-.1-.37-.11-.56v-3.47c.13-.3.31-.46.68-.56.39-.11.92-.14 1.16-.62.09-.18.29-.22.45-.04.16.19.35.36.49.57 0 .48-.35.81-.55 1.2-.15.31-.32.6-.5.89-.36.54-.6 1.15-1.07 1.61-.21.31-.47.6-.54.98Z\" style=\"fill:#ddd;stroke-width:0\"/><path class=\"cls-55\" d=\"M23.44 37.29c.31-.55.57-1.14.98-1.64.48-.59 1.01-1.14 1.47-1.74 1.6-2.1 3.77-3.01 6.33-3.2.85-.07 1.69-.12 2.54 0 .12.27-.11.2-.22.22-1.09.18-2.18.33-3.26.56-1.59.34-2.95 1.12-4.09 2.25-.71.7-1.45 1.37-2.17 2.06-.39.38-.8.74-1.13 1.17-.23 0-.14.42-.44.33Z\"/><path d=\"M23.87 36.96c.11-.44.48-.67.76-.96.95-.96 1.9-1.92 2.93-2.8 1.07-.92 2.29-1.56 3.71-1.86 1.14-.24 2.29-.34 3.43-.54.03 0 .05-.05.08-.07.07-.06.15-.07.22 0h.65c-.69.27-1.43.29-2.15.44-1.25.27-2.49.51-3.68 1.05-1.46.66-2.49 1.84-3.71 2.79-.78.61-1.49 1.28-2.24 1.93Z\" style=\"fill:#cfcfcf;stroke-width:0\"/><path d=\"M9.7 30.75h.51c.15 0 .31 0 .45.04.55.12 1.12.18 1.65.39 1.44.36 2.79.99 4.12 1.63 1 .48 1.81 1.24 2.67 1.94.46.37.96.71 1.34 1.18.26.4.64.69.95 1.04.13.15.36.28.2.55-1.1-1.02-2.2-2.05-3.42-2.92-1.75-1.25-3.54-2.41-5.65-2.99-.5-.14-.97-.42-1.51-.42-.22-.04-.44-.07-.65-.11-.22-.11-.44-.21-.66-.32Z\" style=\"fill:#afafaf;stroke-width:0\"/><path d=\"M21.58 37.51c-.08-.41-.47-.57-.7-.86-.17-.22-.47-.34-.5-.67.3-.21.46.05.66.19.39.26.41.22.59-.2.24-.57.34-1.19.66-1.72.09-.14.12-.36.37-.34v.76c-.64.88-.69 1.87-.54 2.89.04.25 0 .29-.21.27l-.33-.33Z\" style=\"fill:#ababab;stroke-width:0\"/><path d=\"M22.24 7.52c-.06.4-.37.65-.54.98-.77 1.41-1.78 2.62-3.07 3.58-1.42 1.06-3.02 1.66-4.74 2.04-.74.17-1.48.34-2.23.42-.32-.03-.65.06-.97-.05h-.11s-.02-.05-.04-.07c.02-.05.06-.09.1-.12 1.21-.31 2.41-.64 3.61-.99 2.23-.66 4.22-1.71 5.84-3.42.27-.29.56-.57.84-.85.45-.5.77-1.1 1.31-1.53Z\" style=\"fill:#878787;stroke-width:0\"/><path d=\"M22.68 14.5c.18-.16.1-.37.1-.56V8.09c0-.19-.07-.4.11-.56.08.06.11.14.13.24.19 1.78.53 3.53.89 5.28.03.14.07.28.09.42q.16.88 1.05.89c.18 0 .37 0 .54.1.06.04.07.1.03.16h-2.94s-.04-.05-.03-.07c0-.02.02-.04.03-.04Z\" style=\"fill:#0c0c0c;stroke-width:0\"/><path d=\"M22.68 14.5v.11c-.51 0-1.01-.01-1.52-.02.7-.12.65-.76.73-1.21.29-1.52.64-3.03.69-4.58 0-.06.06-.13.09-.19v5.89Z\" style=\"fill:#444443;stroke-width:0\"/><path d=\"M28.02 14.59h-1.64c-.11-.1-.27 0-.38-.12-.62-1.25-1.14-2.54-1.72-3.81-.06-.14-.09-.28 0-.42.34-.07.38.24.47.41.48.95.97 1.91 1.45 2.86.18.35.31.75.79.81.25 0 .5 0 .76.01.09 0 .17.03.25.08.05.04.06.09.03.15Z\" style=\"fill:#212121;stroke-width:0\"/><path class=\"cls-1\" d=\"m20.28 14.5-.09.09h-.67c-.03-.05-.02-.09.02-.13.08-.06.18-.08.28-.11.42-.3.44-.8.62-1.22.34-.94.77-1.84 1.08-2.79.07-.21.06-.53.43-.53.13.17.05.33 0 .51-.39 1.29-.74 2.59-1.39 3.79-.08.14-.15.29-.27.4Z\"/><path d=\"M10.68 14.5h1.09c.59-.08 1.19-.2 1.79-.07.07.04.09.09.07.17-.85 0-1.7 0-2.55.01-.14 0-.29.03-.4-.1Z\" style=\"fill:#7e7e7e;stroke-width:0\"/><path d=\"M31.4 14.5h1.2v.09h-2.73c-.03-.07-.01-.12.05-.16.17-.1.37-.08.55-.09.31.02.65-.07.92.16Z\" style=\"fill:#383838;stroke-width:0\"/><path class=\"cls-5\" d=\"M13.63 14.59v-.09c.16-.16.36-.15.57-.16.66.06 1.33-.11 1.99.08.07.04.09.09.07.17h-2.62Z\"/><path class=\"cls-27\" d=\"M29.87 14.5v.09h-1.85v-.1c.06-.08.15-.11.24-.13.21-.03.43-.01.64-.02.24 0 .49 0 .73.02.09.02.18.05.24.13Z\"/><path class=\"cls-80\" d=\"M16.25 14.59v-.09c.21-.2.48-.14.73-.16.28.03.57-.04.85.09.06.04.08.09.06.16h-1.64Z\"/><path class=\"cls-18\" d=\"M17.88 14.59v-.09c.05-.07.13-.1.21-.11.16-.02.32-.02.48 0 .05.01.1.03.15.06.04.04.06.08.04.14h-.88Z\"/><path class=\"cls-16\" d=\"M18.76 14.58v-.08c.08-.1.19-.12.3-.13.11 0 .22 0 .33.03.05.02.1.05.13.1v.09h-.76Z\"/><path class=\"cls-53\" d=\"M26.06 14.5c.12 0 .25-.02.33.11h-.76v-.11c.15-.13.29-.11.44 0Z\"/><path class=\"cls-86\" d=\"M10.57 14.39v.11h-.55v-.11c.18-.08.36-.09.55 0Z\"/><path d=\"M25.51 33.58c-.24-.07-.36-.28-.5-.47-.06-.08-.11-.14-.22-.09-.09.05-.15.1-.09.21.21.41-.03.32-.28.25-.21-.06-.39-.02-.51.19-.06.11-.19.25-.3.2-.44-.24-.59.16-.84.35v-3.27c.12-.37.03-.75.05-1.12.05-.72.31-1.01 1.02-1.08.68-.07 1.26-.42 1.87-.66.73-.29 1.51-.31 2.24-.6.44-.18.72.22.6.75l-.12.33c-.13.11-.19.26-.23.42-.05.08 0 .19-.06.27-.06.1-.13.19-.18.3-.04.08-.08.16-.13.24-.06.12-.13.24-.21.35-.09.13-.15.28-.3.37-.13.17-.29.32-.33.55-.33.86-.8 1.65-1.32 2.41-.06.06-.12.1-.21.1Z\" style=\"fill:#e0e0df;stroke-width:0\"/><path d=\"M25.62 33.47c.49-.79.86-1.65 1.41-2.4.24.24.38-.08.57-.13 1.01-.25 2.03-.34 3.06-.43.76-.06 1.52-.18 2.27-.07.84.12 1.69-.05 2.51.19H35c-.88.13-1.77-.01-2.65.1-1.13.15-2.28.13-3.36.52-.82.3-1.56.75-2.18 1.38-.29.3-.67.48-.89.86-.04.07-.23.21-.3-.04Z\" style=\"fill:#c2c2c2;stroke-width:0\"/><path d=\"M27.36 30.52c.03-.17.09-.32.23-.43.72-.27 1.48-.32 2.23-.36.7-.03 1.41-.03 2.11 0 .06 0 .12.02.18.04.38.11.78.01 1.16.08.46.14.96.12 1.4.34.16.14.4.04.55.22-1.02-.1-2.04-.23-3.06-.3-1.03-.07-2.06-.06-3.09.11-.57.1-1.14.19-1.71.29Z\" style=\"fill:#aeaeaf;stroke-width:0\"/><path d=\"M28.57 28.24c-.05-.66-.38-.85-.95-.49-.24.15-.48.12-.72.17-.81.18-1.61.42-2.34.84-.16.09-.33.12-.52.13-.83.03-1.12.34-1.15 1.18-.01.3.11.62-.1.89v-2.29c.15-.28-.04-.59.11-.87v-.76c.09-.19.26-.23.45-.25.34-.02.63-.13.89-.35.08-.07.18-.14.29-.13 1.07.09 1.96-.64 3.01-.67.05 0 .12-.02.15-.06.42-.58 1.14-.44 1.69-.71.36-.17.66.05.94.26.16.28-.07.46-.17.68-.14.31-.34.58-.49.88-.07.13-.15.26-.24.39-.14.2-.23.42-.35.63a2.8 2.8 0 0 1-.41.5c-.03 0-.06.01-.09.02Z\" style=\"fill:#e1e1e1;stroke-width:0\"/><path d=\"M12.31 31.29c-.57-.19-1.19-.2-1.75-.44.13-.14.3-.12.46-.1 1.42.17 2.83.41 4.17.94 1.44.57 2.69 1.48 4.06 2.17.48.24 1 .28 1.52.34.18.02.08-.1.13-.14.65-.54 1.04-1.29 1.57-1.92.05-.06.1-.1.18-.08v1.2c-.27.59-.69 1.1-.95 1.7-.32.73-.74.81-1.47.48-.95-.43-1.65-1.17-2.46-1.77-.73-.54-1.52-.96-2.37-1.31-.85-.34-1.69-.72-2.58-.96-.17-.05-.37 0-.52-.11Z\" style=\"fill:#a5a5a5;stroke-width:0\"/><path class=\"cls-5\" d=\"M10.46 29.77c.29-.09.53-.26.76-.44h.11c.56.07 1.11.2 1.68.03.14-.04.28-.07.39.07.95.23 1.85.07 2.75-.26.31-.12.62-.22.89-.4 1.01-.64 2.1-1.13 3.16-1.67.67-.34 1.45-.31 2.15-.58.1-.04.21.01.31.07v.55c-.06.08-.02.24-.18.23-.77-.05-1.42.29-2.09.61-1.26.59-2.44 1.33-3.76 1.79-.82.28-1.65.42-2.51.22-1.09-.08-2.17-.15-3.25.06-.2.04-.39.09-.58-.02-.14-.23.09-.2.19-.27Z\"/><path class=\"cls-84\" d=\"M10.13 30.75v-.11h1.64c.91.1 1.83.08 2.74.18.16.02.33-.01.48.05 1.08.4 2.21.31 3.32.31.71 0 1.44-.06 2.14-.28.53-.17 1.09-.24 1.63-.4.18-.06.39-.11.57.04v.33c-.04.06-.06.15-.13.17-.97.29-1.83.85-2.81 1.13-1.07.3-2.12.14-3.14-.23-1.06-.38-2.15-.6-3.26-.76-.86-.18-1.73-.31-2.6-.37-.19-.01-.4.05-.58-.05Z\"/><path d=\"M22.66 26.6c-1.09.34-2.22.49-3.26 1.07-.94.52-1.87 1.1-2.87 1.5-.64.26-1.32.5-2.02.51-.36 0-.76-.05-1.1-.25.2-.11.4-.14.63-.07.39.12.75-.05 1.11-.09.72-.09 1.13-.68 1.79-.87.52-.16 1.08-.66 1.63-1 .84-.52 1.71-.94 2.74-.99.45-.02.9-.15 1.36-.13v.33Z\" style=\"fill:#777;stroke-width:0\"/><path d=\"M12.31 31.29c.65-.02 1.25.2 1.83.43 1.15.45 2.33.82 3.34 1.56.37.27.78.49 1.09.87.56.69 1.42.98 2.18 1.37.35.18.71-.21.82-.58.17-.56.64-.94.8-1.5.04-.13.16-.19.3-.2v.66c-.49.68-.68 1.49-.92 2.27-.11.36-.31.44-.68.18-.22-.15-.35-.44-.68-.39-.92-.74-1.84-1.48-2.75-2.23-.63-.52-1.35-.86-2.07-1.2-1.05-.5-2.14-.9-3.25-1.25Z\" style=\"fill:#a9a9a9;stroke-width:0\"/><path class=\"cls-93\" d=\"M22.66 27.59v.55c-.37.52-.96.74-1.49.93-.66.23-1.29.56-1.93.82-1.01.42-2.04.59-3.1.68-.72.06-1.44-.01-2.15-.11-.14-.02-.29-.03-.38-.17.03-.53.46-.15.66-.3.13 0 .27-.02.4.03.22.13.45.19.71.1.98-.07 1.92-.36 2.81-.71.63-.25 1.26-.52 1.86-.85.71-.4 1.46-.75 2.25-.99a.44.44 0 0 1 .37.03Z\"/><path d=\"M22.66 27.59c-.93.28-1.8.7-2.66 1.16-.67.36-1.39.63-2.12.89-.82.29-1.64.52-2.51.57-.25.13-.45.03-.65-.11h-.44c-.08-.05-.17-.1-.11-.22.74.17 1.45.09 2.17-.15.54-.18 1.07-.39 1.57-.66.94-.5 1.89-.98 2.85-1.45.48-.24 1.09-.6 1.74-.34.03.01.11-.08.16-.12v.43Z\" style=\"fill:#7c7c7c;stroke-width:0\"/><path class=\"cls-25\" d=\"M13.4 31.07c1.06.07 2.09.31 3.09.68 1.57.58 3.09.6 4.56-.31.5-.31 1.09-.35 1.61-.58v.32c-.23.24-.51.4-.79.56-.23.14-.5.27-.65.48-.45.68-1.13.67-1.82.67-.65 0-1.28-.05-1.91-.24a.471.471 0 0 1-.15-.06c-.99-.58-2.07-.91-3.17-1.21-.27-.07-.6 0-.77-.32Z\"/><path d=\"M17.44 32.6h.11c.76.37 1.56.65 2.39.84.25.06.45.02.66-.13.52-.37.99-.78 1.4-1.27.16-.19.33-.45.67-.31v.33c-.47.7-.99 1.36-1.53 2.01-.35.42-.75.27-1.04.21-.76-.17-1.5-.5-2.14-.96-.76-.55-1.58-.94-2.43-1.31-.1-.04-.18-.12-.26-.18.17-.16.32-.04.49 0 .59.19 1.15.45 1.69.75Z\" style=\"fill:#a2a2a2;stroke-width:0\"/><path class=\"cls-79\" d=\"M22.66 30.53c-.79.18-1.58.34-2.35.57-.32.09-.69.09-1.03.16-.92.17-1.84-.07-2.75.12-.3.06-.51-.15-.77-.2-1.22-.23-2.45-.38-3.7-.42-.11 0-.22-.01-.29-.11h1.96c.3-.07.62-.07.92-.02 2.55.46 5.02.04 7.49-.58.17-.04.34-.14.52-.05v.54Z\"/><path class=\"cls-88\" d=\"M22.66 31.73c-.24.05-.42.2-.56.39-.41.56-.99.94-1.5 1.39-.37.33-.74.04-1.07-.05-.69-.2-1.45-.26-1.98-.86.06-.1.15-.1.23-.06.65.39 1.37.2 2.06.2.44 0 .9-.11 1.26-.55.39-.48.96-.81 1.57-1.02v.55Z\"/><path class=\"cls-36\" d=\"M16.24 30.42c.99-.08 1.94-.28 2.89-.63.68-.25 1.27-.68 2-.84.54-.11 1.02-.54 1.53-.82v.76c-.18.4-.59.44-.93.59-1.12.5-2.23 1.03-3.48 1.1-.05.01-.11.02-.16.02-.51.07-1.02.07-1.53.06-.14-.04-.32-.02-.31-.24Z\"/><path class=\"cls-83\" d=\"M22.66 25.29c-1.48 0-2.97-.17-4.4.34-.19.07-.25-.1-.38-.12.04-.4.42-.3.64-.44.22-.11.45-.22.67-.33 1.04-.1 2.08-.28 3.13-.14.13.02.25.04.35.14v.55Z\"/><path class=\"cls-86\" d=\"M22.66 29.98c-1.33.57-2.76.67-4.17.88-1.54.23-3.05.02-4.57-.13-.06 0-.12-.06-.18-.1.48-.3.98-.07 1.47-.06 1 .02 2 .16 3-.05 1.49-.12 2.95-.4 4.3-1.09.05-.02.11-.01.16 0v.54Z\"/><path class=\"cls-20\" d=\"M22.66 29.44c-.75.52-1.61.8-2.5.97-.64.12-1.3.15-1.96.12.34-.24.76-.13 1.13-.24 1.15-.35 2.24-.87 3.32-1.39v.54Z\"/><path d=\"M22.66 24.75c-.89.02-1.79-.16-2.68.09-.24.07-.53-.06-.8-.09.38-.26.75-.53 1.2-.66.65.26 1.34.19 2.01.22.09 0 .18-.03.26.02v.43Z\" style=\"fill:#676868;stroke-width:0\"/><path d=\"M22.66 24.31c-.38.18-.76.2-1.18.07-.27-.08-.58-.05-.87-.02-.29.04-.32-.06-.23-.29v-.1c.18-.07.36-.15.54-.22.58-.04 1.16.12 1.74.12v.44Z\" style=\"fill:#656565;stroke-width:0\"/><path d=\"M22.66 23.88c-.6.26-1.16.02-1.74-.12.11-.11.23-.21.34-.32.14-.07.29-.14.43-.21.32.08.66.04.96.21v.44Z\" style=\"fill:#606060;stroke-width:0\"/><path d=\"M22.66 23.44c-.34.02-.68.05-.96-.21.34-.11.58-.42.96-.45v.66Z\" style=\"fill:#5a5a5a;stroke-width:0\"/><path class=\"cls-96\" d=\"M22.89 27.8c-.05.29.11.6-.11.87v-.87h.11Z\"/><path d=\"M26.06 14.5h-.99c-.24-.26-.35-.58-.46-.91-.45-1.45-.88-2.9-1.37-4.33-.17-.49-.19-1.02-.35-1.52v-.55c.19-.04.16.16.26.23.15.24.31.48.38.77.14.59.52 1.08.71 1.66.04.13.14.25.07.4.28.87.69 1.68 1.04 2.52.24.57.61 1.1.7 1.73Z\" style=\"fill:#181818;stroke-width:0\"/><path class=\"cls-32\" d=\"M23.11 7.41c-.07-.07-.14-.15-.21-.22 0-.09.01-.17.11-.21.07.15.14.29.22.44-.04.05-.07.05-.11 0Z\"/><path d=\"M10.46 29.77c-.07.07-.15.14-.22.21-.14.29-.44.34-.69.45-.06.03-.13.05-.19.09h-.21v-2.84c.46.67.73 1.47 1.31 2.07Z\" style=\"fill:#575757;stroke-width:0\"/><path d=\"M9.36 30.52s.08-.07.12-.1c1.21-.53 2.49-.37 3.75-.36.15 0 .29.03.4.15.86.25 1.74.25 2.62.22.08.13.21.1.33.11 0 .2-.15.16-.27.17-.86 0-1.71-.12-2.57-.17H9.37Z\" style=\"fill:#838384;stroke-width:0\"/><path class=\"cls-20\" d=\"M13.73 30.53c.78-.07 1.55.1 2.33.11.17 0 .37.06.51-.11h1.64c-.26.39-.66.19-1 .21-1.16.08-2.32-.1-3.47-.1v-.11Z\"/><path d=\"M10.57 14.39h-.55c.47-.32 1.12-.21 1.53-.65.18-.04.36-.07.55-.11.35.04.65-.17.98-.22.12.29-.1.34-.29.39-.74.2-1.48.39-2.22.59Z\" style=\"fill:#8e8e8e;stroke-width:0\"/><path class=\"cls-27\" d=\"M23.11 7.41h.11l.11.11c.19.28.47.5.63.81.06.16.16.3.27.42l.09.12c.48.74 1.01 1.45 1.43 2.22.46.95 1.15 1.75 1.69 2.65.15.24.39.44.36.76h-.87c-.55-.91-1.17-1.78-1.62-2.74-.58-1.22-1.36-2.33-1.87-3.59-.15-.24-.27-.49-.33-.76Z\"/><path class=\"cls-32\" d=\"M23.87 8.39c-.14-.32-.47-.52-.55-.87h.11c.17.26.39.48.65.65.21.19.38.42.55.65.62.5 1.12 1.11 1.6 1.73.42.68 1.08 1.14 1.61 1.72.54.6 1.1 1.18 1.68 1.75.12.12.28.26.13.46h-.76c-.26-.17-.47-.39-.67-.63-1.34-1.68-2.8-3.26-4.02-5.04-.1-.16-.23-.29-.33-.44Z\"/><path d=\"M25.62 33.47c.12.11.24.01.27-.06.25-.58.79-.89 1.24-1.26 1.16-.95 2.51-1.36 4.02-1.42 1.28-.05 2.56-.09 3.85-.09v.11h-.22c-1.45-.06-2.89.03-4.29.35-1.41.32-2.7.93-3.71 2.03-.74.81-1.45 1.63-2.15 2.47-.05.06-.11.16-.21.05.36-.69.73-1.38 1.09-2.07l.11-.11Z\" style=\"fill:#c5c4c4;stroke-width:0\"/><path class=\"cls-96\" d=\"M30.29 25.18c-.45-.21-.9-.39-1.33.06-.1.1-.24.01-.36-.03s-.29-.07-.35.05c-.4.75-1.21.53-1.82.77-.27.11-.57.15-.85.3-.27.14-.57.45-.92.09-.03-.03-.17-.02-.2.02-.4.54-1.04.43-1.57.6 0-.54.01-1.09 0-1.63-.01-.47.23-.74.65-.87.51-.16 1.02-.25 1.55-.33.43-.06 1.04-.01 1.44-.49.26-.31.87-.07 1.1-.55.71.46 1.29-.34 1.99-.19.37.08.46-.47.91-.47.38 0 .79-.17 1.27-.23-.25.49-.48.94-.71 1.4.02.21-.13.35-.21.53.05.37-.27.58-.39.87-.05.06-.11.1-.2.11Z\"/><path class=\"cls-41\" d=\"M18.51 25.07c-.21.15-.43.29-.64.44-.4.22-.8.43-1.2.65-.33-.02-.65-.14-.66-.5-.02-1-.77-1.54-1.32-2.21-.26-.32-.64-.6-.53-1.1.43.29.71.74 1.15 1.04.77.52 1.38.36 2.05-.14.83-.62 1.34-1.5 1.92-2.32.51.19.55.31.25.78-.66 1-.83 2.17-1.15 3.29 0 .01.08.05.12.07Z\"/><path class=\"cls-41\" d=\"M14.17 22.35c.26.74.82 1.26 1.35 1.8.28.28.5.53.51.95 0 .46.12.9.64 1.06-.22.12-.43.23-.65.35-.21.32-.49.52-.9.48-.3-.19-.24-.49-.16-.73.23-.69.06-1.3-.27-1.92-.33-.63-.65-1.24-1.04-1.84-.42-.64-1.06-.77-1.7-.97-.24-.07-.37.06-.35.33.06.82.22 1.61.45 2.39.33 1.11.63 2.22 1.09 3.28.08.18.12.38.04.58-.07.14-.17.22-.32.22-.35-.46-.35-1.04-.54-1.55-.4-1.11-.85-2.2-1.08-3.36-.03-.14-.01-.29-.02-.43-.16-.72-.23-1.45-.42-2.17-.06-.23-.04-.48.17-.65.22-.18.43-.03.58.11.61.53 1.4.79 2.03 1.3.21.17.36.4.48.65l.11.11Z\"/><path class=\"cls-41\" d=\"M14.06 22.24c-.43-.58-1.01-.94-1.69-1.19-.36-.13-.55-.57-.95-.68-.13-.03-.21-.26-.37-.11-.14.13-.17.32-.14.51.07.44.12.89.23 1.33.08.31.09.61.09.91-.3-.8-.36-1.66-.59-2.47-.15-.54-.32-1.05-.1-1.63.2.08.26.25.36.39.59.79 1.27 1.43 2.22 1.8.48.19.84.6.95 1.15Z\"/><path d=\"M13.19 28.89c.39-.2.85.08 1.24-.2.63-.46 1.3-.87 1.93-1.34.58-.44 1.15-.96 1.82-1.17.53-.16 1.06-.41 1.65-.44.91-.05 1.82-.17 2.73-.11-.01.1.05.28-.1.26-1.22-.13-2.38.23-3.56.41-.31.05-.39.29-.6.39-.64.31-1.17.82-1.77 1.15-.45.25-.83.75-1.45.72-.2-.01-.14.31-.36.4-.54.23-1.03.1-1.53-.07Z\" style=\"fill:#717171;stroke-width:0\"/><path class=\"cls-48\" d=\"M13.19 28.13c-.45-.91-.7-1.9-1.01-2.86-.37-1.13-.67-2.31-.74-3.52-.02-.28.09-.46.37-.38.7.2 1.42.28 1.93.99.6.83.95 1.77 1.44 2.64.24.42-.04.84-.09 1.26-.03.23-.13.46.07.66.04.06.07.15.02.19-.57.44-1.13.89-1.88 1.01h-.1Z\"/><path class=\"cls-83\" d=\"M13.3 28.14c.53-.3 1.06-.61 1.58-.91.12-.07.27-.12.28-.3.33-.05.58-.27.87-.42.12.67-.47.78-.84 1.04-.29.21-.6.34-.84.65-.32.41-.85.35-1.05-.05Z\"/><path class=\"cls-45\" d=\"M26.16 10.57c-.53-.56-1.08-1.11-1.53-1.74.2-.02.34.07.48.2 1.17 1.07 2.33 2.16 3.53 3.19.68.58 1.44 1.08 2.17 1.61.25.18.52.33.58.67h-.98c-.72-.41-1.19-1.1-1.83-1.6-.87-.7-1.67-1.49-2.43-2.32Zm-1.52-1.75c-.23-.18-.49-.33-.55-.65.37.06.48.34.55.65Z\"/><path class=\"cls-86\" d=\"M10.57 14.39c.66-.32 1.39-.41 2.08-.65.19-.07.4-.08.43-.33 1.51-.37 2.91-1.02 4.27-1.76 1.12-.61 2.17-1.33 3.04-2.27.15-.16.31-.31.54-.33-.27.59-.78.98-1.22 1.41-.98.97-2.13 1.73-3.4 2.27-.97.41-1.97.73-2.99 1.01-.91.25-1.81.54-2.75.66Z\"/><path d=\"M20.28 14.5c.11-.59.51-1.06.68-1.63.31-1.02.78-2 .95-3.06-.17-.5.11-.94.24-1.38.09-.3.21-.6.3-.91 0-.04 0-.07.01-.11.17.21.11.45.07.67-.38 2.02-.89 4-1.57 5.93-.13.38-.31.54-.69.48Z\" style=\"fill:#5d5d5d;stroke-width:0\"/><path class=\"cls-36\" d=\"M14.17 14.5h-2.39c.89-.26 1.8-.48 2.7-.68 1.36-.3 2.57-.86 3.73-1.59 1.49-.94 2.43-2.39 3.5-3.73v.33c0 .08-.03.15-.07.22-.76 1.17-1.54 2.32-2.6 3.26-.93.82-1.96 1.46-3.18 1.81-.55.16-1.12.23-1.67.38Z\"/><path d=\"M22.45 7.51c-.06.79-.4 1.52-.54 2.29-.38.48-.36 1.11-.65 1.63-.32.56-.37 1.23-.76 1.75-.26.42-.36.91-.66 1.31h-.44c-.16-.24.02-.41.13-.58.21-.34.42-.67.58-1.04.2-.24.34-.51.4-.82.47-.9.84-1.83 1.17-2.78.04-.15.09-.3.16-.45.1-.21.2-.43.29-.65.11-.22.22-.44.32-.66Z\" style=\"fill:#676767;stroke-width:0\"/><path class=\"cls-7\" d=\"M22.13 8.17c.03.25-.13.44-.22.65-.02.01-.04.03-.06.04-.02-.01-.04-.03-.05-.04.05-.25.14-.47.33-.65Zm-.55.76.11-.11h.11c.13.18-.05.3-.1.45-.06.02-.11.01-.15-.03-.04-.11-.04-.22.03-.32Z\"/><path d=\"M30.41 25.07c.15-.29.31-.58.46-.87.16 0 .29.09.35.23.46.96 1.1 1.82 1.54 2.79.19.42.53.78.7 1.22.06.16.21.33-.03.47-.49.07-.77-.36-1.18-.48-.15-.11-.31-.19-.37-.38-.31-.94-.8-1.8-1.29-2.65-.06-.11-.17-.19-.18-.32Z\" style=\"fill:#191919;stroke-width:0\"/><path d=\"M32.29 28.3c.38.2.77.4 1.15.6.13.1.25.2.38.3-.57.09-1-.31-1.51-.45-1.08-.31-2.16-.51-3.28-.58-.14 0-.24.14-.37.04.06-.21.16-.4.32-.56.96.02 1.89.18 2.8.5.17.06.32.16.51.15Z\" style=\"fill:#8a8989;stroke-width:0\"/><path class=\"cls-88\" d=\"M27.9 29.54c.01-.15.09-.26.2-.34 1.64-.29 3.25-.08 4.84.35.14.04.29.02.41.11.48 0 .89.24 1.31.44-.48.15-.91-.15-1.38-.16-.06 0-.12-.01-.18-.03-1.04-.08-2.07-.35-3.12-.31-.61.02-1.23-.05-1.83.08-.09.02-.27.09-.26-.14Z\"/><path class=\"cls-25\" d=\"M33.36 29.65c-.62-.11-1.24-.21-1.86-.33-1.05-.2-2.11-.18-3.16-.04-.1.01-.17 0-.23-.09l.12-.21c.58.01 1.16-.01 1.74-.06.75-.07 1.45.22 2.17.36.42.08.86.11 1.23.38Z\"/><path class=\"cls-72\" d=\"M33.25 29.87c.49-.06.93.24 1.42.22v.11c-.49.02-.96-.05-1.42-.22-.04-.02-.05-.05-.04-.07.01-.02.02-.04.04-.04Z\"/><path class=\"cls-88\" d=\"M17.44 32.6c-.15.18-.28.08-.41-.03-.51-.44-1.13-.6-1.77-.73-1.53-.51-3.08-.88-4.69-.98-.15-.02-.32.05-.44-.11 1.1-.03 2.19.13 3.27.33.41.11.82.23 1.23.33.83.19 1.6.51 2.38.83.17.07.4.11.42.37Z\"/><path class=\"cls-53\" d=\"M22.89 7.73c.46 1.13.74 2.32 1.14 3.47.35 1 .56 2.05 1.01 3.02.04.08.02.18.03.27-1.05 0-1-.01-1.22-1.01-.3-1.39-.56-2.79-.78-4.2-.08-.51-.12-1.04-.18-1.56Z\"/><path class=\"cls-26\" d=\"M23.44 8.17c.68 1.12 1.31 2.26 1.92 3.42.45.85.96 1.67 1.45 2.5.08.13.13.26.12.4-.55-.06-.66-.54-.87-.92-.61-1.1-1.04-2.28-1.75-3.33-.29-.69-.76-1.31-.87-2.07Z\"/><path d=\"M27.8 14.5c-.45-.68-.9-1.35-1.34-2.03-.29-.45-.7-.81-.84-1.35.23-.07.34.1.44.24.7.97 1.44 1.91 2.13 2.89.05.07.09.16.05.25h-.44Z\" style=\"fill:#333332;stroke-width:0\"/><path class=\"cls-16\" d=\"M19.84 14.49c.11-.49.26-.96.66-1.31-.11.49-.16 1.01-.66 1.31Z\"/><path class=\"cls-38\" d=\"M26.16 10.57c.36.02.49.36.69.56.85.82 1.75 1.58 2.62 2.37.33.3.73.57.95 1h-.77c-.02-.07-.02-.16-.06-.2-.86-.89-1.75-1.75-2.59-2.67-.3-.33-.78-.53-.84-1.06Z\"/><path class=\"cls-93\" d=\"M21.58 8.93v.33c.09.1.04.2-.02.29-.35.4-.54.9-.83 1.34-.58.9-1.17 1.78-2.05 2.44-.55.41-1.01.94-1.69 1.17h-2.83c.54-.33 1.18-.36 1.77-.54 1.28-.39 2.31-1.12 3.27-2.01.95-.88 1.6-2 2.38-3.01Z\"/><path class=\"cls-44\" d=\"m28.24 14.5-2.19-2.97c-.12-.16-.24-.31-.42-.41-.36-.56-.73-1.12-1.08-1.69-.12-.19-.31-.36-.33-.6.76.72 1.31 1.61 2 2.39.82.94 1.63 1.91 2.44 2.87.1.12.17.27.26.41h-.65Z\"/><path class=\"cls-7\" d=\"M17 14.5c.58-.45 1.16-.9 1.73-1.36.77-.62 1.33-1.43 1.87-2.25.3-.46.47-1.01.88-1.4.15.26-.07.45-.13.67-.6 1.32-1.34 2.54-2.31 3.62-.27.3-.59.52-.93.72h-1.09Z\"/><path class=\"cls-80\" d=\"M18.09 14.5c.22-.48.72-.66 1.05-1.05.86-1.01 1.46-2.18 2.11-3.31.14.67-.38 1.12-.6 1.66-.05.13-.18.23-.18.38a.54.54 0 0 1-.14.27c-.18.14-.27.32-.33.53-.06.14-.14.26-.23.38-.17.18-.36.35-.46.59-.14.3-.41.42-.69.55h-.55Z\"/><path class=\"cls-22\" d=\"M18.64 14.5c.49-.28.61-.91 1.09-1.2.07.56-.39.83-.65 1.2h-.44Z\"/><path class=\"cls-18\" d=\"M19.08 14.5c.1-.46.55-.74.65-1.2.07-.11.15-.22.22-.33.04-.05.08-.11.15-.13.02 0 .04.02.07.02.05.45-.31.72-.49 1.07-.09.19-.25.34-.27.56h-.33Z\"/><path class=\"cls-72\" d=\"M27.9 29.54c.84-.11 1.69-.16 2.53-.09.91.08 1.83.11 2.71.42-.36.13-.73.01-1.09 0-1.24-.18-2.47-.14-3.7.04-.19.03-.47.19-.56-.17.04-.07.08-.14.11-.21Z\"/><path d=\"M27.79 29.75c.43.24.87.05 1.29-.01 1.01-.14 2-.14 2.98.14-1.15 0-2.31-.04-3.46.11-.34.04-.66.24-1.02.11.07-.11.14-.23.21-.34Zm4.26.12c.36-.14.73.08 1.09 0h.11v.11c-.4-.06-.82.12-1.2-.11Z\" style=\"fill:#a9a8a8;stroke-width:0\"/><path d=\"M30.41 25.07c.25.13.4.35.52.6.32.65.65 1.29.96 1.94.06.12.24.26.03.42-.31.14-.49-.14-.73-.24-.28-.12-.53-.31-.8-.45-.26-.24-.67-.28-.86-.62.15-.56.61-.97.75-1.53.04-.04.08-.07.12-.11Z\" style=\"fill:#141414;stroke-width:0\"/><path class=\"cls-36\" d=\"M30.42 27.22c.5.27 1.01.53 1.51.8.12.09.24.19.36.28-.08.17-.19.11-.32.06-.9-.33-1.83-.48-2.77-.58-.08 0-.15-.08-.22-.13.08-.23.18-.45.35-.63.31.09.63.14.93.25.07.02.2.2.17-.06Z\"/><path d=\"M30.42 27.22c0 .07.01.14.02.2-.37-.14-.84.01-1.11-.39.05-.12.08-.26.21-.33.31.14.63.28.88.51Z\" style=\"fill:#7b7a7a;stroke-width:0\"/><path d=\"M13.62 30.2c-1.01.03-2.02-.06-3.03.04-.38.04-.72.26-1.11.18.21-.22.51-.29.76-.44 1.16-.17 2.33-.27 3.51-.17.14.01.28.04.42.06.04.07.07.15.11.22-.18.24-.47-.15-.65.11Zm1.09-.11c.22.04.42.15.65.11-.25.18-.48.17-.65-.11Z\" style=\"fill:#7d7c7d;stroke-width:0\"/><path class=\"cls-44\" d=\"M23.87 8.39c.17.1.32.22.33.44-.17-.1-.32-.22-.33-.44Z\"/><path class=\"cls-46\" d=\"M12.53 23.84c0-.16 0-.28.02-.38.09-.34.3-.6.65-.65.32-.04.43.29.49.5.34 1.18.72 2.37.11 3.58-.07.14-.1.34-.31.32-.17-.02-.21-.19-.26-.32-.23-.6-.39-1.22-.41-1.86-.01-.44-.38-.79-.29-1.19Z\"/><path class=\"cls-22\" d=\"M20.38 12.21c.1-.52.51-.88.69-1.36.09-.23.22-.45.19-.71.07-.22.15-.44.22-.65.09-.05.11-.13.11-.22h.11c.04-.05.07-.05.11 0-.29.99-.68 1.94-1.2 2.84-.06.06-.09.18-.22.11Z\"/><path class=\"cls-18\" d=\"M20.38 12.21c.07-.04.15-.07.22-.11-.03.32-.08.63-.44.76-.08-.17.01-.31.11-.44.04-.07.07-.15.11-.22Z\"/><path class=\"cls-80\" d=\"M21.8 9.26h-.11c.04-.15.07-.29.11-.44h.11c.02.16-.04.3-.11.44Z\"/><path class=\"cls-22\" d=\"M20.27 12.42c.02.16-.03.3-.11.44-.07.04-.15.07-.22.11.02-.24.02-.48.33-.55Z\"/></g></svg>',withExternalLayout:true})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-ycjnx\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1djohac\",\"data-framer-name\":\"Graphic\",fill:\"black\",intrinsicHeight:24,intrinsicWidth:24,svg:'<svg viewBox=\"0 0 24 24\" xmlns=\"http://www.w3.org/2000/svg\"><path d=\"M4 0h16v8h-8zm0 8h8l8 8H4zm0 8h8v8z\"/></svg>',withExternalLayout:true})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-7wkdbg\",\"data-framer-name\":\"Wrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yt5k33\",\"data-framer-name\":\"SVG Path\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ofnu4y-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e7Y3avK97\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"var(--token-4605477d-d65b-439a-9764-4f5d6d183dd9, rgb(123, 123, 121))\",direction:\"default\",height:\"100%\",id:\"e7Y3avK97\",layer:[],layoutId:\"e7Y3avK97\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/6NkkVQcDWJSAuhcggjC7jf46HU.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-se1vy1-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eiskQtzEG\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"var(--token-4605477d-d65b-439a-9764-4f5d6d183dd9, rgb(123, 123, 121))\",direction:\"reverse\",height:\"100%\",id:\"eiskQtzEG\",layer:[],layoutId:\"eiskQtzEG\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/Rq6dk3tZvSFdOdWVUHCqR9bbinw.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-8kqejq-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"RT0GzY345\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"var(--token-4605477d-d65b-439a-9764-4f5d6d183dd9, rgb(123, 123, 121))\",direction:\"reverse\",height:\"100%\",id:\"RT0GzY345\",layer:[],layoutId:\"RT0GzY345\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/tY4igrqHQkt9DtMR5Wlz8d3iAA.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-vuordy-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"e3kBY_sy2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"var(--token-4605477d-d65b-439a-9764-4f5d6d183dd9, rgb(123, 123, 121))\",direction:\"reverse\",height:\"100%\",id:\"e3kBY_sy2\",layer:[],layoutId:\"e3kBY_sy2\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/juNnTJb4XhIwb2Zm1MqO2UMjhM.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-hgyyj3-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Iu8yXQwV2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"var(--token-4605477d-d65b-439a-9764-4f5d6d183dd9, rgb(123, 123, 121))\",direction:\"reverse\",height:\"100%\",id:\"Iu8yXQwV2\",layer:[],layoutId:\"Iu8yXQwV2\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/UAjP2h0lT2nZg3OKnZgPEnLtc.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-4j6m4t-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"lOaHfGVp1\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SVGPathShimmer,{baseColor:\"var(--token-4605477d-d65b-439a-9764-4f5d6d183dd9, rgb(123, 123, 121))\",direction:\"reverse\",height:\"100%\",id:\"lOaHfGVp1\",layer:[],layoutId:\"lOaHfGVp1\",length:30,loopDelay:.3,loopMode:\"loop\",mode:\"svg\",replay:true,shimmerColor:\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0))\",style:{height:\"100%\",width:\"100%\"},svgFile:\"https://framerusercontent.com/assets/cQtObXMqoOENBJFNHvGo8HO2w.svg\",svgType:\"file\",transition:{delay:0,duration:2,ease:[.95,.04,.44,1],type:\"tween\"},trigger:\"appear\",width:\"100%\"})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-3wj6il\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1piafm9\",\"data-framer-name\":\"Graphic\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 29 29\"><path d=\"M 4.634 18.34 L 3.438 19.028 C 3.105 19.22 2.9 19.571 2.9 19.95 C 2.9 20.329 3.105 20.68 3.438 20.872 L 13.95 26.928 C 14.29 27.124 14.71 27.124 15.05 26.928 L 25.562 20.872 C 25.895 20.68 26.1 20.329 26.1 19.95 C 26.1 19.571 25.895 19.22 25.562 19.028 L 24.366 18.338 L 16.15 23.072 C 15.131 23.659 13.869 23.659 12.85 23.072 Z\" fill=\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 4.634 12.64 L 3.438 13.328 C 3.105 13.52 2.9 13.871 2.9 14.25 C 2.9 14.629 3.105 14.98 3.438 15.172 L 13.95 21.228 C 14.29 21.424 14.71 21.424 15.05 21.228 L 25.562 15.172 C 25.895 14.98 26.1 14.629 26.1 14.25 C 26.1 13.871 25.895 13.52 25.562 13.328 L 24.366 12.638 L 16.15 17.372 C 15.131 17.959 13.869 17.959 12.85 17.372 Z\" fill=\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path><path d=\"M 15.051 1.572 C 14.711 1.375 14.289 1.375 13.949 1.572 L 3.436 7.628 C 3.104 7.82 2.899 8.171 2.899 8.55 C 2.899 8.929 3.104 9.28 3.436 9.472 L 13.949 15.528 C 14.289 15.725 14.711 15.725 15.051 15.528 L 25.563 9.472 C 25.896 9.28 26.101 8.929 26.101 8.55 C 26.101 8.171 25.896 7.82 25.563 7.628 Z\" fill=\"var(--token-9e48314a-93c9-4fbb-8dc2-bebe93a6888f, rgb(0, 0, 0)) /* {&quot;name&quot;:&quot;Black&quot;} */\"></path></svg>',svgContentId:11966996778,withExternalLayout:true})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-dcymjy\",\"data-framer-name\":\"What i do container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-410vi4\",\"data-framer-name\":\"What i do\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ys7ktt\",\"data-framer-name\":\"Section\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1i03l42\",\"data-styles-preset\":\"WPXWFUv2R\",children:\"What I Do Best\"})}),className:\"framer-18uuwf5\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Bridging strategy, design, and technology to craft seamless user experiences.\"})}),className:\"framer-fs0pft\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ia24je\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-15pdsbf\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1mkwvea\",\"data-framer-name\":\"Icon\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45 45\"><path d=\"M 0.5 4 C 0.5 2.067 2.067 0.5 4 0.5 L 41 0.5 C 42.933 0.5 44.5 2.067 44.5 4 L 44.5 41 C 44.5 42.933 42.933 44.5 41 44.5 L 4 44.5 C 2.067 44.5 0.5 42.933 0.5 41 Z\" fill=\"var(--token-430e9288-29bb-46f8-9063-5a1ab3753fda, rgb(255, 255, 255)) /* {&quot;name&quot;:&quot;White&quot;} */\"></path><path d=\"M 0.5 4 C 0.5 2.067 2.067 0.5 4 0.5 L 41 0.5 C 42.933 0.5 44.5 2.067 44.5 4 L 44.5 41 C 44.5 42.933 42.933 44.5 41 44.5 L 4 44.5 C 2.067 44.5 0.5 42.933 0.5 41 Z\" fill=\"transparent\" stroke=\"var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, rgb(208, 213, 221)) /* {&quot;name&quot;:&quot;Border&quot;} */\" stroke-miterlimit=\"10\" stroke-dasharray=\"\"></path><path d=\"M 13.453 17.547 L 21.074 20.547 C 21.991 20.906 23.009 20.906 23.925 20.547 L 31.543 17.567 C 31.914 17.424 32.161 17.071 32.169 16.674 C 32.176 16.277 31.943 15.915 31.578 15.758 L 24.062 12.469 C 23.066 12.034 21.933 12.034 20.937 12.469 L 13.422 15.738 C 13.057 15.895 12.822 16.256 12.829 16.653 C 12.836 17.05 13.083 17.403 13.453 17.547 Z\" fill=\"var(--token-f7bdbb8a-187c-4562-a0e6-d8fd051e8d54, rgb(52, 52, 51)) /* {&quot;name&quot;:&quot;icon&quot;} */\"></path><path d=\"M 13.453 23.406 L 21.074 26.406 C 21.991 26.766 23.009 26.766 23.925 26.406 L 31.547 23.426 C 31.917 23.282 32.164 22.929 32.17 22.532 C 32.177 22.135 31.943 21.773 31.578 21.617 L 27.672 19.918 L 24.21 21.273 C 23.111 21.705 21.888 21.705 20.788 21.273 L 17.328 19.918 L 13.421 21.617 C 13.069 21.779 12.845 22.134 12.852 22.521 C 12.859 22.91 13.094 23.257 13.453 23.406 Z\" fill=\"var(--token-f7bdbb8a-187c-4562-a0e6-d8fd051e8d54, rgb(52, 52, 51)) /* {&quot;name&quot;:&quot;icon&quot;} */\"></path><path d=\"M 13.453 29.656 L 21.074 32.656 C 21.991 33.016 23.009 33.016 23.925 32.656 L 31.547 29.676 C 31.917 29.532 32.164 29.179 32.17 28.782 C 32.177 28.385 31.943 28.023 31.578 27.867 L 27.187 25.945 L 24.199 27.117 C 23.099 27.549 21.877 27.549 20.777 27.117 L 17.789 25.945 L 13.421 27.848 C 13.056 28.004 12.822 28.365 12.829 28.763 C 12.836 29.159 13.083 29.513 13.453 29.656 Z\" fill=\"var(--token-f7bdbb8a-187c-4562-a0e6-d8fd051e8d54, rgb(52, 52, 51)) /* {&quot;name&quot;:&quot;icon&quot;} */\"></path></svg>',svgContentId:11911247117,withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-193ovc6\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Enterprise UX & Product Design\"})}),className:\"framer-nmqxjk\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Building intuitive, scalable enterprise solutions that boost efficiency and productivity.\"})}),className:\"framer-555xdv\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1vr4zjz\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-yadkm5\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:46,svg:'<svg width=\"46\" height=\"45\" viewBox=\"0 0 46 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M0.833374 4C0.833374 2.067 2.40038 0.5 4.33337 0.5H41.3334C43.2664 0.5 44.8334 2.067 44.8334 4V41C44.8334 42.933 43.2664 44.5 41.3334 44.5H4.33337C2.40038 44.5 0.833374 42.933 0.833374 41V4Z\" fill=\"white\"/>\\n<path d=\"M0.833374 4C0.833374 2.067 2.40038 0.5 4.33337 0.5H41.3334C43.2664 0.5 44.8334 2.067 44.8334 4V41C44.8334 42.933 43.2664 44.5 41.3334 44.5H4.33337C2.40038 44.5 0.833374 42.933 0.833374 41V4Z\" stroke=\"#DFDFDA\"/>\\n<path d=\"M33.7709 29.5312V31.0937C33.7709 32.3877 32.7211 33.4375 31.4271 33.4375H29.8646C28.5707 33.4375 27.5209 32.3877 27.5209 31.0937V29.5312C27.5209 28.2373 28.5707 27.1875 29.8646 27.1875V26.4062C29.8646 26.1992 29.7826 26 29.6361 25.8535C29.4896 25.707 29.2904 25.625 29.0834 25.625H23.6146V27.1875C24.9086 27.1875 25.9584 28.2373 25.9584 29.5313V31.0938C25.9584 32.3877 24.9086 33.4375 23.6146 33.4375H22.0521C20.7582 33.4375 19.7084 32.3877 19.7084 31.0938V29.5313C19.7084 28.2373 20.7582 27.1875 22.0521 27.1875V25.625H16.5834C16.1517 25.625 15.8021 25.9746 15.8021 26.4063V27.1875C17.0961 27.1875 18.1459 28.2373 18.1459 29.5313V31.0938C18.1459 32.3877 17.0961 33.4375 15.8021 33.4375H14.2396C12.9457 33.4375 11.8959 32.3877 11.8959 31.0938V29.5313C11.8959 28.2373 12.9457 27.1875 14.2396 27.1875V26.4063C14.2396 25.1123 15.2894 24.0625 16.5834 24.0625H22.0521V21.7188H18.1459C16.8519 21.7188 15.8021 20.669 15.8021 19.375V13.9063C15.8021 12.6123 16.8519 11.5625 18.1459 11.5625H27.5209C28.8148 11.5625 29.8646 12.6123 29.8646 13.9063V19.375C29.8646 20.669 28.8148 21.7188 27.5209 21.7188H23.6146V24.0625H29.0834C30.3773 24.0625 31.4271 25.1123 31.4271 26.4063V27.1875C32.7211 27.1875 33.7709 28.2373 33.7709 29.5312Z\" fill=\"#343433\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1uxcs9f\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Simplifying Complex Systems\"})}),className:\"framer-1q2tzds\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Transforming complex workflows into seamless, user-friendly digital experiences that drive efficiency and engagement.\"})}),className:\"framer-j6vlxb\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ag4wa7\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(SVG,{className:\"framer-1h0ap35\",\"data-framer-name\":\"Icon\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:45,intrinsicWidth:46,svg:'<svg width=\"46\" height=\"45\" viewBox=\"0 0 46 45\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M1.16663 4C1.16663 2.067 2.73363 0.5 4.66663 0.5H41.6666C43.5996 0.5 45.1666 2.067 45.1666 4V41C45.1666 42.933 43.5996 44.5 41.6666 44.5H4.66663C2.73363 44.5 1.16663 42.933 1.16663 41V4Z\" fill=\"white\"/>\\n<path d=\"M1.16663 4C1.16663 2.067 2.73363 0.5 4.66663 0.5H41.6666C43.5996 0.5 45.1666 2.067 45.1666 4V41C45.1666 42.933 43.5996 44.5 41.6666 44.5H4.66663C2.73363 44.5 1.16663 42.933 1.16663 41V4Z\" stroke=\"#DFDFDA\"/>\\n<path d=\"M16.8478 32.0648C14.759 32.5572 13.1363 32.5626 13.1041 32.5626C13.1041 32.5302 13.1095 30.9076 13.6019 28.8189C14.0807 26.792 16.6225 26.0984 18.0958 27.5709C19.5684 29.0434 18.8756 31.586 16.8478 32.0648Z\" fill=\"#343433\"/>\\n<path d=\"M33.1753 13.1437C33.1403 12.7987 32.8681 12.5265 32.5231 12.4914C30.3246 12.2677 22.2961 12.2453 17.4312 22.8683C20.1102 25.5474 20.1201 25.5573 22.7984 28.2356C33.4217 23.3707 33.3991 15.342 33.1753 13.1437ZM28.0164 20.4759C27.2366 21.2557 25.9716 21.2557 25.1909 20.4759C24.4102 19.696 24.411 18.431 25.1909 17.6503C25.9707 16.8696 27.2357 16.8705 28.0164 17.6503C28.7963 18.4301 28.7963 19.6951 28.0164 20.4759Z\" fill=\"#343433\"/>\\n<path d=\"M23.42 29.3731L24.7048 31.7C24.942 32.1313 25.5242 32.2175 25.8764 31.8653L27.702 30.0397C28.1189 29.6228 28.3561 29.055 28.3561 28.4656V26.3768C27.0138 27.4468 25.3911 28.4631 23.42 29.3731Z\" fill=\"#343433\"/>\\n<path d=\"M19.3042 17.3107H17.2082C16.6188 17.3107 16.051 17.5407 15.6341 17.9576L13.8013 19.7904C13.4491 20.1426 13.5354 20.7248 13.9666 20.962L16.2935 22.2468C17.2054 20.2738 18.227 18.6503 19.3042 17.3107Z\" fill=\"#343433\"/>\\n</svg>\\n',withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ozkych\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Helping Startups Scale\"})}),className:\"framer-15o5s9q\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Empowering startups with strong UX foundations, scalable teams, and efficient design processes.\"})}),className:\"framer-3resjc\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1kpnx1a\",\"data-framer-name\":\"Case Studies Container\",id:elementId1,ref:ref2,children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1seq7up\",\"data-framer-name\":\"Case Studies\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0kiuw\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1i03l42\",\"data-styles-preset\":\"WPXWFUv2R\",children:\"Case Studies\"})}),className:\"framer-1u0z9i1\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"A glimpse into my recent work and design approach.\"})}),className:\"framer-149aanb\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1iw3ioe\",\"data-framer-name\":\"Case Studies Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-om3e5i\",\"data-framer-name\":\"Hawk Trade\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1pre50b\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+0+0+0+0+0),pixelHeight:1869,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1216px)`,src:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp\",srcSet:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp 2500w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+0+0+0+0+0),pixelHeight:1869,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp\",srcSet:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp 2500w\"}},UOPWEnqN2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+0+0+0+0),pixelHeight:1869,pixelWidth:2500,sizes:`max(${componentViewport?.width||\"100vw\"} - 550px, 1px)`,src:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp\",srcSet:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+0+0+0+0),pixelHeight:1869,pixelWidth:2500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1216px) - 470px, 1px)`,src:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp\",srcSet:\"https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=512 512w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/eEmh1BH1ScB6CsuHLK3QrPkh3k.webp 2500w\"},className:\"framer-h8c6dg\",\"data-border\":true,\"data-framer-name\":\"create an image for container truck\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1otooy9\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"Hawk Trade\"})}),className:\"framer-1wgrntt\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-mf3wto\",\"data-framer-name\":\"Frame 16\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-font-size\":\"18px\",\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-2a05a933-f96c-41a6-aac7-3b6718af6851, rgb(0, 0, 0))\"},children:\"Seamless Container Booking & Management\"})})},RNsiJat8l:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--framer-line-height\":\"160%\",\"--framer-text-color\":\"var(--token-2a05a933-f96c-41a6-aac7-3b6718af6851, rgb(0, 0, 0))\"},children:\"Seamless Container Booking & Management\"})})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:[\"Seamless Container Booking \",/*#__PURE__*/_jsx(\"br\",{}),\"& Management\"]})}),className:\"framer-yccyf0\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Helping businesses streamline container booking and management by providing a transparent, flexible, and digitally connected logistics platform.\"})}),className:\"framer-11nd6lf\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+0+0+0+0+400+20+440.4},RNsiJat8l:{y:(componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+0+0+0+0+350+20+424.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+0+0+0+0+20+322.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-tieut1-container\",nodeId:\"dUbrQAi7I\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"dUbrQAi7I\",layoutId:\"dUbrQAi7I\",style:{height:\"100%\"},variant:\"LriVY3EqS\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1xtetmt\",\"data-framer-name\":\"Star Edutainment\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-181z24a\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+950.4+0+0+0+0),pixelHeight:1875,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1216px)`,src:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp\",srcSet:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp 2500w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+874.4+0+0+0+0),pixelHeight:1875,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp\",srcSet:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp 2500w\"}},UOPWEnqN2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+430+0+0+0),pixelHeight:1875,pixelWidth:2500,sizes:`max(${componentViewport?.width||\"100vw\"} - 550px, 1px)`,src:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp\",srcSet:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+430+0+0+0),pixelHeight:1875,pixelWidth:2500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1216px) - 470px, 1px)`,src:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp\",srcSet:\"https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=512 512w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/CudhJh0NQZGcbrw8Gw6ZBSbx0w.webp 2500w\"},className:\"framer-157x8xj\",\"data-border\":true,\"data-framer-name\":\"create an image for container truck\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-n0dhsq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"Star Edutainment\"})}),className:\"framer-13evdtt\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rqo77c\",\"data-framer-name\":\"Frame 16\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Bridging Entertainment and Learning with Celebrity-Led Experiences\"})}),className:\"framer-bonlla\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Empowering fans with exclusive access to celebrity-driven masterclasses, personalised interactions, and live sessions, creating a unique blend of education and entertainment.\"})}),className:\"framer-1jf23fl\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+950.4+0+0+0+400+20+325.2},RNsiJat8l:{y:(componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+874.4+0+0+0+350+20+325.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+430+0+0+0+20+322.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1b3gief-container\",nodeId:\"u6o9jJhqJ\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"u6o9jJhqJ\",layoutId:\"u6o9jJhqJ\",style:{height:\"100%\"},variant:\"dXhelv19r\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-w7j245\",\"data-framer-name\":\"CMS\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1mt8zgr\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+1785.6+0+0+0+0),pixelHeight:1828,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1216px)`,src:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp\",srcSet:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp 2500w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+1649.6+0+0+0+0),pixelHeight:1828,pixelWidth:2500,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp\",srcSet:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp 2500w\"}},UOPWEnqN2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+860+0+0+0),pixelHeight:1828,pixelWidth:2500,sizes:`max(${componentViewport?.width||\"100vw\"} - 550px, 1px)`,src:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp\",srcSet:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp 2500w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+860+0+0+0),pixelHeight:1828,pixelWidth:2500,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1216px) - 470px, 1px)`,src:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp\",srcSet:\"https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=512 512w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/fSGfMQzwo6Hc5DECvstLFDLYdx0.webp 2500w\"},className:\"framer-1ta0q5p\",\"data-border\":true,\"data-framer-name\":\"create an image for container truck\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xb1pal\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"CMS\"})}),className:\"framer-1lr6qbs\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tf2l51\",\"data-framer-name\":\"Frame 16\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Revolutionising Container Yard Management with Automation & AI\"})}),className:\"framer-4ksrm7\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Eliminating manual inefficiencies with a fully automated, AI-powered yard management system that enhances visibility, reduces turnaround time, and ensures seamless container operations.\"})}),className:\"framer-c5ywep\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+1785.6+0+0+0+400+20+325.2},RNsiJat8l:{y:(componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+1649.6+0+0+0+350+20+325.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+860+0+0+0+20+322.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-aj0d2w-container\",nodeId:\"A4u2WO8fN\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"A4u2WO8fN\",layoutId:\"A4u2WO8fN\",style:{height:\"100%\"},variant:\"y1wIslI7W\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-kbs8v9\",\"data-framer-name\":\"Smart Transport\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-dmsi9n\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+2620.8+0+0+0+0),pixelHeight:2545,pixelWidth:3700,sizes:`min(${componentViewport?.width||\"100vw\"} - 80px, 1216px)`,src:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp\",srcSet:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp 3700w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+2424.8+0+0+0+0),pixelHeight:2545,pixelWidth:3700,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp\",srcSet:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp 3700w\"}},UOPWEnqN2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+1290+0+0+0),pixelHeight:2545,pixelWidth:3700,sizes:`max(${componentViewport?.width||\"100vw\"} - 550px, 1px)`,src:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp\",srcSet:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp 3700w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+1290+0+0+0),pixelHeight:2545,pixelWidth:3700,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1216px) - 470px, 1px)`,src:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp\",srcSet:\"https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=512 512w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=1024 1024w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp?scale-down-to=2048 2048w,https://framerusercontent.com/images/PwgP3OIkjgVxHFYkjEzgyG5r9dU.webp 3700w\"},className:\"framer-7qb7uq\",\"data-border\":true,\"data-framer-name\":\"create an image for container truck\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-d3vg2l\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"Smart Transport\"})}),className:\"framer-14wmc7u\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1t4log5\",\"data-framer-name\":\"Frame 16\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Optimising Transport Operations with Smart Logistics\"})}),className:\"framer-qbbrve\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Enhancing efficiency in container transport by streamlining job management, real-time tracking, and automated workflows for seamless logistics operations.\"})}),className:\"framer-wkt8l0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+2293.2+80+0+0+188.2+0+2620.8+0+0+0+400+20+325.2},RNsiJat8l:{y:(componentViewport?.y||0)+0+2087.2+40+0+0+188.2+0+2424.8+0+0+0+350+20+325.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+1312.7+80+0+0+193.2+0+1290+0+0+0+20+322.6,children:/*#__PURE__*/_jsx(Container,{className:\"framer-11on507-container\",nodeId:\"LJ5CrkSrH\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"LJ5CrkSrH\",layoutId:\"LJ5CrkSrH\",style:{height:\"100%\"},variant:\"n0Va5VShb\",width:\"100%\"})})})})]})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-71so07\",\"data-framer-name\":\"Side Projects Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-16tw6bv\",\"data-framer-name\":\"Side Projects\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-e3zshd\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1i03l42\",\"data-styles-preset\":\"WPXWFUv2R\",children:\"Side Projects\"})}),className:\"framer-312a50\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Exploring ideas and building passion projects beyond work.\"})}),className:\"framer-1sd6479\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1al56c7 hidden-1m3uz18\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-foahbc\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1po0pkr\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6067.4+80+0+188.2+0+0+0+0+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1216px)`,src:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png\",srcSet:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=512 512w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png 3000w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5535.4+40+0+0+188.2+0+0+0+0+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png\",srcSet:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=512 512w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3355.9+80+0+193.2+0+0+0+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1216px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png\",srcSet:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=512 512w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png 3000w\"},className:\"framer-1fgl4kg\",\"data-border\":true,\"data-framer-name\":\"Thumb\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1x5vlpa\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1y9e06n\",\"data-framer-name\":\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"Sonar Watch\"})}),className:\"framer-786aru\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Enhancing SonarWatch for Better DeFi Discovery\"})}),className:\"framer-1h41hp2\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Redesigning the ecosystem page for a seamless, intuitive, and engaging DeFi exploration experience.\"})}),className:\"framer-1d91be3\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+6067.4+80+0+188.2+0+0+0+0+0+320+0+305.2},RNsiJat8l:{y:(componentViewport?.y||0)+0+5535.4+40+0+0+188.2+0+0+0+0+0+220+0+315.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+3355.9+80+0+193.2+0+0+0+0+320+0+305.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1o1yby9-container\",nodeId:\"DKbsxNpR0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"DKbsxNpR0\",layoutId:\"DKbsxNpR0\",style:{height:\"100%\"},variant:\"k48kWo2tz\",width:\"100%\"})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-17fjg04\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6067.4+80+0+188.2+0+0+0+715.2+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1216px)`,src:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png\",srcSet:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png 3000w\"}},RNsiJat8l:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5535.4+40+0+0+188.2+0+0+0+615.2+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1216px)`,src:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png\",srcSet:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3355.9+80+0+193.2+0+0+0+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), 1216px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png\",srcSet:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png 3000w\"},className:\"framer-udyprg\",\"data-border\":true,\"data-framer-name\":\"Thumb\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1sx9anl\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1ciy8as\",\"data-framer-name\":\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"NLP Data\"})}),className:\"framer-qux3y0\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Simplifying NLP Data Analysis\"})}),className:\"framer-14bdi0u\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"An intuitive workflow for seamless data uploads, structured previews, and effortless multi-analysis selection.\"})}),className:\"framer-qe0okx\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+6067.4+80+0+188.2+0+0+0+715.2+0+320+0+305.2},RNsiJat8l:{y:(componentViewport?.y||0)+0+5535.4+40+0+0+188.2+0+0+0+615.2+0+220+0+315.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+3355.9+80+0+193.2+0+0+0+0+320+0+305.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-152veqm-container\",nodeId:\"yrE1YjZWa\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"yrE1YjZWa\",layoutId:\"yrE1YjZWa\",style:{height:\"100%\"},variant:\"Iq4hSXcf_\",width:\"100%\"})})})})]})]})]})}),isDisplayed1()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hyoxrw hidden-72rtr7 hidden-k9fkr7 hidden-193iykd\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-24p15b\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-a6ic6l\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UOPWEnqN2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3355.9+80+0+193.2+0+0+0+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), ${componentViewport?.width||\"100vw\"} - 80px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png\",srcSet:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=512 512w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1518,pixelWidth:3e3,src:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png\",srcSet:\"https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=512 512w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WBikYHlxz7tM6FBInG3ecXfW60.png 3000w\"},className:\"framer-1ees9l3\",\"data-border\":true,\"data-framer-name\":\"Thumb\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1njxlkq\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-12ipjnv\",\"data-framer-name\":\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"Sonar Watch\"})}),className:\"framer-15act33\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Enhancing SonarWatch for Better DeFi Discovery\"})}),className:\"framer-1u1h5q4\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Redesigning the ecosystem page for a seamless, intuitive, and engaging DeFi exploration experience.\"})}),className:\"framer-oiqx5q\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-q0jo5l\",\"data-border\":true,\"data-framer-name\":\"Buttons/Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1x7xwo2\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-dbc22377-f4ba-4920-8d4e-75b9866efd2c, rgb(68, 72, 77))\"},children:\"View Project\"})}),className:\"framer-dupbx2\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-wfu3g8\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{UOPWEnqN2:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+3355.9+80+0+193.2+0+0+0+0+0),pixelHeight:1518,pixelWidth:3e3,sizes:`max((min(max(${componentViewport?.width||\"100vw\"} - 80px, 1px), ${componentViewport?.width||\"100vw\"} - 80px) - 30px) / 2, 1px)`,src:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png\",srcSet:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png 3000w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1518,pixelWidth:3e3,src:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png\",srcSet:\"https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=512 512w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/hNfYjsE6qrWAZSu6N2O4so96bU.png 3000w\"},className:\"framer-12tbvex\",\"data-border\":true,\"data-framer-name\":\"Thumb\"})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-xfnlt4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-10lbzbd\",\"data-framer-name\":\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"NLP Data\"})}),className:\"framer-126oldb\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Simplifying NLP Data Analysis\"})}),className:\"framer-18m2qlw\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"An intuitive workflow for seamless data uploads, structured previews, and effortless multi-analysis selection.\"})}),className:\"framer-1timx8f\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1qhkhft\",\"data-border\":true,\"data-framer-name\":\"Buttons/Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-w3pqmw\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-dbc22377-f4ba-4920-8d4e-75b9866efd2c, rgb(68, 72, 77))\"},children:\"View Project\"})}),className:\"framer-1vtrnc9\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})]}),isDisplayed()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-14ow3lu hidden-1m3uz18\",\"data-framer-name\":\"Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rf54xu\",\"data-border\":true,\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1260,pixelWidth:2490,sizes:\"545px\",src:\"https://framerusercontent.com/images/Xgkwh1jv7gdNtevwGhZpxF2Ds.png\",srcSet:\"https://framerusercontent.com/images/Xgkwh1jv7gdNtevwGhZpxF2Ds.png?scale-down-to=512 512w,https://framerusercontent.com/images/Xgkwh1jv7gdNtevwGhZpxF2Ds.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/Xgkwh1jv7gdNtevwGhZpxF2Ds.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/Xgkwh1jv7gdNtevwGhZpxF2Ds.png 2490w\"},className:\"framer-nbpjr4\",\"data-border\":true,\"data-framer-name\":\"Thumb\"}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-i6ssga\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1aorjhq\",\"data-framer-name\":\"Frame 18\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-115kylh\",\"data-styles-preset\":\"mROcdb54n\",children:\"Zenployee\"})}),className:\"framer-1m6r74n\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h6\",{className:\"framer-styles-preset-1rjur4q\",\"data-styles-preset\":\"NDAhsv1Cq\",children:\"Crafting a Distinct Identity for Zenployee\"})}),className:\"framer-1alhy6m\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Shaping a cohesive visual and brand strategy to ensure strong recognition and market impact.\"})}),className:\"framer-3ywalw\",\"data-framer-name\":\"Description\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-mxkfqc\",\"data-border\":true,\"data-framer-name\":\"Buttons/Button\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v0w25j\",\"data-framer-name\":\"Text padding\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItU2VtaUJvbGQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"600\",\"--framer-line-height\":\"20px\",\"--framer-text-color\":\"var(--token-dbc22377-f4ba-4920-8d4e-75b9866efd2c, rgb(68, 72, 77))\"},children:\"View Project\"})}),className:\"framer-1yyv6ws\",\"data-framer-name\":\"Text\",fonts:[\"Inter-SemiBold\"],verticalAlignment:\"top\",withExternalLayout:true})})})]})]})})]})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1plhesc\",\"data-framer-name\":\"Q&A Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-9sjf7\",\"data-framer-name\":\"Q&A\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hq0i4a\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1i03l42\",\"data-styles-preset\":\"WPXWFUv2R\",children:\"Got Questions?\"})}),className:\"framer-2plikx\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"Here\u2019s What I Can Do for You.\"})}),className:\"framer-1lnkvsu\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-hgv1tp\",\"data-framer-name\":\"Column\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+7816+80+0+0+188.2+0},RNsiJat8l:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1216px), 1px)`,y:(componentViewport?.y||0)+0+7014+40+0+0+188.2+0},UOPWEnqN2:{width:`max(${componentViewport?.width||\"100vw\"} - 80px, 1px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:649,width:`max(min(${componentViewport?.width||\"100vw\"} - 80px, 1216px), 1px)`,y:(componentViewport?.y||0)+0+4394.3+80+0+0+193.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1la1rgb-container\",nodeId:\"c49YYvDXq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Accordion,{height:\"100%\",id:\"c49YYvDXq\",layoutId:\"c49YYvDXq\",style:{width:\"100%\"},variant:\"iJuFaIOj6\",width:\"100%\"})})})})})]})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1k0ekob\",\"data-framer-name\":\"Footer Promo Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xgh1f9\",\"data-framer-name\":\"Footer Promo\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-19dmfcj\",\"data-framer-name\":\"Section Title\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h5\",{className:\"framer-styles-preset-1i03l42\",\"data-styles-preset\":\"WPXWFUv2R\",children:\"Let\u2019s Create Something Meaningful Together.\"})}),className:\"framer-1w6wsnm\",\"data-framer-name\":\"Title\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-whtco0\",\"data-styles-preset\":\"BPUOjfPwD\",children:\"I\u2019d love to hear your ideas and explore how we can build something impactful. Feel free to reach out and let\u2019s make it happen! \uD83D\uDE80\"})}),className:\"framer-1jnuuko\",\"data-framer-name\":\"Subtitle\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-vacosg\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+8813.2+80+0+0+188.2+0},RNsiJat8l:{y:(componentViewport?.y||0)+0+7931.2+40+0+0+193.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5396.5+80+0+0+193.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10l39hu-container\",nodeId:\"mpln_3dFw\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonPrimary,{height:\"100%\",id:\"mpln_3dFw\",layoutId:\"mpln_3dFw\",style:{height:\"100%\"},variant:\"IS4Uh033g\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+8813.2+80+0+0+188.2+0},RNsiJat8l:{y:(componentViewport?.y||0)+0+7931.2+40+0+0+193.2+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+5396.5+80+0+0+193.2+0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nj1q23-container\",nodeId:\"DLN8O3WkM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ButtonSecondary,{height:\"100%\",id:\"DLN8O3WkM\",layoutId:\"DLN8O3WkM\",style:{height:\"100%\"},variant:\"HA_0CO7FT\",width:\"100%\"})})})})]})]})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{y:(componentViewport?.y||0)+0+9201.4},RNsiJat8l:{y:(componentViewport?.y||0)+0+8244.4}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:64,width:componentViewport?.width||\"100vw\",y:(componentViewport?.y||0)+0+5789.7,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1h3b976-container\",nodeId:\"KfC6fYdF_\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{CV27j0XUR:{variant:\"zjg4O31w4\"},RNsiJat8l:{variant:\"S3PmLkXOM\"},UOPWEnqN2:{variant:\"vIhpKs4C8\"}},children:/*#__PURE__*/_jsx(Footer,{height:\"100%\",id:\"KfC6fYdF_\",layoutId:\"KfC6fYdF_\",style:{width:\"100%\"},variant:\"UJr_6rqQs\",width:\"100%\"})})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-bPkvc.framer-lux5qc, .framer-bPkvc .framer-lux5qc { display: block; }\",\".framer-bPkvc.framer-72rtr7 { align-content: center; align-items: center; background-color: #ffffff; cursor: default; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1728px; }\",\".framer-bPkvc .framer-1pub6u5 { --border-bottom-width: 1px; --border-color: var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, #d0d5dd); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 0px; -webkit-backdrop-filter: blur(5px); align-content: center; align-items: center; backdrop-filter: blur(5px); background-color: rgba(255, 255, 255, 0.85); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px 40px 0px 40px; position: sticky; top: 0px; width: 100%; z-index: 10; }\",\".framer-bPkvc .framer-1mkenhu-container { flex: 1 0 0px; height: 80px; max-width: 1216px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-a9lx12 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-xr7f44 { align-content: center; align-items: center; background-color: var(--token-430e9288-29bb-46f8-9063-5a1ab3753fda, #ffffff); display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-1y190ts { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-146ebo3 { align-content: flex-start; align-items: flex-start; border-bottom-left-radius: 100px; border-bottom-right-radius: 100px; border-top-left-radius: 100px; border-top-right-radius: 100px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; min-height: 100px; min-width: 100px; overflow: hidden; padding: 10px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-wyj7j4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-prrvwu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-kjne3p, .framer-bPkvc .framer-161w109 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; position: relative; white-space: pre-wrap; width: auto; word-break: break-word; word-wrap: break-word; }\",\".framer-bPkvc .framer-fhlynz { 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: 100%; }\",\".framer-bPkvc .framer-i7z0ps-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-bPkvc .framer-3e2kkq { --framer-paragraph-spacing: 0px; flex: none; height: auto; max-width: 100%; overflow: visible; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-bPkvc .framer-14rd4f, .framer-bPkvc .framer-vacosg { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-bPkvc .framer-k4sund-container, .framer-bPkvc .framer-pty1-container, .framer-bPkvc .framer-tieut1-container, .framer-bPkvc .framer-1b3gief-container, .framer-bPkvc .framer-aj0d2w-container, .framer-bPkvc .framer-11on507-container, .framer-bPkvc .framer-1o1yby9-container, .framer-bPkvc .framer-152veqm-container, .framer-bPkvc .framer-10l39hu-container, .framer-bPkvc .framer-1nj1q23-container { flex: none; height: 40px; position: relative; width: auto; }\",\".framer-bPkvc .framer-1vyz75o { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; max-width: 1000px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-eumrjj { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: 40px; justify-content: space-between; max-width: 540px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-a8xzz1, .framer-bPkvc .framer-o1wgyl, .framer-bPkvc .framer-1g1q6r8, .framer-bPkvc .framer-1yajxxq, .framer-bPkvc .framer-8ptf8l, .framer-bPkvc .framer-ycjnx, .framer-bPkvc .framer-3wj6il { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 40px; }\",\".framer-bPkvc .framer-1gpukqb, .framer-bPkvc .framer-ya5m26 { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 25px); position: relative; width: 25px; }\",\".framer-bPkvc .framer-10yrhgk, .framer-bPkvc .framer-1w656s3, .framer-bPkvc .framer-1xdr6ey { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 30px); position: relative; width: 30px; }\",\".framer-bPkvc .framer-1djohac { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); position: relative; width: 24px; }\",\".framer-bPkvc .framer-7wkdbg { align-content: center; align-items: center; aspect-ratio: 2.7 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; max-width: 540px; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1yt5k33 { align-content: center; align-items: center; aspect-ratio: 2.5 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 200px); justify-content: center; max-width: 500px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-1ofnu4y-container, .framer-bPkvc .framer-se1vy1-container, .framer-bPkvc .framer-8kqejq-container, .framer-bPkvc .framer-vuordy-container, .framer-bPkvc .framer-hgyyj3-container, .framer-bPkvc .framer-4j6m4t-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-bPkvc .framer-1piafm9 { flex: none; height: 29px; position: relative; width: 29px; }\",\".framer-bPkvc .framer-dcymjy, .framer-bPkvc .framer-1k0ekob { align-content: center; align-items: center; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-410vi4 { align-content: center; align-items: center; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1ys7ktt, .framer-bPkvc .framer-n0kiuw, .framer-bPkvc .framer-mf3wto, .framer-bPkvc .framer-rqo77c, .framer-bPkvc .framer-1tf2l51, .framer-bPkvc .framer-1t4log5, .framer-bPkvc .framer-e3zshd, .framer-bPkvc .framer-hq0i4a, .framer-bPkvc .framer-19dmfcj { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-18uuwf5, .framer-bPkvc .framer-nmqxjk, .framer-bPkvc .framer-1q2tzds, .framer-bPkvc .framer-15o5s9q, .framer-bPkvc .framer-1u0z9i1, .framer-bPkvc .framer-312a50, .framer-bPkvc .framer-1h41hp2, .framer-bPkvc .framer-14bdi0u, .framer-bPkvc .framer-1u1h5q4, .framer-bPkvc .framer-18m2qlw, .framer-bPkvc .framer-1alhy6m, .framer-bPkvc .framer-2plikx, .framer-bPkvc .framer-1w6wsnm { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bPkvc .framer-fs0pft, .framer-bPkvc .framer-149aanb, .framer-bPkvc .framer-1sd6479, .framer-bPkvc .framer-1lnkvsu, .framer-bPkvc .framer-1jnuuko { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 613px; word-break: break-word; word-wrap: break-word; }\",\".framer-bPkvc .framer-1ia24je { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: 213px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-15pdsbf, .framer-bPkvc .framer-1vr4zjz, .framer-bPkvc .framer-ag4wa7 { --border-bottom-width: 1px; --border-color: #dfdfda; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: #ffffff; border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: flex-start; overflow: hidden; padding: 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-1mkwvea { flex: none; height: 45px; position: relative; width: 45px; }\",\".framer-bPkvc .framer-193ovc6, .framer-bPkvc .framer-1uxcs9f, .framer-bPkvc .framer-1ozkych, .framer-bPkvc .framer-1y9e06n, .framer-bPkvc .framer-1ciy8as, .framer-bPkvc .framer-12ipjnv, .framer-bPkvc .framer-10lbzbd, .framer-bPkvc .framer-1aorjhq { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-555xdv, .framer-bPkvc .framer-j6vlxb, .framer-bPkvc .framer-3resjc { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 345px; word-break: break-word; word-wrap: break-word; }\",\".framer-bPkvc .framer-yadkm5, .framer-bPkvc .framer-1h0ap35 { flex: none; height: 45px; position: relative; width: 46px; }\",\".framer-bPkvc .framer-1kpnx1a, .framer-bPkvc .framer-1plhesc { align-content: center; align-items: center; background-color: var(--token-430e9288-29bb-46f8-9063-5a1ab3753fda, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1seq7up, .framer-bPkvc .framer-9sjf7 { align-content: center; align-items: center; background-color: var(--token-430e9288-29bb-46f8-9063-5a1ab3753fda, #ffffff); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1iw3ioe { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-om3e5i, .framer-bPkvc .framer-1xtetmt, .framer-bPkvc .framer-w7j245, .framer-bPkvc .framer-kbs8v9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1pre50b { --border-bottom-width: 1px; --border-color: var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, #d0d5dd); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-h8c6dg { --border-bottom-width: 1px; --border-color: var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, #d0d5dd); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-1otooy9, .framer-bPkvc .framer-n0dhsq, .framer-bPkvc .framer-xb1pal, .framer-bPkvc .framer-d3vg2l { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 100%; justify-content: center; overflow: visible; padding: 20px; position: relative; width: 450px; }\",\".framer-bPkvc .framer-1wgrntt, .framer-bPkvc .framer-yccyf0, .framer-bPkvc .framer-11nd6lf, .framer-bPkvc .framer-13evdtt, .framer-bPkvc .framer-bonlla, .framer-bPkvc .framer-1jf23fl, .framer-bPkvc .framer-1lr6qbs, .framer-bPkvc .framer-4ksrm7, .framer-bPkvc .framer-c5ywep, .framer-bPkvc .framer-14wmc7u, .framer-bPkvc .framer-qbbrve, .framer-bPkvc .framer-wkt8l0 { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 410px; word-break: break-word; word-wrap: break-word; }\",\".framer-bPkvc .framer-181z24a, .framer-bPkvc .framer-1mt8zgr, .framer-bPkvc .framer-dmsi9n { --border-bottom-width: 1px; --border-color: #dfdfda; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: 400px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-157x8xj, .framer-bPkvc .framer-1ta0q5p, .framer-bPkvc .framer-7qb7uq { --border-bottom-width: 1px; --border-color: #dfdfda; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 100%; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-71so07 { align-content: center; align-items: center; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 80px 40px 80px 40px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-16tw6bv { align-content: center; align-items: center; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-bPkvc .framer-1al56c7, .framer-bPkvc .framer-1hyoxrw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-foahbc, .framer-bPkvc .framer-24p15b, .framer-bPkvc .framer-14ow3lu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1po0pkr, .framer-bPkvc .framer-17fjg04, .framer-bPkvc .framer-a6ic6l, .framer-bPkvc .framer-wfu3g8 { --border-bottom-width: 1px; --border-color: var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, #d0d5dd); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-430e9288-29bb-46f8-9063-5a1ab3753fda, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-1fgl4kg, .framer-bPkvc .framer-udyprg, .framer-bPkvc .framer-1ees9l3, .framer-bPkvc .framer-12tbvex, .framer-bPkvc .framer-nbpjr4 { --border-bottom-width: 1px; --border-color: #dfdfda; --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 300px; justify-content: center; overflow: hidden; padding: 10px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1x5vlpa, .framer-bPkvc .framer-1sx9anl, .framer-bPkvc .framer-1njxlkq, .framer-bPkvc .framer-xfnlt4, .framer-bPkvc .framer-i6ssga { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 20px 0px 20px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-786aru, .framer-bPkvc .framer-1d91be3, .framer-bPkvc .framer-qux3y0, .framer-bPkvc .framer-qe0okx, .framer-bPkvc .framer-15act33, .framer-bPkvc .framer-oiqx5q, .framer-bPkvc .framer-126oldb, .framer-bPkvc .framer-1timx8f, .framer-bPkvc .framer-1m6r74n, .framer-bPkvc .framer-3ywalw { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 553px; word-break: break-word; word-wrap: break-word; }\",\".framer-bPkvc .framer-q0jo5l, .framer-bPkvc .framer-1qhkhft, .framer-bPkvc .framer-mxkfqc { --border-bottom-width: 1px; --border-color: var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, #d0d5dd); --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-430e9288-29bb-46f8-9063-5a1ab3753fda, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; box-shadow: 0px 1px 2px 0px rgba(16, 24, 40, 0.05); display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: hidden; padding: 10px 14px 10px 14px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-1x7xwo2, .framer-bPkvc .framer-w3pqmw, .framer-bPkvc .framer-v0w25j { 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: visible; padding: 0px 2px 0px 2px; position: relative; width: min-content; }\",\".framer-bPkvc .framer-dupbx2, .framer-bPkvc .framer-1vtrnc9, .framer-bPkvc .framer-1yyv6ws { --framer-paragraph-spacing: 14px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-bPkvc .framer-rf54xu { --border-bottom-width: 1px; --border-color: var(--token-c3334cd2-233f-4f6c-b9ef-b88788eb225c, #d0d5dd); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; background-color: var(--token-430e9288-29bb-46f8-9063-5a1ab3753fda, #ffffff); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 20px 0px; position: relative; width: 545px; will-change: var(--framer-will-change-override, transform); }\",\".framer-bPkvc .framer-hgv1tp { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; max-width: 100%; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1la1rgb-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; z-index: 2; }\",\".framer-bPkvc .framer-1xgh1f9 { align-content: flex-start; align-items: flex-start; background-color: var(--token-16a0822b-cb6f-4fbb-a823-45b8fc66b523, #f5f5f0); display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 30px; height: min-content; justify-content: center; max-width: 1216px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-bPkvc .framer-1h3b976-container { flex: none; height: auto; position: relative; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,'.framer-bPkvc[data-border=\"true\"]::after, .framer-bPkvc [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: 1727px) { .framer-bPkvc.framer-72rtr7 { width: 1200px; } .framer-bPkvc .framer-1mkenhu-container, .framer-bPkvc .framer-xr7f44, .framer-bPkvc .framer-410vi4, .framer-bPkvc .framer-1seq7up, .framer-bPkvc .framer-16tw6bv, .framer-bPkvc .framer-9sjf7, .framer-bPkvc .framer-1xgh1f9 { max-width: 100%; } .framer-bPkvc .framer-7wkdbg { height: var(--framer-aspect-ratio-supported, 197px); } .framer-bPkvc .framer-1yt5k33 { height: var(--framer-aspect-ratio-supported, 196px); } .framer-bPkvc .framer-1ia24je { gap: 20px; } .framer-bPkvc .framer-555xdv, .framer-bPkvc .framer-j6vlxb, .framer-bPkvc .framer-3resjc, .framer-bPkvc .framer-oiqx5q, .framer-bPkvc .framer-1timx8f { width: 100%; } .framer-bPkvc .framer-e3zshd { order: 0; } .framer-bPkvc .framer-1hyoxrw { order: 1; }}\",\"@media (min-width: 768px) and (max-width: 1199px) { .framer-bPkvc.framer-72rtr7 { width: 768px; } .framer-bPkvc .framer-xr7f44 { flex-direction: column; gap: 60px; } .framer-bPkvc .framer-1y190ts, .framer-bPkvc .framer-1vyz75o, .framer-bPkvc .framer-1po0pkr, .framer-bPkvc .framer-17fjg04 { flex: none; width: 100%; } .framer-bPkvc .framer-eumrjj { max-width: 640px; } .framer-bPkvc .framer-7wkdbg { height: var(--framer-aspect-ratio-supported, 237px); max-width: 640px; } .framer-bPkvc .framer-1yt5k33 { height: var(--framer-aspect-ratio-supported, 240px); max-width: 600px; } .framer-bPkvc .framer-1ys7ktt, .framer-bPkvc .framer-n0kiuw, .framer-bPkvc .framer-e3zshd, .framer-bPkvc .framer-hq0i4a, .framer-bPkvc .framer-19dmfcj { gap: 5px; } .framer-bPkvc .framer-1ia24je { flex-direction: column; gap: 20px; height: min-content; } .framer-bPkvc .framer-15pdsbf, .framer-bPkvc .framer-1vr4zjz, .framer-bPkvc .framer-ag4wa7 { flex: none; height: min-content; width: 100%; } .framer-bPkvc .framer-555xdv, .framer-bPkvc .framer-j6vlxb, .framer-bPkvc .framer-3resjc, .framer-bPkvc .framer-yccyf0, .framer-bPkvc .framer-11nd6lf, .framer-bPkvc .framer-13evdtt, .framer-bPkvc .framer-bonlla, .framer-bPkvc .framer-1jf23fl, .framer-bPkvc .framer-4ksrm7, .framer-bPkvc .framer-c5ywep, .framer-bPkvc .framer-qbbrve, .framer-bPkvc .framer-wkt8l0, .framer-bPkvc .framer-1d91be3, .framer-bPkvc .framer-qe0okx { width: 100%; } .framer-bPkvc .framer-1pre50b, .framer-bPkvc .framer-181z24a, .framer-bPkvc .framer-1mt8zgr, .framer-bPkvc .framer-dmsi9n { flex-direction: column; gap: 0px; height: min-content; } .framer-bPkvc .framer-h8c6dg, .framer-bPkvc .framer-157x8xj, .framer-bPkvc .framer-1ta0q5p, .framer-bPkvc .framer-7qb7uq { flex: none; height: 400px; width: 100%; } .framer-bPkvc .framer-1otooy9, .framer-bPkvc .framer-n0dhsq, .framer-bPkvc .framer-xb1pal, .framer-bPkvc .framer-d3vg2l { height: min-content; width: 100%; } .framer-bPkvc .framer-kbs8v9 { gap: 20px; } .framer-bPkvc .framer-foahbc { flex-direction: column; }}\",\"@media (max-width: 767px) { .framer-bPkvc.framer-72rtr7 { width: 440px; } .framer-bPkvc .framer-1pub6u5 { flex-direction: column; padding: 0px 20px 0px 20px; } .framer-bPkvc .framer-1mkenhu-container { flex: none; height: auto; width: 100%; } .framer-bPkvc .framer-a9lx12 { flex-direction: column; padding: 40px 20px 40px 20px; z-index: 1; } .framer-bPkvc .framer-xr7f44 { flex: none; flex-direction: column; gap: 60px; width: 100%; } .framer-bPkvc .framer-1y190ts, .framer-bPkvc .framer-1vyz75o, .framer-bPkvc .framer-16tw6bv, .framer-bPkvc .framer-1po0pkr, .framer-bPkvc .framer-17fjg04 { flex: none; width: 100%; } .framer-bPkvc .framer-wyj7j4, .framer-bPkvc .framer-1y9e06n, .framer-bPkvc .framer-1ciy8as { gap: 10px; } .framer-bPkvc .framer-3e2kkq, .framer-bPkvc .framer-fs0pft, .framer-bPkvc .framer-555xdv, .framer-bPkvc .framer-j6vlxb, .framer-bPkvc .framer-3resjc, .framer-bPkvc .framer-149aanb, .framer-bPkvc .framer-1wgrntt, .framer-bPkvc .framer-yccyf0, .framer-bPkvc .framer-11nd6lf, .framer-bPkvc .framer-13evdtt, .framer-bPkvc .framer-bonlla, .framer-bPkvc .framer-1jf23fl, .framer-bPkvc .framer-4ksrm7, .framer-bPkvc .framer-c5ywep, .framer-bPkvc .framer-14wmc7u, .framer-bPkvc .framer-qbbrve, .framer-bPkvc .framer-wkt8l0, .framer-bPkvc .framer-1sd6479, .framer-bPkvc .framer-786aru, .framer-bPkvc .framer-1d91be3, .framer-bPkvc .framer-qux3y0, .framer-bPkvc .framer-qe0okx, .framer-bPkvc .framer-1lnkvsu, .framer-bPkvc .framer-1jnuuko { width: 100%; } .framer-bPkvc .framer-eumrjj { max-width: 640px; } .framer-bPkvc .framer-7wkdbg { height: var(--framer-aspect-ratio-supported, 133px); max-width: 640px; } .framer-bPkvc .framer-1yt5k33 { height: var(--framer-aspect-ratio-supported, 128px); max-width: 600px; } .framer-bPkvc .framer-dcymjy { padding: 40px 20px 40px 20px; z-index: 1; } .framer-bPkvc .framer-1ys7ktt, .framer-bPkvc .framer-n0kiuw, .framer-bPkvc .framer-e3zshd, .framer-bPkvc .framer-hq0i4a { gap: 5px; } .framer-bPkvc .framer-1ia24je { flex-direction: column; gap: 10px; height: min-content; } .framer-bPkvc .framer-15pdsbf, .framer-bPkvc .framer-1vr4zjz, .framer-bPkvc .framer-ag4wa7 { flex: none; height: min-content; width: 100%; } .framer-bPkvc .framer-1kpnx1a, .framer-bPkvc .framer-1plhesc, .framer-bPkvc .framer-1k0ekob { padding: 40px 20px 40px 20px; } .framer-bPkvc .framer-1iw3ioe, .framer-bPkvc .framer-kbs8v9, .framer-bPkvc .framer-1al56c7 { gap: 20px; } .framer-bPkvc .framer-1pre50b, .framer-bPkvc .framer-181z24a, .framer-bPkvc .framer-1mt8zgr, .framer-bPkvc .framer-dmsi9n { flex-direction: column; gap: 0px; height: min-content; } .framer-bPkvc .framer-h8c6dg, .framer-bPkvc .framer-157x8xj, .framer-bPkvc .framer-1ta0q5p, .framer-bPkvc .framer-7qb7uq { flex: none; height: 350px; width: 100%; } .framer-bPkvc .framer-1otooy9, .framer-bPkvc .framer-n0dhsq, .framer-bPkvc .framer-xb1pal, .framer-bPkvc .framer-d3vg2l { height: min-content; width: 100%; } .framer-bPkvc .framer-71so07 { flex-direction: column; padding: 40px 20px 40px 20px; } .framer-bPkvc .framer-foahbc { flex-direction: column; gap: 20px; } .framer-bPkvc .framer-1fgl4kg, .framer-bPkvc .framer-udyprg { height: 200px; } .framer-bPkvc .framer-1h41hp2, .framer-bPkvc .framer-14bdi0u, .framer-bPkvc .framer-1w6wsnm { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 5078.5\n * @framerIntrinsicWidth 1728\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"UOPWEnqN2\":{\"layout\":[\"fixed\",\"auto\"]},\"CV27j0XUR\":{\"layout\":[\"fixed\",\"auto\"]},\"RNsiJat8l\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"zRK2OUf3n\":{\"pattern\":\":zRK2OUf3n\",\"name\":\"home\"},\"r3Ky6Gg82\":{\"pattern\":\":r3Ky6Gg82\",\"name\":\"work\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-bPkvc\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:5078.5,width:1728};addFonts(FrameraugiA20Il,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"},{family:\"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/hyOgCu0Xnghbimh0pE8QTvtt2AU.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/NeGmSOXrPBfEFIy5YZeHq17LEDA.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/oYaAX5himiTPYuN8vLWnqBbfD2s.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/lEJLP4R0yuCaMCjSXYHtJw72M.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/cRJyLNuTJR5jbyKzGi33wU9cqIQ.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/1ZFS7N918ojhhd0nQWdj3jz4w.woff2\",weight:\"600\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/A0Wcc7NgXMjUuFdquHDrIZpzZw0.woff2\",weight:\"600\"}]},...Navigation3Fonts,...StaggeredCycleFonts,...ButtonPrimaryFonts,...ButtonSecondaryFonts,...SVGPathShimmerFonts,...AccordionFonts,...FooterFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerAcceptsLayoutTemplate\":\"true\",\"framerIntrinsicHeight\":\"5078.5\",\"framerAutoSizeImages\":\"true\",\"framerResponsiveScreen\":\"\",\"framerScrollSections\":\"{\\\"zRK2OUf3n\\\":{\\\"pattern\\\":\\\":zRK2OUf3n\\\",\\\"name\\\":\\\"home\\\"},\\\"r3Ky6Gg82\\\":{\\\"pattern\\\":\\\":r3Ky6Gg82\\\",\\\"name\\\":\\\"work\\\"}}\",\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"UOPWEnqN2\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"CV27j0XUR\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"RNsiJat8l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"1728\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_SPEED", "defaultTransition", "StaggeredTextCycleV2", "text", "speed", "delay", "font", "userSelect", "color", "alignment", "tag", "loop", "stagger", "Tag", "content", "phrase", "iteration", "setIteration", "ye", "speedFormatted", "delayFormattedMs", "speedFormattedMs", "isCanvas", "RenderTarget", "isFirstRender", "setIsFirstRender", "ue", "timeout", "interval", "prev", "u", "p", "longest", "current", "l", "sentence", "sentenceIndex", "charIndex", "segments", "segment", "char", "AnimatePresence", "segmentIndex", "originalIndex", "baseDelay", "delayInitial", "delayAnimate", "delayExit", "itemTransition", "motion", "addPropertyControls", "ControlType", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "getProps", "height", "id", "subtitle", "title", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "yeAnKbEUZ", "WuF2iG84P", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "LayoutGroup", "u", "SVG", "RichText2", "css", "FramerW7oLCU4_B", "withCSS", "Utils_Component_Message_ZVoG_default", "addPropertyControls", "ControlType", "addFonts", "Mode", "SVGType", "SVGPathShimmer", "mode", "layer", "svgType", "svgImage", "svgFile", "baseColor", "shimmerColor", "length", "transition", "direction", "loopMode", "loopDelay", "trigger", "replay", "style", "isCanvas", "RenderTarget", "hasChildren", "j", "reverse", "loop", "shapeTransition", "svgContent", "setSvgContent", "ye", "isLoading", "setIsLoading", "loadingError", "setLoadingError", "currentAnimation", "setCurrentAnimation", "ref", "pe", "isInView", "useInView", "progressMotionValue", "useMotionValue", "scale", "setScale", "padding", "setPadding", "originalSize", "setOriginalSize", "containerRef", "hasSvg", "runAnimation", "animate", "latest", "ue", "fetchSVG", "url", "content", "loadAndValidateSVG", "measureSvg", "svg", "container", "updateScale", "containerWidth", "containerHeight", "newScale", "newPadding", "resizeObserver", "svgElement", "svgContents", "svgViewbox", "viewboxWidth", "viewboxHeight", "start", "end", "parsedSvgData", "se", "doc", "path", "width", "height", "viewBox", "pathD", "stroke", "strokeWidth", "strokeLinecap", "strokeLinejoin", "parsedLayerData", "firstChild", "getFirstChild", "svgChild", "attributes", "element", "splitAndReplace", "viewBoxWidth", "viewBoxHeight", "opacity", "useTransform", "value", "transformOpacity", "strokeDashoffsetTransform", "p", "motion", "q", "Utils_Component_Message_ZVoG_default", "addPropertyControls", "ControlType", "props", "slots", "child", "string", "text", "error", "input", "lowerThreshold", "upperThreshold", "fontStore", "fonts", "css", "className", "Navigation3Fonts", "getFonts", "y7CnB8er8_default", "StaggeredCycleFonts", "StaggeredTextCycleV2", "ButtonPrimaryFonts", "pASCADmRk_default", "ButtonSecondaryFonts", "tpNzfgCJT_default", "SVGPathShimmerFonts", "SVGPathShimmer", "AccordionFonts", "vcCHhVfvq_default", "FooterFonts", "b9thVwt4U_default", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "HTMLStyle", "value", "useIsOnFramerCanvas", "p", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "ref2", "isDisplayed", "isDisplayed1", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "motion", "PropertyOverrides2", "ComponentViewportProvider", "Container", "getLoadingLazyAtYPosition", "Image2", "x", "RichText2", "SVG", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
