{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js", "ssg:https://framerusercontent.com/modules/bQxwnmc4WzG0J3D8cPG1/aqIRujpfur0NpzIT4ivD/IS8FCxO8t.js", "ssg:https://framerusercontent.com/modules/9E0mr9nxK4cXIkBKyNwI/l7T8Uln6iaRjLJg7nPGi/lwpxurkou.js", "ssg:https://framerusercontent.com/modules/eCxKbSe8qaMxGejApyj4/sroyFCUHpGckyYvtbQja/jyz2al2XA.js", "ssg:https://framerusercontent.com/modules/zalZ85oG7nV1FOTtBoiK/iT7h2IjjhW4vuBHw73ld/augiA20Il.js"],
  "sourcesContent": ["import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{Children,useEffect,useState,useRef,useMemo,createRef,useCallback,cloneElement}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";import{useAnimationFrame,useReducedMotion,LayoutGroup,useInView,useMotionValue,useTransform,motion,wrap,frame}from\"framer-motion\";import{resize}from\"@motionone/dom\";const MAX_DUPLICATED_ITEMS=100;const MAX_AREA=5e6;const CSS_VAR_NAME=\"--ticker-offset\";const supportsWaapi=typeof Animation!==\"undefined\"&&typeof Animation.prototype.updatePlaybackRate===\"function\";let supportsRegisterProperty=true;if(typeof window!==\"undefined\"){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){supportsRegisterProperty=false;}}/**\n *\n * @framerIntrinsicWidth 400\n * @framerIntrinsicHeight 200\n *\n * @framerDisableUnlink\n *\n * @framerSupportedLayoutWidth fixed\n * @framerSupportedLayoutHeight fixed\n */export default function Ticker(props){/* Props */let{slots,gap,padding,paddingPerSide,paddingTop,paddingRight,paddingBottom,paddingLeft,speed,hoverFactor,direction,alignment,sizingOptions,fadeOptions,style}=props;const{fadeContent,overflow,fadeWidth,fadeInset,fadeAlpha}=fadeOptions;const{widthType,heightType}=sizingOptions;const paddingValue=paddingPerSide?`${paddingTop}px ${paddingRight}px ${paddingBottom}px ${paddingLeft}px`:`${padding}px`;/* Checks */const isCanvas=RenderTarget.current()===RenderTarget.canvas;// Remove empty slots (such as hidden layers)\nconst filteredSlots=slots.filter(Boolean);const numChildren=Children.count(filteredSlots);const hasChildren=numChildren>0;if(direction===true){direction=\"left\";}const isHorizontal=direction===\"left\"||direction===\"right\";const offset=useMotionValue(0);const axis=isHorizontal?\"X\":\"Y\";const minus=direction===\"left\"||direction===\"top\"?\"-\":\"\";const transform=useTransform(()=>`translate${axis}(${minus}${offset.get()}px)`);/* Refs and State */const parentRef=useRef(null);const childrenRef=useMemo(()=>{return[/*#__PURE__*/createRef(),/*#__PURE__*/createRef()];},[]);const[size,setSize]=useState({parent:null,children:null,childrenArea:null});/* Arrays */let clonedChildren=[];let dupedChildren=[];/* Duplicate value */let duplicateBy=0;let opacity=0;if(isCanvas){duplicateBy=numChildren?Math.floor(10/numChildren):0;opacity=1;}if(!isCanvas&&hasChildren&&size.parent){duplicateBy=Math.round(size.parent/size.children*2)+1;duplicateBy=Math.min(duplicateBy,MAX_DUPLICATED_ITEMS);opacity=1;}const fullChildrenArea=size.childrenArea===null?null:size.childrenArea*(duplicateBy+1);const isLayerTooBig=fullChildrenArea===null?null:fullChildrenArea>MAX_AREA;/* Measure parent and child */const measure=useCallback(()=>{if(hasChildren&&parentRef.current){const parentLength=isHorizontal?parentRef.current.offsetWidth:parentRef.current.offsetHeight;const[firstChild,lastChild]=childrenRef;const childrenLeft=firstChild.current?firstChild.current.offsetLeft:0;const childrenRight=lastChild.current?lastChild.current.offsetLeft+lastChild.current.offsetWidth:0;const childrenTop=firstChild.current?firstChild.current.offsetTop:0;const childrenBottom=lastChild.current?lastChild.current.offsetTop+lastChild.current.offsetHeight:0;const childrenWidth=childrenRight-childrenLeft;const childrenHeight=childrenBottom-childrenTop;const childrenArea=childrenWidth*childrenHeight;const childrenLength=(isHorizontal?childrenWidth:childrenHeight)+gap;setSize({parent:parentLength,children:childrenLength,childrenArea});}},[]);const childrenStyles=isCanvas?{contentVisibility:\"auto\"}:{};/* Add refs to first and last child */if(hasChildren){// TODO: These conditional hooks will be unsafe if hasChildren ever changes outside the canvas.\nif(!isCanvas){/**\n             * Track whether this is the initial resize event. By default this will fire on mount,\n             * which we do in the useEffect. We should only fire it on subsequent resizes.\n             */let initialResize=useRef(true);useEffect(()=>{frame.read(measure);return resize(parentRef.current,({contentSize})=>{if(!initialResize.current&&(contentSize.width||contentSize.height)){frame.read(measure);}initialResize.current=false;});},[]);}clonedChildren=Children.map(filteredSlots,(child,index)=>{var _child_props,_child_props1,_child_props2,_child_props3;let ref;if(index===0){ref=childrenRef[0];}if(index===filteredSlots.length-1){ref=childrenRef[1];}const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{ref:ref,style:size,children:/*#__PURE__*/cloneElement(child,{style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,...size,flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-original-\"+index:undefined},(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.children)})},index+\"-original\");});}if(!isCanvas){for(let i=0;i<duplicateBy;i++){dupedChildren=[...dupedChildren,...Children.map(filteredSlots,(child,childIndex)=>{var _child_props,_child_props1,_child_props2,_child_props3,_child_props4,_child_props5;const size={width:widthType?(_child_props=child.props)===null||_child_props===void 0?void 0:_child_props.width:\"100%\",height:heightType?(_child_props1=child.props)===null||_child_props1===void 0?void 0:_child_props1.height:\"100%\",willChange:isLayerTooBig===true?\"auto\":\"transform\"};return /*#__PURE__*/_jsx(LayoutGroup,{inherit:\"id\",children:/*#__PURE__*/_jsx(\"li\",{style:size,\"aria-hidden\":true,children:/*#__PURE__*/cloneElement(child,{key:i+\" \"+childIndex,style:{...(_child_props2=child.props)===null||_child_props2===void 0?void 0:_child_props2.style,width:widthType?(_child_props3=child.props)===null||_child_props3===void 0?void 0:_child_props3.width:\"100%\",height:heightType?(_child_props4=child.props)===null||_child_props4===void 0?void 0:_child_props4.height:\"100%\",flexShrink:0,...childrenStyles},layoutId:child.props.layoutId?child.props.layoutId+\"-dupe-\"+i:undefined},(_child_props5=child.props)===null||_child_props5===void 0?void 0:_child_props5.children)},i+\"li\"+childIndex)},i+\"lg\"+childIndex);})];}}const animateToValue=size.children+size.children*Math.round(size.parent/size.children);const initialTime=useRef(null);const prevTime=useRef(null);const xOrY=useRef(0);const isHover=useRef(false);const isReducedMotion=useReducedMotion();const listRef=useRef(null);const animationRef=useRef(null);/**\n     * Setup animations\n     */if(!isCanvas){const isInView=useInView(parentRef);/**\n         * If this is an animation we can hardware accelerate, animate with WAAPI\n         */if(supportsWaapi&&(!isLayerTooBig||isLayerTooBig&&supportsRegisterProperty)){useEffect(()=>{if(isReducedMotion||!animateToValue||!speed||isLayerTooBig===null){return;}if(isLayerTooBig){try{window.CSS.registerProperty({name:CSS_VAR_NAME,syntax:\"<length>\",initialValue:\"0px\",inherits:false});}catch(e){}}/**\n                 * If the layer is too big we want to animate a CSS variable instead of the transform\n                 * to avoid promoting the layer to the GPU.\n                 */const keyframes=isLayerTooBig?{[CSS_VAR_NAME]:[\"0px\",`${minus}${animateToValue}px`]}:{transform:[`translate${axis}(0px)`,`translate${axis}(${minus}${animateToValue}px)`]};animationRef.current=listRef.current.animate(keyframes,{duration:Math.abs(animateToValue)/speed*1e3,iterations:Infinity,easing:\"linear\"});return()=>animationRef.current.cancel();},[hoverFactor,animateToValue,speed,isLayerTooBig]);// Pause the animation when it's out of view\nuseEffect(()=>{if(!animationRef.current)return;if(isInView&&animationRef.current.playState===\"paused\"){animationRef.current.play();}else if(!isInView&&animationRef.current.playState===\"running\"){animationRef.current.pause();}},[isInView]);}else{/**\n             * If we can't accelerate this animation because we have a hoverFactor defined\n             * animate with a rAF loop.\n             */useAnimationFrame(t=>{if(!animateToValue||isReducedMotion||supportsWaapi){return;}/**\n                 * In case this animation is delayed from starting because we're running a bunch\n                 * of other work, we want to set an initial time rather than counting from 0.\n                 * That ensures that if the animation is delayed, it starts from the first frame\n                 * rather than jumping.\n                 */if(initialTime.current===null){initialTime.current=t;}t=t-initialTime.current;const timeSince=prevTime.current===null?0:t-prevTime.current;let delta=timeSince*(speed/1e3);if(isHover.current){delta*=hoverFactor;}xOrY.current+=delta;xOrY.current=wrap(0,animateToValue,xOrY.current);prevTime.current=t;if(!isInView)return;offset.set(xOrY.current);});}}/* Fades */const fadeDirection=isHorizontal?\"to right\":\"to bottom\";const fadeWidthStart=fadeWidth/2;const fadeWidthEnd=100-fadeWidth/2;const fadeInsetStart=clamp(fadeInset,0,fadeWidthStart);const fadeInsetEnd=100-fadeInset;const fadeMask=`linear-gradient(${fadeDirection}, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetStart}%, rgba(0, 0, 0, 1) ${fadeWidthStart}%, rgba(0, 0, 0, 1) ${fadeWidthEnd}%, rgba(0, 0, 0, ${fadeAlpha}) ${fadeInsetEnd}%)`;/* Empty state */if(!hasChildren){return /*#__PURE__*/_jsxs(\"section\",{style:placeholderStyles,children:[/*#__PURE__*/_jsx(\"div\",{style:emojiStyles,children:\"\u2728\"}),/*#__PURE__*/_jsx(\"p\",{style:titleStyles,children:\"Connect to Content\"}),/*#__PURE__*/_jsx(\"p\",{style:subtitleStyles,children:\"Add layers or components to infinitely loop on your page.\"})]});}return /*#__PURE__*/_jsx(\"section\",{style:{...containerStyle,opacity:opacity,WebkitMaskImage:fadeContent?fadeMask:undefined,MozMaskImage:fadeContent?fadeMask:undefined,maskImage:fadeContent?fadeMask:undefined,overflow:overflow?\"visible\":\"hidden\",padding:paddingValue},ref:parentRef,children:/*#__PURE__*/_jsxs(motion.ul,{ref:listRef,style:{...containerStyle,gap:gap,top:direction===\"bottom\"&&isValidNumber(animateToValue)?-animateToValue:undefined,left:direction===\"right\"&&isValidNumber(animateToValue)?-animateToValue:undefined,placeItems:alignment,position:\"relative\",flexDirection:isHorizontal?\"row\":\"column\",...style,willChange:isCanvas||isLayerTooBig?\"auto\":\"transform\",transform:supportsWaapi?isLayerTooBig?`translate${axis}(var(${CSS_VAR_NAME}))`:\"none\":transform},onMouseEnter:()=>{isHover.current=true;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=hoverFactor;}},onMouseLeave:()=>{isHover.current=false;if(animationRef.current){// TODO Replace with updatePlaybackRate when Chrome bugs sorted\nanimationRef.current.playbackRate=1;}},children:[clonedChildren,dupedChildren]})});}/* Default Properties */Ticker.defaultProps={gap:10,padding:10,sizingOptions:{widthType:true,heightType:true},fadeOptions:{fadeContent:true,overflow:false,fadeWidth:25,fadeAlpha:0,fadeInset:0},direction:true};/* Property Controls */addPropertyControls(Ticker,{slots:{type:ControlType.Array,title:\"Children\",control:{type:ControlType.ComponentInstance}},speed:{type:ControlType.Number,title:\"Speed\",min:0,max:1e3,defaultValue:100,unit:\"%\",displayStepper:true,step:5},direction:{type:ControlType.Enum,title:\"Direction\",options:[\"left\",\"right\",\"top\",\"bottom\"],optionIcons:[\"direction-left\",\"direction-right\",\"direction-up\",\"direction-down\"],optionTitles:[\"Left\",\"Right\",\"Top\",\"Bottom\"],defaultValue:\"left\",displaySegmentedControl:true},alignment:{type:ControlType.Enum,title:\"Align\",options:[\"flex-start\",\"center\",\"flex-end\"],optionIcons:{direction:{right:[\"align-top\",\"align-middle\",\"align-bottom\"],left:[\"align-top\",\"align-middle\",\"align-bottom\"],top:[\"align-left\",\"align-center\",\"align-right\"],bottom:[\"align-left\",\"align-center\",\"align-right\"]}},defaultValue:\"center\",displaySegmentedControl:true},gap:{type:ControlType.Number,title:\"Gap\"},padding:{title:\"Padding\",type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],min:0},sizingOptions:{type:ControlType.Object,title:\"Sizing\",controls:{widthType:{type:ControlType.Boolean,title:\"Width\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true},heightType:{type:ControlType.Boolean,title:\"Height\",enabledTitle:\"Auto\",disabledTitle:\"Stretch\",defaultValue:true}}},fadeOptions:{type:ControlType.Object,title:\"Clipping\",controls:{fadeContent:{type:ControlType.Boolean,title:\"Fade\",defaultValue:true},overflow:{type:ControlType.Boolean,title:\"Overflow\",enabledTitle:\"Show\",disabledTitle:\"Hide\",defaultValue:false,hidden(props){return props.fadeContent===true;}},fadeWidth:{type:ControlType.Number,title:\"Width\",defaultValue:25,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeInset:{type:ControlType.Number,title:\"Inset\",defaultValue:0,min:0,max:100,unit:\"%\",hidden(props){return props.fadeContent===false;}},fadeAlpha:{type:ControlType.Number,title:\"Opacity\",defaultValue:0,min:0,max:1,step:.05,hidden(props){return props.fadeContent===false;}}}},hoverFactor:{type:ControlType.Number,title:\"Hover\",min:0,max:1,unit:\"x\",defaultValue:1,step:.1,displayStepper:true,description:\"Slows down the speed while you are hovering.\"}});/* Placeholder Styles */const containerStyle={display:\"flex\",width:\"100%\",height:\"100%\",maxWidth:\"100%\",maxHeight:\"100%\",placeItems:\"center\",margin:0,padding:0,listStyleType:\"none\",textIndent:\"none\"};/* Styles */const placeholderStyles={display:\"flex\",width:\"100%\",height:\"100%\",placeContent:\"center\",placeItems:\"center\",flexDirection:\"column\",color:\"#96F\",background:\"rgba(136, 85, 255, 0.1)\",fontSize:11,overflow:\"hidden\",padding:\"20px 20px 30px 20px\"};const emojiStyles={fontSize:32,marginBottom:10};const titleStyles={margin:0,marginBottom:10,fontWeight:600,textAlign:\"center\"};const subtitleStyles={margin:0,opacity:.7,maxWidth:150,lineHeight:1.5,textAlign:\"center\"};/* Clamp function, used for fadeInset */const clamp=(num,min,max)=>Math.min(Math.max(num,min),max);const isValidNumber=value=>typeof value===\"number\"&&!isNaN(value);\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Ticker\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"fixed\",\"framerSupportedLayoutHeight\":\"fixed\",\"framerIntrinsicWidth\":\"400\",\"framerIntrinsicHeight\":\"200\",\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"*\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Ticker.map", "// Generated by Framer (5351ffe)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/6f47ZMpjTcSb73wNcs7I/CbldwZeBebFhGgYDx3O8/hEONwgjgB.js\";const enabledGestures={HYlt03BEL:{hover:true}};const cycleOrder=[\"HYlt03BEL\",\"hK5KF2cI4\",\"kO5jAvRdG\",\"fyYcwtmtZ\"];const serializationHash=\"framer-Pcdhn\";const variantClassNames={fyYcwtmtZ:\"framer-v-quqr2l\",hK5KF2cI4:\"framer-v-11i2y5n\",HYlt03BEL:\"framer-v-1tuvbm3\",kO5jAvRdG:\"framer-v-1smvhig\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:.8,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"mob exp\":\"fyYcwtmtZ\",\"Variant 1\":\"HYlt03BEL\",\"Variant 2\":\"kO5jAvRdG\",mob:\"hK5KF2cI4\"};const getProps=({expandedText,height,id,label,width,...props})=>{return{...props,E0M8AsbVE:label??props.E0M8AsbVE??\"Learn More\",nnS0mvWZt:expandedText??props.nnS0mvWZt??\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Praesent egestas neque eu enim.\",variant:humanReadableVariantMap[props.variant]??props.variant??\"HYlt03BEL\"};};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,E0M8AsbVE,nnS0mvWZt,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HYlt03BEL\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap13qizh8=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HYlt03BEL\");});const onTap1cx34dd=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"hK5KF2cI4\");});const onTapufq0uv=activeVariantCallback(async(...args)=>{setVariant(\"kO5jAvRdG\");});const onTapfqj3vw=activeVariantCallback(async(...args)=>{setVariant(\"fyYcwtmtZ\");});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1tuvbm3\",className,classNames),\"data-framer-name\":\"Variant 1\",layoutDependency:layoutDependency,layoutId:\"HYlt03BEL\",ref:refBinding,style:{...style},...addPropertyOverrides({\"HYlt03BEL-hover\":{\"data-framer-name\":undefined},fyYcwtmtZ:{\"data-framer-name\":\"mob exp\",\"data-highlight\":true,onTap:onTap1cx34dd},hK5KF2cI4:{\"data-framer-name\":\"mob\"},kO5jAvRdG:{\"data-framer-name\":\"Variant 2\",\"data-highlight\":true,onTap:onTap13qizh8}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1leiwzc\",\"data-framer-name\":\"Learn More\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"FwI6qVWcd\",onTap:onTapufq0uv,...addPropertyOverrides({hK5KF2cI4:{onTap:onTapfqj3vw}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-447zw5\",layoutDependency:layoutDependency,layoutId:\"unLTWit24\",children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-rd1hl7\",layoutDependency:layoutDependency,layoutId:\"vjoMF4xw1\",style:{backgroundColor:\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},variants:{\"HYlt03BEL-hover\":{backgroundColor:\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-82gd9g\",layoutDependency:layoutDependency,layoutId:\"h2WQTEHJt\",style:{backgroundColor:\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},variants:{\"HYlt03BEL-hover\":{backgroundColor:\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"}}})]}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61)))\"},children:\"Learn More\"})}),className:\"framer-1ymqb7r\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"BpFOP5jxD\",style:{\"--extracted-r6o4lv\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:E0M8AsbVE,variants:{\"HYlt03BEL-hover\":{\"--extracted-r6o4lv\":\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"HYlt03BEL-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186)))\"},children:\"Learn More\"})})}},baseVariant,gestureVariant)})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-cyv6cy\",\"data-framer-name\":\"Text Block\",layoutDependency:layoutDependency,layoutId:\"qKsHnUJIK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, rgb(105, 105, 105))\"},children:\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Praesent egestas neque eu enim.\"})}),className:\"framer-akut88\",fonts:[\"Inter-Light\"],layoutDependency:layoutDependency,layoutId:\"mpyafc0J0\",style:{\"--extracted-r6o4lv\":\"rgb(105, 105, 105)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},text:nnS0mvWZt,variants:{kO5jAvRdG:{\"--extracted-r6o4lv\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({fyYcwtmtZ:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",children:\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Praesent egestas neque eu enim.\"})}),fonts:[\"Inter\"]},hK5KF2cI4:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",children:\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Praesent egestas neque eu enim.\"})}),fonts:[\"Inter\"]},kO5jAvRdG:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135)))\"},children:\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Praesent egestas neque eu enim.\"})})}},baseVariant,gestureVariant)})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Pcdhn.framer-nlesry, .framer-Pcdhn .framer-nlesry { display: block; }\",\".framer-Pcdhn.framer-1tuvbm3 { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 400px; }\",\".framer-Pcdhn .framer-1leiwzc { align-content: center; align-items: center; cursor: pointer; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-Pcdhn .framer-447zw5 { align-content: center; align-items: center; aspect-ratio: 1 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: var(--framer-aspect-ratio-supported, 8px); justify-content: center; overflow: visible; padding: 0px; position: relative; width: 8px; }\",\".framer-Pcdhn .framer-rd1hl7 { flex: none; height: 1px; left: calc(50.00000000000002% - 6px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 1px / 2); width: 6px; z-index: 1; }\",\".framer-Pcdhn .framer-82gd9g { flex: none; height: 6px; left: calc(50.00000000000002% - 1px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 6px / 2); width: 1px; z-index: 1; }\",\".framer-Pcdhn .framer-1ymqb7r { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Pcdhn .framer-cyv6cy { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 1px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Pcdhn .framer-akut88 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Pcdhn.framer-v-11i2y5n.framer-1tuvbm3 { cursor: unset; }\",\".framer-Pcdhn.framer-v-1smvhig.framer-1tuvbm3, .framer-Pcdhn.framer-v-quqr2l.framer-1tuvbm3 { gap: 8px; }\",\".framer-Pcdhn.framer-v-1smvhig .framer-82gd9g, .framer-Pcdhn.framer-v-quqr2l .framer-82gd9g { height: 1px; top: calc(50.00000000000002% - 1px / 2); }\",\".framer-Pcdhn.framer-v-1smvhig .framer-cyv6cy, .framer-Pcdhn.framer-v-quqr2l .framer-cyv6cy { height: min-content; padding: 0px 0px 20px 0px; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 26\n * @framerIntrinsicWidth 400\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"hK5KF2cI4\":{\"layout\":[\"fixed\",\"auto\"]},\"kO5jAvRdG\":{\"layout\":[\"fixed\",\"auto\"]},\"fyYcwtmtZ\":{\"layout\":[\"fixed\",\"auto\"]},\"oiz3zZj2N\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"E0M8AsbVE\":\"label\",\"nnS0mvWZt\":\"expandedText\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerIS8FCxO8t=withCSS(Component,css,\"framer-Pcdhn\");export default FramerIS8FCxO8t;FramerIS8FCxO8t.displayName=\"learn more\";FramerIS8FCxO8t.defaultProps={height:26,width:400};addPropertyControls(FramerIS8FCxO8t,{variant:{options:[\"HYlt03BEL\",\"hK5KF2cI4\",\"kO5jAvRdG\",\"fyYcwtmtZ\"],optionTitles:[\"Variant 1\",\"mob\",\"Variant 2\",\"mob exp\"],title:\"Variant\",type:ControlType.Enum},E0M8AsbVE:{defaultValue:\"Learn More\",displayTextArea:false,title:\"Label\",type:ControlType.String},nnS0mvWZt:{defaultValue:\"Excepteur sint occaecat cupidatat non proident, sunt in culpa qui officia deserunt mollit anim id est laborum. Sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Praesent egestas neque eu enim.\",displayTextArea:true,title:\"Expanded text\",type:ControlType.String}});addFonts(FramerIS8FCxO8t,[{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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerIS8FCxO8t\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"400\",\"framerVariables\":\"{\\\"E0M8AsbVE\\\":\\\"label\\\",\\\"nnS0mvWZt\\\":\\\"expandedText\\\"}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"26\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"hK5KF2cI4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kO5jAvRdG\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"fyYcwtmtZ\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"oiz3zZj2N\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./IS8FCxO8t.map", "// Generated by Framer (dc53115)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/6f47ZMpjTcSb73wNcs7I/CbldwZeBebFhGgYDx3O8/hEONwgjgB.js\";const enabledGestures={g3vw6TGSV:{pressed:true}};const cycleOrder=[\"g3vw6TGSV\",\"tgPVBzc6n\"];const serializationHash=\"framer-OVk6C\";const variantClassNames={g3vw6TGSV:\"framer-v-xrw083\",tgPVBzc6n:\"framer-v-1v1ho09\"};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 humanReadableVariantMap={\"Variant 1\":\"g3vw6TGSV\",Hidden:\"tgPVBzc6n\"};const getProps=({click,height,id,width,...props})=>{return{...props,saq0BRFou:click??props.saq0BRFou,variant:humanReadableVariantMap[props.variant]??props.variant??\"g3vw6TGSV\"};};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,saq0BRFou,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"g3vw6TGSV\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap17h6cdn=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(saq0BRFou){const res=await saq0BRFou(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-xrw083\",className,classNames),\"data-framer-name\":\"Variant 1\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"g3vw6TGSV\",onTap:onTap17h6cdn,ref:refBinding,style:{opacity:1,...style},variants:{\"g3vw6TGSV-pressed\":{opacity:1},tgPVBzc6n:{opacity:0}},...addPropertyOverrides({\"g3vw6TGSV-pressed\":{\"data-framer-name\":undefined},tgPVBzc6n:{\"data-framer-name\":\"Hidden\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-swnt2e\",layoutDependency:layoutDependency,layoutId:\"g3vw6TGSVWQxiFzm9x\",children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1wl74ro\",\"data-border\":true,layoutDependency:layoutDependency,layoutId:\"g3vw6TGSVAvQjYSPrq\",style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgb(34, 34, 34)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backgroundColor:\"var(--token-555acfa9-5552-4a6f-bc00-8f0f59158509, rgb(255, 255, 255))\",borderBottomLeftRadius:999,borderBottomRightRadius:999,borderTopLeftRadius:999,borderTopRightRadius:999},variants:{\"g3vw6TGSV-pressed\":{backgroundColor:\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61)))\"},children:\"View More Work\"})}),className:\"framer-866fn3\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"g3vw6TGSVCofBjDqYd\",style:{\"--extracted-r6o4lv\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\"},variants:{\"g3vw6TGSV-pressed\":{\"--extracted-r6o4lv\":\"var(--token-322a48d7-b830-43da-87e1-04ceda97730e, rgb(227, 227, 227))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"g3vw6TGSV-pressed\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-322a48d7-b830-43da-87e1-04ceda97730e, rgb(227, 227, 227)))\"},children:\"View More Work\"})})}},baseVariant,gestureVariant)})})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OVk6C.framer-1yyzq80, .framer-OVk6C .framer-1yyzq80 { display: block; }\",\".framer-OVk6C.framer-xrw083 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-OVk6C .framer-swnt2e { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-OVk6C .framer-1wl74ro { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 12px 32px 12px 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-OVk6C .framer-866fn3 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-OVk6C.framer-v-1v1ho09 .framer-1wl74ro { padding: 0px; }\",...sharedStyle.css,'.framer-OVk6C[data-border=\"true\"]::after, .framer-OVk6C [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 49\n * @framerIntrinsicWidth 167\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"tgPVBzc6n\":{\"layout\":[\"auto\",\"auto\"]},\"Mn5EkF72D\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"saq0BRFou\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerlwpxurkou=withCSS(Component,css,\"framer-OVk6C\");export default Framerlwpxurkou;Framerlwpxurkou.displayName=\"PHN Load More\";Framerlwpxurkou.defaultProps={height:49,width:167};addPropertyControls(Framerlwpxurkou,{variant:{options:[\"g3vw6TGSV\",\"tgPVBzc6n\"],optionTitles:[\"Variant 1\",\"Hidden\"],title:\"Variant\",type:ControlType.Enum},saq0BRFou:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerlwpxurkou,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerlwpxurkou\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"tgPVBzc6n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Mn5EkF72D\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"167\",\"framerIntrinsicHeight\":\"49\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerVariables\":\"{\\\"saq0BRFou\\\":\\\"click\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./lwpxurkou.map", "// Generated by Framer (dc53115)\nimport{fontStore}from\"framer\";fontStore.loadFonts([]);export const fonts=[{explicitInter:true,fonts:[]}];export const css=[\".framer-qGU2h .framer-styles-preset-1n5l0x:not(.rich-text-wrapper), .framer-qGU2h .framer-styles-preset-1n5l0x.rich-text-wrapper a { --framer-link-current-text-color: var(--token-7daec641-9a3c-48d5-8d6c-bfedc79d95a1, #171717); --framer-link-current-text-decoration: underline; --framer-link-hover-text-color: var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, #bababa); --framer-link-hover-text-decoration: underline; --framer-link-text-color: var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, #878787); --framer-link-text-decoration: none; }\"];export const className=\"framer-qGU2h\";\nexport const __FramerMetadata__ = {\"exports\":{\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (98a2bb2)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,ChildrenCanSuspend,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,PathVariablesContext,PropertyOverrides,ResolveLinks,RichText,SVG,useActiveVariantCallback,useComponentViewport,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLoadMorePaginatedQuery,useLocaleInfo,useQueryData,useRouteElementId,useRouter,useSiteRefs,withCodeBoundaryForOverrides,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ScrollDownArrow from\"https://framerusercontent.com/modules/2ZbQmYhX1xGCBs4pCXDE/SLa4DEv9UM7jF4tul5dL/q634ZJA33.js\";import Ticker from\"https://framerusercontent.com/modules/B2xAlJLcN0gOnt11mSPw/RLUeKLNmERbgkhrJQwKX/Ticker.js\";import{Video}from\"https://framerusercontent.com/modules/lRDHiNWNVWmE0lqtoVHP/7qT0r3So12155VV5Jq5x/Video.js\";import AnimatedCounter from\"https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/lGu9VayhxpYD2v9lbKlh/AnimatedCounter.js\";import SmoothScroll from\"https://framerusercontent.com/modules/Yppqt3Cs3Y8TZqvASnXl/PGrowqBrgWCViHduGfsA/SmoothScroll_Prod.js\";import LearnMore from\"#framer/local/canvasComponent/IS8FCxO8t/IS8FCxO8t.js\";import GooeyViewMore from\"#framer/local/canvasComponent/LRmsrqbTP/LRmsrqbTP.js\";import PHNLoadMore from\"#framer/local/canvasComponent/lwpxurkou/lwpxurkou.js\";import CTA from\"#framer/local/canvasComponent/QrE4K8Wyd/QrE4K8Wyd.js\";import QuarterlyUpdate from\"#framer/local/canvasComponent/trTXRPQa5/trTXRPQa5.js\";import{withPaddingTop110vh}from\"#framer/local/codeFile/VZwE89o/Top_Padding_by_VH.js\";import Portfolio from\"#framer/local/collection/x4xdVl4Q3/x4xdVl4Q3.js\";import*as sharedStyle1 from\"#framer/local/css/A6f6urJDt/A6f6urJDt.js\";import*as sharedStyle from\"#framer/local/css/hEONwgjgB/hEONwgjgB.js\";import*as sharedStyle3 from\"#framer/local/css/jyz2al2XA/jyz2al2XA.js\";import*as sharedStyle2 from\"#framer/local/css/OIF3cw2Ag/OIF3cw2Ag.js\";import metadataProvider from\"#framer/local/webPageMetadata/augiA20Il/augiA20Il.js\";const SmoothScrollFonts=getFonts(SmoothScroll);const CTAFonts=getFonts(CTA);const ContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(Container));const MotionDivWithPaddingTop110vh8g53xa=withCodeBoundaryForOverrides(motion.div,{nodeId:\"NFOLX5RGl\",override:withPaddingTop110vh,scopeId:\"augiA20Il\"});const ContainerWithFX=withFX(Container);const VideoFonts=getFonts(Video);const ContainerWithOptimizedAppearEffect=withOptimizedAppearEffect(Container);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const MotionDivWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.div));const ScrollDownArrowFonts=getFonts(ScrollDownArrow);const QuarterlyUpdateFonts=getFonts(QuarterlyUpdate);const RichTextWithFX=withFX(RichText);const MotionDivWithFX=withFX(motion.div);const AnimatedCounterFonts=getFonts(AnimatedCounter);const MotionAWithFX=withFX(motion.a);const LearnMoreFonts=getFonts(LearnMore);const GooeyViewMoreFonts=getFonts(GooeyViewMore);const PHNLoadMoreFonts=getFonts(PHNLoadMore);const TickerFonts=getFonts(Ticker);const breakpoints={C9AQv0GR3:\"(min-width: 810px) and (max-width: 1199px)\",kcyjsnmnY:\"(max-width: 809px)\",WQLkyLRf1:\"(min-width: 1440px)\",wtyj1IWF9:\"(min-width: 1200px) and (max-width: 1439px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-8w9Sx\";const variantClassNames={C9AQv0GR3:\"framer-v-1u4bg3f\",kcyjsnmnY:\"framer-v-1g88cdw\",WQLkyLRf1:\"framer-v-72rtr7\",wtyj1IWF9:\"framer-v-3kj85i\"};const transition1={bounce:0,delay:.4,duration:.8,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition1,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition2={bounce:0,delay:0,duration:.8,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:100};const animation5={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:100};const transition3={bounce:0,delay:3,duration:1.8,type:\"spring\"};const animation6={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const transition4={bounce:.2,delay:2,duration:2,type:\"spring\"};const animation7={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation8={opacity:.001,rotate:0,scale:1,skewX:0,skewY:0,x:0,y:0};const transition5={bounce:0,delay:.05,duration:1.2,type:\"spring\"};const textEffect={effect:animation8,startDelay:3.3,tokenization:\"word\",transition:transition5,trigger:\"onMount\",type:\"appear\"};const transition6={delay:1.13,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation9={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition6,x:0,y:0};const textEffect1={effect:animation8,repeat:false,startDelay:3,tokenization:\"word\",transition:transition5,trigger:\"onMount\",type:\"appear\"};const textEffect2={effect:animation8,repeat:false,startDelay:3.3,tokenization:\"word\",transition:transition5,trigger:\"onMount\",type:\"appear\"};const transition7={bounce:0,delay:3.3,duration:.8,type:\"spring\"};const animation10={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition7,x:0,y:0};const transition8={delay:3.6,duration:1,ease:[.44,0,.56,1],type:\"tween\"};const animation11={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition8,x:0,y:0};const transition9={bounce:0,delay:3.6,duration:1.2,type:\"spring\"};const animation12={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition9,x:0,y:0};const textEffect3={effect:animation8,startDelay:.8,threshold:1,tokenization:\"word\",transition:transition5,trigger:\"onInView\",type:\"appear\"};const transition10={delay:0,duration:1.5,ease:[.44,0,.56,1],type:\"tween\"};const animation13={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition10,x:0,y:0};const transition11={delay:0,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation14={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition11,x:0,y:0};const transition12={delay:.2,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation15={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition12,x:0,y:0};const transition13={delay:.4,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation16={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition13,x:0,y:0};const transition14={delay:.3,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation17={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition14,x:0,y:0};const transition15={delay:.5,duration:2,ease:[.44,0,.56,1],type:\"tween\"};const animation18={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition15,x:0,y:0};const transition16={delay:1.5,duration:1.5,ease:[.44,0,.56,1],type:\"tween\"};const animation19={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition16,x:0,y:0};const transition17={delay:.8,duration:2,ease:[.62,-.08,.56,1],type:\"tween\"};const animation20={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition17,x:0,y:0};const transition18={bounce:0,delay:.8,duration:.8,type:\"spring\"};const animation21={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition18,x:0,y:0};const transition19={delay:0,duration:2,ease:[.62,-.08,.56,1],type:\"tween\"};const animation22={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition19,x:0,y:0};const transition20={bounce:0,delay:.5,duration:.8,type:\"spring\"};const animation23={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition20,x:0,y:0};const transition21={bounce:0,delay:1,duration:1.5,type:\"spring\"};const animation24={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition21,x:0,y:0};const transition22={bounce:0,delay:.025,duration:1.2,type:\"spring\"};const textEffect4={effect:animation8,repeat:false,startDelay:0,threshold:1,tokenization:\"character\",transition:transition22,trigger:\"onInView\",type:\"appear\"};const textEffect5={effect:animation8,repeat:false,startDelay:0,threshold:.5,tokenization:\"character\",transition:transition22,trigger:\"onInView\",type:\"appear\"};const textEffect6={effect:animation8,repeat:false,startDelay:.5,threshold:1,tokenization:\"character\",transition:transition22,trigger:\"onInView\",type:\"appear\"};const transition23={bounce:0,delay:.7,duration:1.5,type:\"spring\"};const animation25={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition23,x:0,y:0};const transition24={bounce:0,delay:0,duration:.75,type:\"spring\"};const animation26={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition24,x:0,y:0};const transition25={bounce:.25,delay:0,duration:.45,type:\"spring\"};const animation27={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1.025,skewX:0,skewY:0,transition:transition25};const transition26={bounce:0,delay:0,duration:.2,type:\"spring\"};const animation28={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:.9,skewX:0,skewY:0,transition:transition26};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const isSet=value=>{if(Array.isArray(value))return value.length>0;return value!==undefined&&value!==null&&value!==\"\";};const negate=value=>{return!value;};const toImageSrc=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value.src;}return typeof value===\"string\"?value:undefined;};const QueryData=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"q3Z0VAwcl\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const transition27={bounce:0,delay:.05,duration:2,type:\"spring\"};const textEffect7={effect:animation8,threshold:.5,tokenization:\"character\",transition:transition27,trigger:\"onInView\",type:\"appear\"};const transition28={bounce:0,delay:1.1,duration:1.5,type:\"spring\"};const animation29={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition28,x:0,y:0};const transition29={bounce:0,delay:1.2,duration:1.5,type:\"spring\"};const animation30={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition29,x:0,y:0};const transition30={bounce:0,delay:1.4,duration:1.5,type:\"spring\"};const animation31={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition30,x:0,y:0};const transition31={bounce:0,delay:1.6,duration:1.5,type:\"spring\"};const animation32={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition31,x:0,y:0};const transition32={bounce:0,delay:1.9,duration:1.5,type:\"spring\"};const animation33={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition32,x:0,y:0};const loaderVariants=(repeaterState,variants,currentVariant)=>{if(repeaterState.currentPage>=repeaterState.totalPages)return variants.disabled??currentVariant;if(repeaterState.isLoading)return variants.loading??currentVariant;return currentVariant;};const QueryData1=({query,pageSize,children})=>{const{paginatedQuery,paginationInfo,loadMore}=useLoadMorePaginatedQuery(query,pageSize,\"g1pyn7u2J\");const data=useQueryData(paginatedQuery);return children(data,paginationInfo,loadMore);};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={\"\uD83D\uDCBBDesktop Sm\":\"wtyj1IWF9\",\"\uD83D\uDCF1Tablet\":\"C9AQv0GR3\",\"\uD83D\uDDA5\uFE0FDesktop\":\"WQLkyLRf1\",\"\uD83E\uDD33\uD83C\uDFFEPhone\":\"kcyjsnmnY\"};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,jwKN9sCc_q3Z0VAwcl,lyisMhj2cq3Z0VAwcl,KpNqQTxWeq3Z0VAwcl,KzHB6WjMmq3Z0VAwcl,B6ssrChd4q3Z0VAwcl,mAE3D2HE3q3Z0VAwcl,U4akRB9ylq3Z0VAwcl,dyXFbBOpsq3Z0VAwcl,OI2erc3gNq3Z0VAwcl,SXlMHeqwQq3Z0VAwcl,idq3Z0VAwcl,jwKN9sCc_g1pyn7u2J,lyisMhj2cg1pyn7u2J,KpNqQTxWeg1pyn7u2J,KzHB6WjMmg1pyn7u2J,B6ssrChd4g1pyn7u2J,mAE3D2HE3g1pyn7u2J,U4akRB9ylg1pyn7u2J,dyXFbBOpsg1pyn7u2J,OI2erc3gNg1pyn7u2J,SXlMHeqwQg1pyn7u2J,idg1pyn7u2J,...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{activeVariantCallback,delay}=useActiveVariantCallback(undefined);const VYDb9mTPN1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const saq0BRFou1b86s49=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{loadMore();});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const elementId=useRouteElementId(\"Tq9ZQoifp\");const ref1=React.useRef(null);const elementId1=useRouteElementId(\"dUnexcjQj\");const dynamicRef=useSiteRefs();const elementId2=useRouteElementId(\"IxqvwHFtI\");const ref2=React.useRef(null);const elementId3=useRouteElementId(\"spFCXif90\");const ref3=React.useRef(null);const isDisplayed=()=>{if(!isBrowser())return true;if([\"C9AQv0GR3\",\"kcyjsnmnY\"].includes(baseVariant))return false;return true;};const router=useRouter();const isDisplayed1=()=>{if(!isBrowser())return true;if([\"C9AQv0GR3\",\"kcyjsnmnY\"].includes(baseVariant))return true;return false;};const ref4=React.useRef(null);const isDisplayed2=()=>{if(!isBrowser())return true;if(baseVariant===\"kcyjsnmnY\")return false;return true;};const isDisplayed3=()=>{if(!isBrowser())return true;if(baseVariant===\"kcyjsnmnY\")return true;return false;};const elementId4=useRouteElementId(\"jFHJ7aB2s\");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(252, 252, 252); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-72rtr7\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-ncbobx-container\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"Daz9jSZZ3\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(SmoothScroll,{height:\"100%\",id:\"Daz9jSZZ3\",intensity:8,layoutId:\"Daz9jSZZ3\",width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-azdwez\",\"data-framer-name\":\"\uD83D\uDD79\uFE0FTop\",id:elementId,ref:ref1}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vd6gh8\",\"data-framer-name\":\"\uD83D\uDD79\uFE0FFooter trigger holder\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-qgzkkz\",id:elementId1,ref:dynamicRef(elementId1)})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1v8qm68\",\"data-framer-name\":\"\uD83D\uDD79\uFE0FClient Form Trigger\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-mg4f0m\",id:elementId2,ref:ref2})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v6uxnl\",\"data-framer-name\":\"\uD83D\uDD79\uFE0FBack To Top Trigger\",id:elementId3,ref:ref3}),/*#__PURE__*/_jsx(MotionDivWithPaddingTop110vh8g53xa,{className:\"framer-8g53xa\",\"data-framer-name\":\"Sticky CTA Holder\",children:isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IxqvwHFtI\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":IxqvwHFtI\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:ref2,target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-160}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,animate:animation,className:\"framer-8amm0t-container hidden-1u4bg3f hidden-1g88cdw\",\"data-framer-appear-id\":\"8amm0t\",\"data-framer-name\":\"Sticky CTA\",initial:animation1,name:\"Sticky CTA\",nodeId:\"b2fCZPKwF\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wtyj1IWF9:{ZPkVjMJAU:resolvedLinks[1]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"b2fCZPKwF\",layoutId:\"b2fCZPKwF\",name:\"Sticky CTA\",paRght0gq:true,variant:\"sHg_vWK8O\",VQ4zDnUul:\"Contact Us\",width:\"100%\",ZPkVjMJAU:resolvedLinks[0]})})})})})}),isDisplayed1()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Per41UmKA\"},implicitPathVariables:undefined},{href:{hash:\":IxqvwHFtI\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":IxqvwHFtI\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{height:49,y:911},kcyjsnmnY:{height:49,y:916}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{__framer__enter:animation4,__framer__exit:animation5,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:dynamicRef(elementId1),target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5},kcyjsnmnY:{__framer__enter:animation4,__framer__exit:animation5,__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__targets:[{ref:ref4,target:\"animate\"}],__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:dynamicRef(elementId1),target:{opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5}},children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation3,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-ob5neg-container hidden-72rtr7 hidden-3kj85i\",\"data-framer-name\":\"Fixed CTA Mobile\",layoutScroll:true,name:\"Fixed CTA Mobile\",nodeId:\"mZd47BqPK\",rendersWithMotion:true,scopeId:\"augiA20Il\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{variant:\"rqKdcZ1sK\",ZPkVjMJAU:resolvedLinks1[1]},kcyjsnmnY:{variant:\"rqKdcZ1sK\",ZPkVjMJAU:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"mZd47BqPK\",layoutId:\"mZd47BqPK\",name:\"Fixed CTA Mobile\",paRght0gq:true,variant:\"sHg_vWK8O\",VQ4zDnUul:\"Contact Us\",width:\"100%\",ZPkVjMJAU:resolvedLinks1[0]})})})})})})}),/*#__PURE__*/_jsxs(\"main\",{className:\"framer-1f3egnk\",\"data-framer-name\":\"Main\",children:[/*#__PURE__*/_jsxs(\"header\",{className:\"framer-ndek6h\",\"data-framer-name\":\"Hero 100vh\",children:[isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation,className:\"framer-1sul8fb-container hidden-1u4bg3f hidden-1g88cdw\",\"data-framer-appear-id\":\"1sul8fb\",\"data-framer-name\":\"LG Screen Vid\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,name:\"LG Screen Vid\",nodeId:\"tEJ8tea9L\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"tEJ8tea9L\",isMixedBorderRadius:false,layoutId:\"tEJ8tea9L\",loop:false,muted:true,name:\"LG Screen Vid\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/OuKdhlyk9v67D9YBzkAUWmTGWmA.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",maxWidth:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{animate:animation7,transformTemplate:transformTemplate1}},children:/*#__PURE__*/_jsx(MotionDivWithOptimizedAppearEffect,{animate:animation6,\"aria-label\":\"logo\",className:\"framer-17xsfai\",\"data-framer-appear-id\":\"17xsfai\",\"data-framer-name\":\"Logo\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(SVG,{className:\"framer-vmbfnf\",\"data-framer-name\":\"LazyEight Black\",fill:\"black\",intrinsicHeight:416,intrinsicWidth:400,svg:'<svg width=\"400\" height=\"416\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\"><circle cx=\"100\" cy=\"116\" r=\"100\" fill=\"#383838\" fill-opacity=\".15\"/><circle cx=\"100\" cy=\"316\" r=\"100\" fill=\"#383838\"/><circle cx=\"300\" cy=\"316\" r=\"100\" fill=\"#383838\"/><path d=\"M324.58 64.472V38.264h13.281c1.065 0 2.225.308 3.48.923 1.255.592 2.32 1.516 3.196 2.77.9 1.231 1.349 2.794 1.349 4.688 0 1.917-.461 3.551-1.385 4.9-.923 1.326-2.047 2.332-3.373 3.019-1.302.687-2.533 1.03-3.693 1.03h-9.588v-4.262h7.812c.781 0 1.622-.39 2.521-1.172.924-.78 1.385-1.953 1.385-3.515 0-1.61-.461-2.699-1.385-3.267-.899-.568-1.692-.852-2.379-.852h-5.469v21.946h-5.752Zm15.838-12.358 6.534 12.358h-6.321l-6.392-12.358h6.179Zm-5.895 27.983c-3.93 0-7.612-.734-11.044-2.202a28.558 28.558 0 0 1-9.056-6.108 28.565 28.565 0 0 1-6.108-9.056c-1.467-3.432-2.201-7.114-2.201-11.044 0-3.93.734-7.61 2.201-11.043a28.565 28.565 0 0 1 6.108-9.056 28.558 28.558 0 0 1 9.056-6.108c3.432-1.468 7.114-2.202 11.044-2.202 3.93 0 7.611.734 11.044 2.202a28.553 28.553 0 0 1 9.055 6.108 28.565 28.565 0 0 1 6.108 9.056c1.468 3.432 2.202 7.114 2.202 11.044 0 3.93-.734 7.61-2.202 11.043a28.565 28.565 0 0 1-6.108 9.056 28.553 28.553 0 0 1-9.055 6.108c-3.433 1.468-7.114 2.202-11.044 2.202Zm0-6.819c3.977 0 7.599-.97 10.866-2.912a22.062 22.062 0 0 0 7.813-7.812c1.941-3.267 2.912-6.89 2.912-10.867 0-3.977-.971-7.599-2.912-10.866a22.062 22.062 0 0 0-7.813-7.813c-3.267-1.94-6.889-2.911-10.866-2.911-3.978 0-7.6.97-10.867 2.911a22.051 22.051 0 0 0-7.812 7.813c-1.942 3.267-2.912 6.89-2.912 10.867 0 3.977.97 7.599 2.912 10.866a22.051 22.051 0 0 0 7.812 7.813c3.267 1.94 6.889 2.911 10.867 2.911Z\" fill=\"#383838\"/></svg>',withExternalLayout:true})})}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-aev4zn hidden-1g88cdw\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"New Delhi \\xb7 Dubai \\xb7 New York City\"})}),className:\"framer-1w9n300\",effect:textEffect,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-fpqi8i\",\"data-framer-name\":\"Bottom Frame Content\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,animate:animation9,className:\"framer-bd7ia1 hidden-1g88cdw\",\"data-framer-appear-id\":\"bd7ia1\",\"data-framer-name\":\"Our Work scroll\",initial:animation1,optimized:true,children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h1\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"Lazy Eight\\xae\"})}),className:\"framer-1x3vs2l\",effect:textEffect1,fonts:[\"Inter\"],id:\"1x3vs2l\",verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsxs(MotionDivWithFXWithOptimizedAppearEffect,{__framer__adjustPosition:false,__framer__offset:0,__framer__parallaxTransformEnabled:true,__framer__speed:90,__perspectiveFX:false,__targetOpacity:1,animate:animation9,className:\"framer-7axtjc hidden-1g88cdw\",\"data-framer-appear-id\":\"7axtjc\",\"data-framer-name\":\"Our Work scroll\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",children:\"Scroll Down\"})}),className:\"framer-w2djuo\",effect:textEffect2,fonts:[\"Inter\"],id:\"w2djuo\",verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+0+40+770+0+124.8+4.6},wtyj1IWF9:{y:(componentViewport?.y||0)+0+0+0+0+40+770+0+124.8+4.6}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+0+0+0+50+760+0+124.8+4.6,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation10,className:\"framer-pg8eny-container\",\"data-framer-appear-id\":\"pg8eny\",initial:animation1,isModuleExternal:true,nodeId:\"nICeATlhn\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ScrollDownArrow,{height:\"100%\",id:\"nICeATlhn\",layoutId:\"nICeATlhn\",width:\"100%\"})})})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-16esg29 hidden-1g88cdw\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P8Nz4AhKf\"},implicitPathVariables:undefined},{href:{webPageId:\"P8Nz4AhKf\"},implicitPathVariables:undefined},{href:{webPageId:\"P8Nz4AhKf\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+0+40+770+0+0+0},wtyj1IWF9:{y:(componentViewport?.y||0)+0+0+0+0+40+770+0+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:150,y:(componentViewport?.y||0)+0+0+0+0+50+760+0+0+0,children:/*#__PURE__*/_jsx(ContainerWithOptimizedAppearEffect,{animate:animation11,className:\"framer-1x2f7cn-container\",\"data-framer-appear-id\":\"1x2f7cn\",initial:animation1,nodeId:\"cQ5Z2IhvL\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{KO6F_VUXY:resolvedLinks2[2]},wtyj1IWF9:{KO6F_VUXY:resolvedLinks2[1]}},children:/*#__PURE__*/_jsx(QuarterlyUpdate,{height:\"100%\",id:\"cQ5Z2IhvL\",KO6F_VUXY:resolvedLinks2[0],layoutId:\"cQ5Z2IhvL\",neegwIL2k:\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\",SzfqHFIvq:\"Latest\\nUpdate\",variant:\"Al7Nug2CH\",width:\"100%\"})})})})})})})]}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-gw7wzg-container hidden-72rtr7 hidden-3kj85i\",\"data-framer-name\":\"Sm Screen Vid\",isAuthoredByUser:true,isModuleExternal:true,name:\"Sm Screen Vid\",nodeId:\"mqp0tCMMT\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{srcFile:\"https://framerusercontent.com/assets/DrMdB4yf0hts1ImAC8JUVdHZ0Q.mp4\"}},children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"mqp0tCMMT\",isMixedBorderRadius:false,layoutId:\"mqp0tCMMT\",loop:false,muted:true,name:\"Sm Screen Vid\",objectFit:\"cover\",playing:true,posterEnabled:false,srcFile:\"https://framerusercontent.com/assets/XlELgH1HIyW4PaaR2x3GJh1HbBE.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})}),isDisplayed()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{hash:\":IxqvwHFtI\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{hash:\":IxqvwHFtI\",webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wtyj1IWF9:{y:(componentViewport?.y||0)+0+0+0+0+40}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+0+50,children:/*#__PURE__*/_jsx(ContainerWithFXWithOptimizedAppearEffect,{__framer__spring:{damping:60,delay:0,duration:.3,ease:[.44,0,.56,1],mass:1,stiffness:500,type:\"spring\"},__framer__styleTransformEffectEnabled:true,__framer__transformTargets:[{target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0}},{ref:dynamicRef(elementId1),target:{opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:-160}}],__framer__transformTrigger:\"onScrollTarget\",__framer__transformViewportThreshold:.5,__perspectiveFX:false,__targetOpacity:1,animate:animation12,className:\"framer-m42xjc-container hidden-1u4bg3f hidden-1g88cdw\",\"data-framer-appear-id\":\"m42xjc\",\"data-framer-name\":\"Sticky CTA\",initial:animation1,name:\"Sticky CTA\",nodeId:\"yH_bWEHOb\",optimized:true,rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{wtyj1IWF9:{ZPkVjMJAU:resolvedLinks3[1]}},children:/*#__PURE__*/_jsx(CTA,{height:\"100%\",id:\"yH_bWEHOb\",layoutId:\"yH_bWEHOb\",name:\"Sticky CTA\",paRght0gq:true,variant:\"sHg_vWK8O\",VQ4zDnUul:\"Contact Us\",width:\"100%\",ZPkVjMJAU:resolvedLinks3[0]})})})})})})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-rbelg5\",\"data-framer-name\":\"1st Scroll\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1hsvfe\",\"data-framer-name\":\"H1\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1a6vjm7\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-line-height\":\"1.8em\",\"--framer-text-color\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},children:\"New Delhi \\xb7 Dubai \\xb7 New York City\"})}),className:\"framer-wcf468 hidden-72rtr7 hidden-3kj85i hidden-1u4bg3f\",effect:textEffect3,fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-cso9lv\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jw0hcl\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{__framer__animate:{transition:transition11},__framer__exit:animation14,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdNakF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-variation-axes\":'\"opsz\" 24, \"wght\" 200',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"We Build New Brands\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition10},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation13,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdNakF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-variation-axes\":'\"opsz\" 24, \"wght\" 200',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"We Build New Brands\"})}),className:\"framer-um09xd\",\"data-framer-name\":\"We Build & Transform Brands.\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-11gml29\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtMzAwaXRhbGlj\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"28px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:[\"&\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdNakF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"normal\",\"--framer-font-variation-axes\":'\"opsz\" 24, \"wght\" 200',\"--framer-font-weight\":\"400\"},children:\" \"})]})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition12},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation15,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"R0Y7SW5yaWEgU2VyaWYtMzAwaXRhbGlj\",\"--framer-font-family\":'\"Inria Serif\", \"Inria Serif Placeholder\", serif',\"--framer-font-size\":\"36px\",\"--framer-font-style\":\"italic\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:[\"&\",/*#__PURE__*/_jsx(\"span\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdNakF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-style\":\"normal\",\"--framer-font-variation-axes\":'\"opsz\" 24, \"wght\" 200',\"--framer-font-weight\":\"400\"},children:\" \"})]})}),className:\"framer-w222dd\",\"data-framer-name\":\"We Build & Transform Brands.\",fonts:[\"GF;Inria Serif-300italic\",\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{__framer__animate:{transition:transition14},__framer__exit:animation17},kcyjsnmnY:{__framer__animate:{transition:transition15},__framer__exit:animation18,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdNakF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"28px\",\"--framer-font-variation-axes\":'\"opsz\" 24, \"wght\" 200',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"Evolve Existing Ones\"})})}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition13},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation16,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{style:{\"--font-selector\":\"SW50ZXItVmFyaWFibGVWRj1JbTl3YzNvaUlESTBMQ0FpZDJkb2RDSWdNakF3\",\"--framer-font-family\":'\"Inter Variable\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"36px\",\"--framer-font-variation-axes\":'\"opsz\" 24, \"wght\" 200',\"--framer-letter-spacing\":\"-0.04em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"Evolve Existing Ones\"})}),className:\"framer-fizfyv\",\"data-framer-name\":\"We Build & Transform Brands.\",fonts:[\"Inter-Variable\"],verticalAlignment:\"top\",withExternalLayout:true})})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-2wul3b hidden-1g88cdw\"})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-ao7swf hidden-1g88cdw\",\"data-framer-name\":\"Brands Arrow\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition16},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation19,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1a27qt5\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-ickdda\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{__framer__animate:{transition:transition14},__framer__exit:animation17}},children:/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-yrorm7\",\"data-styles-preset\":\"A6f6urJDt\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},children:\"Explore Our Collaborations.\"})}),className:\"framer-82wfyh\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,y:(componentViewport?.y||0)+0+0+0+1e3+316+0+0+140.4+0+0+116+116,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition18},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation21,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-13ql23r-container\",isModuleExternal:true,nodeId:\"jqrz2Bkfj\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ScrollDownArrow,{height:\"100%\",id:\"jqrz2Bkfj\",layoutId:\"jqrz2Bkfj\",width:\"100%\"})})})]})})]}),isDisplayed3()&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4ece05 hidden-72rtr7 hidden-3kj85i hidden-1u4bg3f\",\"data-framer-name\":\"Mobile Update Section\",children:[isDisplayed3()&&/*#__PURE__*/_jsx(\"div\",{className:\"framer-1vdq0ur hidden-72rtr7\",\"data-framer-name\":\"Brand Number Scroll Down\",children:/*#__PURE__*/_jsxs(MotionDivWithFX,{__framer__animate:{transition:transition11},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation14,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-tghd0k\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hksm52\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition19},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation22,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1f3z6sc-container hidden-1g88cdw\",isAuthoredByUser:true,isModuleExternal:true,nodeId:\"eIvYqLMMX\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\",decimalPlaces:0,decimalSeparator:\",\",duration:4,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontFeatureSettings:\"'salt' on\",fontSize:\"14px\",fontStyle:\"normal\",fontWeight:300,letterSpacing:\"-0.02em\",lineHeight:\"1em\"},from:400,height:\"100%\",id:\"eIvYqLMMX\",layoutId:\"eIvYqLMMX\",once:false,playOnLoad:true,to:428,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichTextWithFX,{__framer__animate:{transition:transition17},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation20,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__fromCanvasComponent:true,__perspectiveFX:false,__targetOpacity:1,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",children:\"Explore our collaborations\"})}),className:\"framer-16lc6c2\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{y:(componentViewport?.y||0)+0+0+0+1e3+100+179.4+0+290+0+0+0+33.2}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:16,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition20},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation23,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-lk7iw3-container\",isModuleExternal:true,nodeId:\"oCY84Aw3h\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(ScrollDownArrow,{height:\"100%\",id:\"oCY84Aw3h\",layoutId:\"oCY84Aw3h\",width:\"100%\"})})})})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"P8Nz4AhKf\"},implicitPathVariables:undefined},{href:{webPageId:\"P8Nz4AhKf\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{height:150,y:(componentViewport?.y||0)+0+0+0+1e3+100+179.4+0+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1pqkik5-container hidden-72rtr7\",nodeId:\"g_QbYDbKo\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{KO6F_VUXY:resolvedLinks4[1]}},children:/*#__PURE__*/_jsx(QuarterlyUpdate,{height:\"100%\",id:\"g_QbYDbKo\",KO6F_VUXY:resolvedLinks4[0],layoutId:\"g_QbYDbKo\",neegwIL2k:\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\",SzfqHFIvq:\"Latest Update\",variant:\"r8xqT65Bz\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1gjghxc\",\"data-framer-name\":\"Grids\",id:elementId4,ref:ref4,children:[/*#__PURE__*/_jsx(\"section\",{className:\"framer-rxqgf0\",\"data-framer-name\":\"Work Grid 1-3\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1ejrkjy\",\"data-framer-name\":\"Project Grid\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{pageSize:3,query:{from:{alias:\"q3Z0VAwcl\",data:Portfolio,type:\"Collection\"},orderBy:[{collection:\"q3Z0VAwcl\",name:\"iJ2EjmCWh\",type:\"Identifier\"}],select:[{collection:\"q3Z0VAwcl\",name:\"jwKN9sCc_\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"lyisMhj2c\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"KpNqQTxWe\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"KzHB6WjMm\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"B6ssrChd4\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"mAE3D2HE3\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"U4akRB9yl\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"dyXFbBOps\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"OI2erc3gN\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"SXlMHeqwQ\",type:\"Identifier\"},{collection:\"q3Z0VAwcl\",name:\"id\",type:\"Identifier\"}],where:{operator:\"not\",type:\"UnaryOperation\",value:{left:{collection:\"q3Z0VAwcl\",name:\"iJ2EjmCWh\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}}},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({B6ssrChd4:B6ssrChd4q3Z0VAwcl,dyXFbBOps:dyXFbBOpsq3Z0VAwcl,id:idq3Z0VAwcl,jwKN9sCc_:jwKN9sCc_q3Z0VAwcl,KpNqQTxWe:KpNqQTxWeq3Z0VAwcl,KzHB6WjMm:KzHB6WjMmq3Z0VAwcl,lyisMhj2c:lyisMhj2cq3Z0VAwcl,mAE3D2HE3:mAE3D2HE3q3Z0VAwcl,OI2erc3gN:OI2erc3gNq3Z0VAwcl,SXlMHeqwQ:SXlMHeqwQq3Z0VAwcl,U4akRB9yl:U4akRB9ylq3Z0VAwcl},index)=>{jwKN9sCc_q3Z0VAwcl??=\"\";lyisMhj2cq3Z0VAwcl??=\"\";KpNqQTxWeq3Z0VAwcl??=\"\";KzHB6WjMmq3Z0VAwcl??=\"\";const visible=negate(isSet(B6ssrChd4q3Z0VAwcl));const visible1=negate(isSet(dyXFbBOpsq3Z0VAwcl));const visible2=negate(isSet(OI2erc3gNq3Z0VAwcl));const visible3=negate(isSet(SXlMHeqwQq3Z0VAwcl));return /*#__PURE__*/_jsx(LayoutGroup,{id:`q3Z0VAwcl-${idq3Z0VAwcl}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KzHB6WjMm:KzHB6WjMmq3Z0VAwcl},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-v4ace1\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1f6uzmo\",\"data-framer-name\":\"Full Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1feh6ak\",\"data-framer-name\":\"Grid Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1tihir1\",\"data-framer-name\":\"Header Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-m41qf0\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-162mi64\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{effect:textEffect5}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"Hiraco Realty\\xae\"})}),className:\"framer-1qg9772\",\"data-framer-name\":\"Name\",effect:textEffect4,fonts:[\"Inter\"],text:jwKN9sCc_q3Z0VAwcl,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:lyisMhj2cq3Z0VAwcl,motionChild:true,nodeId:\"ik8uVDBKm\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-flgjt6 hidden-1g88cdw framer-lux5qc\",\"data-framer-name\":\"Stat block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"},children:\"Sabyasachi Jewellery tops \u20B9 150 Cr sales in FY 2024\"})}),className:\"framer-ld5925\",effect:textEffect6,fonts:[\"Inter\"],text:KpNqQTxWeq3Z0VAwcl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1xm57hx\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-17mj4f4\",\"data-framer-name\":\"finance_mode\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><g transform=\"translate(1.5 1)\"><path d=\"M 2.5 5.825 L 2.5 2 L 4 2 L 4 5.825 L 3.25 5.125 Z M 5 6.575 L 5 0 L 6.5 0 L 6.5 5.075 Z M 0 8.3 L 0 4 L 1.5 4 L 1.5 6.8 Z M 0 9.525 L 3.225 6.3 L 5 7.825 L 7.8 5.025 L 7 5.025 L 7 4.025 L 9.5 4.025 L 9.5 6.525 L 8.5 6.525 L 8.5 5.725 L 5.05 9.175 L 3.275 7.65 L 1.4 9.525 Z\" fill=\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:11609280020,withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KzHB6WjMm:KzHB6WjMmq3Z0VAwcl},webPageId:\"Vu0tqU4z8\"},motionChild:true,nodeId:\"XkD7JTvNR\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{whileTap:animation28},kcyjsnmnY:{whileTap:animation28}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jtht9f framer-lux5qc\",\"data-border\":true,whileHover:animation27,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+40+0+0+0+0+0+0+0+426.1+36+0),sizes:\"320px\",...toResponsiveImage(B6ssrChd4q3Z0VAwcl)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+0+140+0+0+0+0+0+0+0+370.1+8+0),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(B6ssrChd4q3Z0VAwcl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+100+0+0+0+0+0+0+0+53.2+36+0),sizes:\"455px\",...toResponsiveImage(B6ssrChd4q3Z0VAwcl)},className:\"framer-1vibylm\",\"data-framer-name\":\"TL\",children:visible&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-12pdtfq-container\",\"data-framer-name\":\"Vid1 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid1 Reg\",nodeId:\"BkUT1ExR2\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"BkUT1ExR2\",isMixedBorderRadius:false,layoutId:\"BkUT1ExR2\",loop:true,muted:true,name:\"Vid1 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylq3Z0VAwcl),posterEnabled:true,srcFile:mAE3D2HE3q3Z0VAwcl,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+40+0+0+0+0+0+0+0+426.1+36+0),sizes:\"320px\",...toResponsiveImage(dyXFbBOpsq3Z0VAwcl)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+0+140+0+0+0+0+0+0+0+370.1+8+0),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(dyXFbBOpsq3Z0VAwcl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+100+0+0+0+0+0+0+0+53.2+36+0),sizes:\"455px\",...toResponsiveImage(dyXFbBOpsq3Z0VAwcl)},className:\"framer-1v3ttju\",\"data-framer-name\":\"TR\",children:visible1&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1c7gj6l-container\",\"data-framer-name\":\"Vid2 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid2 Reg\",nodeId:\"rj387BxW0\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"rj387BxW0\",isMixedBorderRadius:false,layoutId:\"rj387BxW0\",loop:true,muted:true,name:\"Vid2 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylq3Z0VAwcl),posterEnabled:true,srcFile:mAE3D2HE3q3Z0VAwcl,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+40+0+0+0+0+0+0+0+426.1+36+-26.5),sizes:\"320px\",...toResponsiveImage(OI2erc3gNq3Z0VAwcl)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+0+140+0+0+0+0+0+0+0+370.1+8+-3.5),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(OI2erc3gNq3Z0VAwcl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+100+0+0+0+0+0+0+0+53.2+36+473),sizes:\"455px\",...toResponsiveImage(OI2erc3gNq3Z0VAwcl)},className:\"framer-14f8kr3\",\"data-framer-name\":\"BL\",children:visible2&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-aeug7p-container\",\"data-framer-name\":\"Vid3 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid3 Reg\",nodeId:\"owuqHW4Xj\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"owuqHW4Xj\",isMixedBorderRadius:false,layoutId:\"owuqHW4Xj\",loop:true,muted:true,name:\"Vid3 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylq3Z0VAwcl),posterEnabled:true,srcFile:mAE3D2HE3q3Z0VAwcl,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+40+0+0+0+0+0+0+0+426.1+36+-26.5),sizes:\"320px\",...toResponsiveImage(SXlMHeqwQq3Z0VAwcl)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+0+140+0+0+0+0+0+0+0+370.1+8+-3.5),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(SXlMHeqwQq3Z0VAwcl)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+0+100+0+0+0+0+0+0+0+53.2+36+473),sizes:\"455px\",...toResponsiveImage(SXlMHeqwQq3Z0VAwcl)},className:\"framer-1xvfqnc\",\"data-framer-name\":\"BR\",children:visible3&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1wd8hpu-container\",\"data-framer-name\":\"Vid4 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid4 Reg\",nodeId:\"irB5QeQhq\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"irB5QeQhq\",isMixedBorderRadius:false,layoutId:\"irB5QeQhq\",loop:true,muted:true,name:\"Vid4 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylq3Z0VAwcl),posterEnabled:true,srcFile:mAE3D2HE3q3Z0VAwcl,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:lyisMhj2cq3Z0VAwcl,motionChild:true,nodeId:\"VFZLgObla\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1y97v9g hidden-72rtr7 hidden-3kj85i hidden-1u4bg3f framer-lux5qc\",\"data-framer-name\":\"Stat block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-33mjnl\",\"data-styles-preset\":\"OIF3cw2Ag\",style:{\"--framer-text-color\":\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"},children:\"Sabyasachi Jewellery tops \u20B9 150 Cr sales in FY 2024\"})}),className:\"framer-kbe4rs\",fonts:[\"Inter\"],text:KpNqQTxWeq3Z0VAwcl,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-1vnshdb\",\"data-framer-name\":\"finance_mode\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1859_1794\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<rect width=\"12\" height=\"12\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_1859_1794)\">\\n<path d=\"M4 6.825V3H5.5V6.825L4.75 6.125L4 6.825ZM6.5 7.575V1H8V6.075L6.5 7.575ZM1.5 9.3V5H3V7.8L1.5 9.3ZM1.5 10.525L4.725 7.3L6.5 8.825L9.3 6.025H8.5V5.025H11V7.525H10V6.725L6.55 10.175L4.775 8.65L2.9 10.525H1.5Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]})})]})})})})},idq3Z0VAwcl);})})})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-gtrul0\",\"data-framer-name\":\"Break 1\",children:[isDisplayed2()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-10t2q3c-container hidden-1g88cdw\",\"data-framer-name\":\"Desk Butterfly\",isAuthoredByUser:true,isModuleExternal:true,name:\"Desk Butterfly\",nodeId:\"s3e9RnNKV\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"s3e9RnNKV\",isMixedBorderRadius:false,layoutId:\"s3e9RnNKV\",loop:true,muted:true,name:\"Desk Butterfly\",objectFit:\"cover\",playing:true,posterEnabled:true,srcType:\"URL\",srcUrl:\"https://framerusercontent.com/assets/P29B39XTEjW0tkyU5bBSErWxXs.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nbfoj3\",\"data-framer-name\":\"TextWrapper\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-qiudjv\",\"data-framer-name\":\"Text Block\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-g2mmcs\",\"data-framer-name\":\"Header\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-7daec641-9a3c-48d5-8d6c-bfedc79d95a1, rgb(23, 23, 23))\"},children:\"Lazy Eight\\xae Services\"})}),className:\"framer-1a184wv\",effect:textEffect7,fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-ym435a\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+896+40+255.9+0+0+86.2+33+0},kcyjsnmnY:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1618.6+0+1056+120+0+0+0+123.2+33+0}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1984.4+0+1269.2+295.9+0+0+86.2+33+0,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition21},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation24,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-skgtgv-container\",nodeId:\"Vdgc8_lYO\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{style:{width:\"100%\"},variant:\"hK5KF2cI4\"}},children:/*#__PURE__*/_jsx(LearnMore,{E0M8AsbVE:\"Research & Positioning\",height:\"100%\",id:\"Vdgc8_lYO\",layoutId:\"Vdgc8_lYO\",nnS0mvWZt:\"Facts first, feelings later. We mine quant data, social chatter and your stakeholder questionnaire, then map the category\u2019s whitespace, profit pools and cultural signals. Jobs-to-Be-Done and pricing corridors turn the noise into a \u201Cwhere-to-play / how-to-win\u201D stance. Output: a 35-slide Immersion Deck that becomes the North Star every designer, writer and dev tags back to as the build unfolds.\",variant:\"HYlt03BEL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+896+40+255.9+0+0+86.2+33+46},kcyjsnmnY:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1618.6+0+1056+120+0+0+0+123.2+33+46}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1984.4+0+1269.2+295.9+0+0+86.2+33+46,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition28},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation29,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-jjh5ad-container\",nodeId:\"v5dU3K4CF\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{style:{width:\"100%\"},variant:\"hK5KF2cI4\"}},children:/*#__PURE__*/_jsx(LearnMore,{E0M8AsbVE:\"Brand System Design\",height:\"100%\",id:\"v5dU3K4CF\",layoutId:\"v5dU3K4CF\",nnS0mvWZt:\"Velocity happens when every pixel pulls the same way. We craft that force-field\u2014name vetting, narrative spine, logo unit, type grid, colour logic and motion behaviours\u2014stress-tested for mobile thumbnails, shelf facings and 50-foot LEDs. Deliverables land as a living Figma library and motion kit so in-house teams (or agencies you hire five years from now) extend the system without dilution.\",variant:\"HYlt03BEL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+896+40+255.9+0+0+86.2+33+92},kcyjsnmnY:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1618.6+0+1056+120+0+0+0+123.2+33+92}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1984.4+0+1269.2+295.9+0+0+86.2+33+92,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition29},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation30,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-2d9dbv-container\",nodeId:\"a1tM9vL4O\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{style:{width:\"100%\"},variant:\"hK5KF2cI4\"}},children:/*#__PURE__*/_jsx(LearnMore,{E0M8AsbVE:\"Packaging & Print Design System Design\",height:\"100%\",id:\"a1tM9vL4O\",layoutId:\"a1tM9vL4O\",nnS0mvWZt:\"Touch-points are where story turns tangible. Our pack architects balance supply-chain maths with unboxing theatre: dielines tuned for freight density, substrates aligned to ESG targets, colour targets that survive five-colour flexo and digital short-runs. Need print? We handle editorial, look-books and launch kits with the same rigour. Every label, spread and merch device sits in one master Art-Pro+ file\u2014ops get control, creatives get a playground.\",variant:\"HYlt03BEL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+896+40+255.9+0+0+86.2+33+138},kcyjsnmnY:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1618.6+0+1056+120+0+0+0+123.2+33+138}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1984.4+0+1269.2+295.9+0+0+86.2+33+138,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition30},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation31,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1lkwi6j-container\",nodeId:\"cHg4OKKqT\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{style:{width:\"100%\"},variant:\"hK5KF2cI4\"}},children:/*#__PURE__*/_jsx(LearnMore,{E0M8AsbVE:\"UIUX System Design\",height:\"100%\",id:\"cHg4OKKqT\",layoutId:\"cHg4OKKqT\",nnS0mvWZt:\"Web, SaaS, native app\u2014it\u2019s all one language. We build ADA-compliant, token-driven design systems in Figma and Storybook that cut front-end cycle time by up to 40 %. Tokens sync typography, spacing and states with code; motion guidelines keep 60 fps accessible. High-risk flows prototype in Framer for stakeholder sign-off, then hand off as dev-ready specs, interactive redlines and test scripts.\",variant:\"HYlt03BEL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+896+40+255.9+0+0+86.2+33+184},kcyjsnmnY:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1618.6+0+1056+120+0+0+0+123.2+33+184}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1984.4+0+1269.2+295.9+0+0+86.2+33+184,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition31},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation32,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-18tr9l9-container\",nodeId:\"RkcT18Bfi\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{style:{width:\"100%\"},variant:\"hK5KF2cI4\"}},children:/*#__PURE__*/_jsx(LearnMore,{E0M8AsbVE:\"Technology & Product Development\",height:\"100%\",id:\"RkcT18Bfi\",layoutId:\"RkcT18Bfi\",nnS0mvWZt:\"Stack-agnostic, outcome-biased. MVP marketing site in Framer? Shopify-Plus headless? React-Native app with Supabase? We architect what your runway needs, not what flatters ours. Perfect for V-1 roll-outs: rapid scaffolding, trunk-based Git flow, Playwright tests before merge, Datadog on everything. From no-code to deeply custom, shipping fast never means skipping quality.\",variant:\"HYlt03BEL\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+896+40+255.9+0+0+86.2+33+230},kcyjsnmnY:{width:`max(min(${componentViewport?.width||\"100vw\"} - 40px, 1200px), 1px)`,y:(componentViewport?.y||0)+0+0+0+1618.6+0+1056+120+0+0+0+123.2+33+230}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:26,y:(componentViewport?.y||0)+0+0+0+1984.4+0+1269.2+295.9+0+0+86.2+33+230,children:/*#__PURE__*/_jsx(ContainerWithFX,{__framer__animate:{transition:transition32},__framer__animateOnce:true,__framer__enter:animation2,__framer__exit:animation33,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-juylqx-container\",nodeId:\"r_rRI1h14\",rendersWithMotion:true,scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{style:{width:\"100%\"},variant:\"hK5KF2cI4\"}},children:/*#__PURE__*/_jsx(LearnMore,{E0M8AsbVE:\"GTM & Growth Marketing\",height:\"100%\",id:\"r_rRI1h14\",layoutId:\"r_rRI1h14\",nnS0mvWZt:\"Strategy without distribution is a diary entry. We turn positioning into traction: channel-mix modelling, paid-media unit economics, influencer cohort maps, lifecycle email flows and the content pillars that power them. Quarterly OKRs pair hard dollars (CAC \u2264 \u2153 LTV) with brand metrics (share-of-voice, aided awareness). Custom GPT agents auto-draft ad variants so humans chase big experiments\u2014and we stay on retainer only while the dashboards stay green.\",variant:\"HYlt03BEL\",width:\"100%\"})})})})})]})]})}),isDisplayed3()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1tbglwy-container hidden-72rtr7 hidden-3kj85i hidden-1u4bg3f\",\"data-framer-name\":\"Mobile Butterfly\",isAuthoredByUser:true,isModuleExternal:true,name:\"Mobile Butterfly\",nodeId:\"v1qOVIiWi\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"v1qOVIiWi\",isMixedBorderRadius:false,layoutId:\"v1qOVIiWi\",loop:true,muted:true,name:\"Mobile Butterfly\",objectFit:\"cover\",playing:true,posterEnabled:true,srcFile:\"https://framerusercontent.com/assets/77FXCjjYYKI9kXU5sCGFqnvEs.mp4\",srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})]}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-8v6ltm\",\"data-framer-name\":\"Work Grid 4+\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-u5d12t\",\"data-framer-name\":\"Project Grid\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData1,{pageSize:12,query:{from:{alias:\"g1pyn7u2J\",data:Portfolio,type:\"Collection\"},orderBy:[{collection:\"g1pyn7u2J\",name:\"iJ2EjmCWh\",type:\"Identifier\"}],select:[{collection:\"g1pyn7u2J\",name:\"jwKN9sCc_\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"lyisMhj2c\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"KpNqQTxWe\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"KzHB6WjMm\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"B6ssrChd4\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"mAE3D2HE3\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"U4akRB9yl\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"dyXFbBOps\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"OI2erc3gN\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"SXlMHeqwQ\",type:\"Identifier\"},{collection:\"g1pyn7u2J\",name:\"id\",type:\"Identifier\"}],where:{left:{collection:\"g1pyn7u2J\",name:\"iJ2EjmCWh\",type:\"Identifier\"},operator:\">\",right:{type:\"LiteralValue\",value:3},type:\"BinaryOperation\"}},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsxs(_Fragment,{children:[collection1?.map(({B6ssrChd4:B6ssrChd4g1pyn7u2J,dyXFbBOps:dyXFbBOpsg1pyn7u2J,id:idg1pyn7u2J,jwKN9sCc_:jwKN9sCc_g1pyn7u2J,KpNqQTxWe:KpNqQTxWeg1pyn7u2J,KzHB6WjMm:KzHB6WjMmg1pyn7u2J,lyisMhj2c:lyisMhj2cg1pyn7u2J,mAE3D2HE3:mAE3D2HE3g1pyn7u2J,OI2erc3gN:OI2erc3gNg1pyn7u2J,SXlMHeqwQ:SXlMHeqwQg1pyn7u2J,U4akRB9yl:U4akRB9ylg1pyn7u2J},index1)=>{jwKN9sCc_g1pyn7u2J??=\"\";lyisMhj2cg1pyn7u2J??=\"\";KpNqQTxWeg1pyn7u2J??=\"\";KzHB6WjMmg1pyn7u2J??=\"\";const visible4=negate(isSet(B6ssrChd4g1pyn7u2J));const visible5=negate(isSet(dyXFbBOpsg1pyn7u2J));const visible6=negate(isSet(OI2erc3gNg1pyn7u2J));const visible7=negate(isSet(SXlMHeqwQg1pyn7u2J));return /*#__PURE__*/_jsx(LayoutGroup,{id:`g1pyn7u2J-${idg1pyn7u2J}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{KzHB6WjMm:KzHB6WjMmg1pyn7u2J},children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nqu3ok\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-z43op1\",\"data-framer-name\":\"Full Container\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1xny4cu\",\"data-framer-name\":\"Grid Container\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-1j65s9o\",\"data-framer-name\":\"Header Text\",children:/*#__PURE__*/_jsx(\"div\",{className:\"framer-s3bbrq\",\"data-framer-name\":\"Text\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4wfhjp\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"Hiraco Realty\\xae\"})}),effect:textEffect5}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:\"Hiraco Realty\\xae\"})}),className:\"framer-lg0zqm\",\"data-framer-name\":\"Name\",effect:textEffect4,fonts:[\"Inter\"],text:jwKN9sCc_g1pyn7u2J,verticalAlignment:\"top\",withExternalLayout:true})}),isDisplayed2()&&/*#__PURE__*/_jsx(Link,{href:lyisMhj2cg1pyn7u2J,motionChild:true,nodeId:\"pEftotaka\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-1cef6e0 hidden-1g88cdw framer-lux5qc\",\"data-framer-name\":\"Stat block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-cfx4wq\",\"data-styles-preset\":\"hEONwgjgB\",style:{\"--framer-text-color\":\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"},children:\"Nilkamal Sleep captures 7 % category share in first 12 months, per GfK audit.\"})}),className:\"framer-azxx6s\",effect:textEffect6,fonts:[\"Inter\"],text:KpNqQTxWeg1pyn7u2J,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition23},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation25,__framer__styleAppearEffectEnabled:true,__framer__threshold:1,__perspectiveFX:false,__targetOpacity:1,className:\"framer-1qy31y9\",\"data-framer-name\":\"Icon\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1fz5uqa\",\"data-framer-name\":\"finance_mode\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 12 12\"><g transform=\"translate(1.5 1)\"><path d=\"M 2.5 5.825 L 2.5 2 L 4 2 L 4 5.825 L 3.25 5.125 Z M 5 6.575 L 5 0 L 6.5 0 L 6.5 5.075 Z M 0 8.3 L 0 4 L 1.5 4 L 1.5 6.8 Z M 0 9.525 L 3.225 6.3 L 5 7.825 L 7.8 5.025 L 7 5.025 L 7 4.025 L 9.5 4.025 L 9.5 6.525 L 8.5 6.525 L 8.5 5.725 L 5.05 9.175 L 3.275 7.65 L 1.4 9.525 Z\" fill=\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:11609280020,withExternalLayout:true})})]})})]})})}),/*#__PURE__*/_jsx(Link,{href:{pathVariables:{KzHB6WjMm:KzHB6WjMmg1pyn7u2J},webPageId:\"Vu0tqU4z8\"},motionChild:true,nodeId:\"m5Oo2tdrM\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{whileTap:animation28},kcyjsnmnY:{whileTap:animation28}},children:/*#__PURE__*/_jsxs(MotionAWithFX,{__framer__animate:{transition:transition24},__framer__animateOnce:false,__framer__enter:animation2,__framer__exit:animation26,__framer__styleAppearEffectEnabled:true,__framer__threshold:.5,__perspectiveFX:false,__targetOpacity:1,className:\"framer-brwj22 framer-lux5qc\",\"data-border\":true,whileHover:animation27,children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+1912+40+0+0+0+0+0+0+0+426.1+36+0),sizes:\"320px\",...toResponsiveImage(B6ssrChd4g1pyn7u2J)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+2072+9+0+0+0+0+0+0+0+370.1+8+0),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(B6ssrChd4g1pyn7u2J)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+2285.2+100+0+0+0+0+0+0+0+53.2+36+0),sizes:\"455px\",...toResponsiveImage(B6ssrChd4g1pyn7u2J)},className:\"framer-z89xh7\",\"data-framer-name\":\"TL\",children:visible4&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1y39wd3-container\",\"data-framer-name\":\"Vid1 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid1 Reg\",nodeId:\"NWBkXGPso\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"NWBkXGPso\",isMixedBorderRadius:false,layoutId:\"NWBkXGPso\",loop:true,muted:true,name:\"Vid1 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylg1pyn7u2J),posterEnabled:true,srcFile:mAE3D2HE3g1pyn7u2J,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+1912+40+0+0+0+0+0+0+0+426.1+36+0),sizes:\"320px\",...toResponsiveImage(dyXFbBOpsg1pyn7u2J)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+2072+9+0+0+0+0+0+0+0+370.1+8+0),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(dyXFbBOpsg1pyn7u2J)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+2285.2+100+0+0+0+0+0+0+0+53.2+36+0),sizes:\"455px\",...toResponsiveImage(dyXFbBOpsg1pyn7u2J)},className:\"framer-1kt18ym\",\"data-framer-name\":\"TR\",children:visible5&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1vnozjn-container\",\"data-framer-name\":\"Vid2 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid2 Reg\",nodeId:\"UrjEglEoP\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"UrjEglEoP\",isMixedBorderRadius:false,layoutId:\"UrjEglEoP\",loop:true,muted:true,name:\"Vid2 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylg1pyn7u2J),posterEnabled:true,srcFile:mAE3D2HE3g1pyn7u2J,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+1912+40+0+0+0+0+0+0+0+426.1+36+-26.5),sizes:\"320px\",...toResponsiveImage(OI2erc3gNg1pyn7u2J)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+2072+9+0+0+0+0+0+0+0+370.1+8+-3.5),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(OI2erc3gNg1pyn7u2J)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+2285.2+100+0+0+0+0+0+0+0+53.2+36+473),sizes:\"455px\",...toResponsiveImage(OI2erc3gNg1pyn7u2J)},className:\"framer-34jgwe\",\"data-framer-name\":\"BL\",children:visible6&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1mermig-container\",\"data-framer-name\":\"Vid3 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid3 Reg\",nodeId:\"EBdQv8rGO\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"EBdQv8rGO\",isMixedBorderRadius:false,layoutId:\"EBdQv8rGO\",loop:true,muted:true,name:\"Vid3 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylg1pyn7u2J),posterEnabled:true,srcFile:mAE3D2HE3g1pyn7u2J,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+1912+40+0+0+0+0+0+0+0+426.1+36+-26.5),sizes:\"320px\",...toResponsiveImage(SXlMHeqwQg1pyn7u2J)}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1618.6+0+2072+9+0+0+0+0+0+0+0+370.1+8+-3.5),sizes:`max((max(${componentViewport?.width||\"100vw\"} - 10px, 1px) - 24px) / 2, 50px)`,...toResponsiveImage(SXlMHeqwQg1pyn7u2J)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+0+0+1984.4+0+2285.2+100+0+0+0+0+0+0+0+53.2+36+473),sizes:\"455px\",...toResponsiveImage(SXlMHeqwQg1pyn7u2J)},className:\"framer-1wwec4o\",\"data-framer-name\":\"BR\",children:visible7&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1ts5iz3-container\",\"data-framer-name\":\"Vid4 Reg\",isAuthoredByUser:true,isModuleExternal:true,name:\"Vid4 Reg\",nodeId:\"Agl3NnfzY\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Video,{backgroundColor:\"rgba(0, 0, 0, 0)\",borderRadius:0,bottomLeftRadius:0,bottomRightRadius:0,controls:false,height:\"100%\",id:\"Agl3NnfzY\",isMixedBorderRadius:false,layoutId:\"Agl3NnfzY\",loop:true,muted:true,name:\"Vid4 Reg\",objectFit:\"cover\",playing:true,poster:toImageSrc(U4akRB9ylg1pyn7u2J),posterEnabled:true,srcFile:mAE3D2HE3g1pyn7u2J,srcType:\"Upload\",srcUrl:\"https://framerusercontent.com/assets/MLWPbW1dUQawJLhhun3dBwpgJak.mp4\",startTime:0,style:{height:\"100%\",width:\"100%\"},topLeftRadius:0,topRightRadius:0,volume:25,width:\"100%\"})})})})})]})})}),isDisplayed3()&&/*#__PURE__*/_jsx(Link,{href:lyisMhj2cg1pyn7u2J,motionChild:true,nodeId:\"CY1WRASzk\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsxs(motion.a,{className:\"framer-17dig5p hidden-72rtr7 hidden-3kj85i hidden-1u4bg3f framer-lux5qc\",\"data-framer-name\":\"Stat block\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-33mjnl\",\"data-styles-preset\":\"OIF3cw2Ag\",style:{\"--framer-text-color\":\"var(--token-78da77b4-9ee3-4f8a-adec-2ad3083a435b, rgb(186, 186, 186))\"},children:\"Blue Tokai soars to \u20B91500 Cr valuation after successful Series C raise. \"})}),className:\"framer-rwqifa\",fonts:[\"Inter\"],text:KpNqQTxWeg1pyn7u2J,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(SVG,{className:\"framer-tcsl70\",\"data-framer-name\":\"finance_mode\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:12,intrinsicWidth:12,svg:'<svg width=\"12\" height=\"12\" viewBox=\"0 0 12 12\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<mask id=\"mask0_1859_1794\" style=\"mask-type:alpha\" maskUnits=\"userSpaceOnUse\" x=\"0\" y=\"0\" width=\"12\" height=\"12\">\\n<rect width=\"12\" height=\"12\" fill=\"#D9D9D9\"/>\\n</mask>\\n<g mask=\"url(#mask0_1859_1794)\">\\n<path d=\"M4 6.825V3H5.5V6.825L4.75 6.125L4 6.825ZM6.5 7.575V1H8V6.075L6.5 7.575ZM1.5 9.3V5H3V7.8L1.5 9.3ZM1.5 10.525L4.725 7.3L6.5 8.825L9.3 6.025H8.5V5.025H11V7.525H10V6.725L6.55 10.175L4.775 8.65L2.9 10.525H1.5Z\" fill=\"#1C1B1F\"/>\\n</g>\\n</svg>\\n',withExternalLayout:true})]})})]})})})})},idg1pyn7u2J);}),isDisplayed2()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{y:(componentViewport?.y||0)+0+0+0+1984.4+0+1912+40+0+0+940}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:49,y:(componentViewport?.y||0)+0+0+0+1984.4+0+2285.2+100+0+0+1193.2,children:/*#__PURE__*/_jsx(Container,{className:\"framer-1k58ua2-container hidden-1g88cdw\",nodeId:\"OWz9abl2f\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{variant:loaderVariants(paginationInfo1,{disabled:\"NnoQ2lVhz\",loading:\"vrlTbXZSm\"},\"rkaKP0vTQ\")}},children:/*#__PURE__*/_jsx(GooeyViewMore,{BCG04K1to:true,height:\"100%\",i4AjQgx79:\"Load More Work\",id:\"OWz9abl2f\",layoutId:\"OWz9abl2f\",variant:loaderVariants(paginationInfo1,{disabled:\"xOJkr_sht\",loading:\"vrlTbXZSm\"},\"ehzl7y5LT\"),vTjulNw8e:true,VYDb9mTPN:VYDb9mTPN1b86s49({loadMore:loadMore1}),width:\"100%\"})})})})}),isDisplayed3()&&/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{height:49,y:(componentViewport?.y||0)+0+0+0+1618.6+0+2072+9+0+0+972}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1nlm2da-container hidden-72rtr7 hidden-3kj85i hidden-1u4bg3f\",nodeId:\"RgWKrTT2z\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(PHNLoadMore,{height:\"100%\",id:\"RgWKrTT2z\",layoutId:\"RgWKrTT2z\",saq0BRFou:saq0BRFou1b86s49({loadMore:loadMore1}),variant:loaderVariants(paginationInfo1,{disabled:\"tgPVBzc6n\",loading:\"g3vw6TGSV\"},\"g3vw6TGSV\"),width:\"100%\"})})})})]})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-u540ye-container\",\"data-framer-name\":\"Logos Light\",isModuleExternal:true,name:\"Logos Light\",nodeId:\"Lv9fulefn\",scopeId:\"augiA20Il\",children:/*#__PURE__*/_jsx(Ticker,{alignment:\"center\",direction:\"left\",fadeOptions:{fadeAlpha:0,fadeContent:true,fadeInset:0,fadeWidth:25,overflow:false},gap:40,height:\"100%\",hoverFactor:1,id:\"Lv9fulefn\",layoutId:\"Lv9fulefn\",name:\"Logos Light\",padding:10,paddingBottom:10,paddingLeft:10,paddingPerSide:false,paddingRight:10,paddingTop:10,sizingOptions:{heightType:true,widthType:true},slots:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-2yzy08\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1e5ndc\",\"data-framer-name\":\"Vector\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:308,intrinsicWidth:924,svg:'<svg width=\"924\" height=\"308\" viewBox=\"0 0 924 308\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M441.931 223.664C438.479 226.101 431.407 228.189 423.724 228.189C409.62 228.189 403.275 217.36 403.539 204.764C403.761 194.324 410.266 182.494 427.881 182.494L441.934 182.486V223.664H441.931ZM427.431 107.88C410.695 107.88 395.633 112.612 380.154 120.297L376.204 122.334L385.627 143.362L390.939 140.851C401.901 135.945 413.577 132.656 424.076 133.096C436.785 133.625 441.985 139.45 441.985 151.61V158.744H421.204C387.802 158.744 367.016 176.451 366.416 203.944C366.416 230.069 388.198 252.559 418.481 252.559C442.918 252.559 463.622 244.631 477.572 230.657V156.107C477.572 119.804 451.656 107.88 427.431 107.88ZM923.539 228.097V250.145C923.539 250.145 916.137 251.558 910.14 251.558C882.141 251.558 865.426 238.368 865.426 207.567V77.6631L900.584 71.6739V209.843C900.584 220.518 903.65 226.906 918.252 228.043C920.245 228.189 923.541 228.094 923.541 228.094L923.539 228.097ZM769.331 162.505C769.924 148.976 775.555 135.068 789.404 135.068C804.99 135.068 807.29 151.975 807.29 162.505H769.331ZM796.985 227.936C787.373 227.936 780.885 224.783 776.631 220.194C770.32 213.38 767.522 199.367 768.284 184.471H843.899V180.996C843.225 131.499 826.348 108.95 789.407 108.95C748.175 108.95 732.116 146.881 731.815 182.519C731.559 205.065 740.063 227.765 755.61 240.696C765.079 248.561 778.21 252.92 793.428 252.92C801.72 252.92 810.386 251.686 818.289 249.24C833.459 244.539 844.653 236.419 844.653 236.419L834.765 216.068C832.984 217.411 817.84 227.936 796.985 227.936ZM719.484 228.225V249.956C719.484 249.956 712.999 251.243 706.115 251.243C677.478 251.243 660.39 237.415 660.39 208.18V77.6401L696.34 71.8656V110.435H719.474V136.213H696.34V209.664C696.34 219.282 699.309 227.591 714.386 228.12C716.425 228.191 719.103 228.189 719.484 228.225ZM503.831 116.081L538.905 110.358V250.03H503.831V116.081ZM521.727 54.5471C527.829 54.5471 533.473 56.9234 537.62 61.2312C539.638 63.3155 541.217 65.7847 542.261 68.4918C543.305 71.1989 543.794 74.0886 543.698 76.9885C543.698 89.4114 533.912 99.1821 521.415 99.1821C508.941 99.1821 499.14 89.3833 499.14 76.8429C499.14 64.558 509.276 54.5471 521.727 54.5471ZM650.938 112.479L641.042 134.667C641.042 134.667 635.39 132.858 626.688 133.211C617.275 133.586 607.374 137.57 602.713 142.115V250.129H566.927L566.952 135.388C588.259 112.739 611.901 108.227 627.304 108.227C637.938 108.227 647.093 110.583 650.938 112.479ZM203.446 0.693359V1.08173H200.342V1.47011H196.847V1.85848H193.742V2.24686H191.024V2.63268H189.082V3.02105H187.142V3.40943H185.2V3.7978H183.261V4.18618H181.319V4.57455H179.38V4.96292H178.217V5.3513H176.664V5.73967H175.11V6.12805H173.559V6.51387H172.394V6.90224H170.843V7.29062H169.29V7.67899H167.736V8.06737H166.574V8.45574H165.409V8.84412H164.244V9.23249H163.081V9.62086H161.916V10.0092H160.751V10.3951H159.586V10.7834H158.423V11.1718H157.258V11.5602H156.093V11.9486H154.93V12.3369H153.768V12.7253H152.603V13.1137H151.44V13.5021H150.663V13.8904H149.498V14.2762H148.721V14.6646H147.559V15.053H146.782V15.4414H145.617V15.8297H144.452V16.2181H143.678V16.6065H142.512V16.9949H141.736V17.3832H140.571V17.7716H139.796V18.1574H138.631V18.5458H137.855V18.9342H137.078V19.3226H136.304V19.7109H135.138V20.0993H134.362V20.4877H133.585V20.8761H132.808V21.2644H132.034V21.6528H130.869V22.0386H130.092V22.427H129.315V22.8154H128.541V23.2038H127.764V23.5921H126.599V23.9805H125.823V24.3689H125.046V24.7573H124.272V25.1456H123.495V25.534H122.718V25.9198H121.941V26.3082H121.167V26.6966H120.39V27.0849H119.614V27.4733H118.837V27.8617H118.06V28.2501H117.286V28.6384H116.509V29.0268H115.733V29.4152H114.956V29.801H114.179V30.1894H113.791V30.5778H113.016V30.9661H112.24V31.3545H111.463V31.7429H110.686V32.1313H109.909V32.5196H109.135V32.908H108.747V33.2938H107.97V33.6822H107.193V34.0706H106.417V34.459H106.028V34.8473H105.254V35.2357H104.477V35.6241H103.701V36.0125H103.312V36.4008H102.535V36.7892H101.761V37.175H100.984V37.5634H100.208V37.9518H99.8194V38.3401H99.0426V38.7285H98.2659V39.1169H97.4917V39.5053H97.1033V39.8936H96.3266V40.282H95.9382V40.6704H95.1614V41.0562H94.7731V41.4446H93.9989V41.833H93.2221V42.2213H92.8337V42.6097H92.057V42.9981H91.6686V43.3865H90.8919V43.7748H90.1177V44.1632H89.7293V44.5516H88.9526V44.9374H88.5642V45.3258H87.7874V45.7142H87.3991V46.1025H86.6249V46.4909H85.8481V46.8793H85.4597V47.2677H84.683V47.656H84.2946V48.0444H83.5179V48.4328H83.1295V48.8186H82.3553V49.207H81.9669V49.5953H81.5785V49.9837H80.8018V50.3721H80.4134V50.7605H79.6367V51.1488H79.2483V51.5372H78.4741V51.9256H78.0857V52.314H77.6974V52.6998H76.9206V53.0882H76.5322V53.4765H75.7555V53.8649H75.3671V54.2533H74.5929V54.6417H74.2045V55.03H73.8162V55.4184H73.0394V55.8068H72.651V56.1952H71.8743V56.581H71.4859V56.9693H71.1001V57.3577H70.3233V57.7461H69.935V58.1345H69.5466V58.5228H68.7698V58.9112H68.3815V59.2996H67.9931V59.688H67.6047V60.0763H66.8305V60.4622H66.4422V60.8505H66.0538V61.2389H65.277V61.6273H64.8887V62.0157H64.5003V62.404H64.1119V62.7924H63.3377V63.1808H62.9493V63.5692H62.561V63.955H61.7842V64.3434H61.3958V64.7317H61.0075V65.1201H60.2307V65.5085H59.8449V65.8969H59.4565V66.2852H59.0681V66.6736H58.6798V67.062H58.2914V67.4504H57.5147V67.8362H57.1263V68.2245H56.7379V68.6129H56.3495V69.0013H55.9637V69.3897H55.5753V69.778H54.7986V70.1664H54.4102V70.5548H54.0218V70.9432H53.6335V71.3315H53.2451V71.7174H52.8567V72.1057H52.0825V72.4941H51.6941V72.8825H51.3058V73.2709H50.9174V73.6592H50.529V74.0476H50.1406V74.436H49.3639V74.8244H48.9755V75.2127H48.5871V75.5985H48.2013V75.9869H47.813V76.3753H47.4246V76.7637H47.0362V77.152H46.6478V77.5404H46.2595V77.9288H45.8711V78.3172H45.4827V78.7055H45.0943V79.0939H44.706V79.4797H44.3201V79.8681H43.9318V80.2565H43.5434V80.6449H43.155V81.0332H42.7666V81.4216H42.3783V81.81H41.9899V82.1984H41.6015V82.5867H40.8248V82.9751H40.4389V83.3609H40.0506V83.7493H39.6622V84.1377H39.2738V84.5261H38.8854V84.9144H38.4971V85.3028H38.1087V85.6912H37.7203V86.0796H37.3319V86.4679H36.9436V87.2421H36.5578V87.6305H36.1694V88.0189H35.781V88.4072H35.3926V88.7956H35.0043V89.184H34.6159V89.5724H34.2275V89.9607H33.8391V90.3491H33.4508V90.7375H33.0624V91.5117H32.6766V91.9001H32.2882V92.2884H31.8998V92.6768H31.5114V93.0652H31.1231V93.4536H30.7347V93.8419H30.3463V94.2303H29.9579V94.6161H29.5696V95.3929H29.1837V95.7813H28.7954V96.1696H28.407V96.558H28.0186V96.9464H27.6302V97.3348H27.2419V98.1115H26.8535V98.4973H26.4651V98.8857H26.0767V99.6624H25.6884V100.051H25.3026V100.439H24.9142V100.828H24.5258V101.604H24.1374V101.993H23.7491V102.379H23.3607V103.155H22.9723V103.544H22.5839V103.932H22.1956V104.32H21.8072V105.097H21.4214V105.486H21.0304V105.874H20.6421V106.648H20.2537V107.036H19.8653V107.425H19.4769V108.202H19.0886V108.59H18.7053V109.367H18.3169V109.755H17.9285V110.141H17.5427V110.918H17.1544V111.306H16.7634V112.083H16.3751V112.471H15.9867V113.248H15.5983V114.022H15.2099V114.41H14.8216V115.187H14.4332V115.576H14.0448V116.352H13.659V117.129H13.2706V117.517H12.8797V118.292H12.4913V118.68H12.1029V119.457H11.7146V120.234H11.3262V121.01H10.9378V121.784H10.5545V122.173H10.1662V122.95H9.78035V123.726H9.39197V124.503H9.0036V125.277H8.61267V126.054H8.2243V126.831H7.83592V127.608H7.44755V128.384H7.05917V129.158H6.6708V130.324H6.28242V131.1H5.8966V131.877H5.50823V133.04H5.11985V133.816H4.72892V134.982H4.34055V136.147H3.95218V136.921H3.5638V138.474H3.17543V139.639H2.78961V140.802H2.40379V142.356H2.01541V144.297H1.62704V145.848H1.23866V148.564H0.850289V153.222H0.461914V157.492H0.850289V161.376H1.23866V163.315H1.62704V164.866H2.01541V166.419H2.40123V167.582H2.78961V168.747H3.17798V169.912H3.56636V170.689H3.95473V171.463H4.3431V172.24H4.73148V173.017H5.11985V173.793H5.50823V174.57H5.8966V175.344H6.28242V175.733H6.6708V176.51H7.05917V176.898H7.44755V177.675H7.83592V178.063H8.2243V178.84H8.61267V179.226H9.00104V179.614H9.38942V180.002H9.77779V180.391H10.1636V180.779H10.552V181.167H10.9404V181.556H11.3287V181.944H11.7171V182.333H12.1055V182.721H12.4939V183.107H12.8822V183.495H13.2706V183.884H13.659V184.272H14.0448V184.66H14.4332V185.049H14.8216V185.437H15.2099V185.825H15.5983V186.214H16.3751V186.6H16.7634V186.988H17.5402V187.376H17.926V187.765H18.7027V188.153H19.0911V188.541H19.8679V188.93H20.2562V189.318H21.033V189.707H21.4214V190.095H22.1956V190.481H22.5839V190.869H23.3607V191.258H24.1374V191.646H25.3026V192.034H26.0767V192.423H26.8535V192.811H28.0186V193.199H28.7954V193.588H29.5696V193.976H31.1231V194.362H33.0649V194.75H35.0043V195.139H36.9461V195.527H46.6478V195.139H49.3639V194.75H51.6941V194.362H53.2451V193.976H54.7986V193.588H55.9637V193.199H57.1263V192.811H58.6798V192.423H59.8449V192.034H60.6191V191.646H61.7842V191.258H62.561V190.869H63.3377V190.481H64.5003V190.095H65.277V189.707H66.0538V189.318H66.8305V188.93H67.6047V188.541H68.3815V188.153H69.1582V187.765H69.935V187.376H70.7117V186.988H71.4859V186.6H72.2627V186.214H73.0394V185.825H73.8162V185.437H74.2045V185.049H74.9813V184.66H75.3671V184.272H76.1439V183.884H76.9206V183.495H77.309V183.107H78.0857V182.721H78.8625V182.333H79.2483V181.944H80.025V181.556H80.4134V181.167H81.1902V180.779H81.5785V180.391H82.3553V180.002H82.7437V179.614H83.5179V179.226H83.9062V178.84H84.683V178.451H85.0714V178.063H85.8481V177.675H86.2365V177.286H87.0107V176.898H87.3991V176.51H87.7874V176.121H88.5642V175.733H88.9526V175.344H89.3409V174.959H90.1177V174.57H90.5061V174.182H91.2802V173.793H91.6686V173.405H92.057V173.017H92.8337V172.628H93.2221V172.24H93.6105V171.852H94.3847V171.463H94.7731V171.077H95.1614V170.689H95.9382V170.301H96.3266V169.912H96.7149V169.524H97.4917V169.136H97.8801V168.747H98.2659V168.359H99.0426V167.97H99.431V167.582H99.8194V167.196H100.208V166.808H100.984V166.419H101.373V166.031H101.761V165.643H102.535V165.254H102.924V164.866H103.312V164.478H104.089V164.089H104.477V163.701H104.866V163.315H105.254V162.927H106.028V162.538H106.417V162.15H106.805V161.761H107.582V161.373H107.97V160.985H108.359V160.596H109.135V160.208H109.524V159.82H109.909V159.434H110.686V159.045H111.075V158.657H111.463V158.269H112.24V157.88H112.628V157.492H113.016V157.104H113.791V156.715H114.179V156.327H114.956V155.938H115.344V155.553H115.733V155.164H116.509V154.776H116.898V154.387H117.672V153.999H118.06V153.611H118.837V153.222H119.225V152.834H120.002V152.446H120.39V152.06H121.167V151.671H121.553V151.283H121.941V150.895H122.718V150.506H123.107V150.118H123.883V149.73H124.272V149.341H125.046V148.953H125.434V148.564H126.211V148.179H126.599V147.79H127.376V147.402H127.764V147.013H128.541V146.625H128.927V146.237H129.704V145.848H130.092V145.46H130.869V145.072H131.257V144.683H132.034V144.297H132.422V143.909H132.808V143.521H133.585V143.132H133.973V142.744H134.75V142.356H135.138V141.967H135.915V141.579H136.304V141.19H137.078V140.802H137.466V140.416H138.243V140.028H138.631V139.639H139.408V139.251H139.796V138.863H140.571V138.474H140.959V138.086H141.736V137.698H142.124V137.309H142.901V136.921H143.289V136.535H144.066V136.147H144.452V135.758H145.229V135.37H145.617V134.982H146.394V134.593H146.782V134.205H147.559V133.816H147.947V133.428H148.721V133.04H149.11V132.654H149.886V132.265H150.275V131.877H151.052V131.489H151.44V131.1H152.214V130.712H152.603V130.324H153.379V129.935H153.768V129.547H154.544V129.158H155.321V128.773H155.707V128.384H156.484V127.996H156.872V127.608H157.649V127.219H158.037V126.831H158.814V126.442H159.202V126.054H159.977V125.666H160.365V125.277H161.142V124.891H161.918V124.503H162.307V124.115H163.084V123.726H163.469V123.338H164.246V122.95H165.023V122.561H165.411V122.173H166.188V121.784H166.576V121.399H167.351V121.01H167.739V120.622H168.516V120.234H169.292V119.845H169.681V119.457H170.458V119.068H171.232V118.68H171.62V118.292H172.397V117.903H173.174V117.517H173.562V117.129H174.339V116.741H175.113V116.352H175.501V115.964H176.278V115.576H177.055V115.187H177.443V114.799H178.22V114.41H178.994V114.022H179.383V113.636H180.159V113.248H180.936V112.86H181.713V112.471H182.101V112.083H182.875V111.694H183.652V111.306H184.429V110.918H184.817V110.529H185.594V110.141H186.368V109.755H187.145V109.367H187.922V108.978H188.31V108.59H189.087V108.202H189.864V107.813H190.638V107.425H191.414V107.036H192.191V106.648H192.968V106.26H193.745V105.874H194.519V105.486H195.296V105.097H196.072V104.709H196.849V104.32H197.626V103.932H198.012V103.544H199.177V103.155H199.954V102.767H200.73V102.379H201.507V101.993H202.281V101.604H203.446V101.216H204.223V100.828H205V100.439H205.774V100.051H206.551V99.6624H207.716V99.2741H208.493V98.8857H209.655V98.4973H210.432V98.1115H211.597V97.7231H212.762V97.3348H213.536V96.9464H214.702V96.558H215.478V96.1696H216.643V95.7813H218.194V95.3929H219.36V95.0045H220.91V94.6161H222.076V94.2303H223.629V93.8419H225.18V93.4536H227.122V93.0652H229.45V92.6768H231.391V92.2884H237.989V91.9001H238.765V92.2884H242.258V92.6768H245.363V93.0652H246.528V93.4536H247.69V93.8419H248.856V94.2303H249.632V94.6161H250.797V95.0045H251.572V95.3929H252.348V95.7813H252.737V96.1696H253.514V96.558H254.29V96.9464H254.679V97.3348H255.453V97.7231H255.841V98.1115H256.618V98.4973H257.006V98.8857H257.395V99.2741H257.783V99.6624H258.171V100.051H258.56V100.439H258.948V100.828H259.334V101.216H259.722V101.604H260.111V101.993H260.499V102.379H260.888V103.155H261.276V103.544H261.664V103.932H262.053V104.709H262.441V105.097H262.829V105.874H263.215V106.26H263.604V107.036H263.992V107.813H264.38V108.202H264.769V108.978H265.157V109.755H265.545V110.529H265.934V111.306H266.322V112.471H266.711V113.248H267.096V114.41H267.485V115.187H267.873V116.352H268.262V117.517H268.65V119.068H269.038V120.234H269.427V121.784H269.815V124.115H270.203V126.057H270.592V130.324H270.978V140.028H270.592V143.132H270.203V146.625H269.815V148.567H269.427V150.506H269.038V152.06H268.65V153.999H268.262V155.553H267.873V157.104H267.485V158.269H267.096V159.434H266.711V160.596H266.322V162.15H265.934V163.315H265.545V164.478H265.157V165.643H264.769V166.419H264.38V167.582H263.992V168.359H263.604V169.524H263.215V170.301H262.829V171.463H262.441V172.24H262.053V173.405H261.664V174.182H261.276V174.959H260.888V175.733H260.499V176.51H260.111V177.675H259.722V178.451H259.334V179.226H258.948V180.002H258.56V180.779H258.171V181.167H257.783V181.944H257.395V182.721H257.006V183.495H256.618V184.272H256.23V184.66H255.841V185.437H255.453V186.214H255.067V186.6H254.679V187.376H254.29V188.153H253.902V188.541H253.514V189.318H253.125V190.095H252.737V190.481H252.348V191.258H251.96V191.646H251.572V192.423H251.186V192.811H250.797V193.588H250.409V193.976H250.021V194.75H249.632V195.139H249.244V195.915H248.856V196.304H248.467V197.081H248.079V197.469H247.69V197.857H247.305V198.632H246.916V199.02H246.528V199.408H246.139V200.185H245.751V200.573H245.363V200.962H244.974V201.739H244.586V202.124H244.198V202.901H243.812V203.289H243.423V203.678H243.035V204.066H242.647V204.843H242.258V205.231H241.87V205.62H241.482V206.006H241.093V206.782H240.705V207.171H240.316V207.559H239.931V207.947H239.542V208.724H239.154V209.113H238.765V209.501H238.377V209.887H237.989V210.275H237.6V211.052H237.212V211.44H236.824V211.829H236.435V212.217H236.049V212.605H235.661V213.382H235.273V213.768H234.884V214.156H234.496V214.545H234.108V214.933H233.719V215.321H233.331V215.71H232.942V216.098H232.554V216.875H232.168V217.261H231.78V217.649H231.391V218.037H231.003V218.426H230.615V218.814H230.226V219.203H229.838V219.591H229.45V219.979H229.061V220.756H228.673V221.142H228.287V221.53H227.899V221.919H227.51V222.307H227.122V222.695H226.734V223.084H226.345V223.472H225.957V223.861H225.568V224.249H225.18V224.637H224.792V225.023H224.406V225.411H224.017V225.8H223.629V226.188H223.241V226.577H222.852V226.965H222.464V227.353H222.076V227.742H221.687V228.13H221.299V228.518H220.91V228.904H220.525V229.293H220.136V229.681H219.748V230.069H219.36V230.458H218.971V230.846H218.583V231.235H218.194V231.623H217.806V232.011H217.418V232.4H217.029V232.785H216.643V233.174H216.255V233.562H215.867V233.951H215.478V234.339H215.09V234.727H214.702V235.116H214.313V235.504H213.925V235.893H213.536V236.281H213.151V236.667H212.762V237.055H211.986V237.443H211.597V237.832H211.209V238.22H210.82V238.609H210.432V238.997H210.044V239.385H209.655V239.774H209.269V240.162H208.881V240.548H208.493V240.936H207.716V241.325H207.328V241.713H206.939V242.101H206.551V242.49H206.162V242.878H205.774V243.266H205.388V243.655H205V244.043H204.223V244.429H203.835V244.817H203.446V245.206H203.058V245.594H202.67V245.983H202.281V246.371H201.893V246.759H201.119V247.148H200.73V247.536H200.342V247.922H199.954V248.31H199.565V248.699H198.788V249.087H198.4V249.475H198.012V249.864H197.626V250.252H197.238V250.641H196.461V251.029H196.072V251.417H195.684V251.803H195.296V252.191H194.907V252.58H194.131V252.968H193.745V253.357H193.356V253.745H192.968V254.133H192.191V254.522H191.803V254.91H191.414V255.298H191.026V255.684H190.249V256.073H189.864V256.461H189.475V256.849H189.087V257.238H188.31V257.626H187.922V258.015H187.533V258.403H187.145V258.791H186.368V259.18H185.982V259.565H185.594V259.954H184.817V260.342H184.429V260.731H184.04V261.119H183.264V261.507H182.875V261.896H182.49V262.284H181.713V262.672H181.324V263.061H180.936V263.447H180.159V263.835H179.771V264.223H179.383V264.612H178.608V265H178.22V265.389H177.832V265.777H177.055V266.165H176.666V266.554H175.89V266.942H175.501V267.328H175.113V267.716H174.339V268.105H173.95V268.493H173.174V268.881H172.785V269.27H172.008V269.658H171.62V270.046H171.232V270.435H170.458V270.823H170.069V271.209H169.292V271.597H168.904V271.986H168.127V272.374H167.739V272.763H166.965V273.151H166.576V273.539H165.8V273.928H165.411V274.316H164.634V274.704H164.246V275.09H163.469V275.479H163.084V275.867H162.307V276.255H161.53V276.644H161.142V277.032H160.365V277.42H159.977V277.809H159.202V278.197H158.426V278.583H158.037V278.971H157.26V279.36H156.872V279.748H156.095V280.137H155.321V280.525H154.544V280.913H154.156V281.302H153.379V281.69H152.603V282.078H152.214V282.464H151.44V282.853H150.663V283.241H149.886V283.629H149.498V284.018H148.721V284.406H147.947V284.794H147.17V285.183H146.394V285.571H145.617V285.96H145.229V286.345H144.452V286.734H143.678V287.122H142.901V287.511H142.124V287.899H141.347V288.287H140.571V288.676H139.796V289.064H139.02V289.452H137.855V289.841H137.078V290.227H136.304V290.615H135.527V291.003H134.75V291.392H133.585V291.78H132.808V292.168H131.646V292.557H130.869V292.945H129.704V293.334H128.541V293.722H127.764V294.108H126.211V294.496H125.046V294.885H123.883V295.273H122.33V295.661H120.388V296.05H117.672V296.438H113.791V296.05H112.24V295.661H111.075V295.273H110.298V294.885H109.524V294.496H109.135V294.108H108.747V293.722H108.359V293.334H107.97V292.557H107.582V291.78H107.193V291.003H106.805V289.841H106.417V285.957H106.805V284.018H107.193V282.853H107.582V281.69H107.97V280.913H108.359V280.137H108.747V279.36H109.135V278.583H109.524V277.809H109.909V277.032H110.298V276.644H110.686V275.867H111.075V275.09H111.463V274.704H111.851V273.928H112.24V273.539H112.628V272.763H113.016V272.374H113.405V271.597H113.791V271.209H114.179V270.823H114.567V270.046H114.956V269.658H115.344V269.27H115.733V268.493H116.121V268.105H116.509V267.716H116.898V266.942H117.286V266.554H117.672V266.165H118.06V265.777H118.449V265.389H118.837V264.612H119.225V264.223H119.614V263.835H120.002V263.447H120.39V263.061H120.779V262.672H121.167V261.896H121.553V261.507H121.941V261.119H122.33V260.731H122.718V260.342H123.107V259.954H123.495V259.565H123.883V259.18H124.272V258.791H124.66V258.403H125.046V257.626H125.434V257.238H125.823V256.849H126.211V256.461H126.599V256.073H126.988V255.684H127.376V255.298H127.764V254.91H128.153V254.522H128.541V254.133H128.927V253.745H129.315V253.357H129.704V252.968H130.092V252.58H130.481V252.191H130.869V251.803H131.257V251.417H131.646V251.029H132.034V250.641H132.422V250.252H132.808V249.864H133.197V249.475H133.585V249.087H133.973V248.699H134.362V248.31H134.75V247.922H135.138V247.536H135.527V247.148H135.915V246.759H136.304V246.371H136.689V245.983H137.078V245.594H137.466V245.206H137.855V244.817H138.243V244.429H138.631V244.043H139.02V243.655H139.408V243.266H139.796V242.878H140.185V242.49H140.571V242.101H140.959V241.713H141.347V241.325H141.736V240.936H142.124V240.548H142.512V240.162H142.901V239.774H143.289V239.385H143.678V238.997H144.066V238.609H144.452V238.22H144.84V237.832H145.229V237.443H145.617V237.055H146.394V236.667H146.782V235.893H147.17V235.504H147.559V235.116H147.947V234.727H148.333V234.339H148.721V233.951H149.11V233.562H149.498V233.174H149.886V232.785H150.275V232.4H150.663V232.011H151.052V231.235H151.44V230.846H151.828V230.458H152.214V230.069H152.603V229.681H152.991V229.293H153.379V228.518H153.768V228.13H154.156V227.742H154.544V226.965H154.933V226.577H155.321V226.188H155.707V225.8H156.095V225.023H156.484V224.637H156.872V223.861H157.26V223.472H157.649V222.695H158.037V221.919H158.426V221.53H158.814V220.756H159.202V219.979H159.588V219.591H159.977V218.426H160.365V217.261H160.753V216.098H161.142V215.321H161.53V209.501H161.142V207.947H160.753V206.782H160.365V206.394H159.977V205.62H159.588V205.231H159.202V204.455H158.814V204.066H158.426V203.678H158.037V203.289H157.649V202.901H157.26V202.513H156.872V202.124H156.484V201.739H156.095V201.35H155.321V200.962H154.933V200.573H154.156V200.185H153.768V199.797H152.991V199.408H152.214V199.02H151.44V198.632H150.663V198.243H149.498V197.857H148.333V197.469H147.559V197.081H146.394V196.692H144.452V196.304H142.901V195.915H140.571V195.527H137.078V195.139H136.689V195.527H129.704V195.915H127.376V196.304H125.434V196.692H124.272V197.081H123.107V197.469H121.553V197.857H120.39V198.243H119.614V198.632H118.837V199.02H118.06V199.408H116.898V199.797H116.121V200.185H115.344V200.573H114.567V200.962H113.791V201.35H113.405V201.739H112.628V202.124H112.24V202.513H111.463V202.901H111.075V203.289H110.298V203.678H109.909V204.066H109.524V204.455H108.747V204.843H108.359V205.231H107.582V205.62H107.193V206.006H106.805V206.394H106.417V206.782H106.028V207.171H105.642V207.559H104.866V207.947H104.477V208.336H104.089V208.724H103.701V209.113H103.312V209.501H102.924V209.887H102.535V210.275H102.147V210.663H101.761V211.052H101.373V211.44H100.984V211.829H100.596V212.217H100.208V212.605H99.8194V212.994H99.431V213.382H99.0426V214.156H98.6543V214.545H98.2659V214.933H97.8801V215.321H97.4917V215.71H97.1033V216.487H96.7149V216.875H96.3266V217.261H95.9382V217.649H95.5498V218.037H95.1614V218.426H94.7731V219.203H94.3847V219.591H93.9989V220.368H93.6105V220.756H93.2221V221.53H92.8337V221.919H92.4454V222.695H92.057V223.084H91.6686V223.861H91.2802V224.249H90.8919V225.023H90.5061V225.411H90.1177V226.188H89.7293V226.577H89.3409V227.353H88.9526V227.742H88.5642V228.518H88.1758V229.293H87.7874V230.069H87.3991V230.846H87.0107V231.623H86.6249V232.4H86.2365V233.174H85.8481V233.562H85.4597V234.339H85.0714V235.116H84.683V235.893H84.2946V236.667H83.9062V237.443H83.5179V238.22H83.1295V238.997H82.7437V239.774H82.3553V240.548H81.9669V241.713H81.5785V242.49H81.1902V243.266H80.8018V244.429H80.4134V245.206H80.025V245.983H79.6367V247.148H79.2483V247.922H78.8625V248.699H78.4741V249.864H78.0857V250.641H77.6974V251.803H77.309V252.968H76.9206V254.133H76.5322V255.298H76.1439V256.849H75.7555V258.015H75.3671V259.18H74.9813V260.731H74.5929V263.447H74.2045V266.165H73.8162V269.27H73.4278V269.658H73.8162V277.42H74.2045V278.971H74.5929V280.525H74.9813V282.467H75.3671V284.018H75.7555V284.794H76.1439V285.571H76.5322V286.734H76.9206V287.511H77.309V288.287H77.6974V289.064H78.0857V289.841H78.4741V290.615H78.8625V291.003H79.2483V291.78H79.6367V292.168H80.025V292.945H80.4134V293.334H80.8018V293.722H81.1902V294.496H81.5785V294.885H81.9669V295.273H82.3553V296.05H83.1295V296.438H83.5179V296.826H83.9062V297.215H84.2946V297.603H84.683V297.989H85.0714V298.377H85.4597V298.766H85.8481V299.154H86.2365V299.542H86.6249V299.931H87.0107V300.319H87.7874V300.708H88.1758V301.096H88.9526V301.484H89.3409V301.87H90.1177V302.259H90.5061V302.647H91.2802V303.035H91.6686V303.424H92.4454V303.812H93.2221V304.2H93.9989V304.589H94.7731V304.977H95.9382V305.366H97.1033V305.751H98.2659V306.14H100.208V306.528H102.535V306.917H106.419V307.305H112.628V306.917H117.286V306.528H120.002V306.14H122.33V305.751H124.272V305.366H126.214V304.977H127.764V304.589H129.315V304.2H130.869V303.812H132.034V303.424H133.197V303.035H134.75V302.647H135.915V302.259H137.078V301.87H138.243V301.484H139.408V301.096H140.185V300.708H141.347V300.319H142.512V299.931H143.289V299.542H144.452V299.154H145.229V298.766H146.394V298.377H147.17V297.989H148.333V297.603H149.11V297.215H149.886V296.826H150.663V296.438H151.828V296.05H152.603V295.661H153.379V295.273H154.156V294.885H154.933V294.496H155.707V294.108H156.484V293.722H157.649V293.334H158.426V292.945H159.202V292.557H159.977V292.168H160.753V291.78H161.142V291.392H161.918V291.003H162.695V290.615H163.469V290.227H164.246V289.841H165.023V289.452H165.8V289.064H166.576V288.676H166.965V288.287H167.739V287.899H168.516V287.511H169.292V287.122H170.069V286.734H170.458V286.345H171.232V285.96H172.008V285.571H172.785V285.183H173.174V284.794H173.95V284.406H174.727V284.018H175.113V283.629H175.89V283.241H176.666V282.853H177.055V282.464H177.832V282.078H178.608V281.69H178.994V281.302H179.771V280.913H180.159V280.525H180.936V280.137H181.713V279.748H182.101V279.36H182.875V278.971H183.264V278.583H184.04V278.197H184.817V277.809H185.206V277.42H185.982V277.032H186.368V276.644H187.145V276.255H187.533V275.867H188.31V275.479H188.698V275.09H189.475V274.704H189.864V274.316H190.638V273.928H191.026V273.539H191.803V273.151H192.191V272.763H192.968V272.374H193.356V271.986H193.745V271.597H194.519V271.209H194.907V270.823H195.684V270.435H196.072V270.046H196.849V269.658H197.238V269.27H198.012V268.881H198.4V268.493H198.788V268.105H199.565V267.716H199.954V267.328H200.342V266.942H201.119V266.554H201.507V266.165H202.281V265.777H202.67V265.389H203.058V265H203.835V264.612H204.223V264.223H204.612V263.835H205.388V263.447H205.774V263.061H206.551V262.672H206.939V262.284H207.328V261.896H208.104V261.507H208.493V261.119H208.881V260.731H209.655V260.342H210.044V259.954H210.432V259.565H210.82V259.18H211.597V258.791H211.986V258.403H212.374V258.015H213.151V257.626H213.536V257.238H213.925V256.849H214.702V256.461H215.09V256.073H215.478V255.684H215.867V255.298H216.643V254.91H217.029V254.522H217.418V254.133H218.194V253.745H218.583V253.357H218.971V252.968H219.36V252.58H220.136V252.191H220.525V251.803H220.91V251.417H221.299V251.029H222.076V250.641H222.464V250.252H222.852V249.864H223.241V249.475H224.017V249.087H224.406V248.699H224.792V248.31H225.18V247.922H225.568V247.536H226.345V247.148H226.734V246.759H227.122V246.371H227.51V245.983H228.287V245.594H228.673V245.206H229.061V244.817H229.45V244.429H229.838V244.043H230.615V243.655H231.003V243.266H231.391V242.878H231.78V242.49H232.168V242.101H232.942V241.713H233.331V241.325H233.719V240.936H234.108V240.548H234.496V240.162H234.884V239.774H235.661V239.385H236.049V238.997H236.435V238.609H236.824V238.22H237.212V237.832H237.6V237.443H238.377V237.055H238.765V236.667H239.154V236.281H239.542V235.893H239.931V235.504H240.316V235.116H240.705V234.727H241.482V234.339H241.87V233.951H242.258V233.562H242.647V233.174H243.035V232.785H243.423V232.4H243.812V232.011H244.198V231.623H244.586V231.235H245.363V230.846H245.751V230.458H246.139V230.069H246.528V229.681H246.916V229.293H247.305V228.904H247.69V228.518H248.079V228.13H248.467V227.742H248.856V227.353H249.244V226.965H249.632V226.577H250.021V226.188H250.409V225.8H250.797V225.411H251.186V225.023H251.572V224.637H251.96V224.249H252.348V223.861H252.737V223.472H253.125V223.084H253.514V222.695H253.902V222.307H254.29V221.919H254.679V221.53H255.067V221.142H255.453V220.756H255.841V220.368H256.23V219.979H256.618V219.591H257.006V219.203H257.395V218.814H257.783V218.426H258.171V218.037H258.56V217.649H258.948V217.261H259.334V216.487H259.722V216.098H260.111V215.71H260.499V215.321H260.888V214.933H261.276V214.545H261.664V214.156H262.053V213.768H262.441V213.382H262.829V212.994H263.215V212.217H263.604V211.829H263.992V211.44H264.38V211.052H264.769V210.663H265.157V210.275H265.545V209.501H265.934V209.113H266.322V208.724H266.711V208.336H267.096V207.947H267.485V207.559H267.873V206.782H268.262V206.394H268.65V206.006H269.038V205.62H269.427V205.231H269.815V204.455H270.203V204.066H270.592V203.678H270.978V202.901H271.366V202.513H271.754V202.124H272.143V201.739H272.531V200.962H272.919V200.573H273.308V200.185H273.696V199.797H274.085V199.02H274.473V198.632H274.859V198.243H275.247V197.469H275.636V197.081H276.024V196.692H276.412V195.915H276.801V195.527H277.189V195.139H277.577V194.362H277.966V193.976H278.352V193.199H278.74V192.811H279.128V192.423H279.517V191.646H279.905V191.258H280.293V190.481H280.682V190.095H281.07V189.707H281.459V188.93H281.847V188.541H282.233V187.765H282.621V187.376H283.01V186.6H283.398V186.214H283.786V185.437H284.175V185.049H284.563V184.272H284.951V183.884H285.34V183.107H285.728V182.721H286.114V181.944H286.502V181.167H286.891V180.779H287.279V180.002H287.667V179.614H288.056V178.84H288.444V178.063H288.833V177.675H289.221V176.898H289.609V176.121H289.995V175.733H290.384V174.959H290.772V174.182H291.16V173.793H291.549V173.017H291.937V172.24H292.325V171.463H292.714V171.077H293.102V170.301H293.491V169.524H293.876V168.747H294.265V167.97H294.653V167.196H295.041V166.419H295.43V166.031H295.818V165.254H296.207V164.478H296.595V163.701H296.983V162.927H297.372V162.15H297.758V161.373H298.146V160.596H298.534V159.82H298.923V159.045H299.311V157.88H299.699V157.104H300.088V156.327H300.476V155.553H300.865V154.776H301.253V153.999H301.639V153.222H302.027V152.06H302.415V151.283H302.804V150.118H303.192V149.341H303.581V148.179H303.969V147.402H304.357V146.237H304.746V145.46H305.134V144.297H305.52V143.521H305.908V142.356H306.297V141.19H306.685V140.028H307.073V138.863H307.462V137.698H307.85V136.535H308.239V135.37H308.627V134.205H309.013V133.04H309.401V131.489H309.789V129.935H310.178V128.773H310.566V127.219H310.955V125.666H311.343V124.115H311.731V122.173H312.12V120.231H312.508V118.292H312.894V116.35H313.282V114.025H313.671V110.918H314.059V107.813H314.447V102.767H314.836V90.7375H314.447V83.3609H314.059V80.259H313.671V77.9314H313.282V75.6011H312.894V73.276H312.508V70.9457H312.12V69.0039H311.731V67.8387H311.343V66.6762H310.955V65.1227H310.566V63.9575H310.178V62.795H309.789V61.2415H309.401V60.0789H309.013V58.9138H308.627V57.7486H308.239V56.9719H307.85V56.1977H307.462V55.0326H307.073V54.2558H306.685V53.4791H306.297V52.7023H305.908V51.5398H305.52V50.763H305.134V49.9863H304.746V49.2095H304.357V48.4353H303.969V47.6586H303.581V46.8818H303.192V46.4935H302.804V45.7167H302.415V45.3283H302.027V44.5541H301.639V43.7774H301.253V43.389H300.865V42.6123H300.476V41.8355H300.088V41.4471H299.699V40.6729H299.311V40.2846H298.923V39.5078H298.534V39.1194H298.146V38.7311H297.758V37.9543H297.372V37.5659H296.983V37.1776H296.595V36.7918H296.207V36.015H295.818V35.6266H295.43V35.2383H295.041V34.8499H294.653V34.0731H294.265V33.6848H293.876V33.2964H293.491V32.9106H293.102V32.5222H292.714V31.7454H292.325V31.3545H291.937V30.9661H291.549V30.5778H291.16V30.1894H290.772V29.801H290.384V29.4152H289.609V29.0268H289.221V28.6384H288.833V28.2501H288.444V27.8617H288.056V27.4733H287.667V27.0849H287.279V26.6966H286.891V26.3082H286.502V25.9198H286.114V25.534H285.728V25.1456H285.34V24.7573H284.951V24.3689H284.175V23.9805H283.786V23.5921H283.398V23.2038H282.621V22.8154H282.233V22.427H281.847V22.0386H281.07V21.6528H280.682V21.2619H280.293V20.8735H279.517V20.4851H279.128V20.0968H278.74V19.7084H278.352V19.32H277.577V18.9367H276.801V18.5484H276.412V18.16H275.636V17.7742H274.859V17.3858H274.473V16.9949H273.696V16.6065H273.308V16.2181H272.531V15.8297H271.754V15.4414H271.366V15.053H270.592V14.6646H269.815V14.2762H269.038V13.8904H268.262V13.5021H267.485V13.1111H266.711V12.7228H265.934V12.3344H265.157V11.946H264.38V11.5576H263.604V11.1693H262.829V10.786H262.053V10.3976H260.888V10.0118H260.111V9.62342H258.948V9.23504H258.171V8.84412H257.006V8.45574H255.841V8.06737H255.067V7.67899H253.902V7.29062H252.737V6.90224H251.572V6.51387H250.409V6.12805H248.856V5.73967H247.69V5.3513H246.528V4.96037H244.974V4.572H243.423V4.18362H241.87V3.79525H239.928V3.40687H238.377V3.02105H236.435V2.63523H234.108V2.24686H231.78V1.85848H229.45V1.47011H225.957V1.08173H222.464V0.693359H203.446Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-144cq11\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1catkfb\",\"data-framer-name\":\"jio logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:200,intrinsicWidth:200,svg:'<svg width=\"200\" height=\"200\" viewBox=\"0 0 200 200\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_688_756)\">\\n<path d=\"M100 0C119.778 0 139.112 5.8649 155.557 16.853C172.002 27.8412 184.819 43.459 192.388 61.7317C199.957 80.0043 201.937 100.111 198.079 119.509C194.22 138.907 184.696 156.725 170.711 170.711C156.725 184.696 138.907 194.22 119.509 198.079C100.111 201.937 80.0043 199.957 61.7317 192.388C43.459 184.819 27.8412 172.002 16.853 155.557C5.8649 139.112 0 119.778 0 100C0 73.4783 10.5357 48.043 29.2893 29.2893C48.043 10.5357 73.4783 0 100 0ZM146.558 121.325C139.2 121.325 134.142 115.925 134.142 108.208C134.142 100.608 139.308 95.2083 146.558 95.2083C153.808 95.2083 158.983 100.608 158.983 108.317C158.983 115.792 153.7 121.317 146.567 121.317L146.558 121.325ZM146.808 78.3917C127.933 78.3917 115.375 90.3667 115.375 108.192C115.375 126.483 127.467 138.225 146.45 138.225C165.317 138.225 177.742 126.483 177.742 108.308C177.742 90.3667 165.45 78.3917 146.8 78.3917H146.808ZM98.1667 52.2667C91.0333 52.2667 86.5417 56.2917 86.5417 62.625C86.5417 69.075 91.1417 73.1 98.5 73.1C105.642 73.1 110.125 69.075 110.125 62.625C110.125 56.175 105.525 52.2667 98.1667 52.2667ZM99.4333 78.9667H97.125C91.5 78.9667 87.2333 81.6083 87.2333 89.675V126.508C87.2333 134.675 91.3667 137.208 97.3667 137.208H99.6583C105.3 137.208 109.325 134.458 109.325 126.5V89.675C109.325 81.3833 105.408 78.9667 99.4333 78.9667ZM69.3 61.6H65.9667C59.6333 61.6 56.1833 65.1833 56.1833 72.3083V106.725C56.1833 115.583 53.1833 118.692 46.1833 118.692C40.6667 118.692 36.175 116.275 32.6 111.892C32.25 111.442 25 114.883 25 123.417C25 132.617 33.625 138.258 49.625 138.258C69.075 138.258 79.3167 128.483 79.3167 107.075V72.2917C79.3167 65.1583 75.875 61.6 69.3 61.6Z\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_688_756\">\\n<rect width=\"200\" height=\"200\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1crnlsn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-hrx6n3\",\"data-framer-name\":\"Borosil_Logo logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:138,intrinsicWidth:495,svg:'<svg width=\"495\" height=\"138\" viewBox=\"0 0 495 138\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M282.2 43.9992C294.1 43.7992 303.5 53.8992 303.4 68.6992C303.3 83.4992 294.3 93.2992 282.2 93.3992C270.2 93.4992 261.2 83.2992 261 68.6992C261 54.0992 270.3 44.1992 282.2 43.9992ZM276.9 27.9992L275.6 28.1992L273.7 28.4992C251.9 32.6992 239.3 51.4992 241.5 73.5992L241.7 74.9992L241.9 76.0992C245.3 98.2992 263.4 111.299 285.9 109.499L287.5 109.299L288.8 109.099L289.9 108.899L290.7 108.699C308.7 105.399 321.3 91.4992 323 73.2992L323.2 71.1992V65.9992L323 63.8992C322.2 55.1992 318.6 45.9992 312.4 39.7992L312.2 39.4992L312 39.2992C306 33.2992 298.9 29.6992 290.4 28.2992L289.4 28.0992L288.1 27.8992L286.5 27.6992H278.3L276.9 27.9992Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M130.4 43.9996C142.3 43.7996 151.7 53.8996 151.6 68.6996C151.5 83.4996 142.4 93.2996 130.4 93.3996C118.4 93.4996 109.4 83.2996 109.2 68.6996C109.1 54.0996 118.5 44.1996 130.4 43.9996ZM125.2 27.9996L123.9 28.1996L122.8 28.3996L122 28.5996L121.2 28.7996C113.6 30.2996 106.4 33.8996 101 39.3996L100.8 39.5996L100.6 39.7996L100.3 40.0996C99.6001 40.7996 98.8001 41.8996 98.1001 42.5996L98.0001 42.7996L97.9001 42.9996C97.6001 43.3996 97.3001 43.8996 96.9001 44.2996L96.7001 44.5996L96.5001 44.7996C96.1001 45.2996 95.7001 45.9996 95.4001 46.4996L95.2001 46.7996L95.0001 46.9996C92.4001 51.5996 90.6001 56.5996 89.9001 61.8996V62.9996C89.5001 66.7996 89.5001 70.7996 89.9001 74.5996L90.1001 75.8996C90.5001 78.7996 91.2001 81.5996 92.2001 84.2996L92.4001 84.7996L92.6001 85.0996C93.2001 86.8996 94.1001 88.5996 95.0001 90.2996L95.2001 90.4996L95.4001 90.7996C95.7001 91.4996 96.2001 91.9996 96.5001 92.6996L96.7001 92.8996L96.9001 93.1996C97.4001 93.5996 97.5001 94.1996 98.0001 94.5996L98.2001 94.8996L98.4001 95.0996C99.1001 96.0996 99.9001 96.9996 100.8 97.7996L101 97.9996C101.4 98.8996 102.4 99.1996 102.9 99.8996L103.1 100.1C103.6 100.7 103.6 100.5 104.1 100.9L104.3 101.1L104.5 101.3L104.7 101.5L105 101.7C105.5 102.3 105.4 101.9 106 102.5L106.3 102.7L106.5 102.9C107.2 103.2 106.7 103.3 107.8 103.7L108 103.9L108.3 104.1L108.5 104.3L108.8 104.5C113.1 107.1 117.9 108.8 122.9 109.6L123.9 109.8C128.5 110.4 133.2 110.4 137.8 109.8L138.8 109.6C147.2 108.2 154.1 104.8 160.2 99.0996L160.4 98.8996L160.6 98.6996L160.8 98.4996L161 98.2996C161.7 97.4996 162.5 96.7996 163.1 95.8996L163.3 95.6996L163.5 95.4996C164.3 94.4996 165 93.4996 165.7 92.4996L166 91.8996L166.2 91.6996L166.4 91.3996L166.6 91.1996C167.4 89.7996 168.1 88.3996 168.8 86.8996L169 86.3996L169.2 86.0996C170.2 83.6996 171.1 80.8996 171.6 78.2996L171.8 77.4996L172 76.6996L172.2 75.5996L172.4 74.2996L172.6 72.6996V65.0996C171.9 55.4996 168.3 46.4996 161.7 39.6996L161.4 39.3996L160 38.9996L159.8 38.7996L159.6 38.5996C158.8 37.6996 158.1 37.2996 157.4 36.4996L157.1 36.2996L156.9 36.0996L156.7 35.8996C156.3 35.4996 156.3 35.6996 155.7 35.0996L155.4 34.8996L155.2 34.6996C154.9 34.4996 154.3 34.1996 154.1 33.8996L153.8 33.6996L153.5 33.4996L153.3 33.2996L153 33.0996L152.8 32.8996C151.4 32.0996 150 31.3996 148.5 30.6996L148 30.4996L147.7 30.2996C145.3 29.2996 142.9 28.5996 140.3 28.0996L139.5 27.8996L138.7 27.6996L137.6 27.4996L136.5 27.2996L134.9 27.0996H126.7L125.2 27.9996Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M43.6002 74.5992C56.6002 72.3992 64.1002 75.9992 65.2002 82.2992C66.5002 89.9992 59.7002 94.8992 43.6002 93.3992M43.6002 44.3992C55.8002 42.3992 63.5002 45.5992 63.9002 51.3992C64.5002 59.2992 58.7002 62.9992 43.6002 61.5992V44.3992ZM40.6002 28.4992L38.2002 28.6992L36.1002 28.8992L34.2002 28.9992L32.6002 29.1992L31.0002 29.2992L29.6002 29.4992L28.3002 29.6992L27.0002 29.7992L25.9002 29.9992L25.7002 30.1992V107.499L26.3002 107.699L29.2002 107.999C45.5002 109.499 70.4002 112.199 81.8002 96.6992L82.0002 96.4992L82.2002 96.1992L82.4002 95.9992C86.3002 89.7992 86.5002 80.9992 82.1002 74.9992L81.9002 74.7992L81.7002 74.4992L81.5002 74.2992L81.3002 74.0992C80.6002 73.4992 80.7002 73.2992 80.2002 72.7992H80.0002L79.8002 72.5992C79.2002 71.9992 79.3002 71.9992 78.5002 71.4992L78.3002 71.2992L78.1002 71.0992L77.8002 70.8992C76.0002 69.4992 73.8002 68.5992 71.7002 67.6992L71.2002 67.4992L70.7002 67.2992L70.2002 67.0992L69.7002 66.8992V66.6992L70.2002 66.4992L70.5002 66.2992L70.8002 66.0992C73.9002 64.6992 76.7002 62.7992 79.0002 60.1992L79.2002 59.9992L79.4002 59.7992L79.6002 59.4992C80.5002 58.4992 81.6002 56.4992 82.0002 55.1992L82.2002 54.6992L82.4002 54.1992C83.5002 49.8992 83.3002 45.5992 81.3002 41.6992L81.1002 41.9992L80.9002 41.7992L80.7002 41.4992L80.5002 41.1992L80.3002 40.9992L80.1002 40.6992L79.9002 40.3992C79.3002 39.7992 79.7002 39.9992 79.1002 39.3992L78.9002 39.0992L79.0002 38.9992C78.7002 38.6992 78.4002 38.3992 78.0002 37.9992L77.7002 37.6992L77.5002 37.4992L77.3002 37.2992C77.0002 36.9992 76.7002 36.6992 76.3002 36.2992L76.1002 36.0992L75.9002 35.8992L75.8002 35.9992L75.5002 35.6992L75.2002 35.4992L75.0002 35.2992L74.8002 35.0992L74.5002 34.9992L74.3002 34.7992L74.0002 34.6992L73.8002 34.4992C68.5002 30.9992 62.0002 29.2992 55.7002 28.5992L54.1002 28.3992L51.9002 28.1992H43.6002L40.6002 28.4992Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M197.5 45.4992V67.1992C208.5 68.6992 213.1 66.0992 215.3 63.2992C219 58.5992 218.8 50.9992 213.7 47.3992C208.3 43.5992 199.6 45.3992 197.5 45.4992ZM192.9 28.6992L189.9 28.8992L187.3 29.0992L185.2 29.2992L181.7 29.5992L180.3 29.7992L179 29.9992V108.499H197.6V82.5992L197.9 82.7992L201.7 82.9992H206.5L207.5 82.7992V83.0992L207.7 83.3992C209.9 87.3992 211.9 91.4992 214.1 95.4992L214.3 95.7992L214.5 96.0992C216.6 100.199 218.8 104.199 220.9 108.299L221.1 108.499H242.2V108.199L242 107.899L241.8 107.699C238.2 101.599 234.4 95.5992 230.8 89.5992L230.6 89.2992L230.4 89.0992L230.2 88.7992C228.5 85.9992 226.7 83.1992 225.1 80.3992L224.9 80.1992L224.7 79.8992L224.5 79.5992L224.3 79.3992C224 78.9992 223.8 78.4992 223.5 78.0992V77.8992L223.7 77.6992C224.2 77.4992 224.6 77.1992 225 76.8992L225.3 76.6992L225.5 76.4992L225.7 76.2992C226.8 75.6992 227.8 74.5992 228.7 73.8992L228.9 73.6992C229.3 73.2992 229.6 72.9992 230 72.5992L230.2 72.2992C231 71.5992 231.9 70.3992 232.4 69.5992L232.6 69.3992L232.8 69.0992C233.7 67.8992 234.4 66.4992 235 65.0992L235.2 64.7992L235.4 64.2992L235.6 63.9992C238.4 56.6992 237.8 47.7992 233.7 41.0992L233.5 40.8992L233.3 40.5992L233.1 40.3992C228.1 32.7992 218.6 29.5992 209.7 28.5992L207.9 28.3992L204.9 28.1992H198.2L192.9 28.6992Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M350.2 27.9988L349.1 28.1988L348.1 28.3988L347.3 28.5988L346.5 28.7988C334 31.5988 325.3 41.7988 327.6 55.1988L327.8 55.9988L328 56.7988L328.2 57.2988L328.4 57.8988C329 59.5988 330.1 62.0988 331.3 63.4988L331.5 63.7988L331.7 63.9988C332.5 65.1988 333.5 66.1988 334.6 67.1988L334.8 67.3988L335 67.5988L335.3 67.7988C338.2 70.4988 342.4 72.5988 346 74.1988L346.5 74.3988L346.8 74.5988L347.3 74.7988L347.6 74.9988L347.9 75.1988L348.4 75.3988C352 76.9988 356.5 78.7988 359.1 81.7988L359.3 81.9988L359.5 82.2988L359.7 82.4988L359.9 82.7988C360.9 83.9988 360.9 86.9988 360.5 88.3988L360.3 88.8988L360.1 89.1988C359.7 90.0988 359.5 90.1988 359 90.8988L358.7 91.0988L358.5 91.2988L358.3 91.4988L358.1 91.6988C357.2 92.0988 356.4 92.5988 355.4 92.7988L354.8 92.9988L353.8 93.1988C350.4 93.4988 347 92.9988 343.7 92.1988L343.1 91.9988C342.2 91.6988 341.4 91.4988 340.5 91.1988L340 90.9988C337.8 90.1988 335.5 89.1988 333.4 87.9988L333 86.9988L332.7 86.7988L332.5 86.5988C332 86.3988 331.2 85.7988 330.7 85.4988L330.4 85.2988L330.2 85.0988L329.9 84.8988L329.7 84.6988L329.4 84.4988H329.2L329 84.6988L328.8 85.2988L328.6 85.7988L328.4 86.2988L328.2 86.5988L328 87.0988L327.8 87.5988L327.6 87.8988C326.8 89.9988 325.7 91.9988 324.7 94.0988L324.5 94.2988L324.2 94.8988C323.9 95.3988 323.4 96.0988 323.1 96.5988L322.9 96.8988L322.7 97.0988C322.6 97.4988 321.9 98.0988 321.7 98.4988L321.5 98.6988L321.3 98.8988L321.1 99.1988L320.9 99.3988L320.7 99.5988V100.099L320.9 100.299L321.1 100.499L321.4 100.699L321.7 100.899L321.9 101.099C326.8 103.899 332 106.199 337.4 107.799L337.9 107.999L338.5 108.199C348.1 111.099 359.2 110.399 367.8 105.199L368.1 104.999L368.3 104.799L368.6 104.599L368.8 104.399L369.1 104.199C370.3 103.299 371.4 102.399 372.5 101.299L372.8 100.999L373 100.699L373.2 100.499L373.4 100.299L373.6 100.099L373.8 99.8988L374 99.6988L374.2 99.3988L374.4 99.1988L374.6 98.9988H375C375.3 98.4988 375.9 97.7988 376.1 97.2988L376.3 96.9988L376.5 96.7988L376.7 96.4988L376.9 96.1988C380.7 89.3988 380.8 78.4988 375.9 72.1988L375.7 71.8988L375.5 71.6988L375.3 71.4988L375.1 71.1988L374.9 70.9988L374.7 70.7988C372.5 68.0988 369.4 65.8988 366.4 64.2988L366.2 64.0988L365.9 63.8988C361.3 61.3988 356.3 59.6988 351.7 57.3988L351.5 57.1988L350.9 56.8988L350.6 56.6988L350.3 56.4988L350.1 56.2988C348.8 55.4988 347.4 54.3988 346.7 52.9988L346.5 52.6988L346.3 52.3988C345.4 49.7988 346.2 46.6988 348.7 45.3988L348.9 45.1988L349.2 44.9988L349.5 44.7988C357 41.8988 365.2 45.5988 371.6 49.3988L372 49.9988L372.3 50.1988L372.5 50.3988L372.8 50.5988H373.3L373.5 49.9988L373.7 49.4988L373.9 48.8988C374.6 46.4988 375.3 43.9988 376 41.5988L376.2 41.0988L376.4 40.4988L376.6 39.9988C376.8 39.0988 377.1 37.9988 377.4 37.0988L377.6 36.4988L377.8 35.9988L378 35.3988L378.2 34.8988V34.0988L378 33.8988L377.8 33.6988L377.5 33.4988L377.3 33.2988L377 33.0988L376.7 32.8988C372.3 30.2988 366.1 28.5988 361 27.9988L359.4 27.7988H352\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M418.3 108.2H468.8V91.3996H437V29.0996H418.3\" fill=\"black\"/>\\n<path d=\"M405.5 29.0996H386.9V108.2H405.5V29.0996Z\" fill=\"black\"/>\\n<path d=\"M458 49.1004C452.4 49.1004 447.8 44.5004 447.8 39.0004C447.8 33.4004 452.4 28.9004 458 28.9004C463.6 28.9004 468.2 33.5004 468.2 39.0004C468.2 44.6004 463.6 49.1004 458 49.1004ZM458 29.5004C452.7 29.5004 448.4 33.8004 448.4 39.0004C448.4 44.2004 452.7 48.5004 458 48.5004C463.3 48.5004 467.6 44.2004 467.6 39.0004C467.6 33.7004 463.3 29.5004 458 29.5004Z\" fill=\"black\"/>\\n<path fill-rule=\"evenodd\" clip-rule=\"evenodd\" d=\"M456.9 35.8996V38.7996C458.4 38.9996 459 38.6996 459.3 38.2996C459.8 37.6996 459.8 36.6996 459.1 36.1996C458.3 35.5996 457.1 35.8996 456.9 35.8996ZM456.3 33.5996H455.9C455.5 33.5996 455 33.6996 454.6 33.6996H454.4V44.1996H456.9V40.6996H457.4H458H458.1V40.7996C458.2 40.9996 458.3 41.2996 458.5 41.4996C458.6 41.7996 458.8 41.9996 458.9 42.2996C459.2 42.8996 459.5 43.3996 459.8 43.9996H462.6C462.1 43.1996 461.6 42.3996 461.1 41.5996C460.9 41.1996 460.6 40.7996 460.4 40.4996L460.3 40.2996C460.3 40.2996 460.4 40.1996 460.5 40.1996L460.6 40.0996L460.7 39.9996L461 39.5996L461.3 39.0996V38.9996C461.7 38.0996 461.6 36.7996 461.1 35.8996C461 35.7996 460.9 35.5996 460.8 35.4996C460.7 35.2996 460.5 35.1996 460.3 35.0996C459.7 34.6996 458.9 34.4996 458.2 34.3996H458H457.8H457.4H457L456.3 33.5996Z\" fill=\"black\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w05gnt\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fit\",intrinsicHeight:329,intrinsicWidth:499,pixelHeight:329,pixelWidth:499,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/EEmDR8ubkGoEFTHqji5WkZEJ42E.svg\"},className:\"framer-xfjoja\",\"data-framer-name\":\"Layer_1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-r8m3he\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1xqdwpu\",\"data-framer-name\":\"Layer_1\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:38,intrinsicWidth:400,svg:'<svg width=\"400\" height=\"38\" viewBox=\"0 0 400 38\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<g clip-path=\"url(#clip0_688_747)\">\\n<path d=\"M15.1814 36.1621L14.2893 36.6997C12.917 35.955 11.2763 35.5802 9.61075 35.6246C7.73308 35.6246 5.88036 35.9698 4.19608 36.6257V36.5862C6.08622 35.6148 8.30075 35.1068 10.5589 35.1315C12.2058 35.0575 13.834 35.4274 15.1876 36.172M377.765 35.5457C377.815 35.2696 377.965 35.0131 378.183 34.7961C378.776 34.6433 379.4 34.5742 380.023 34.589C382.643 34.4953 385.214 35.2104 387.172 36.5862L386.33 37.0005C384.54 35.6295 381.652 35.2548 379.705 35.2548C379.038 35.2548 378.377 35.3485 377.759 35.5457M149.413 35.5457C149.463 35.2696 149.613 35.0131 149.831 34.7961C150.424 34.6433 151.047 34.5742 151.671 34.589C154.16 34.5348 156.574 35.2548 158.402 36.5862L157.56 37.0005C155.82 35.8564 153.624 35.24 151.359 35.2548C150.692 35.2548 150.031 35.3534 149.413 35.5457ZM61.6116 32.8038C63.1337 34.1255 64.8617 35.2843 66.7643 36.2558L65.7101 36.7934C63.8449 35.8219 62.1481 34.663 60.6634 33.3414L61.6116 32.8038ZM312.296 32.8038C313.818 34.1255 315.546 35.2843 317.449 36.2558L316.395 36.7934C314.53 35.8219 312.833 34.663 311.348 33.3414L312.296 32.8038ZM221.076 32.8038C222.598 34.1255 224.326 35.2843 226.229 36.2558L225.175 36.7934C223.31 35.8219 221.613 34.663 220.128 33.3414L221.076 32.8038ZM296.632 32.5523C298.236 34.0268 300.132 35.2745 302.259 36.2509L301.211 36.7884C299.146 35.7824 297.287 34.5348 295.69 33.0948L296.632 32.5523ZM45.8854 32.5523C47.501 34.017 49.3974 35.2646 51.5121 36.2509L50.4579 36.7884C48.3931 35.7824 46.5279 34.5348 44.9372 33.0948L45.8854 32.5523ZM175.856 32.0148C178.071 33.7211 180.541 35.2005 183.217 36.4235L182.163 37.0054C179.512 35.7726 177.079 34.2783 174.908 32.5573L175.856 32.0148ZM197.303 36.7934C195.388 35.8909 193.71 34.7074 192.362 33.3019V29.2236C192.381 28.0006 192.312 26.7826 192.15 25.5645L193.254 25.2341C193.304 26.2352 193.41 27.5223 193.41 28.8094V33.006C194.77 34.3277 196.448 35.4175 198.351 36.2065L197.297 36.7934H197.303ZM391.951 33.4301V26.2401L388.85 25.1651L389.48 24.6275L393.005 25.8308V34.086L392.849 34.1255L391.957 33.4301H391.951ZM163.181 33.4301V26.2401L160.08 25.1651L160.71 24.6275L164.235 25.8308V34.086L164.079 34.1255L163.187 33.4301H163.181ZM200.035 26.61C199.967 25.4116 200.091 24.2084 200.403 23.0347C201.932 23.3651 203.497 23.587 205.082 23.7004V32.4192C204.24 32.7101 203.348 32.9567 202.612 33.2526C201.688 32.8285 200.84 32.3156 200.085 31.714V26.6001L200.035 26.61ZM21.1201 18.9169H28.6931V19.6221H21.1201V18.9169ZM1.03335 19.8293L1.98155 18.912H7.81418V19.6172H5.28774C3.86546 19.5926 2.43693 19.6616 1.02712 19.8243M97.986 36.2509L96.9318 36.7884C94.842 35.7874 93.0205 34.4707 91.567 32.9222V21.0276C91.567 18.2019 91.5171 16.9937 91.4111 15.9975L92.5651 15.6228V32.6263C94.0311 34.1156 95.8776 35.3485 97.9798 36.241M192.943 18.7443C194.783 17.7433 196.517 16.6682 198.251 15.5439C200.31 16.6584 202.637 17.4375 205.088 17.8271V22.7733C199.673 22.3985 195.781 21.0276 192.943 18.7394M362.931 15.5389L363.087 15.4995C364.515 17.8666 366.218 20.1251 368.19 22.2358L362.937 24.4796V15.5389H362.931ZM386.43 26.5557L385.75 27.1376L378.813 24.5585V18.3646C378.813 17.4079 378.738 16.4512 378.601 15.4995L379.867 15.2085V24.1443L386.436 26.5557H386.43ZM157.666 26.5557L156.986 27.1376L150.049 24.5585V18.3646C150.049 17.4079 149.974 16.4512 149.837 15.4995L151.104 15.2085V24.1443L157.666 26.5557ZM288.953 32.7101C285.41 35.6591 280.476 37.3013 275.329 37.2421C269.334 37.2421 264.606 35.7035 261.081 33.0011C257.85 30.4515 256.066 26.97 256.141 23.3602C256.153 20.2139 257.831 17.2107 260.769 15.0852L260.819 15.1247C258.411 17.2945 257.12 20.0956 257.195 22.9804C257.164 26.536 258.948 29.9535 262.148 32.4586C265.404 35.0378 269.933 36.4482 275.716 36.4482C280.575 36.5764 285.31 35.24 288.966 32.7052L288.953 32.7101ZM175.757 15.3762H173.916L174.44 14.6266H175.757V15.3762ZM190.216 14.6661L189.374 15.5389C187.734 15.3713 186.081 15.317 184.434 15.3713V14.6217H190.11L190.216 14.6611V14.6661ZM363.617 36.9117C360.536 34.8208 357.703 32.508 355.152 30.0127V19.4939C355.152 17.4178 354.996 15.5882 354.89 14.8781L355.994 14.671C356.169 16.0222 356.238 17.3833 356.206 18.7443V29.6773C358.751 32.1134 361.571 34.3671 364.615 36.4136L363.617 36.9166V36.9117ZM210.983 36.246L209.929 36.7835C208.295 35.7134 206.878 34.4509 205.724 33.0405V17.4523C203.204 17.0578 200.803 16.2638 198.675 15.1197L199.411 14.5378C201.626 15.7066 204.109 16.5252 206.723 16.9493V32.7052C207.958 34.017 209.386 35.2005 210.983 36.241M81.7919 36.246L80.7377 36.7835C79.1095 35.8761 77.6249 34.8159 76.3211 33.6225V16.5351C75.6474 15.7608 74.7865 15.1 73.7947 14.5822L74.7428 14.2518C75.7721 14.814 76.6642 15.5143 77.3691 16.3279V33.3315C78.6853 34.4411 80.17 35.4175 81.7857 36.241M241.213 36.246L240.159 36.7835C238.531 35.8761 237.046 34.8159 235.742 33.6225V16.5351C235.068 15.7608 234.214 15.1 233.222 14.5822L234.17 14.2518C235.199 14.814 236.092 15.5143 236.796 16.3279V33.3315C238.125 34.4312 239.61 35.4076 241.213 36.241M332.483 36.246L331.429 36.7835C329.8 35.8761 328.316 34.8159 327.012 33.6225V16.5351C326.338 15.7608 325.477 15.1 324.486 14.5822L325.434 14.2518C326.463 14.814 327.355 15.5143 328.06 16.3279V33.3315C329.389 34.4312 330.873 35.4076 332.477 36.241M346.681 36.246L345.626 36.7835C343.998 35.8761 342.514 34.8159 341.21 33.6225V16.5351C340.511 15.7362 339.619 15.0556 338.577 14.5378L339.526 14.2074C340.561 14.7943 341.466 15.5093 342.208 16.3279V33.3315C343.568 34.4213 345.065 35.3978 346.681 36.241M221.607 32V16.4118C220.995 15.6918 220.253 15.0458 219.398 14.4984L220.29 14.1236C221.182 14.6907 221.975 15.3466 222.655 16.0764V31.3787L221.706 31.9606H221.607V32ZM297.163 31.7091V16.4118C296.539 15.7017 295.796 15.0556 294.954 14.4984L295.846 14.1236C296.738 14.6907 297.531 15.3466 298.211 16.0764V31.1272L297.262 31.7091H297.156H297.163ZM122.496 32.6263C123.905 34.1304 125.746 35.3583 127.86 36.2016L126.806 36.7391C124.679 35.7824 122.845 34.4608 121.448 32.8729V15.7904C120.743 15.2726 119.944 14.8387 119.083 14.5033L119.975 14.1285C120.867 14.5329 121.697 15.0211 122.446 15.5833V32.6263H122.502H122.496ZM312.889 32V16.4118C312.278 15.6918 311.535 15.0458 310.681 14.4984L311.573 14.1236C312.465 14.6907 313.263 15.3466 313.937 16.0764V31.3737L312.989 31.9556H312.889V31.9951V32ZM46.4717 31.7091V16.4118C45.8479 15.7017 45.1056 15.0556 44.2634 14.4984L45.1555 14.1236C46.0475 14.6907 46.8398 15.3466 47.5197 16.0764V31.1272L46.5715 31.7091H46.4655H46.4717ZM62.1419 32V16.4118C61.5305 15.6918 60.7882 15.0458 59.9336 14.4984L60.8256 14.1236C61.7177 14.6907 62.5099 15.3466 63.1899 16.0764V31.3787L62.2417 31.9606H62.1419V32ZM135.646 15.1641C135.178 14.8436 134.666 14.5674 134.123 14.3307L135.015 13.9559C135.608 14.2321 136.157 14.5674 136.644 14.957V32.7101C137.773 34.0712 139.195 35.2696 140.848 36.246L139.794 36.7835C138.066 35.738 136.637 34.4213 135.589 32.9173V15.1691H135.646V15.1641ZM99.5768 19.4446C99.5768 15.9088 99.7327 14.5428 100.257 13.2902C101.573 13.8721 103.095 14.5773 104.935 15.4502V32.286C103.987 32.577 102.989 32.8679 102.097 33.2033C101.161 32.7595 100.313 32.2121 99.5768 31.5808V19.4446ZM396.754 16.2836L396.018 17.0331C395.581 17.1515 395.12 17.2057 394.658 17.2008C391.364 17.2008 388.245 16.0419 386.137 14.0398V13.2064H386.293C388.426 15.2628 391.608 16.466 394.97 16.4907C395.581 16.4759 396.186 16.3773 396.76 16.1997V16.2836H396.754ZM168.04 16.2836L167.304 17.0331C166.867 17.1515 166.406 17.2057 165.944 17.2008C162.65 17.2008 159.531 16.0419 157.423 14.0398V13.2064H157.579C159.712 15.2628 162.894 16.466 166.256 16.4907C166.867 16.4759 167.472 16.3773 168.046 16.1997V16.2836H168.04ZM368.732 22.0237C366.518 19.5728 364.578 16.974 362.95 14.2518V12.9647L363.106 12.9253C364.877 16.0222 367.067 18.9663 369.625 21.6983L368.732 22.0237ZM324.186 33.583L323.768 33.0455C323.238 33.2131 322.714 33.3759 322.24 33.5436C321.747 33.3414 321.292 33.0899 320.88 32.794V15.9088C321.772 15.534 322.826 15.1592 323.824 14.8337C324.816 15.3367 325.671 15.9877 326.351 16.7471V33.9627C327.804 35.3435 329.507 36.5468 331.397 37.538H331.553C333.955 36.0882 336.469 34.7567 339.076 33.5485L338.659 33.011L337.186 33.509C336.382 33.149 335.652 32.6855 335.028 32.1381V15.9236C335.92 15.5488 336.974 15.174 337.979 14.8485C338.97 15.3515 339.825 16.0025 340.505 16.7619V33.9726C341.958 35.3485 343.661 36.5567 345.552 37.5479H345.708C348.44 35.9254 350.598 34.7222 353.755 33.1836L353.331 32.646C352.663 32.9074 351.977 33.1441 351.278 33.3512C350.498 33.0652 349.8 32.6559 349.226 32.148V15.0852C347.991 13.2507 346.113 11.7319 343.811 10.7209H343.655C340.486 11.7516 337.536 13.1718 334.922 14.9225C333.718 13.1373 331.871 11.6776 329.613 10.7209H329.457C326.32 11.7319 323.406 13.1324 320.836 14.8781C319.557 13.2705 317.917 11.8601 316.002 10.7209H315.846C312.733 12.013 309.82 13.591 307.169 15.4156L307.693 15.9137C308.372 15.5389 309.221 15.1641 309.951 14.8337C310.737 15.3762 311.454 15.9778 312.109 16.6189V32.286C311.479 32.6608 310.955 32.9912 310.375 33.3266V33.4499C312.115 35.0082 314.112 36.3791 316.314 37.5232H316.47C318.934 36.0734 321.51 34.7518 324.199 33.5731M58.9791 33.1244L58.5612 32.5869C57.6691 32.8778 56.933 33.1244 56.1969 33.4203C55.5544 33.1441 54.9556 32.8088 54.4066 32.4192V14.8781C53.159 13.2409 51.5121 11.8157 49.5721 10.6765H49.4161C46.3033 11.9686 43.3901 13.5466 40.7389 15.3713L41.2629 15.8693C41.9928 15.4797 42.7476 15.1197 43.5211 14.7893C44.3071 15.3318 45.0245 15.9334 45.6795 16.5795V31.9211C45.1243 32.3058 44.5442 32.6658 43.9453 32.9962V33.1195C45.7668 34.8405 47.9377 36.315 50.3581 37.4838H50.514C53.4085 35.8613 55.6168 34.6975 58.9791 33.1195M233.59 33.2921L233.172 32.7545C232.33 33.0455 231.65 33.2526 230.914 33.5041C230.44 33.297 229.997 33.0455 229.598 32.7545V15.8792C230.49 15.5044 231.544 15.1296 232.548 14.8041C233.54 15.3071 234.395 15.9581 235.075 16.7175V33.9282C236.528 35.309 238.231 36.5123 240.121 37.5035H240.277C242.841 35.9205 245.53 34.4608 248.324 33.1392L247.907 32.6017C247.239 32.863 246.553 33.0997 245.854 33.3068C245.074 33.0208 244.376 32.6115 243.802 32.1036V15.0408C242.567 13.2064 240.683 11.6875 238.387 10.6765H238.225C235.087 11.6875 232.174 13.088 229.604 14.8337C228.325 13.2261 226.684 11.8157 224.769 10.6765H224.607C221.494 11.9686 218.581 13.5466 215.93 15.3762L216.454 15.8743C217.184 15.4847 217.939 15.1247 218.712 14.7992C219.498 15.3417 220.216 15.9433 220.871 16.5844V32.2565C220.322 32.6312 219.735 32.9764 219.136 33.297V33.4203C220.883 34.9786 222.879 36.3495 225.075 37.4936H225.231C227.901 35.9501 230.689 34.5496 233.59 33.2921ZM129.432 14.2962C128.004 12.8957 126.301 11.6924 124.386 10.7209H124.23C121.179 12.1757 119.289 13.3395 116.183 15.0852L116.601 15.6228C117.231 15.3318 117.867 15.0852 118.441 14.7893C119.264 15.1395 120.019 15.5734 120.699 16.0764V33.1638C122.277 34.9194 124.323 36.3841 126.694 37.4443H126.85C129.376 35.9895 132.158 34.4904 134.841 33.2033C136.17 34.8159 137.816 36.2509 139.731 37.4443H139.887C142.62 35.8663 145.67 34.1205 148.246 32.8285L147.829 32.291C146.986 32.5819 146.25 32.8729 145.464 33.1638C144.791 32.789 144.179 32.36 143.624 31.8767V15.9137C144.254 15.5389 144.728 15.2085 145.358 14.8732V14.7499C143.537 13.2557 141.547 11.8946 139.42 10.6765H139.264C136.113 12.1313 133.955 13.2557 130.905 14.9176L131.323 15.4551L133.375 14.5822C133.918 14.8189 134.429 15.0951 134.897 15.4156V32.2515C133.843 32.5819 132.901 32.9173 131.946 33.2526C131.017 32.8088 130.162 32.2614 129.426 31.6302V14.2962H129.432ZM309.726 33.1293L309.308 32.5918C308.416 32.8827 307.68 33.1293 306.944 33.4252C306.301 33.149 305.703 32.8137 305.154 32.4241V14.8781C303.906 13.2409 302.259 11.8157 300.319 10.6765H300.163C297.05 11.9686 294.137 13.5466 291.486 15.3713L292.01 15.8693C292.74 15.4797 293.495 15.1197 294.268 14.7893C295.054 15.3318 295.772 15.9334 296.427 16.5745V31.9162C295.871 32.3008 295.291 32.6608 294.692 32.9962V33.1195C296.514 34.8405 298.685 36.315 301.105 37.4838H301.261C303.981 35.9106 306.807 34.4559 309.726 33.1195M74.1253 33.2871L73.7073 32.7496C72.8652 33.0406 72.179 33.2477 71.4491 33.4992C70.975 33.2921 70.5321 33.0406 70.1329 32.7496V15.8743C71.0249 15.4995 72.0792 15.1247 73.0835 14.7992C74.0754 15.3022 74.93 15.9532 75.6099 16.7126V33.9233C77.0634 35.3041 78.7664 36.5073 80.6566 37.4986H80.8125C83.3764 35.9156 86.065 34.4559 88.8597 33.1342L88.4417 32.5967C87.7743 32.8581 87.0881 33.0948 86.3894 33.3019C85.6096 33.0159 84.911 32.6066 84.3371 32.0937V15.0408C83.1019 13.2064 81.2242 11.6875 78.9224 10.6765H78.7664C75.6287 11.6875 72.7155 13.088 70.1454 14.8337C68.8665 13.2261 67.2259 11.8157 65.3108 10.6765H65.1549C62.0421 11.9686 59.1289 13.5466 56.4777 15.3762L57.0017 15.8743C57.7315 15.4847 58.4863 15.1247 59.2599 14.7992C60.0459 15.3417 60.7632 15.9433 61.4182 16.5844V32.2565C60.8631 32.6312 60.2829 32.9764 59.6841 33.297V33.4203C61.4307 34.9786 63.4269 36.3495 65.6227 37.4936H65.7787C68.4548 35.96 71.2495 34.5594 74.1377 33.2921M362.943 27.1376V25.8505L376.087 20.278V20.1104C373.305 17.0775 370.76 13.9115 368.464 10.6272H368.308C363.686 12.1905 358.926 13.4677 354.06 14.454C354.379 16.2737 354.516 18.1082 354.478 19.9427V30.2543C357.123 32.8926 360.105 35.3189 363.368 37.4887H363.63C367.641 35.383 371.783 33.4449 376.044 31.6696L375.413 30.92C373.417 31.6696 371.789 32.3354 370.155 32.9123C367.522 31.1765 365.108 29.2434 362.95 27.1327M209.879 37.4936H210.035C212.767 35.9156 215.818 34.1649 218.394 32.8778L217.97 32.3403C217.128 32.6312 216.392 32.9222 215.606 33.2131C214.932 32.8384 214.314 32.4093 213.765 31.926V18.9564C213.647 17.4079 213.79 15.8595 214.183 14.3406C210.659 13.6748 205.088 11.9291 202.824 10.642H202.662C199.343 13.7192 195.463 16.3822 191.146 18.5471V18.7148C193.273 20.6972 196.118 22.1174 199.293 22.7881C196.698 23.7793 194.028 24.6423 191.302 25.3673C191.551 26.7431 191.676 28.1338 191.67 29.5244V33.6668C193.142 35.2794 195.045 36.6109 197.241 37.5725H197.397C199.867 36.1572 202.549 34.7468 205.182 33.4153C206.454 34.9638 208.033 36.3397 209.86 37.4887M386.38 37.612C390.422 35.4175 394.901 33.7753 399.63 32.7496C399.355 31.7682 399.231 30.7622 399.262 29.7562V23.0298L391.115 20.204H390.903L388.538 22.2802L386.068 21.4073V14.8781C388.239 16.6929 391.264 17.7186 394.427 17.7038C395.026 17.694 395.625 17.6348 396.218 17.5361C398.445 15.6819 399.786 13.2705 400.004 10.716C399.655 10.6765 399.299 10.6765 398.95 10.716C398.95 11.1894 398.881 11.6678 398.738 12.1313C398.108 12.3434 397.428 12.4568 396.742 12.4617C394.627 12.4223 392.606 11.7368 391.115 10.5483H390.959C386.904 12.659 382.425 14.2074 377.709 15.1197C377.984 16.3279 378.108 17.5509 378.077 18.7789V24.9333L385.7 27.6801H385.912L388.333 25.5596L391.227 26.5607V33.0455C388.595 31.3343 385.276 30.417 381.87 30.4663C381.271 30.4762 380.672 30.5354 380.08 30.634C377.846 32.503 376.511 34.9293 376.293 37.4936C376.642 37.5331 376.998 37.5331 377.347 37.4936C377.347 37.0153 377.416 36.5419 377.559 36.0783C378.189 35.8663 378.869 35.7528 379.556 35.7479C382.007 35.6789 384.403 36.3643 386.237 37.6613H386.393V37.607L386.38 37.612ZM157.616 37.612C161.658 35.4175 166.137 33.7753 170.866 32.7496C170.591 31.7682 170.467 30.7622 170.498 29.7562V23.0298L162.351 20.204H162.139L159.775 22.2802L157.304 21.4073V14.8781C159.475 16.6929 162.501 17.7186 165.663 17.7038C166.262 17.694 166.861 17.6348 167.454 17.5361C169.681 15.6819 171.022 13.2705 171.24 10.716C170.891 10.6765 170.535 10.6765 170.186 10.716C170.186 11.1894 170.117 11.6678 169.974 12.1313C169.344 12.3434 168.664 12.4568 167.978 12.4617C165.857 12.4223 163.842 11.7368 162.351 10.5483H162.245C158.19 12.659 153.711 14.2074 148.995 15.1197C149.276 16.3279 149.394 17.5509 149.363 18.7789V24.9333L156.986 27.6801H157.198L159.619 25.5596L162.507 26.5607V33.0455C160.012 31.3688 156.843 30.4565 153.568 30.4663C152.969 30.4762 152.37 30.5354 151.777 30.634C149.55 32.503 148.209 34.9293 147.991 37.4936C148.34 37.5331 148.696 37.5331 149.045 37.4936C149.045 37.0202 149.114 36.5419 149.257 36.0783C149.887 35.8663 150.567 35.7528 151.253 35.7479C153.568 35.738 155.801 36.4235 157.51 37.6613H157.61V37.612H157.616ZM271.287 30.6241L271.237 30.5847C271.655 29.7118 271.711 29.1299 271.711 26.9256V14.8732C271.711 13.5072 271.555 12.1412 271.237 10.7998L272.341 10.425C272.622 11.7713 272.765 13.1324 272.759 14.4984V26.3042C272.709 29.1299 272.441 29.7118 271.287 30.6291M110.886 36.246L109.832 36.7835C108.179 35.6838 106.757 34.377 105.628 32.9173V15.1691C94.7984 10.3067 93.5882 9.76422 92.5339 9.38943L92.2719 8.18123H92.3218L106.62 14.8337V32.5425C107.799 33.9381 109.233 35.1808 110.88 36.2361M279.29 11.3373C279.29 9.3845 279.34 8.71876 280.395 7.88535C280.869 7.9248 281.867 8.05302 282.447 8.09247V31.5808C280.944 31.9162 279.384 32.0839 277.818 32.0789C275.597 32.0937 273.389 31.7978 271.299 31.2061C274.25 30.2937 277.294 29.2532 279.658 28.3409C279.415 26.9897 279.297 25.6286 279.29 24.2675V11.3373ZM176.449 13.5417C176.449 11.2535 176.293 9.3845 176.187 8.38342L177.453 7.67823H177.503V30.6735L176.555 31.2554H176.449V13.5417ZM12.7111 6.72646C9.87275 9.88751 9.4049 10.5927 9.4049 14.4589V24.9333C9.4049 29.7118 9.1429 31.6302 4.98832 35.452L4.93841 35.4126C8.30699 31.9211 8.4068 30.0077 8.4068 25.1848V14.6661C8.4068 10.7998 8.9308 10.0946 12.6674 6.72646H12.7173H12.7111ZM35.2182 36.246L34.164 36.7835C32.3362 35.8367 30.708 34.6728 29.3294 33.3315V11.1746C29.3793 9.58669 29.2234 7.99877 28.8553 6.43551L30.1217 5.73032C30.3462 7.41686 30.4336 9.10834 30.3837 10.7998V33.006C31.7685 34.2833 33.3967 35.378 35.2182 36.246ZM13.1852 4.65033L13.2351 4.68979C12.1122 5.40977 10.7336 5.83388 9.29261 5.89798C7.76427 5.89798 6.45427 5.31608 5.08812 5.31608C3.85922 5.28649 2.66774 5.64648 1.78193 6.31716C1.43883 6.56373 1.15188 6.85961 0.939782 7.19002H0.889877C1.04583 6.60811 1.41388 6.07552 1.94412 5.65141C2.89231 4.97088 4.13369 4.61088 5.41251 4.65033C6.8847 4.65033 8.36313 5.23224 9.93514 5.23224C11.0642 5.23224 12.1746 5.03005 13.1977 4.65033M45.2553 4.14733C46.5341 5.43936 47.919 6.66236 49.4099 7.80645L48.5677 8.22069C47.0893 7.09632 45.7356 5.87333 44.5192 4.56157L45.2553 4.14733ZM296.738 4.10788C298.048 5.39991 299.452 6.6377 300.943 7.80645L300.101 8.22069C298.604 7.07166 297.213 5.83881 295.946 4.52212L296.732 4.10788H296.738ZM257.669 11.0119C257.944 9.84312 258.636 8.75821 259.665 7.89521C261.612 6.35661 264.5 5.60703 268.343 5.60703C274.337 5.60703 281.486 7.0618 286.165 7.0618C288.585 7.0618 290.581 6.22839 292.21 3.94514L292.366 3.98459C290.631 6.77085 288.579 7.72754 285.897 7.72754C281.218 7.72754 274.175 6.27277 268.074 6.27277C264.288 6.27277 261.605 7.02235 259.715 8.51657C258.823 9.20697 258.143 10.0453 257.719 10.9724H257.669V11.0168V11.0119ZM185.008 3.3583L184.746 3.23501C180.803 5.18786 177.697 6.89413 175.438 8.26507C175.613 9.32533 175.7 10.3954 175.7 11.4656C174.883 12.9302 173.935 14.3504 172.862 15.7066L173.018 15.8743H175.7V31.5069C175.07 31.8817 174.596 32.1726 173.966 32.508V32.6312C176.337 34.6137 179.044 36.3199 182.013 37.7007H182.169C184.827 36.1227 187.64 34.7172 190.585 33.5041L190.16 32.9666C189.53 33.1638 188.919 33.3857 188.32 33.6323C186.948 33.0603 185.625 32.4044 184.378 31.6795V15.9186H184.746C186.38 15.9038 188.008 15.9581 189.636 16.0863C192.157 13.4677 193.261 12.013 193.685 11.0563L193.529 10.933C191.47 11.145 189.399 11.2436 187.328 11.2239H184.378C184.384 8.59547 184.596 5.97196 185.008 3.36816M109.77 37.4936H109.926C112.658 35.9156 115.709 34.2931 118.285 32.9616L117.861 32.4241C117.019 32.7151 116.282 33.006 115.496 33.297C114.823 32.8926 114.205 32.434 113.656 31.926V18.5372C113.656 15.6671 113.812 14.2567 113.918 13.1324C97.986 5.36046 93.5196 2.94406 91.0992 0.784097L90.8372 0.823548C90.7997 3.82679 91.1927 6.82509 91.9912 9.75929C94.3867 10.6174 96.7072 11.6036 98.928 12.7132C96.3018 13.7537 93.3574 14.7893 90.5689 15.7066C90.7935 17.5312 90.8808 19.3608 90.8309 21.1953V33.1688C92.4092 34.9244 94.4553 36.389 96.8258 37.4492H96.9817C99.452 36.0339 102.24 34.5792 104.923 33.2477C106.214 34.8701 107.848 36.3052 109.757 37.4887M48.4617 8.93081H48.6176C51.1441 7.55988 52.8221 6.59825 55.0304 5.18786V5.06457C53.5208 3.54076 51.9051 2.08599 50.1959 0.700262H50.0399C47.9876 1.86408 45.8354 3.03283 43.571 4.52705V4.65033C45.0245 6.1988 46.6589 7.62891 48.4617 8.93081ZM299.839 8.93081H299.995C302.521 7.55988 304.199 6.59825 306.407 5.18786V5.06457C304.898 3.54076 303.282 2.08599 301.573 0.700262H301.417C299.365 1.86408 297.213 3.03283 294.948 4.52705V4.65033C296.414 6.18894 298.048 7.61905 299.839 8.93081ZM21.0203 34.0022L21.0702 33.8789V20.1153H28.6931V33.6274C30.2589 35.1117 32.0804 36.4136 34.1078 37.4936H34.2638C37.177 35.7775 40.2149 34.1945 43.3589 32.7496L42.941 32.1677C42.0489 32.4586 41.3128 32.7496 40.5206 33.0405C39.4851 32.651 38.5805 32.0641 37.8943 31.3343V8.63986C37.8008 5.99168 38.1751 3.34844 38.9985 0.784097L38.7365 0.660811C34.9687 2.31777 31.3942 4.23609 28.0631 6.39606C28.5559 7.98891 28.768 9.62121 28.6931 11.2584V15.46H21.1263V8.27C21.1263 4.11281 21.4944 2.98844 22.3926 0.828479L22.1805 0.789028C20.3403 2.78626 19.7103 4.48267 19.7103 8.68917V33.0948C18.4314 32.5671 16.9967 32.3107 15.5557 32.3452C13.5907 32.3551 11.6506 32.651 9.82285 33.2181L9.77294 33.1786C16.5039 28.4346 16.7097 27.6061 16.7097 24.1541V9.42889C16.7097 5.06457 17.3897 3.15118 18.8681 1.03067L18.656 0.862999C17.3772 1.48929 15.905 1.83449 14.3954 1.86408C12.343 1.86408 9.56085 1.03067 7.08432 1.03067C5.29398 0.991216 3.55355 1.51395 2.24979 2.48544C1.07702 3.42734 0.415781 4.69965 0.409543 6.02127C0.409543 6.74126 0.553019 7.45631 0.827496 8.14178H0.983449C1.17059 7.61905 1.53864 7.14563 2.03769 6.77085C2.81121 6.17908 3.85298 5.86346 4.92593 5.89798C6.55408 5.89798 7.65823 6.43551 9.18656 6.43551C10.7149 6.43551 11.9189 6.02127 14.2893 4.72924L14.3392 4.76869C8.13856 9.88258 7.92646 10.7949 7.92646 14.745V15.4502C6.97827 15.4206 6.03008 15.3515 5.08812 15.243C3.25412 16.8457 1.55112 18.5372 -0.0146484 20.3125L0.141304 20.4358C1.81312 20.2287 3.49741 20.1301 5.18793 20.1449H7.92023V26.8812C7.92023 31.0384 7.18413 32.7447 2.76755 37.2323L2.97964 37.4394C5.14427 36.6651 7.4898 36.2558 9.86652 36.2361C11.4759 36.172 13.048 36.6208 14.2332 37.4838H14.3891C16.3978 36.098 18.6248 34.9244 21.014 33.9923M262.94 20.6972C262.959 17.1811 264.781 13.8228 267.987 11.3867L267.775 11.1795C264.756 11.9587 262.017 13.3001 259.784 15.0852C256.977 17.334 255.411 20.3668 255.423 23.5229C255.33 27.1771 257.158 30.7031 260.47 33.2526C264.044 36.0783 268.991 37.7007 275.142 37.7007C280.176 37.8388 285.061 36.3347 288.654 33.5436C291.455 31.2702 293.052 28.2373 293.127 25.0615L292.759 25.0221C290.843 27.8626 287.681 30.0521 283.869 31.1765V8.1911C284.923 8.23055 285.497 8.23055 285.815 8.23055C289.814 8.23055 292.865 6.23332 294.437 0.123286L294.069 0C292.546 1.62244 290.544 2.15996 287.706 2.15996C283.077 2.15996 275.51 0.705194 269.883 0.705194C265.467 0.705194 261.736 1.78024 259.26 3.73802C257.488 5.0843 256.515 6.95331 256.577 8.89629C256.59 10.0552 256.896 11.1993 257.47 12.2645H257.682C258.025 11.0119 258.811 9.85792 259.94 8.94067C261.73 7.52535 264.307 6.69688 267.931 6.69688C271.724 6.78564 275.498 7.09139 279.234 7.60919C276.396 8.4426 272.765 9.60642 270.401 10.4743C270.775 11.9932 270.956 13.5417 270.925 15.0902V27.685C270.925 29.3913 270.875 30.0965 270.245 30.7178C269.122 30.3085 268.093 29.7612 267.195 29.0954C264.363 26.8763 262.822 23.8336 262.928 20.6873\" fill=\"black\"/>\\n</g>\\n<defs>\\n<clipPath id=\"clip0_688_747\">\\n<rect width=\"400\" height=\"37.7057\" fill=\"white\"/>\\n</clipPath>\\n</defs>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10upujp\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-58yaan\",\"data-framer-name\":\"DLF_logo logo\",fill:\"rgba(0,0,0,1)\",intrinsicHeight:383,intrinsicWidth:1074,svg:'<svg width=\"1074\" height=\"383\" viewBox=\"0 0 1074 383\" fill=\"none\" xmlns=\"http://www.w3.org/2000/svg\">\\n<path d=\"M858.472 1.05664C866.352 13.3366 872.966 26.4033 880.366 38.9766C895.699 66.0833 911.086 93.1366 926.406 120.257C881.259 120.323 836.112 120.283 790.979 120.27C813.392 80.4833 836.019 40.83 858.472 1.05664Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M9.16553 372.417C23.5522 286.457 37.6455 200.457 52.2322 114.537C79.9122 114.684 107.606 114.55 135.299 114.59C158.686 114.71 182.486 113.524 205.352 119.47C224.072 124.044 242.246 133.75 253.792 149.564C266.726 166.99 270.632 189.377 270.312 210.644C269.926 239.777 262.272 268.537 250.152 294.924C241.046 313.884 228.286 331.364 211.592 344.35C192.046 359.724 167.766 368.257 143.192 371.017C128.632 372.83 113.926 372.364 99.2722 372.417C69.2322 372.417 39.2055 372.417 9.16553 372.417ZM121.046 174.79C113.392 220.604 105.779 266.417 98.1389 312.23C112.486 311.977 127.259 313.457 141.126 308.884C156.512 304.364 169.179 292.897 176.592 278.844C186.712 259.644 190.246 237.617 190.619 216.124C190.379 204.27 188.392 189.95 177.232 183.257C160.472 172.857 139.872 175.11 121.046 174.79Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M308.779 114.604C335.086 114.59 361.406 114.59 387.726 114.604C376.739 180.484 365.766 246.364 354.806 312.244C390.952 312.204 427.099 312.257 463.246 312.217C459.886 332.284 456.619 352.377 453.166 372.444C390.726 372.377 328.286 372.43 265.846 372.417C280.112 286.47 294.446 200.537 308.779 114.604Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M517.872 114.604C580.352 114.59 642.819 114.59 705.299 114.604C702.006 134.644 698.592 154.657 695.312 174.697C659.152 174.924 622.992 174.71 586.819 174.817C584.246 190.43 581.619 206.044 579.019 221.657C607.792 221.644 636.565 221.777 665.339 221.59C662.219 241.684 658.645 261.71 655.419 281.804C626.619 281.87 597.805 281.79 569.005 281.844C563.992 312.03 558.912 342.217 553.939 372.417C527.606 372.404 501.285 372.43 474.952 372.404C489.259 286.47 503.632 200.55 517.872 114.604Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M796.259 129.338C837.885 129.311 879.512 129.351 921.139 129.324C900.365 166.071 879.485 202.751 858.725 239.498C837.819 202.831 817.032 166.084 796.259 129.338Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M720.912 243.884C742.645 205.724 764.232 167.47 785.952 129.297C807.672 167.497 829.299 205.764 851.032 243.964C807.659 243.924 764.285 244.07 720.912 243.884Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M866.166 243.924C887.886 205.75 909.472 167.484 931.206 129.297C952.912 167.51 974.592 205.737 996.259 243.977C952.886 243.924 909.526 244.044 866.166 243.924Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M715.819 252.938C738.566 292.658 761.046 332.551 783.606 372.378C738.446 372.404 693.299 372.404 648.152 372.378C670.672 332.538 693.299 292.778 715.819 252.938Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M726.219 253.004C767.859 253.071 809.499 253.004 851.139 253.031C830.712 289.191 810.112 325.257 789.739 361.444C789.112 363.831 787.432 361.577 787.099 360.511C766.899 324.617 746.472 288.857 726.219 253.004Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M866.272 253.044C907.899 253.017 949.539 253.031 991.179 253.031C970.366 289.764 949.539 326.484 928.712 363.217C907.912 326.484 887.059 289.777 866.272 253.044Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M1001.27 253.109C1012.45 271.376 1022.47 290.349 1033.23 308.869C1045.22 330.056 1057.23 351.216 1069.25 372.376C1024.07 372.389 978.899 372.429 933.739 372.363C956.219 332.589 978.845 292.909 1001.27 253.109Z\" fill=\"#1B1B1B\"/>\\n<path d=\"M858.726 257.643C880.739 295.683 902.072 334.136 923.726 372.389C880.432 372.403 837.139 372.389 793.859 372.389C815.419 334.109 837.272 295.989 858.726 257.643Z\" fill=\"#1B1B1B\"/>\\n</svg>\\n',withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-xh8of\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-12s955k\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 41\"><g transform=\"translate(0.447 0.14)\"><path d=\"M 0 0.001 L 37.053 0.001 L 37.053 40.705 L 0 40.705 Z\" fill=\"transparent\"></path><path d=\"M 37.053 0.001 L 0 0.001 L 0 40.703 L 37.053 40.703 Z\" fill=\"transparent\"></path><path d=\"M 0 0.001 L 13.94 0.001 L 13.94 6.979 L 6.353 6.979 L 6.353 15.314 L 0 15.314 Z M 23.112 0.001 L 37.053 0.001 L 37.053 15.314 L 30.701 15.314 L 30.701 6.977 L 23.114 6.977 L 23.114 0 Z M 37.053 25.391 L 37.053 40.703 L 23.114 40.703 L 23.114 33.726 L 30.701 33.726 L 30.701 25.39 L 37.053 25.39 Z M 13.942 40.703 L 0 40.703 L 0 25.39 L 6.353 25.39 L 6.353 33.726 L 13.94 33.726 L 13.94 40.703 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 24.661 13.613 L 12.391 13.613 L 12.391 27.093 L 24.661 27.093 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:8987122057,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ew0pfn\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-e6j36r\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 40 42\"><g><path d=\"M 0 0 L 39.46 0 L 39.46 41.184 L 0 41.184 Z\" fill=\"transparent\"></path><path d=\"M 35.826 11.368 C 36.021 12.821 38.21 14.781 38.809 14.733 C 39.205 14.733 39.357 12.837 39.357 11.368 C 39.357 10.527 39.401 9.871 38.961 9.713 C 38.26 11.138 36.418 11.428 35.826 11.368 Z M 35.948 10.723 C 37.53 10.723 38.975 9.453 38.975 8.334 C 38.975 7.812 38.731 7.388 38.108 7.309 C 38.216 7.448 38.26 7.556 38.26 7.797 C 38.26 8.639 36.982 9.571 35.596 9.571 C 35.091 9.571 34.939 9.921 34.939 10.103 C 34.939 10.532 35.35 10.714 35.944 10.714 Z M 35.615 8.994 C 35.4 8.994 35.096 8.994 34.929 8.66 C 34.792 8.383 34.836 7.941 34.582 7.743 C 34.841 7.822 35.116 7.822 35.326 7.822 C 36.012 7.822 36.663 7.349 37.168 7.349 C 37.5 7.349 37.608 7.565 37.608 7.778 C 37.608 8.452 36.256 9.005 35.615 9.005 Z M 1.582 20.989 C 2.096 20.989 1.993 17.807 2.826 17.807 C 3.027 17.807 3.086 18.004 3.086 18.25 C 3.086 18.969 2.738 20.023 2.738 20.604 C 2.738 20.894 2.816 20.989 2.949 20.989 C 3.316 20.989 3.953 17.486 4.575 17.486 C 4.771 17.486 4.864 17.683 4.864 17.886 C 4.864 18.619 3.939 20.733 3.939 21.328 C 3.939 21.421 3.968 21.496 4.046 21.496 C 4.428 21.496 5.187 19.846 5.432 19.018 C 5.569 18.589 5.751 18.358 5.917 18.358 C 6.069 18.358 6.207 18.526 6.207 18.88 C 6.207 19.707 5.447 21.648 4.776 22.949 C 4.258 23.959 3.453 25.411 3.453 26.225 C 3.453 26.638 3.531 27.067 4.123 27.584 C 3.149 27.525 2.757 27.431 2.39 26.667 C 0.764 29.923 5.389 29.604 3.807 32.495 C 3.516 31.977 1.234 31.441 1.234 28.411 C 1.234 25.796 3.517 24.265 3.517 23.18 C 3.519 22.959 3.417 22.749 3.243 22.614 C 2.738 22.185 2.724 21.836 2.331 21.836 C 2.043 21.836 1.695 22.511 2.058 23.106 C 2.179 23.304 2.287 23.427 2.287 23.614 C 2.287 24.043 1.616 25.19 1.147 25.19 C 0.676 25.19 0.309 24.013 0.309 22.116 C 0.309 20.432 0.691 18.737 1.161 18.737 C 1.299 18.737 1.342 18.831 1.342 18.953 C 1.342 19.151 1.283 19.55 1.283 20.225 C 1.283 20.944 1.45 21.003 1.587 21.003 Z M 24.889 5.95 C 25.133 5.95 25.177 6.547 25.221 6.901 C 25.25 7.083 25.28 7.098 25.358 7.098 C 25.539 7.098 25.829 6.394 26.029 6.394 C 26.319 6.394 27.092 7.206 28.385 7.206 C 30.227 7.206 31.961 5.905 31.961 3.611 C 31.961 1.315 30.408 0.093 28.268 0.093 C 27.249 0.093 26.505 0.596 26.107 0.596 C 25.863 0.611 25.5 0 25.314 0 C 25.235 0 25.162 0.153 25.162 0.414 C 25.162 0.582 25.162 1.117 24.981 1.117 C 24.619 1.117 23.203 0.064 23.203 0.443 C 23.203 0.798 24.143 1.867 24.143 2.142 C 24.143 2.418 23.218 2.679 23.218 2.862 C 23.218 3.197 24.206 3.261 24.206 3.69 C 24.206 4.117 23.174 4.453 23.174 4.773 C 23.174 5.034 24.206 4.852 24.206 5.172 C 24.206 5.492 23.447 6.561 23.447 6.871 C 23.447 6.95 23.462 6.95 23.527 6.95 C 23.815 6.95 24.682 5.955 24.894 5.955 Z M 5.369 28.56 C 5.347 28.245 5.576 27.97 5.888 27.935 C 6.042 27.916 6.196 27.961 6.316 28.06 C 6.437 28.158 6.512 28.302 6.524 28.457 C 6.552 28.777 6.323 29.062 6.005 29.102 C 5.685 29.121 5.406 28.886 5.369 28.565 Z M 3.683 29.039 C 3.742 29.56 4.232 29.955 4.78 29.895 C 4.956 29.883 5.127 29.831 5.28 29.742 C 5.403 30.235 5.78 30.54 6.343 30.477 C 6.609 30.461 6.856 30.336 7.025 30.13 C 7.195 29.925 7.273 29.657 7.239 29.392 C 7.238 29.27 7.206 29.15 7.147 29.044 L 7.255 29.028 C 7.794 28.963 8.188 28.485 8.151 27.94 C 8.09 27.398 7.615 27 7.074 27.038 C 6.897 27.068 6.73 27.141 6.588 27.25 C 6.451 26.792 6.055 26.423 5.492 26.487 C 4.957 26.516 4.546 27.038 4.609 27.605 C 4.615 27.711 4.642 27.815 4.688 27.911 L 4.58 27.925 C 4.046 28.004 3.635 28.447 3.683 29.044 Z M 37.574 0.98 C 37.574 1.196 37.741 1.364 37.956 1.364 C 38.171 1.364 38.338 1.198 38.338 0.98 C 38.34 0.878 38.3 0.779 38.228 0.706 C 38.156 0.634 38.058 0.594 37.956 0.596 C 37.854 0.594 37.756 0.634 37.684 0.706 C 37.612 0.779 37.572 0.878 37.574 0.98 Z M 29.085 15.481 C 29.085 15.831 29.375 16.122 29.722 16.122 C 30.073 16.12 30.357 15.834 30.36 15.481 C 30.357 15.129 30.073 14.843 29.722 14.841 C 29.371 14.844 29.088 15.129 29.085 15.481 Z M 29.13 17.407 C 29.13 17.807 29.449 18.126 29.845 18.126 C 30.035 18.127 30.217 18.051 30.351 17.916 C 30.485 17.781 30.56 17.598 30.56 17.407 C 30.56 17.216 30.485 17.033 30.351 16.898 C 30.217 16.763 30.035 16.687 29.845 16.688 C 29.655 16.687 29.473 16.763 29.338 16.898 C 29.204 17.033 29.129 17.216 29.13 17.407 Z M 26.94 18.708 C 26.973 19.266 27.433 19.701 27.989 19.701 C 28.544 19.701 29.004 19.266 29.037 18.708 C 29.004 18.15 28.544 17.715 27.989 17.715 C 27.433 17.715 26.973 18.15 26.94 18.708 Z M 27.503 16.551 C 27.503 16.885 27.778 17.161 28.111 17.161 C 28.444 17.161 28.718 16.885 28.718 16.551 C 28.717 16.214 28.446 15.941 28.111 15.94 C 27.776 15.941 27.505 16.214 27.503 16.551 Z M 25.51 17.777 C 25.51 18.112 25.785 18.388 26.117 18.388 C 26.45 18.388 26.725 18.112 26.725 17.777 C 26.724 17.441 26.452 17.168 26.117 17.167 C 25.783 17.168 25.511 17.441 25.51 17.777 Z M 27.077 14.196 C 27.077 14.733 27.518 15.176 28.051 15.176 C 28.585 15.176 29.026 14.733 29.026 14.196 C 29.022 13.656 28.588 13.219 28.051 13.216 C 27.515 13.219 27.08 13.656 27.077 14.196 Z M 28.218 12.314 C 28.239 12.62 28.491 12.858 28.797 12.858 C 29.102 12.858 29.355 12.62 29.375 12.314 C 29.355 12.007 29.102 11.769 28.797 11.769 C 28.491 11.769 28.239 12.007 28.218 12.314 Z M 25.466 13.782 C 25.49 14.085 25.741 14.318 26.043 14.318 C 26.345 14.318 26.597 14.085 26.621 13.782 C 26.597 13.48 26.345 13.247 26.043 13.247 C 25.741 13.247 25.49 13.48 25.466 13.782 Z M 25.387 15.772 C 25.387 16.293 25.798 16.708 26.319 16.708 C 26.838 16.708 27.244 16.295 27.244 15.772 C 27.246 15.524 27.149 15.287 26.975 15.112 C 26.801 14.937 26.565 14.84 26.319 14.841 C 26.072 14.84 25.836 14.937 25.661 15.112 C 25.486 15.286 25.388 15.524 25.387 15.772 Z M 23.472 16.752 C 23.472 17.225 23.868 17.625 24.339 17.625 C 24.815 17.619 25.2 17.232 25.206 16.753 C 25.2 16.274 24.815 15.887 24.339 15.881 C 23.863 15.887 23.478 16.274 23.472 16.753 Z M 23.991 14.594 C 23.991 14.93 24.266 15.205 24.599 15.205 C 24.932 15.205 25.206 14.93 25.206 14.594 C 25.205 14.258 24.934 13.985 24.599 13.983 C 24.264 13.985 23.993 14.258 23.991 14.594 Z M 21.969 37.145 C 21.969 37.479 22.243 37.755 22.576 37.755 C 22.909 37.755 23.184 37.479 23.184 37.145 C 23.182 36.808 22.911 36.535 22.576 36.534 C 22.241 36.535 21.97 36.808 21.969 37.145 Z M 5.599 11.798 C 5.599 12.133 5.872 12.409 6.207 12.409 C 6.539 12.409 6.814 12.133 6.814 11.798 C 6.813 11.461 6.542 11.189 6.207 11.187 C 5.872 11.189 5.601 11.461 5.599 11.798 Z M 4.806 10.419 C 4.806 10.755 5.079 11.029 5.413 11.029 C 5.746 11.029 6.021 10.755 6.021 10.419 C 6.019 10.082 5.748 9.809 5.413 9.808 C 5.078 9.809 4.807 10.082 4.806 10.419 Z M 5.461 25.472 C 6.098 25.472 6.632 24.999 6.632 23.94 L 6.632 22.378 C 6.632 21.783 6.676 21.108 7.074 20.635 C 7.029 20.832 7.029 21.048 7.029 21.246 C 7.029 22.56 7.758 23.463 7.758 24.733 C 7.758 25.206 7.622 25.467 7.26 25.467 C 6.896 25.467 6.941 25.147 6.862 25.147 C 6.804 25.147 6.71 25.344 6.71 25.561 C 6.71 25.881 6.941 26.389 7.577 26.389 C 8.127 26.389 8.567 25.886 8.567 25.32 C 8.567 23.945 7.504 22.413 7.504 20.945 C 7.504 20.3 7.671 19.876 7.808 19.536 C 7.808 22.581 10.379 24.803 10.379 26.068 C 10.379 26.358 10.169 26.59 9.845 26.59 C 9.712 26.595 9.582 26.546 9.485 26.453 C 9.388 26.36 9.333 26.232 9.331 26.097 C 9.331 25.989 9.316 25.96 9.272 25.96 C 9.18 25.96 8.905 26.265 8.905 26.664 C 8.905 27.166 9.316 27.782 10.076 27.782 C 10.943 27.782 11.413 27.048 11.413 26.389 C 11.413 24.783 8.292 22.349 8.292 19.749 C 8.292 19.305 8.366 18.586 8.69 18.035 C 6.681 19.335 6.059 21.064 6.059 22.576 C 6.059 23.89 6.016 24.551 5.343 24.551 C 4.997 24.551 4.903 24.23 4.78 24.23 C 4.688 24.23 4.644 24.506 4.644 24.58 C 4.644 25.147 5.055 25.467 5.466 25.467 Z M 31.824 10.187 C 32.495 10.187 32.995 9.881 32.995 9.699 C 32.995 9.641 32.901 9.591 32.705 9.591 C 32.51 9.591 32.113 9.577 31.369 9.454 C 30.727 9.346 30.242 9.104 30.06 9.104 C 30.002 9.104 29.971 9.133 29.971 9.178 C 29.971 9.577 30.702 10.188 31.829 10.188 L 31.824 10.188 Z M 28.508 8.247 C 28.703 8.124 29.556 8.321 30.667 7.774 C 30.789 7.707 30.926 7.672 31.065 7.671 C 31.599 7.671 31.461 8.282 31.947 8.282 C 32.328 8.282 32.813 7.961 33.102 7.961 C 33.558 7.961 34.214 9.399 34.214 10.074 C 34.214 10.853 33.043 11.33 31.657 11.33 C 29.635 11.33 28.415 9.557 28.415 8.409 C 28.415 8.316 28.459 8.287 28.508 8.256 Z M 5.78 31.239 C 5.28 31.363 4.471 32.155 4.471 33.412 C 4.471 34.908 6.069 37.218 8.699 37.218 C 10.924 37.218 11.467 35.672 11.467 34.632 C 11.467 32.322 10.052 30.702 8.209 30.702 C 7.205 30.702 6.309 31.436 6.309 32.525 C 6.309 33.534 7.069 35.046 8.881 35.046 C 9.733 35.046 10.233 34.435 10.233 33.731 C 10.233 33.027 9.61 32.096 8.695 32.096 C 8.42 32.096 8.224 32.278 8.224 32.569 C 8.224 32.933 8.729 33.302 9.35 33.302 C 9.502 33.302 9.625 33.273 9.683 33.244 C 9.713 33.299 9.729 33.362 9.728 33.426 C 9.728 33.776 9.395 33.992 8.876 33.992 C 8.101 33.992 7.352 33.412 7.352 32.495 C 7.352 31.943 7.823 31.545 8.508 31.545 C 9.86 31.545 10.668 32.751 10.668 33.963 C 10.668 35.051 10.076 35.677 8.856 35.677 C 6.422 35.677 5.236 33.475 5.765 31.239 Z M 4.261 14.61 C 3.913 14.704 3.184 15.131 3.184 15.895 C 3.184 16.447 3.61 16.796 4.144 16.796 C 4.418 16.796 4.614 16.738 4.736 16.643 C 4.365 16.303 4.155 15.82 4.159 15.315 C 4.159 14.994 4.203 14.793 4.266 14.61 Z M 0.534 14.821 C 0.519 14.9 0.519 14.974 0.519 15.053 C 0.519 15.772 0.901 16.171 1.401 16.171 C 1.778 16.171 2.224 15.94 2.616 15.437 C 2.449 15.466 2.249 15.481 2.067 15.481 C 1.504 15.481 0.896 15.329 0.529 14.821 Z M 0 16.185 C 0 17.349 0.348 17.9 0.975 17.9 C 1.459 17.9 2.116 17.55 2.889 16.875 C 2.297 17.014 1.841 17.107 1.43 17.107 C 0.882 17.107 0.456 16.895 0 16.19 L 0 16.187 Z M 23.153 40.205 C 23.884 40.205 23.839 40.146 24.07 40.146 C 24.3 40.146 24.315 40.283 24.315 40.377 C 24.315 40.712 23.57 41.126 22.248 41.126 C 21.474 41.126 20.999 40.712 20.861 40.254 C 20.102 40.741 18.946 41.191 17.805 41.191 C 14.685 41.191 13.897 39.83 12.922 39.383 C 12.177 39.047 11.036 39.701 9.439 37.915 C 9.649 37.959 9.939 37.973 10.169 37.973 C 11.569 37.973 12.315 37.285 12.315 36.186 C 12.315 36.047 12.299 35.895 12.285 35.757 C 12.711 35.924 13.685 36.658 13.91 37.959 C 13.941 38.112 14.567 38.249 14.96 38.249 C 15.508 38.249 16.209 38.018 16.311 37.117 C 18.138 36.964 19.368 35.876 19.627 34.501 C 20.284 34.717 21.028 35.314 21.209 35.619 C 21.469 35.526 21.773 35.481 22.121 35.481 C 22.61 35.481 23.153 35.575 23.81 35.771 C 23.839 35.575 23.868 35.328 24.177 35.328 C 24.633 35.328 24.511 35.836 24.663 36.126 C 24.74 36.279 25.119 36.373 25.119 36.679 C 25.119 36.984 24.873 37.077 24.721 37.077 C 24.66 37.076 24.599 37.066 24.54 37.048 C 24.237 37.156 24.222 39.358 22.943 39.358 C 22.003 39.358 21.131 38.579 20.754 37.599 C 20.646 37.309 20.421 37.127 20.206 37.127 C 19.96 37.127 19.823 37.171 19.535 37.491 C 18.53 38.57 17.125 39.181 15.655 39.176 C 15.136 39.176 14.729 39.131 14.622 39.131 C 14.562 39.131 14.562 39.147 14.562 39.161 C 14.562 39.269 15.081 39.682 16.204 39.682 C 18.878 39.682 19.534 38.165 19.96 38.165 C 20.023 38.165 20.206 38.165 20.308 38.412 C 20.93 39.88 22.286 40.219 23.139 40.219 L 23.153 40.219 Z M 14.513 9.454 C 15.518 9.454 15.973 10.326 15.973 11.306 C 15.973 11.735 15.851 12.359 15.655 12.359 C 15.458 12.359 15.489 12.011 15.458 11.685 C 15.429 11.271 15.351 11.182 15.214 11.182 C 14.955 11.182 14.788 11.793 14.788 12.359 C 14.788 12.709 14.847 13.109 15.12 13.109 C 15.272 13.109 15.41 13.03 15.503 12.941 C 15.444 13.645 14.926 14.256 14.195 14.256 C 12.857 14.256 12.354 12.68 12.202 11.764 C 11.398 12.622 10.649 13.247 9.311 13.247 C 8.062 13.247 7.504 12.33 7.504 11.458 C 7.504 11.197 7.598 10.528 7.915 10.528 C 8.297 10.528 7.96 11.783 8.709 11.783 C 8.89 11.783 9.228 11.63 9.41 11.124 C 9.518 10.818 9.576 10.497 9.576 10.223 C 9.576 9.809 9.483 9.548 9.18 9.548 C 8.92 9.548 8.601 9.744 8.494 9.853 C 8.861 8.75 9.743 8.187 10.712 8.187 C 11.912 8.187 12.554 9.257 12.554 10.453 C 12.554 10.621 12.54 10.809 12.511 10.975 C 13.03 10.118 13.745 9.464 14.518 9.464 Z M 10.693 0.336 C 10.693 0.243 10.238 0.154 9.61 0.154 C 8.621 0.154 8.758 0.981 7.999 0.981 C 7.239 0.981 7.406 0.125 6.407 0.125 C 5.799 0.125 5.236 0.233 5.236 0.37 C 5.236 0.552 5.951 0.479 5.951 0.981 C 5.951 1.518 4.413 1.671 4.413 1.992 C 4.413 2.1 4.536 2.145 4.688 2.145 C 5.021 2.145 5.555 1.992 5.932 1.992 C 6.147 1.992 6.343 2.035 6.343 2.237 C 6.343 2.622 5.521 3.307 5.521 3.617 C 5.521 3.71 5.599 3.739 5.673 3.739 C 5.976 3.739 6.495 2.962 6.98 2.962 C 7.789 2.962 7.255 4.69 7.695 4.69 C 8.135 4.69 7.954 2.991 8.606 2.991 C 9.14 2.991 9.536 4.168 9.9 4.168 C 9.988 4.168 10.066 4.089 10.066 3.986 C 10.066 3.665 9.61 3.006 9.61 2.577 C 9.61 2.316 9.791 2.193 10.036 2.193 C 10.384 2.193 10.859 2.405 11.119 2.405 C 11.212 2.405 11.301 2.375 11.301 2.267 C 11.301 1.898 9.948 1.503 9.948 1.026 C 9.948 0.549 10.693 0.552 10.693 0.336 Z M 32.373 30.456 C 32.054 30.456 30.285 32.831 29.15 32.831 C 28.875 32.831 28.644 32.309 28.644 31.915 C 28.644 31.699 28.783 31.546 29.271 31.441 C 31.887 30.846 31.309 28.871 33.543 28.871 C 34.777 28.871 36.144 29.713 36.144 31.609 C 36.144 33.629 33.283 36.137 32.857 36.137 C 32.509 36.137 32.128 35.629 32.128 35.294 C 32.128 35.186 32.171 35.047 32.48 34.925 C 33.94 34.343 34.777 32.998 34.777 32.309 C 34.777 32.157 34.703 32.004 34.503 32.004 C 34.244 32.004 33.137 34.541 31.903 34.541 C 31.05 34.541 30.183 33.762 30.183 33.393 C 30.183 32.782 32.647 31.649 32.647 30.792 C 32.647 30.472 32.495 30.456 32.372 30.456 Z M 34.014 29.511 C 33.799 29.511 33.572 29.679 33.572 30.092 C 33.572 30.551 33.925 30.841 34.121 30.935 C 34.256 31.011 34.407 31.053 34.562 31.058 C 35.002 31.058 35.355 30.935 35.355 30.571 C 35.355 30.097 34.669 29.516 34.019 29.516 Z M 14.269 1.896 C 14.269 2.173 15.228 2.768 15.67 2.768 C 15.929 2.768 16.003 2.418 16.003 2.049 C 16.003 1.591 15.806 1.576 15.41 1.576 C 14.91 1.576 14.269 1.714 14.269 1.896 Z M 15.851 4.925 C 15.851 4.009 13.357 2.31 13.357 1.62 C 13.357 1.591 13.357 1.576 13.373 1.541 C 13.554 1.035 15.625 0.685 15.625 0.271 C 15.625 0.074 15.262 0.074 15.076 0.074 C 13.661 0.074 11.594 0.596 11.594 1.098 C 11.594 1.601 13.451 2.887 13.451 3.517 C 13.451 3.685 13.342 3.743 13.176 3.743 C 12.658 3.743 11.531 3.118 11.002 3.118 C 10.757 3.118 10.668 3.285 10.668 3.532 C 10.668 4.266 11.535 5.66 11.535 6.073 C 11.535 6.118 11.521 6.182 11.462 6.182 C 11.188 6.182 9.895 4.651 9.439 4.651 C 9.272 4.651 9.258 4.876 9.258 5.217 L 9.258 5.739 C 9.258 6.089 9.243 6.305 9.077 6.305 C 8.68 6.305 8.499 5.186 8.115 5.186 C 7.734 5.186 7.647 7.177 7.265 7.177 C 6.823 7.177 7.205 4.989 6.774 4.989 C 6.304 4.989 5.77 6.443 5.437 6.443 C 5.314 6.443 5.285 6.32 5.285 6.211 C 5.285 5.768 5.545 5.049 5.545 4.62 C 5.545 4.404 5.486 4.285 5.3 4.285 C 4.83 4.285 3.796 5.049 3.399 5.049 C 3.34 5.049 3.263 5.02 3.263 4.955 C 3.263 4.586 4.923 3.424 4.923 2.906 C 4.923 2.389 2.64 2.739 2.64 2.157 C 2.64 1.67 4.266 1.162 4.266 0.661 C 4.261 0.211 2.326 0.015 1.583 0.015 C 0.685 0.015 0.196 0.123 0.196 0.384 C 0.196 0.783 2.234 0.906 2.234 1.256 C 2.234 1.606 0.123 2.492 0.123 3.015 C 0.123 3.473 3.106 3.044 3.106 3.522 C 3.106 4.04 0.505 6.29 0.505 7.039 C 0.505 7.206 0.626 7.285 0.794 7.285 C 1.587 7.285 3.64 5.773 4.203 5.773 C 4.398 5.773 4.418 6.019 4.418 6.231 C 4.418 6.63 4.282 7.241 4.282 7.685 C 4.282 8.033 4.37 8.28 4.678 8.28 C 5.241 8.28 5.756 7.314 6.137 7.314 C 6.623 7.314 6.333 10.142 7.069 10.142 C 7.69 10.142 7.949 7.083 8.347 7.083 C 8.743 7.083 9.062 7.97 9.429 7.97 C 9.885 7.97 9.674 6.423 10.159 6.423 C 10.693 6.423 12.211 8.26 12.897 8.26 C 13.112 8.26 13.187 8.093 13.187 7.876 C 13.187 7.069 12.06 5.231 12.06 4.649 C 12.06 4.497 12.103 4.453 12.27 4.453 C 12.863 4.453 14.596 5.281 15.419 5.281 C 15.694 5.281 15.861 5.128 15.861 4.931 Z M 36.62 22.535 C 36.864 21.771 37.168 21.234 37.668 20.407 C 37.168 20.146 35.845 19.595 35.845 18.693 C 35.845 17.639 37.154 16.811 37.427 16.811 C 37.55 16.811 37.579 16.92 37.579 17.117 C 37.579 17.668 37.319 18.555 37.319 19.029 C 37.319 19.456 37.594 19.87 37.838 19.87 C 38.098 19.87 38.813 18.953 38.813 18.052 C 38.813 16.432 37.398 15.94 36.958 15.94 C 36.546 15.94 35.801 16.614 34.047 16.614 C 30.776 16.614 30.031 13.353 30.031 11.934 C 30.031 11.876 30.046 11.857 30.06 11.857 C 30.138 11.857 30.457 12.255 31.49 12.255 C 32.024 12.255 32.509 12.118 33.287 12.118 C 35.11 12.118 35.92 13.388 37.046 15.008 C 37.726 15.437 39.357 16.127 39.357 18.068 C 39.357 19.782 37.545 20.728 37.104 22.564 C 37.804 22.49 38.216 21.234 38.931 21.234 C 39.298 21.234 39.465 21.526 39.465 21.984 C 39.465 22.658 39.083 23.668 38.354 24.294 C 38.367 24.234 38.367 24.156 38.367 24.067 C 38.367 23.638 38.202 23.027 37.712 23.027 C 36.952 23.027 36.707 23.855 36.282 24.539 C 35.84 22.978 35.248 21.57 34.181 20.717 C 33.102 19.846 31.246 20.319 31.246 18.728 C 31.246 18.299 31.52 17.688 31.52 17.201 C 31.53 17.043 31.487 16.887 31.398 16.757 C 32.857 17.309 32.343 18.284 33.239 19.295 C 33.802 19.935 35.355 20.551 36.251 23.195 C 36.266 23.122 36.282 22.919 36.282 22.782 C 36.282 20.516 33.304 18.299 33.043 17.383 C 34.777 17.58 35.081 18.009 35.903 20.304 C 36.07 20.776 36.62 21.958 36.62 22.54 Z M 3.939 10.069 C 4.012 9.822 4.075 9.516 4.075 9.181 C 4.075 8.447 3.742 7.33 2.703 7.33 C 2.43 7.328 2.168 7.437 1.976 7.633 C 1.784 7.828 1.679 8.094 1.685 8.368 C 1.685 9.576 2.884 10.069 3.937 10.069 Z M 2.645 13.92 C 2.145 13.92 1.597 13.295 1.597 12.729 C 1.597 12.423 1.828 12.039 1.99 12.039 C 2.048 12.039 2.082 12.083 2.096 12.191 C 2.19 12.94 2.674 13.369 3.13 13.585 C 3.174 13.614 3.208 13.63 3.208 13.664 C 3.208 13.772 2.92 13.925 2.645 13.925 Z M 4.442 12.482 C 4.442 12.693 4.321 12.969 4.075 12.969 C 3.541 12.969 3.115 12.157 3.115 11.699 C 3.115 11.407 3.282 11.378 3.512 11.378 C 3.62 11.378 3.664 11.393 3.742 11.438 C 3.879 11.516 3.879 11.821 4.046 12.049 C 4.139 12.202 4.442 12.368 4.442 12.477 Z M 3.908 10.875 C 3.82 10.861 3.698 10.861 3.575 10.861 C 3.075 10.861 2.405 10.954 1.812 11.349 C 0.475 12.221 0.686 13.595 0.475 13.949 C 0.445 14 0.43 14.058 0.432 14.117 C 0.432 14.255 0.583 14.407 0.72 14.407 C 0.843 14.407 0.916 14.378 0.98 14.378 C 1.347 14.378 1.753 14.639 2.346 14.639 C 2.695 14.639 3.106 14.531 3.625 14.27 C 4.722 13.717 5.149 12.358 5.149 12.127 C 5.149 11.836 4.918 11.881 4.722 11.605 C 4.512 11.285 4.614 11.162 4.477 10.98 C 4.384 10.906 4.188 10.906 3.913 10.87 Z M 5.521 13.338 C 5.187 13.738 4.835 14.407 4.835 15.097 C 4.835 15.919 5.335 16.609 6.113 16.609 C 6.891 16.609 7.21 15.969 7.21 15.31 C 7.21 14.285 6.28 13.566 5.521 13.334 L 5.521 13.339 Z M 2.268 10.403 C 2.268 10.403 1.828 10.738 1.278 10.738 C 0.966 10.745 0.664 10.623 0.443 10.401 C 0.222 10.178 0.101 9.875 0.108 9.561 C 0.108 9.089 0.353 8.596 0.916 8.354 C 0.901 8.447 0.901 8.521 0.901 8.615 C 0.901 9.487 1.391 10.142 2.268 10.403 Z M 29.331 19.303 C 29.331 18.998 29.604 18.737 29.909 18.737 C 30.242 18.737 30.502 18.998 30.502 19.303 C 30.506 19.463 30.445 19.617 30.333 19.73 C 30.221 19.843 30.068 19.905 29.909 19.9 C 29.754 19.899 29.605 19.836 29.496 19.724 C 29.387 19.611 29.328 19.46 29.331 19.303 Z M 29.723 36.899 C 29.8 36.899 29.889 36.943 29.889 37.218 C 29.889 37.553 29.737 37.997 29.189 38.351 C 28.807 38.613 28.292 38.825 27.527 38.839 C 27.65 38.469 27.743 38.09 27.743 37.721 C 27.743 37.598 27.73 37.505 27.715 37.371 L 27.91 37.371 C 29.111 37.371 29.63 36.899 29.717 36.899 L 29.722 36.899 Z M 29.845 35.382 C 29.967 35.274 29.997 35.106 29.997 34.938 L 29.997 34.589 C 29.997 34.145 29.331 33.884 28.415 33.884 C 27.303 33.884 26.71 34.392 26.71 34.603 L 26.71 35.308 C 26.71 35.598 27.381 35.888 28.203 35.888 C 28.855 35.888 29.452 35.722 29.845 35.382 Z M 30.638 35.554 C 29.828 36.208 28.817 36.56 27.778 36.549 C 26.955 36.549 26.592 36.288 26.471 36.288 C 26.319 36.288 26.152 36.441 25.985 36.638 C 25.618 37.066 25.148 37.86 25.148 38.73 C 25.148 39.341 25.618 39.957 26.5 39.957 C 29.345 39.957 31.476 38.164 31.476 36.716 C 31.476 35.888 30.991 35.554 30.638 35.554 Z M 31.167 22.688 C 31.167 23.072 31.29 23.515 31.672 23.515 C 31.99 23.515 32.265 23.027 32.265 22.49 C 32.265 21.879 32.157 21.402 32.157 21.16 C 32.157 21.052 32.201 21.008 32.265 21.008 C 32.49 21.023 32.705 21.649 32.951 21.649 C 33.225 21.649 33.637 21.14 33.802 21.14 C 33.847 21.14 33.862 21.2 33.862 21.22 C 33.862 21.452 33.514 21.953 33.514 22.151 C 33.514 22.319 34.396 22.348 34.396 22.506 C 34.396 22.732 33.464 22.732 33.029 22.935 C 32.603 23.117 32.343 23.348 32.343 23.654 C 32.343 23.959 32.647 24.023 33.073 24.023 C 34.092 24.023 34.807 23.47 35.033 23.47 C 35.054 23.47 35.074 23.478 35.089 23.493 C 35.104 23.508 35.112 23.528 35.111 23.549 C 35.111 23.702 34.592 24.21 34.592 24.436 C 34.592 24.697 35.536 25.003 35.522 25.155 C 35.507 25.2 35.449 25.215 35.341 25.215 C 35.174 25.215 34.915 25.171 34.719 25.171 C 34.596 25.171 34.488 25.185 34.444 25.245 C 34.336 25.367 34.473 26.18 34.263 26.18 C 34.067 26.18 33.548 24.373 32.377 24.373 C 32.21 24.373 32.089 24.51 32.089 24.742 C 32.089 25.353 32.681 26.057 33.244 26.393 C 33.504 26.559 33.93 26.727 33.93 26.82 C 33.93 27.002 32.956 26.835 32.956 27.141 C 32.956 27.416 33.077 27.831 33.077 28.076 C 33.077 28.155 33.063 28.244 32.97 28.244 C 32.789 28.244 32.348 27.402 32.132 27.402 C 31.951 27.402 31.555 27.905 31.388 27.905 C 31.343 27.905 31.309 27.86 31.309 27.81 C 31.309 27.455 31.872 26.662 31.872 25.885 C 31.872 25.516 31.829 24.723 31.388 24.723 C 31.02 24.723 30.614 25.303 30.428 25.885 C 30.321 26.219 30.399 27.52 30.154 27.52 C 29.923 27.52 29.986 26.648 29.683 26.648 C 29.457 26.648 28.968 27.062 28.802 27.062 C 28.773 27.062 28.742 27.047 28.742 27.017 C 28.742 26.835 29.184 26.24 29.184 26.116 C 29.184 25.885 28.179 25.855 28.179 25.672 C 28.179 25.564 28.577 25.49 28.939 25.427 C 29.713 25.289 30.853 24.723 30.853 23.929 C 30.853 23.043 30.002 22.658 29.438 22.293 C 29.15 22.111 28.831 21.958 28.831 21.835 C 28.831 21.713 29.198 21.713 29.35 21.713 C 29.575 21.713 29.805 21.697 29.805 21.515 C 29.805 21.378 29.776 21.102 29.776 20.889 C 29.776 20.737 29.792 20.614 29.855 20.614 C 30.085 20.614 30.403 21.363 30.555 21.363 C 30.8 21.363 31.133 20.752 31.363 20.752 C 31.437 20.752 31.471 20.796 31.471 20.934 C 31.471 21.5 31.182 22.142 31.182 22.693 Z M 23.913 18.205 C 24.08 19.506 25.814 18.845 25.814 20.422 C 25.814 20.654 25.755 20.989 25.755 21.279 C 25.755 21.613 25.785 21.905 26.044 21.905 C 26.303 21.905 26.362 21.723 26.362 21.476 C 26.362 21.23 26.303 20.925 26.303 20.757 C 26.303 20.22 26.686 20.096 26.911 20.096 C 27.489 20.096 27.93 20.693 28.797 20.693 C 28.601 21.673 26.592 21.412 26.592 22.481 C 26.592 23.019 27.126 23.136 27.474 23.136 C 27.793 23.136 27.901 23.092 27.901 22.816 C 27.901 22.663 27.87 22.495 27.87 22.387 C 27.87 22.329 27.915 22.264 27.993 22.264 C 28.326 22.264 29.973 23.52 29.973 23.899 C 29.973 24.249 28.239 24.604 27.734 24.604 C 27.582 24.604 27.553 24.495 27.553 24.436 C 27.553 24.328 27.812 24.007 27.812 23.825 C 27.812 23.688 27.587 23.594 26.974 23.594 C 26.686 23.594 26.471 23.624 26.471 23.855 C 26.471 24.268 27.141 24.771 27.141 25.155 C 27.141 25.461 26.96 25.643 26.471 25.643 C 26.058 25.643 25.437 25.323 25.437 24.786 C 25.437 24.357 25.877 23.929 25.877 23.668 C 25.877 23.589 25.819 23.472 25.633 23.472 C 25.07 23.472 24.918 24.968 22.924 25.141 C 23.242 24.85 23.517 24.531 23.517 23.87 C 23.517 23.549 23.438 23.288 23.438 22.938 C 23.438 22.48 23.648 22.25 23.957 22.25 C 24.52 22.25 24.795 23.043 25.157 23.043 C 25.353 23.043 25.569 22.861 25.569 22.585 C 25.569 21.423 23.35 21.589 23.35 19.954 C 23.35 19.511 23.501 18.959 23.913 18.196 Z M 26.803 28.15 C 26.803 28.363 26.955 28.535 27.165 28.535 C 27.411 28.535 27.563 28.323 27.563 28.076 C 27.563 27.757 27.273 27.313 27 27.313 C 26.877 27.313 26.926 27.495 26.891 27.697 C 26.877 27.85 26.802 28.032 26.802 28.155 L 26.802 28.15 Z M 26.015 26.111 C 27.611 26.417 28.478 27.623 28.478 28.756 C 28.478 29.535 27.988 30.254 27.136 30.254 C 26.362 30.254 25.799 29.717 25.799 28.864 C 25.799 28.224 26.303 27.549 26.303 26.889 C 26.303 26.603 26.201 26.327 26.015 26.111 Z M 23.991 28.711 C 24.143 28.864 24.187 29.017 24.187 29.17 C 24.187 29.401 24.08 29.643 24.08 29.904 C 24.076 30.086 24.145 30.261 24.271 30.391 C 24.397 30.521 24.57 30.594 24.751 30.594 C 24.944 30.596 25.129 30.519 25.264 30.38 C 25.399 30.242 25.472 30.053 25.466 29.859 C 25.466 29.279 24.873 28.711 23.991 28.711 Z M 29.027 27.737 C 29.135 27.905 29.179 28.071 29.179 28.229 C 29.179 28.658 28.889 29.056 28.889 29.501 C 28.889 30.002 29.271 30.417 29.845 30.417 C 30.467 30.417 30.893 29.908 30.893 29.313 C 30.893 28.5 30.164 27.815 29.022 27.737 Z M 24.354 26.923 C 25.054 27.017 25.221 27.259 25.221 27.46 C 25.221 27.8 24.918 27.905 24.628 27.905 C 24.418 27.905 24.172 27.86 23.913 27.86 C 23.58 27.86 23.242 27.939 22.967 28.258 C 23.163 28.289 23.452 28.426 23.452 28.732 C 23.452 29.619 21.003 28.885 21.003 31.165 C 21.003 32.377 22.252 33.687 24.138 33.687 C 25.113 33.687 25.735 33.367 25.735 33.002 C 25.735 32.712 25.216 32.909 25.216 32.667 C 25.216 32.559 25.397 32.362 25.397 32.195 C 25.397 32.121 25.339 31.982 25.216 31.982 C 24.942 31.982 24.428 32.427 23.375 32.427 C 22.552 32.427 21.749 31.953 21.749 31.308 C 21.749 31.17 21.807 31.091 21.9 31.091 C 21.993 31.091 22.11 31.155 22.218 31.155 C 22.312 31.155 22.326 31.091 22.326 30.923 C 22.326 30.757 22.326 30.278 22.615 30.278 C 22.904 30.278 23.453 31.352 25.549 31.352 C 26.249 31.352 27.602 31.215 28.106 30.757 C 28.092 32.441 26.783 34.658 24.046 34.658 C 21.307 34.658 19.682 32.362 19.682 30.249 C 19.703 27.768 21.715 25.77 24.182 25.782 C 24.848 25.782 25.412 26.012 25.412 26.303 C 25.412 26.702 24.423 26.456 24.349 26.928 Z M 13.343 11.26 C 13.343 10.999 13.284 10.94 13.221 10.94 C 13.069 10.94 12.902 11.122 12.658 11.536 C 12.687 12.088 12.779 12.334 12.931 12.334 C 13.098 12.334 13.342 11.797 13.342 11.265 L 13.342 11.26 Z M 11.255 11.886 C 11.422 11.886 11.639 11.704 12.03 11.26 C 12.059 11.064 12.059 10.875 12.059 10.649 C 12.059 10.343 11.937 10.004 11.755 10.004 C 11.3 10.004 11.07 11.231 11.07 11.551 C 11.07 11.733 11.163 11.886 11.251 11.886 L 11.256 11.886 Z M 13.74 13.25 C 14.122 13.25 14.548 11.782 14.548 10.867 C 14.548 10.669 14.518 10.453 14.426 10.453 C 14.107 10.453 13.573 11.965 13.573 12.792 C 13.573 13.113 13.651 13.25 13.74 13.25 Z M 10.012 12.408 C 10.531 12.408 11.124 9.595 11.124 9.118 C 11.124 8.994 11.079 8.905 10.972 8.905 C 10.502 8.905 9.845 11.581 9.845 12.176 C 9.845 12.284 9.874 12.408 10.012 12.408 Z M 11.668 13.57 C 11.016 13.57 10.982 14.368 10.982 15.975 C 10.497 14.919 9.688 13.786 8.743 13.786 C 8.101 13.786 7.862 14.215 7.862 14.965 C 7.862 15.117 7.876 15.348 7.905 15.487 C 7.984 15.226 8.224 15.123 8.533 15.123 C 9.19 15.123 9.978 15.624 10.497 16.314 C 9.905 16.206 9.326 16.097 8.837 16.097 C 8.533 16.097 8.258 16.127 8.028 16.235 C 7.587 16.432 6.995 17.093 6.995 18.087 C 6.995 18.239 7.009 18.407 7.043 18.589 C 7.577 17.398 8.988 16.861 9.904 16.861 C 10.086 16.861 10.222 16.875 10.33 16.89 C 9.86 17.319 9.753 18.068 9.723 18.57 C 9.709 18.816 9.615 18.831 9.449 18.831 C 9.449 19.334 9.845 20.087 9.845 20.467 C 9.845 20.604 9.772 20.728 9.693 20.757 C 9.693 21.431 10.364 21.919 10.364 22.348 C 10.369 22.436 10.343 22.524 10.291 22.595 C 10.335 22.87 11.065 23.343 11.158 23.54 C 11.31 23.86 11.417 23.889 11.492 23.889 C 11.751 23.889 12.163 23.584 12.163 23.309 C 12.163 23.215 12.084 23.111 12.025 23.062 C 11.736 22.851 11.584 22.387 11.461 22.082 C 11.327 22.084 11.209 21.995 11.173 21.865 C 11.11 21.668 11.079 20.949 10.958 20.594 C 10.762 20.551 10.668 20.472 10.668 20.058 C 10.668 19.861 10.791 19.078 10.791 18.802 C 10.697 18.802 10.581 18.742 10.581 18.555 C 10.581 18.068 11.065 17.683 11.202 17.058 C 12.069 17.699 12.28 18.358 12.28 18.939 C 12.28 19.245 12.236 19.535 12.172 19.811 C 12.813 19.491 13.769 19.018 13.769 18.052 C 13.769 17.486 13.509 16.861 11.791 16.614 C 12.323 16.417 12.995 16.309 13.554 16.309 C 14.528 16.309 15.091 16.614 15.214 17.304 C 15.41 16.999 15.562 16.649 15.562 16.324 C 15.562 15.576 14.939 15.087 14.146 15.087 C 13.221 15.087 12.397 15.576 11.516 16.171 C 11.912 15.344 12.187 14.855 12.671 14.855 C 12.745 14.855 12.823 14.871 12.897 14.886 C 12.716 14.211 12.03 13.556 11.663 13.556 Z M 1.964 4.04 C 1.964 4.345 0.809 5.368 0.396 5.368 C 0.244 5.368 0.201 5.186 0.201 5.02 C 0.201 4.714 0.338 4.285 0.505 4.148 C 0.7 3.966 1.161 3.872 1.509 3.872 C 1.724 3.872 1.964 3.916 1.964 4.04 Z M 37.301 24.599 C 38.06 24.599 38.667 25.595 38.667 26.757 C 38.667 27.992 38.089 29.343 37.055 30.259 C 37.04 28.195 34.528 28.85 34.528 27.352 C 34.528 26.712 34.983 26.283 35.531 26.283 C 36.017 26.283 36.399 26.422 36.673 26.697 C 36.408 26.44 36.26 26.086 36.261 25.717 C 36.261 25.136 36.628 24.599 37.295 24.599 Z M 26.015 8.95 C 25.892 8.749 25.437 8.644 25.221 8.644 C 24.551 8.644 24.095 9.118 24.006 9.547 C 23.939 9.381 23.903 9.204 23.899 9.025 C 23.899 8.349 24.354 7.527 25.466 7.527 C 26.44 7.527 26.817 8.044 26.955 8.044 C 27.107 8.044 27.259 7.891 27.381 7.891 C 27.548 7.891 27.548 8.152 27.548 8.334 C 27.548 8.945 27.273 9.999 26.587 10.383 C 26.427 10.057 26.158 9.798 25.828 9.65 C 25.735 9.614 25.674 9.523 25.676 9.423 C 25.676 9.255 25.828 9.039 26.01 8.95 Z M 23.717 10.069 C 24.114 10.453 24.462 10.62 24.887 10.62 C 25.054 10.62 25.254 10.575 25.358 10.575 C 25.495 10.575 25.588 10.635 25.588 10.743 C 25.588 10.91 25.437 11.186 25.256 11.339 C 25.437 11.418 25.638 11.447 25.848 11.447 C 26.715 11.447 27.705 10.896 27.705 9.521 C 27.886 9.768 27.993 10.27 27.993 10.501 C 27.993 12.166 26.774 12.811 25.652 12.811 C 24.923 12.811 24.554 12.566 24.467 12.566 C 24.177 12.566 24.192 13.147 23.996 13.132 C 23.644 13.073 23.325 12.289 23.325 11.462 C 23.325 10.975 23.448 10.453 23.722 10.069 L 23.718 10.069 Z M 13.142 5.615 C 13.142 6.152 15.042 8.768 15.41 8.768 C 15.714 8.768 15.943 8.231 15.943 7.773 C 15.946 7.654 15.914 7.538 15.851 7.438 C 15.576 7.053 13.646 5.526 13.221 5.526 C 13.176 5.526 13.142 5.571 13.142 5.62 Z M 35.096 4.359 C 35.096 3.276 32.509 3 32.509 2.753 C 32.509 2.557 33.954 2.217 34.698 2.202 C 33.558 0.734 31.932 0.887 31.932 0.625 C 31.932 0.472 33.147 0.167 34.273 0.167 C 35.213 0.167 36.099 0.383 36.099 1.103 C 36.099 1.502 35.782 1.917 35.782 2.526 C 35.782 2.862 35.948 3.153 36.389 3.153 C 36.859 3.153 36.966 2.645 36.966 2.113 C 36.966 1.67 36.889 1.335 36.889 1.117 C 36.889 0.473 37.33 0.048 37.952 0.048 C 38.471 0.048 38.588 0.276 39.352 0.276 C 38.941 0.522 38.789 0.966 38.789 1.177 C 38.789 1.823 39.2 2.265 39.2 3.581 C 39.2 6 36.947 6.856 34.195 6.856 C 33.435 6.856 32.627 6.798 31.838 6.674 C 31.717 6.66 31.686 6.63 31.686 6.551 C 31.686 6.355 32.77 6.245 32.77 5.265 C 32.77 4.881 32.647 4.517 32.647 4.379 C 32.647 4.301 32.705 4.256 32.77 4.256 C 33 4.256 33.454 5.143 34.302 5.143 C 34.533 5.143 35.096 5.064 35.096 4.359 Z M 37.668 2.813 C 37.668 4.177 36.683 5.217 34.9 5.507 C 35.096 5.522 35.282 5.522 35.463 5.522 C 37.545 5.522 38.309 4.572 38.309 3.779 C 38.309 3.335 38.064 2.936 37.668 2.811 Z M 36.222 15.117 C 36.222 14.797 35.415 14.767 35.34 13.861 C 35.326 13.723 35.282 13.477 35.111 13.477 C 34.836 13.477 35.051 14.319 34.744 14.319 C 34.043 14.319 33.812 12.945 33.558 12.945 C 33.499 12.945 33.42 12.989 33.42 13.177 C 33.42 13.343 33.45 13.451 33.45 13.649 C 33.45 13.846 33.406 13.985 33.225 13.985 C 32.814 13.985 32.451 13.017 32.099 13.017 C 32.019 13.017 31.947 13.063 31.947 13.142 C 31.947 13.324 32.251 13.664 32.251 13.831 C 32.251 14.2 31.261 13.999 31.261 14.304 C 31.261 14.442 31.398 14.486 31.579 14.486 C 31.898 14.486 32.401 14.349 32.657 14.349 C 32.809 14.349 33.039 14.378 33.039 14.58 C 33.039 14.797 32.49 15.068 32.49 15.27 C 32.49 15.363 32.584 15.408 32.657 15.408 C 33.068 15.408 33.797 14.689 34.312 14.689 C 34.405 14.689 34.63 14.733 34.63 14.871 C 34.63 15.068 34.111 15.423 34.111 15.713 C 34.111 15.792 34.155 15.881 34.249 15.881 C 34.522 15.881 34.886 15.161 35.405 15.161 C 35.601 15.161 35.894 15.24 36.041 15.24 C 36.164 15.24 36.208 15.162 36.208 15.117 Z M 25.329 3.443 C 25.329 3.276 24.735 2.95 24.735 2.768 C 24.735 2.739 24.766 2.724 24.81 2.724 C 24.976 2.724 25.266 2.783 25.495 2.783 C 25.691 2.783 25.725 1.926 25.877 1.926 C 25.985 1.926 26.167 2.734 26.333 2.734 C 26.529 2.734 26.896 2.502 27.048 2.502 C 27.077 2.502 27.107 2.517 27.107 2.547 C 27.107 2.655 26.725 3.069 26.725 3.187 C 26.725 3.324 27.577 3.492 27.577 3.616 C 27.577 3.769 26.71 3.753 26.71 3.891 C 26.71 4 27.029 4.428 27.029 4.565 C 27.029 4.596 27.013 4.61 26.984 4.61 C 26.862 4.61 26.392 4.393 26.254 4.393 C 26.088 4.393 25.814 5.025 25.677 5.025 C 25.633 5.025 25.599 4.961 25.599 4.886 L 25.569 4.275 C 25.569 4.217 25.539 4.153 25.461 4.153 C 25.28 4.153 24.926 4.138 24.824 4.138 C 24.751 4.138 24.716 4.122 24.716 4.093 C 24.716 3.97 25.324 3.542 25.324 3.438 Z M 28.297 6.35 C 27.234 6.35 26.534 5.813 26.534 5.536 C 26.534 5.399 26.626 5.31 26.744 5.31 C 27.077 5.31 27.807 5.827 28.053 5.827 C 28.111 5.827 28.16 5.797 28.16 5.704 C 28.16 5.428 27.901 4.97 27.901 4.738 C 27.901 4.68 27.944 4.63 28.037 4.63 C 28.449 4.63 29.056 4.798 29.375 4.798 C 29.483 4.798 29.512 4.738 29.512 4.675 C 29.512 4.335 28.522 3.679 28.522 3.482 C 28.522 3.3 29.752 3.024 29.752 2.734 C 29.752 2.428 28.077 2.64 28.077 2.349 C 28.077 2.138 28.396 1.768 28.396 1.601 C 28.396 1.522 28.336 1.493 28.229 1.493 C 28.092 1.493 27.362 1.783 27.058 1.783 C 26.906 1.783 26.725 1.754 26.725 1.536 C 26.725 1.187 27.317 0.803 28.249 0.803 C 29.752 0.803 30.653 1.843 30.653 3.585 C 30.653 5.787 29.114 6.339 28.297 6.339 Z M 17.997 32.815 C 17.995 32.978 17.937 33.135 17.831 33.259 C 17.664 32.953 17.194 32.801 16.978 32.801 C 15.412 32.801 16.004 35.081 14.328 35.081 C 13.628 35.081 13.569 34.987 13.309 34.987 C 13.202 34.987 13.144 35.032 13.144 35.125 C 13.144 35.524 13.707 36.504 15.274 36.504 C 16.842 36.504 18.345 35.538 18.345 34.347 C 18.345 34.15 18.301 33.933 18.207 33.721 C 18.267 33.628 18.422 33.568 18.555 33.568 C 18.801 33.568 18.938 33.844 19.163 33.844 C 19.277 33.848 19.387 33.803 19.468 33.722 C 19.549 33.641 19.593 33.53 19.589 33.415 C 19.589 33.219 19.482 33.081 19.301 32.988 C 19.433 32.891 19.512 32.738 19.516 32.574 C 19.516 32.312 19.335 32.066 19.031 32.066 C 18.903 32.063 18.78 32.119 18.698 32.219 C 18.668 31.943 18.516 31.682 18.228 31.682 C 18.002 31.682 17.831 31.85 17.831 32.111 C 17.831 32.357 17.997 32.554 17.997 32.815 Z M 13.908 33.396 C 13.452 33.396 12.766 32.904 12.766 32.633 C 12.766 32.401 12.982 32.278 13.149 32.278 C 13.53 32.278 14.212 32.751 14.212 33.151 C 14.212 33.259 14.132 33.396 13.908 33.396 Z M 9.661 29.968 C 10.881 30.273 11.488 30.934 11.61 31.711 C 11.732 32.461 11.884 33.076 12.174 33.381 C 12.555 33.81 13.3 34.189 13.951 34.189 C 14.5 34.189 14.941 34.007 14.941 33.505 C 14.941 32.953 14.197 31.711 13.099 31.711 C 12.992 31.711 12.854 31.727 12.702 31.727 C 12.565 31.727 12.369 31.697 12.246 31.589 C 12.002 31.377 11.929 30.229 11.473 29.54 C 10.973 28.776 10.425 28.56 9.681 28.56 C 9.147 28.56 8.554 28.85 8.554 29.279 C 8.554 29.54 8.691 29.722 9.666 29.963 Z M 17.297 28.102 C 17.297 27.412 15.881 27.397 15.881 26.358 C 15.881 26.096 16.048 25.653 16.386 25.181 C 16.523 25.978 16.842 26.387 17.528 26.648 C 18.879 27.151 19.065 27.919 19.065 28.727 C 19.065 30.101 18.105 31.816 15.642 31.816 C 13.662 31.816 12.246 30.041 12.246 28.54 C 12.246 28.126 12.355 27.668 12.613 27.668 C 12.845 27.668 12.917 27.85 13.099 28.037 C 13.785 28.727 14.529 28.909 15.606 28.909 C 16.581 28.909 17.297 28.51 17.297 28.097 Z M 17.361 29.204 C 16.826 29.417 16.63 29.401 16.63 29.938 C 16.63 30.136 16.587 30.397 16.587 30.534 C 16.587 30.717 16.616 30.825 16.832 30.825 C 17.38 30.825 18.247 29.894 18.247 29.096 C 18.247 28.879 18.125 28.79 17.987 28.79 C 17.866 28.79 17.728 29.037 17.366 29.204 Z M 12.507 21.476 C 12.507 20.496 14.818 19.978 14.818 18.766 C 14.818 18.57 14.739 18.215 14.603 17.954 C 15.412 18.397 16.004 19.147 16.004 19.757 C 16.004 20.812 14.907 21.304 14.907 21.958 C 14.907 22.722 16.077 22.845 16.077 23.796 C 16.077 24.574 14.965 25.481 14.965 26.491 C 14.965 27.268 15.514 27.913 16.352 28.023 C 16.077 28.081 15.833 28.131 15.572 28.131 C 14.035 28.131 12.452 26.86 12.452 25.348 C 12.452 24.599 12.771 23.939 13.261 23.467 C 13.686 23.836 14.113 24.077 14.388 24.077 C 14.632 24.077 14.739 23.954 14.739 23.772 C 14.739 23.206 12.502 22.683 12.502 21.476 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:9866896591,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-6pvz2i\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1o9motu\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 38 42\"><g transform=\"translate(0.333 0.131)\"><path d=\"M 0 0 L 36.833 0 L 36.833 41.075 L 0 41.075 Z\" fill=\"transparent\"></path><path d=\"M 25.637 17.463 C 26.805 18.738 26.92 22.686 29.897 21.12 C 31.648 20.192 31.648 16.244 29.256 14.797 C 27.328 13.694 26.279 15.203 25.579 17.061 C 25.519 17.236 25.519 17.35 25.637 17.467 Z M 21.028 16.824 C 19.745 17.809 18.927 20.651 16.651 19.667 C 14.782 18.738 14.609 15.142 17.818 13.457 C 20.036 12.413 21.146 14.443 21.146 16.589 C 21.131 16.676 21.09 16.757 21.028 16.82 Z M 24.063 23.962 C 25.291 23.845 24.996 22.686 24.063 22.453 C 23.245 22.163 22.022 21.988 21.086 22.047 C 19.51 22.047 19.569 23.266 20.386 23.496 C 21.028 23.672 21.437 23.728 21.964 24.424 C 22.431 25.351 22.195 24.134 24.063 23.958 Z M 29.841 3.772 C 31.359 1.22 34.042 1.684 35.386 2.959 C 36.845 4.351 37.137 5.977 36.554 7.08 C 35.796 8.588 33.813 10.387 32.527 8.647 C 31.944 7.834 30.777 6.907 30.077 6.673 C 29.085 6.208 28.909 5.339 29.844 3.772 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 35.969 14.969 C 35.851 14.504 35.619 14.563 35.619 14.911 C 35.736 19.553 32.932 24.541 26.982 24.599 C 25.464 24.599 25.931 26.977 23.131 25.76 C 21.146 24.427 19.98 27.093 18.58 24.251 C 18.23 23.438 17.762 23.09 17.18 22.918 C 11.284 21.467 9.416 13.402 14.612 6.904 C 15.603 7.542 16.012 7.658 17.121 6.614 C 17.648 6.091 18.639 5.512 19.162 5.339 C 20.39 4.875 21.089 4.354 19.98 1.974 C 19.469 0.854 18.774 0.257 18.033 0 L 16.051 0 C 15.444 0.179 14.894 0.485 14.494 0.813 C 12.976 2.032 11.985 3.945 13.853 6.208 C 8.599 9.746 7.667 14.098 7.784 17.929 C 7.902 21.933 6.906 21.584 8.193 25.646 C 8.31 25.994 8.017 25.994 7.842 25.877 C 2.356 22.397 -0.621 11.72 7.96 5.861 C 8.137 5.685 8.079 5.454 7.378 5.861 C -0.041 9.746 -0.741 17.288 0.482 22.395 C 1.065 24.831 0.192 25.295 1.124 28.544 C 3.342 35.272 5.21 35.855 7.893 36.027 C 12.738 36.027 9.41 33.357 9.643 30.053 C 9.643 29.822 9.876 29.764 9.993 30.17 C 12.679 36.089 14.544 41.484 21.549 40.961 C 25.575 40.437 23.358 38.467 23.065 37.306 C 20.089 27.5 27.326 25.182 25.284 34.753 C 23.943 40.265 28.203 39.682 31.238 37.712 C 34.33 35.738 38.184 22.339 35.966 14.969 Z M 24.178 26.63 C 23.478 28.369 20.033 27.791 19.918 26.051 C 19.918 25.993 20.036 25.993 20.036 26.051 C 21.613 26.399 23.072 26.574 24.063 26.574 C 24.123 26.574 24.181 26.516 24.181 26.632 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 9.063 39.045 C 9.063 39.972 8.305 40.727 7.372 40.727 C 6.381 40.727 5.622 39.973 5.622 39.045 C 5.622 38.119 6.38 37.306 7.372 37.306 C 8.304 37.306 9.063 38.119 9.063 39.045 Z M 7.369 37.016 C 6.201 37.016 5.268 37.888 5.268 39.045 C 5.268 40.204 6.201 41.075 7.37 41.075 C 8.537 41.075 9.411 40.149 9.411 39.045 C 9.415 38.505 9.201 37.987 8.817 37.606 C 8.433 37.224 7.912 37.012 7.369 37.016 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 7.955 39.335 C 7.895 39.624 7.663 39.8 7.427 39.8 C 7.019 39.8 6.728 39.452 6.728 39.046 C 6.728 38.639 6.961 38.291 7.369 38.291 C 7.66 38.291 7.895 38.467 7.952 38.697 L 8.243 38.697 C 8.184 38.233 7.834 38.001 7.366 38.001 C 6.784 38.001 6.374 38.467 6.374 39.046 C 6.374 39.624 6.784 40.09 7.425 40.09 C 7.834 40.09 8.125 39.799 8.243 39.336 L 7.951 39.336 L 7.955 39.336 Z\" fill=\"var(--token-9c331f5f-ed07-4046-9562-37f0d7f6f088, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:12110979730,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-p71c2p\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"stretch\",pixelHeight:60,pixelWidth:212,positionX:\"center\",positionY:\"center\",src:\"https://framerusercontent.com/images/QjIkQtXtfMBt5JBUHtnUrDAqPTQ.png\"},className:\"framer-fmd46y\",\"data-framer-name\":\"Asset-3@300x-2 1\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-eyz51g\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-50u9y0\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 44.31 36\"><g transform=\"translate(-0.001 0.784)\"><path d=\"M 0.001 34.722 L 0.001 0 L 44.308 0 L 44.308 34.722 Z\" fill=\"transparent\"></path><path d=\"M 7.201 26.507 C 7.472 26.236 7.84 26.083 8.223 26.083 L 43.584 26.083 C 44.228 26.083 44.551 26.862 44.096 27.318 L 37.108 34.3 C 36.837 34.57 36.47 34.723 36.086 34.723 L 0.725 34.723 C 0.081 34.723 -0.242 33.944 0.214 33.489 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 7.201 0.423 C 7.472 0.153 7.839 0 8.222 0 L 43.584 0 C 44.228 0 44.551 0.779 44.095 1.234 L 37.108 8.216 C 36.837 8.487 36.469 8.64 36.086 8.64 L 0.725 8.64 C 0.081 8.64 -0.242 7.861 0.213 7.405 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 37.108 13.382 C 36.837 13.112 36.47 12.959 36.086 12.959 L 0.725 12.959 C 0.081 12.959 -0.242 13.738 0.214 14.194 L 7.201 21.176 C 7.472 21.446 7.84 21.599 8.223 21.599 L 43.584 21.599 C 44.228 21.599 44.551 20.82 44.096 20.364 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:12107855876,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-10u43pp\",children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",intrinsicHeight:28.8,intrinsicWidth:22.4,pixelHeight:36,pixelWidth:28,src:\"https://framerusercontent.com/images/ftobIKiUeKMcttmLqvHNsoUu94.svg\"},className:\"framer-11pogjt\",\"data-framer-name\":\"Graphic\"})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-150wrni\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-1a8if4\",\"data-framer-name\":\"Layer_1\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 45.48 30\"><g><path d=\"M 0 30 L 0 0 L 45.484 0 L 45.484 30 Z\" fill=\"transparent\"></path><path d=\"M 45.259 24.377 L 43.275 24.377 C 43.213 24.051 43.117 23.82 42.987 23.691 C 42.775 23.48 42.413 23.371 41.913 23.371 C 41.413 23.371 41.078 23.453 40.887 23.616 C 40.743 23.738 40.667 23.908 40.667 24.118 C 40.667 24.416 41.085 24.654 41.913 24.837 C 42.858 25.039 43.535 25.217 43.952 25.359 C 44.062 25.399 44.158 25.434 44.226 25.468 C 45.068 25.862 45.485 26.459 45.485 27.259 C 45.485 28.236 45.075 28.948 44.26 29.396 C 44.158 29.45 44.062 29.497 43.952 29.545 C 43.425 29.77 42.809 29.884 42.119 29.884 C 41.085 29.884 40.249 29.7 39.614 29.341 C 39.214 29.111 38.914 28.82 38.715 28.47 C 38.515 28.121 38.416 27.713 38.416 27.245 L 40.496 27.245 C 40.496 27.597 40.626 27.876 40.88 28.066 C 41.133 28.263 41.565 28.365 42.174 28.365 C 42.633 28.365 42.974 28.27 43.2 28.08 C 43.378 27.93 43.46 27.767 43.46 27.578 C 43.46 27.259 43.049 27.009 42.235 26.832 C 41.016 26.573 40.251 26.363 39.936 26.213 C 39.101 25.827 38.691 25.23 38.691 24.402 C 38.691 23.738 38.903 23.175 39.34 22.714 C 39.887 22.137 40.708 21.852 41.798 21.852 C 42.694 21.852 43.413 21.981 43.953 22.232 C 44.001 22.252 44.043 22.272 44.084 22.3 C 44.474 22.509 44.768 22.788 44.965 23.136 C 45.162 23.48 45.26 23.895 45.26 24.377 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 44.198 19.572 C 44.198 19.532 44.191 19.498 44.171 19.471 C 44.15 19.437 44.123 19.417 44.082 19.404 C 44.056 19.396 44.013 19.39 43.952 19.382 L 43.638 19.382 L 43.638 19.763 L 43.952 19.763 C 44.042 19.756 44.103 19.742 44.138 19.708 C 44.178 19.674 44.199 19.626 44.199 19.572 Z M 44.363 19.368 C 44.403 19.423 44.424 19.484 44.424 19.552 C 44.424 19.647 44.389 19.728 44.322 19.797 C 44.254 19.865 44.164 19.906 44.056 19.912 C 44.103 19.932 44.138 19.953 44.166 19.979 L 44.357 20.23 L 44.508 20.481 L 44.262 20.481 L 44.145 20.278 C 44.071 20.15 44.01 20.054 43.953 20.007 C 43.947 20.001 43.939 19.993 43.926 19.987 L 43.763 19.94 L 43.64 19.94 L 43.64 20.482 L 43.434 20.482 L 43.434 19.207 L 43.879 19.207 C 43.907 19.207 43.934 19.214 43.955 19.214 C 44.065 19.214 44.146 19.228 44.201 19.248 C 44.269 19.268 44.324 19.309 44.366 19.37 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 44.944 19.83 C 44.944 19.654 44.903 19.491 44.814 19.335 C 44.724 19.179 44.602 19.057 44.444 18.969 C 44.287 18.888 44.122 18.839 43.959 18.839 L 43.952 18.839 C 43.787 18.839 43.623 18.888 43.467 18.969 C 43.309 19.057 43.186 19.179 43.097 19.335 C 43.008 19.491 42.96 19.654 42.96 19.83 C 42.96 20.007 43.007 20.163 43.097 20.319 C 43.18 20.467 43.303 20.59 43.46 20.677 C 43.617 20.766 43.782 20.806 43.952 20.806 L 43.959 20.806 C 44.13 20.806 44.293 20.766 44.452 20.677 C 44.609 20.59 44.732 20.467 44.814 20.319 C 44.903 20.161 44.944 19.999 44.944 19.83 Z M 45.142 19.83 C 45.142 20.027 45.094 20.225 44.984 20.414 C 44.882 20.604 44.737 20.746 44.547 20.847 C 44.355 20.956 44.163 21.004 43.957 21.004 L 43.951 21.004 C 43.746 21.004 43.554 20.957 43.363 20.847 C 43.171 20.746 43.028 20.602 42.924 20.414 C 42.814 20.223 42.767 20.027 42.767 19.83 C 42.767 19.62 42.814 19.424 42.924 19.233 C 43.034 19.043 43.177 18.901 43.369 18.8 C 43.561 18.699 43.753 18.651 43.951 18.644 L 43.957 18.644 C 44.155 18.644 44.348 18.699 44.539 18.8 C 44.731 18.903 44.882 19.045 44.984 19.233 C 45.094 19.424 45.142 19.62 45.142 19.83 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 33.501 10.244 L 39.12 19.526 L 33.501 19.526 L 30.092 19.526 L 24.727 10.658 L 20.662 3.948 L 24.727 1.526 L 27.287 0 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 37.579 25.97 L 37.579 29.776 L 35.71 29.776 L 35.71 29.355 C 35.08 29.762 34.328 30 33.52 30 L 33.499 30 C 31.268 29.986 29.455 28.182 29.455 25.97 C 29.455 23.758 31.269 21.954 33.499 21.941 L 33.52 21.941 C 34.327 21.941 35.08 22.179 35.71 22.584 L 35.71 22.143 L 37.579 22.143 Z M 35.711 26.392 L 35.711 25.55 C 35.513 24.533 34.603 23.759 33.521 23.759 L 33.501 23.759 C 32.276 23.767 31.284 24.757 31.284 25.971 C 31.284 27.185 32.276 28.176 33.501 28.191 L 33.521 28.191 C 34.603 28.191 35.512 27.411 35.711 26.393 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 28.806 25.969 L 28.806 29.775 L 26.938 29.775 L 26.938 29.354 C 26.301 29.761 25.555 29.999 24.747 29.999 L 24.727 29.999 C 22.496 29.985 20.683 28.181 20.683 25.969 C 20.683 23.757 22.496 21.953 24.727 21.939 L 24.747 21.939 C 25.555 21.939 26.301 22.178 26.938 22.583 L 26.938 19.525 L 28.806 19.525 Z M 26.938 26.391 L 26.938 25.549 C 26.739 24.531 25.828 23.758 24.747 23.758 L 24.727 23.758 C 23.502 23.766 22.51 24.756 22.51 25.97 C 22.51 27.184 23.502 28.176 24.727 28.189 L 24.747 28.189 C 25.828 28.189 26.739 27.41 26.938 26.392 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 24.727 15.874 L 26.93 19.525 L 24.727 19.525 L 17.909 19.525 L 12.901 11.261 L 12.682 10.901 L 12.901 10.773 L 19.313 6.946 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 19.95 21.941 L 17.917 21.941 L 17.917 29.776 L 19.95 29.776 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 19.95 19.567 L 17.917 19.567 L 17.917 21.337 L 19.95 21.337 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 16.986 25.969 L 16.986 29.775 L 15.118 29.775 L 15.118 29.354 C 14.481 29.761 13.73 29.999 12.922 29.999 L 12.901 29.999 C 10.67 29.985 8.857 28.181 8.857 25.969 C 8.857 23.757 10.671 21.953 12.901 21.939 L 12.922 21.939 C 13.73 21.939 14.483 22.178 15.118 22.583 L 15.118 19.525 L 16.986 19.525 Z M 15.118 26.391 L 15.118 25.549 C 14.92 24.531 14.01 23.758 12.922 23.758 L 12.901 23.758 C 11.676 23.766 10.684 24.756 10.684 25.97 C 10.684 27.184 11.676 28.176 12.901 28.189 L 12.922 28.189 C 14.01 28.189 14.92 27.41 15.118 26.392 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 12.901 16.472 L 14.749 19.525 L 12.901 19.525 L 5.722 19.525 L 4.708 17.849 L 11.34 13.9 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 8.123 25.97 L 8.123 29.776 L 6.255 29.776 L 6.255 29.355 C 5.618 29.762 4.865 30 4.058 30 L 4.038 30 C 1.814 29.986 0 28.182 0 25.97 C 0 23.758 1.813 21.954 4.038 21.941 L 4.058 21.941 C 4.865 21.941 5.618 22.179 6.255 22.584 L 6.255 22.143 L 8.123 22.143 Z M 6.255 26.392 L 6.255 25.55 C 6.057 24.533 5.146 23.759 4.058 23.759 L 4.038 23.759 C 2.819 23.767 1.828 24.757 1.828 25.971 C 1.828 27.185 2.821 28.176 4.038 28.191 L 4.058 28.191 C 5.146 28.191 6.057 27.411 6.255 26.393 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></g></svg>',svgContentId:10846420182,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-zlz5os\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-27mvh7\",\"data-framer-name\":\"Group 49\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 106.05 10.5\"><path d=\"M 34.832 4.335 C 33.574 3.986 32.142 3.899 32.264 3.008 C 32.386 2.134 33.906 2.414 34.238 2.518 C 34.57 2.606 35.164 2.78 35.863 3.252 L 37.033 1.592 C 37.033 1.592 35.863 0.509 33.504 0.439 C 31.146 0.37 30.08 1.715 29.923 2.885 C 29.766 4.056 30.237 4.947 31.041 5.366 C 31.862 5.803 32.561 5.96 33.12 6.1 C 33.679 6.24 34.43 6.379 34.745 6.676 C 35.059 6.973 34.972 7.288 34.85 7.497 C 34.745 7.707 34.413 7.899 33.662 7.882 C 32.928 7.864 32.194 7.62 31.897 7.48 C 31.6 7.34 31.006 7.008 30.797 6.816 L 29.486 8.371 C 29.486 8.371 30.185 9 31.094 9.349 C 32.002 9.699 33.12 9.908 34.203 9.803 C 35.269 9.699 36.317 9.384 36.999 8.319 C 36.999 8.319 37.54 7.428 37.295 6.327 C 37.033 5.244 36.09 4.685 34.832 4.335 Z M 6.827 0.894 L 8.976 0.894 L 8.976 9.838 L 6.827 9.838 Z M 5.08 0.894 L 4.277 0.894 L 3.281 0.894 L 0.416 0.894 L 0.416 3.042 L 3.281 3.042 L 3.281 9.838 L 5.43 9.838 L 5.43 0.894 Z M 17.781 0.894 L 17.537 0.894 L 15.178 4.72 L 12.802 0.894 L 12.523 0.894 L 12.4 0.894 L 10.374 0.894 L 10.374 9.838 L 12.523 9.838 L 12.523 4.527 L 13.903 6.764 L 15.161 8.825 L 16.943 5.925 L 17.799 4.545 L 17.799 9.821 L 19.947 9.821 L 19.947 0.876 L 18.078 0.876 L 17.781 0.876 Z M 27.757 7.707 L 23.477 7.707 L 23.477 6.432 L 28.001 6.432 L 28.001 4.283 L 23.477 4.283 L 23.477 3.025 L 28.368 3.025 L 28.368 0.876 L 23.477 0.876 L 21.328 0.876 L 21.328 9.856 L 21.59 9.856 L 23.407 9.856 L 23.477 9.856 L 28.456 9.856 L 28.525 9.856 L 28.525 8.371 L 28.525 7.987 L 28.525 7.707 L 28.456 7.707 Z M 54.574 0.876 L 54.574 0.911 L 54.574 2.78 L 54.574 3.042 L 54.609 3.042 L 57.456 3.042 L 57.456 9.873 L 59.605 9.873 L 59.605 9.856 L 59.622 9.856 L 59.622 3.042 L 62.435 3.042 L 62.435 0.894 L 54.574 0.894 Z M 41.121 0.894 L 43.27 0.894 L 43.27 9.838 L 41.121 9.838 Z M 102.372 0.876 L 101.376 0.876 L 100.573 0.876 L 100.223 0.876 L 100.223 9.821 L 102.372 9.821 L 102.372 3.025 L 105.237 3.025 L 105.237 0.876 Z M 51.027 0.894 L 51.027 6.327 L 46.817 0.894 L 44.668 0.894 L 44.668 9.838 L 46.817 9.838 L 46.817 4.405 L 51.027 9.838 L 53.176 9.838 L 53.176 0.894 Z M 88.064 0.894 L 88.064 6.327 L 83.854 0.894 L 81.705 0.894 L 81.705 9.838 L 83.854 9.838 L 83.854 4.405 L 88.064 9.838 L 90.213 9.838 L 90.213 0.894 Z M 65.982 0.876 L 63.833 0.876 L 63.833 9.856 L 64.095 9.856 L 65.912 9.856 L 65.982 9.856 L 70.961 9.856 L 71.031 9.856 L 71.031 8.371 L 71.031 7.987 L 71.031 7.69 L 70.961 7.69 L 70.244 7.69 L 65.964 7.69 L 65.964 6.414 L 70.489 6.414 L 70.489 4.265 L 65.964 4.265 L 65.964 3.008 L 70.856 3.008 L 70.856 0.859 L 65.982 0.859 Z M 93.759 0.876 L 91.611 0.876 L 91.611 9.856 L 91.872 9.856 L 93.689 9.856 L 93.759 9.856 L 98.738 9.856 L 98.808 9.856 L 98.808 8.371 L 98.808 7.987 L 98.808 7.69 L 98.738 7.69 L 98.022 7.69 L 93.742 7.69 L 93.742 6.414 L 98.267 6.414 L 98.267 4.265 L 93.742 4.265 L 93.742 3.008 L 98.634 3.008 L 98.634 0.859 L 93.759 0.859 Z M 77.128 0.894 C 77.582 0.911 80.29 1.086 80.29 3.864 C 80.29 3.864 80.534 5.715 78.351 6.641 L 80.464 9.838 L 77.896 9.838 L 76.342 7.497 L 74.577 7.497 L 74.577 9.838 L 72.428 9.838 L 72.428 0.894 Z M 77.163 3.06 L 74.577 3.06 L 74.577 5.366 L 77.075 5.366 C 77.46 5.314 78.141 5.087 78.141 4.196 C 78.141 3.252 77.495 3.077 77.163 3.06 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></svg>',svgContentId:12834764613,withExternalLayout:true})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-rzmb3\",children:/*#__PURE__*/_jsx(SVG,{className:\"framer-tdcb8y\",\"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 98.67 12\"><path d=\"M 11.104 0.276 L 14.8 0.276 L 14.8 8.893 L 23.021 8.893 L 23.021 11.835 L 11.104 11.835 M 33.241 0.107 C 35.749 0.107 37.465 0.164 38.389 0.296 C 39.748 0.465 40.577 1.125 40.879 2.219 C 41.049 2.973 41.161 4.255 41.161 6.047 C 41.161 7.857 41.049 9.14 40.879 9.893 C 40.577 10.987 39.748 11.647 38.389 11.817 C 37.447 11.949 35.749 11.987 33.28 11.987 L 33.223 11.987 L 33.223 8.987 L 33.261 8.987 C 34.675 8.987 35.617 8.949 36.089 8.912 C 36.561 8.855 36.919 8.741 37.145 8.572 C 37.352 8.391 37.491 8.145 37.541 7.875 C 37.617 7.573 37.655 7.045 37.655 6.347 C 37.655 5.517 37.617 4.913 37.579 4.517 C 37.523 4.121 37.409 3.82 37.277 3.632 C 37.089 3.387 36.768 3.236 36.353 3.16 C 35.92 3.104 34.883 3.085 33.241 3.085 L 33.223 3.085 M 33.241 12.004 C 30.753 12.004 29.037 11.948 28.095 11.835 C 26.755 11.664 25.908 11.004 25.605 9.911 C 25.416 9.156 25.303 7.837 25.303 6.008 C 25.303 4.253 25.416 2.991 25.605 2.236 C 25.907 1.143 26.756 0.483 28.095 0.313 C 29.037 0.18 30.753 0.124 33.241 0.124 L 33.241 3.123 C 31.375 3.123 30.263 3.179 29.885 3.273 C 29.471 3.387 29.169 3.651 29.037 4.028 C 28.904 4.424 28.848 5.215 28.848 6.365 C 28.848 7.083 28.887 7.573 28.961 7.893 C 29.112 8.477 29.527 8.817 30.244 8.893 C 30.753 8.968 31.771 9.005 33.261 9.005 L 33.261 12.004 Z M 51.76 0.276 L 52.476 0.276 C 53.947 0.276 54.908 0.296 55.38 0.315 C 55.833 0.352 56.304 0.389 56.793 0.503 C 57.963 0.729 58.699 1.389 59.057 2.464 C 59.189 2.86 59.264 3.312 59.321 3.765 C 59.377 4.236 59.377 4.952 59.377 5.877 C 59.377 6.915 59.359 7.688 59.301 8.215 C 59.253 8.707 59.158 9.193 59.019 9.668 C 58.661 10.685 57.963 11.308 56.888 11.535 C 56.36 11.651 55.825 11.727 55.285 11.761 C 54.35 11.807 53.413 11.826 52.476 11.817 L 51.759 11.817 L 51.759 8.857 L 52.495 8.857 C 53.4 8.857 54.06 8.819 54.475 8.781 C 54.908 8.724 55.209 8.611 55.38 8.479 C 55.568 8.309 55.7 8.045 55.776 7.688 C 55.851 7.328 55.908 6.801 55.908 6.084 C 55.908 5.368 55.871 4.821 55.795 4.463 C 55.739 4.104 55.625 3.823 55.436 3.633 C 55.267 3.425 54.965 3.275 54.607 3.237 C 54.229 3.18 53.532 3.144 52.437 3.144 L 51.721 3.144 M 44.141 11.836 L 44.141 0.257 L 51.779 0.257 L 51.779 3.143 L 47.629 3.143 L 47.629 8.856 L 51.779 8.856 L 51.779 11.816 L 44.141 11.816 Z M 62.357 0.276 L 66.035 0.276 L 66.035 4.405 L 74.011 4.405 L 74.011 0.276 L 77.688 0.276 L 77.688 11.836 L 74.011 11.836 L 74.011 7.649 L 66.033 7.649 L 66.033 11.836 L 62.357 11.836 M 93.452 11.835 L 92.471 9.855 L 88.661 9.855 L 88.661 7.328 L 91.227 7.328 L 88.983 2.955 L 88.643 2.955 L 88.643 0.275 L 91.396 0.275 L 97.449 11.853 M 88.643 9.873 L 84.816 9.873 L 83.835 11.853 L 79.799 11.853 L 85.928 0.276 L 88.643 0.276 L 88.643 2.953 L 88.284 2.953 L 86.06 7.347 L 88.643 7.347 L 88.643 9.875 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path><path d=\"M 7.595 10.833 L 0.224 10.833 L 0.224 12.007 L 7.595 12.007 Z M 7.595 0.409 L 0.224 0.409 L 0.224 1.583 L 7.595 1.583 Z M 7.595 3.019 L 0.224 3.019 L 0.224 4.192 L 7.595 4.192 Z M 7.595 5.625 L 0.224 5.625 L 0.224 6.791 L 7.595 6.791 Z M 7.595 8.224 L 0.224 8.224 L 0.224 9.397 L 7.595 9.397 Z\" fill=\"var(--token-a60867a3-2a31-4f1b-a1d5-6622cea6fb35, rgb(135, 135, 135)) /* {&quot;name&quot;:&quot;Lead&quot;} */\"></path></svg>',svgContentId:9230407052,withExternalLayout:true})})],speed:100,style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})]})]})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1w5zype\",\"data-framer-name\":\"Founder Section\",children:[/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"Nav Chatterji Founder Lazy Eight\",fit:\"fill\",intrinsicHeight:1406.4,intrinsicWidth:2764.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5275.4+0),pixelHeight:2452,pixelWidth:1602,positionX:\"left\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png\",srcSet:\"https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png?scale-down-to=1024 669w,https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png?scale-down-to=2048 1338w,https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png 1602w\"}},kcyjsnmnY:{background:{alt:\"Nav Chatterji Founder Lazy Eight\",fit:\"fill\",intrinsicHeight:1406.4,intrinsicWidth:2764.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5030.6+946.1-551),pixelHeight:2452,pixelWidth:1602,positionX:\"right\",positionY:\"top\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png\",srcSet:\"https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png?scale-down-to=1024 669w,https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png?scale-down-to=2048 1338w,https://framerusercontent.com/images/XGCozzCRjotEIGwokqIH5sVU.png 1602w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"Nav Chatterji Founder Lazy Eight\",fit:\"fill\",intrinsicHeight:1406.4,intrinsicWidth:2764.8,loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6101.8+0),pixelHeight:1988,pixelWidth:3456,positionX:\"right\",positionY:\"center\",sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/WPI8TLAIXfhQR5eCmWSJnLky9Y.png\",srcSet:\"https://framerusercontent.com/images/WPI8TLAIXfhQR5eCmWSJnLky9Y.png?scale-down-to=512 512w,https://framerusercontent.com/images/WPI8TLAIXfhQR5eCmWSJnLky9Y.png?scale-down-to=1024 1024w,https://framerusercontent.com/images/WPI8TLAIXfhQR5eCmWSJnLky9Y.png?scale-down-to=2048 2048w,https://framerusercontent.com/images/WPI8TLAIXfhQR5eCmWSJnLky9Y.png 3456w\"},className:\"framer-1xr6rnb\",\"data-framer-name\":\"Image\"})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-nwd0wu\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-z9hfu8\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-133gim2\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(\"h2\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.7em\",\"--framer-text-color\":\"rgba(61, 61, 61, 0.75)\"},children:[/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-letter-spacing\":\"0em\",\"--framer-text-color\":\"var(--token-7daec641-9a3c-48d5-8d6c-bfedc79d95a1, rgb(23, 23, 23))\"},children:\"Something broke in the agency world. \"}),\"Brilliant brands once grew around small tables of senior hands. Founders and experts sat shoulder-to-shoulder and bent the arc of a business. Then head counts ballooned, layers piled on, juniors filled the gaps, and \u201Cpick-a-service\u201D menus replaced real partnership. Consultancies drifted the other way: PowerPoints in, zero-day deployment out. Clients were left juggling vendors, timelines and blame instead of one accountable ally. Lazy Eight is a lean, senior team of Principals: Researchers, strategists, designers, engineers and growth marketers with ten-plus years at the sharp edge of brand and tech. We amplify human craft with AI, work in tight engagement pods and stay on from first insight to go-live. Whether you\u2019re a zero-to-one start-up or a billion-dollar enterprise, you get senior attention every day, not once a quarter. Welcome to the future of branding agencies: Small, senior, AI-augmented and globally distributed for reach, speed and perspective. Let\u2019s build something that tilts the future in your favour.\"]})}),className:\"framer-1r8s5gw\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{C9AQv0GR3:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5275.4+100+0+0+0+0+118.1),pixelHeight:3508,pixelWidth:2480,sizes:\"63px\",src:\"https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png\",srcSet:\"https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png?scale-down-to=1024 723w,https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png 2480w\"}},kcyjsnmnY:{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+5030.6+80+0+0+0+0+202.1),pixelHeight:3508,pixelWidth:2480,sizes:\"79px\",src:\"https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png\",srcSet:\"https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png?scale-down-to=1024 723w,https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png 2480w\"}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0+6101.8+40+0+0+0+181+118.1),pixelHeight:3508,pixelWidth:2480,sizes:\"63px\",src:\"https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png\",srcSet:\"https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png?scale-down-to=1024 723w,https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png?scale-down-to=2048 1447w,https://framerusercontent.com/images/QuAREAU0PZxpSc4rxNh8zQzJUA.png 2480w\"},className:\"framer-1xwgows\",\"data-framer-name\":\"Black 1\"})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{kcyjsnmnY:{children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"navchatterji.com\",motionChild:true,nodeId:\"QsvrWtNxg\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1n5l0x\",\"data-styles-preset\":\"jyz2al2XA\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"14px\",\"--framer-text-color\":\"var(--token-7daec641-9a3c-48d5-8d6c-bfedc79d95a1, rgb(23, 23, 23))\"},children:\"Nav Chatterji\"})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"14px\"},children:\"Founder, Partner Principal\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"14px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:nav.c@lazyeight.design\",motionChild:true,nodeId:\"QsvrWtNxg\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1n5l0x\",\"data-styles-preset\":\"jyz2al2XA\",children:\"nav.c@lazyeight.design\"})})})]})}},children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsxs(React.Fragment,{children:[/*#__PURE__*/_jsxs(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"12px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},children:[/*#__PURE__*/_jsx(Link,{href:\"navchatterji.com\",motionChild:true,nodeId:\"QsvrWtNxg\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1n5l0x\",\"data-styles-preset\":\"jyz2al2XA\",children:/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--token-7daec641-9a3c-48d5-8d6c-bfedc79d95a1, rgb(23, 23, 23))\"},children:\"Nav Chatterji\"})})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\",\"--framer-text-color\":\"var(--token-6b630317-4517-471b-a470-b770b4b6264d, rgb(61, 61, 61))\"},children:/*#__PURE__*/_jsx(\"br\",{})}),/*#__PURE__*/_jsx(\"span\",{style:{\"--framer-font-size\":\"13px\"},children:\"Founder, Partner Principal\"})]}),/*#__PURE__*/_jsx(\"p\",{style:{\"--font-selector\":\"SW50ZXItTGlnaHQ=\",\"--framer-font-family\":'\"Inter\", \"Inter Placeholder\", sans-serif',\"--framer-font-size\":\"13px\",\"--framer-font-weight\":\"300\",\"--framer-letter-spacing\":\"-0.02em\",\"--framer-line-height\":\"1.8em\",\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-fcca8336-e036-47dd-91a6-3859ce02659a, rgb(135, 135, 135))\"},children:/*#__PURE__*/_jsx(Link,{href:\"mailto:nav.c@lazyeight.design\",motionChild:true,nodeId:\"QsvrWtNxg\",openInNewTab:true,scopeId:\"augiA20Il\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-1n5l0x\",\"data-styles-preset\":\"jyz2al2XA\",children:\"nav.c@lazyeight.design\"})})})]}),className:\"framer-1694kei\",fonts:[\"Inter-Light\"],verticalAlignment:\"top\",withExternalLayout:true})})]})})]})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8w9Sx.framer-lux5qc, .framer-8w9Sx .framer-lux5qc { display: block; }\",\".framer-8w9Sx.framer-72rtr7 { align-content: center; align-items: center; background-color: #fcfcfc; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1440px; }\",\".framer-8w9Sx .framer-ncbobx-container { flex: none; height: auto; left: 50%; position: absolute; top: 0px; transform: translateX(-50%); width: auto; z-index: 1; }\",\".framer-8w9Sx .framer-azdwez { flex: none; height: 20px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; pointer-events: none; position: absolute; top: 0px; width: 20px; z-index: 1; }\",\".framer-8w9Sx .framer-1vd6gh8 { align-content: center; align-items: center; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 100vh; justify-content: flex-start; left: 0px; overflow: hidden; padding: 0px; pointer-events: none; position: absolute; width: 20px; z-index: 1; }\",\".framer-8w9Sx .framer-qgzkkz { flex: none; height: 80px; overflow: hidden; position: relative; width: 80px; }\",\".framer-8w9Sx .framer-1v8qm68 { bottom: 0px; flex: none; height: 240vh; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; z-index: 1; }\",\".framer-8w9Sx .framer-mg4f0m { flex: none; height: 20px; left: 0px; overflow: hidden; position: absolute; right: 0px; top: 0px; }\",\".framer-8w9Sx .framer-v6uxnl { background-color: #ffffff; flex: none; height: 1px; left: 0px; overflow: hidden; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-8w9Sx .framer-8g53xa { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; justify-content: flex-start; left: 0px; overflow: visible; padding: 0px 100px 50px 100px; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 10; }\",\".framer-8w9Sx .framer-8amm0t-container { flex: none; height: auto; pointer-events: auto; position: sticky; top: 50px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-8w9Sx .framer-ob5neg-container { bottom: 40px; flex: none; height: auto; left: 50%; position: fixed; transform: translateX(-50%); width: auto; z-index: 10; }\",\".framer-8w9Sx .framer-1f3egnk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-ndek6h { align-content: flex-end; align-items: flex-end; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: 100vh; justify-content: center; overflow: hidden; padding: 50px 100px 40px 100px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1sul8fb-container { -webkit-filter: contrast(1); bottom: 0px; filter: contrast(1); flex: none; left: 0px; max-width: 100%; mix-blend-mode: multiply; position: absolute; right: 0px; top: 0px; will-change: var(--framer-will-change-effect-override, transform); z-index: 0; }\",\".framer-8w9Sx .framer-17xsfai { -webkit-tap-highlight-color: rgba(0, 0, 0, 0); aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 40px); left: 100px; pointer-events: auto; position: absolute; top: 50px; width: 40px; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-8w9Sx .framer-vmbfnf { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; }\",\".framer-8w9Sx .framer-aev4zn { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; left: 50%; overflow: hidden; padding: 0px; position: absolute; top: 50px; transform: translateX(-50%); width: min-content; z-index: 10; }\",\".framer-8w9Sx .framer-1w9n300, .framer-8w9Sx .framer-wcf468 { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; z-index: 1; }\",\".framer-8w9Sx .framer-fpqi8i { align-content: flex-end; align-items: flex-end; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8w9Sx .framer-bd7ia1 { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8w9Sx .framer-1x3vs2l, .framer-8w9Sx .framer-w2djuo { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8w9Sx .framer-7axtjc { -webkit-user-select: none; align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 1px; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8w9Sx .framer-pg8eny-container { flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8w9Sx .framer-16esg29 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-8w9Sx .framer-1x2f7cn-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 1; }\",\".framer-8w9Sx .framer-gw7wzg-container { flex: none; height: 79.97630331753555vh; left: calc(50.00000000000002% - 100% / 2); position: absolute; top: calc(56.46594274432382% - 79.97630331753555vh / 2); width: 100%; z-index: 1; }\",\".framer-8w9Sx .framer-m42xjc-container { flex: none; height: auto; pointer-events: auto; position: absolute; right: 100px; top: 50px; width: auto; will-change: var(--framer-will-change-effect-override, transform); z-index: 10; }\",\".framer-8w9Sx .framer-rbelg5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: hidden; padding: 316px 0px 164px 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1hsvfe { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 40px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8w9Sx .framer-1a6vjm7 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8w9Sx .framer-cso9lv { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 2px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 337px; }\",\".framer-8w9Sx .framer-1jw0hcl { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-um09xd { --framer-paragraph-spacing: 0px; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8w9Sx .framer-11gml29 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 6px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-w222dd, .framer-8w9Sx .framer-fizfyv { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8w9Sx .framer-2wul3b { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; min-height: 32px; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-ao7swf { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-8w9Sx .framer-1a27qt5 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 116px 0px 116px 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-ickdda, .framer-8w9Sx .framer-hksm52 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 4px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-82wfyh { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: 1 0 0px; height: auto; position: relative; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-8w9Sx .framer-13ql23r-container, .framer-8w9Sx .framer-1f3z6sc-container, .framer-8w9Sx .framer-lk7iw3-container, .framer-8w9Sx .framer-skgtgv-container, .framer-8w9Sx .framer-jjh5ad-container, .framer-8w9Sx .framer-2d9dbv-container, .framer-8w9Sx .framer-1lkwi6j-container, .framer-8w9Sx .framer-18tr9l9-container, .framer-8w9Sx .framer-juylqx-container, .framer-8w9Sx .framer-1k58ua2-container, .framer-8w9Sx .framer-1nlm2da-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-8w9Sx .framer-4ece05 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: flex-start; min-height: 506px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1vdq0ur { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8w9Sx .framer-tghd0k { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: auto; }\",\".framer-8w9Sx .framer-16lc6c2, .framer-8w9Sx .framer-ld5925, .framer-8w9Sx .framer-1a184wv, .framer-8w9Sx .framer-azxx6s { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-8w9Sx .framer-1pqkik5-container { flex: none; height: auto; position: relative; width: auto; z-index: 1; }\",\".framer-8w9Sx .framer-1gjghxc { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-rxqgf0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 100px 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1ejrkjy, .framer-8w9Sx .framer-u5d12t { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 140px; height: min-content; justify-content: center; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-v4ace1, .framer-8w9Sx .framer-1nqu3ok { 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; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1f6uzmo, .framer-8w9Sx .framer-z43op1 { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 60px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8w9Sx .framer-1feh6ak, .framer-8w9Sx .framer-1xny4cu { align-content: center; align-items: center; border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 28px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 2; }\",\".framer-8w9Sx .framer-1tihir1, .framer-8w9Sx .framer-1j65s9o { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px 40px 0px 40px; position: relative; width: auto; }\",\".framer-8w9Sx .framer-m41qf0, .framer-8w9Sx .framer-s3bbrq { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8w9Sx .framer-162mi64, .framer-8w9Sx .framer-4wfhjp { align-content: center; align-items: center; border-bottom-left-radius: 99px; border-bottom-right-radius: 99px; border-top-left-radius: 99px; border-top-right-radius: 99px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1qg9772, .framer-8w9Sx .framer-lg0zqm { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-8w9Sx .framer-flgjt6, .framer-8w9Sx .framer-1cef6e0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-8w9Sx .framer-1xm57hx, .framer-8w9Sx .framer-g2mmcs, .framer-8w9Sx .framer-1qy31y9 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-8w9Sx .framer-17mj4f4, .framer-8w9Sx .framer-1vnshdb, .framer-8w9Sx .framer-1fz5uqa, .framer-8w9Sx .framer-tcsl70 { flex: none; height: 12px; position: relative; width: 12px; }\",\".framer-8w9Sx .framer-jtht9f, .framer-8w9Sx .framer-brwj22 { --border-bottom-width: 1px; --border-color: var(--token-322a48d7-b830-43da-87e1-04ceda97730e, #e3e3e3); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; -webkit-user-select: none; aspect-ratio: 1 / 1; background-color: var(--token-aa13318c-4f23-46a8-b04a-c46c5abd372d, #ffffff); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: grid; flex: none; gap: 18px; grid-auto-rows: minmax(0, 1fr); grid-template-columns: repeat(2, minmax(50px, 1fr)); grid-template-rows: repeat(2, minmax(0, 1fr)); height: 100vh; justify-content: center; overflow: visible; padding: 36px; pointer-events: auto; position: relative; text-decoration: none; user-select: none; width: var(--framer-aspect-ratio-supported, 800px); will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-8w9Sx .framer-1vibylm, .framer-8w9Sx .framer-1v3ttju, .framer-8w9Sx .framer-14f8kr3, .framer-8w9Sx .framer-1xvfqnc, .framer-8w9Sx .framer-z89xh7, .framer-8w9Sx .framer-1kt18ym, .framer-8w9Sx .framer-34jgwe, .framer-8w9Sx .framer-1wwec4o { align-self: center; flex: none; height: 100%; justify-self: center; overflow: hidden; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-12pdtfq-container, .framer-8w9Sx .framer-1c7gj6l-container, .framer-8w9Sx .framer-aeug7p-container, .framer-8w9Sx .framer-1wd8hpu-container, .framer-8w9Sx .framer-1y39wd3-container, .framer-8w9Sx .framer-1vnozjn-container, .framer-8w9Sx .framer-1mermig-container, .framer-8w9Sx .framer-1ts5iz3-container { bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; z-index: 2; }\",\".framer-8w9Sx .framer-1y97v9g, .framer-8w9Sx .framer-17dig5p { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px 0px 0px 12px; position: relative; text-decoration: none; width: auto; }\",\".framer-8w9Sx .framer-kbe4rs, .framer-8w9Sx .framer-rwqifa { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-text-wrap-override: balance; flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-8w9Sx .framer-gtrul0 { align-content: center; align-items: center; background-color: #ffffff; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: center; min-height: 100vh; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-10t2q3c-container { -webkit-filter: brightness(0.99); aspect-ratio: 1.7935323383084578 / 1; filter: brightness(0.99); flex: none; height: var(--framer-aspect-ratio-supported, 804px); left: -1px; position: absolute; right: -1px; top: -2px; z-index: 1; }\",\".framer-8w9Sx .framer-1nbfoj3 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 16px; height: min-content; justify-content: flex-end; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-8w9Sx .framer-qiudjv { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 61px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-8w9Sx .framer-ym435a { align-content: center; align-items: center; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 33px 0px 33px 0px; position: relative; width: auto; }\",\".framer-8w9Sx .framer-1tbglwy-container { -webkit-filter: brightness(1); filter: brightness(1); flex: none; height: 100vh; left: 0px; mix-blend-mode: darken; pointer-events: none; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-8w9Sx .framer-8v6ltm { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 180px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 100px 0px 180px 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-u540ye-container { flex: none; height: 130px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-2yzy08, .framer-8w9Sx .framer-1crnlsn, .framer-8w9Sx .framer-1w05gnt, .framer-8w9Sx .framer-r8m3he, .framer-8w9Sx .framer-10upujp, .framer-8w9Sx .framer-xh8of, .framer-8w9Sx .framer-ew0pfn, .framer-8w9Sx .framer-6pvz2i { align-content: center; align-items: center; aspect-ratio: 1.4 / 1; background-color: var(--token-a9a226d2-f607-4546-bf70-49b91898099d, #e3e3e3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 136px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8w9Sx .framer-1e5ndc { aspect-ratio: 3 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.5; position: relative; width: 72px; }\",\".framer-8w9Sx .framer-144cq11 { align-content: center; align-items: center; aspect-ratio: 1.4 / 1; background-color: var(--token-a9a226d2-f607-4546-bf70-49b91898099d, #e3e3e3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 136px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8w9Sx .framer-1catkfb { aspect-ratio: 1 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 42px); opacity: 0.5; position: relative; width: 42px; }\",\".framer-8w9Sx .framer-hrx6n3 { aspect-ratio: 3.5869565217391304 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 24px); opacity: 0.5; position: relative; width: 86px; }\",\".framer-8w9Sx .framer-xfjoja { aspect-ratio: 1.5167173252279635 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 39px); opacity: 0.5; position: relative; width: 59px; }\",\".framer-8w9Sx .framer-1xqdwpu { aspect-ratio: 7.75 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 12px); opacity: 0.5; position: relative; width: 93px; }\",\".framer-8w9Sx .framer-58yaan { aspect-ratio: 2.804177545691906 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 21px); opacity: 0.5; position: relative; width: 59px; }\",\".framer-8w9Sx .framer-12s955k { flex: none; height: 41px; position: relative; width: 38px; }\",\".framer-8w9Sx .framer-e6j36r { flex: none; height: 42px; position: relative; width: 40px; }\",\".framer-8w9Sx .framer-1o9motu { flex: none; height: 42px; position: relative; width: 38px; }\",\".framer-8w9Sx .framer-p71c2p, .framer-8w9Sx .framer-eyz51g, .framer-8w9Sx .framer-10u43pp, .framer-8w9Sx .framer-150wrni, .framer-8w9Sx .framer-zlz5os, .framer-8w9Sx .framer-rzmb3 { align-content: center; align-items: center; aspect-ratio: 1.4 / 1; background-color: var(--token-2cc13329-7bdf-417c-abd7-a5959d2cc757, #e3e3e3); border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: var(--framer-aspect-ratio-supported, 97px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 136px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8w9Sx .framer-fmd46y { aspect-ratio: 3.7857142857142856 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 15px); opacity: 0.6; position: relative; width: 57px; }\",\".framer-8w9Sx .framer-50u9y0 { flex: none; height: 36px; position: relative; width: 44px; }\",\".framer-8w9Sx .framer-11pogjt { aspect-ratio: 0.7777777777777777 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 53px); opacity: 0.5; overflow: visible; position: relative; width: 41px; }\",\".framer-8w9Sx .framer-1a8if4 { flex: none; height: 30px; position: relative; width: 45px; }\",\".framer-8w9Sx .framer-27mvh7 { flex: none; height: 11px; position: relative; width: 106px; }\",\".framer-8w9Sx .framer-tdcb8y { flex: none; height: 12px; position: relative; width: 99px; }\",\".framer-8w9Sx .framer-1w5zype { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 16px; height: 118.12499999999999vh; justify-content: flex-start; overflow: hidden; padding: 40px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-1xr6rnb { align-content: flex-end; align-items: flex-end; bottom: 0px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 16px; justify-content: flex-end; left: 0px; overflow: visible; padding: 0px; position: absolute; right: 0px; top: 0px; z-index: 1; }\",\".framer-8w9Sx .framer-nwd0wu { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; height: 1px; justify-content: space-between; max-width: 1200px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-8w9Sx .framer-z9hfu8 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-end; overflow: hidden; padding: 181px 0px 100px 0px; position: relative; width: min-content; z-index: 1; }\",\".framer-8w9Sx .framer-133gim2 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 54px; height: min-content; justify-content: center; overflow: hidden; padding: 48px 0px 48px 0px; position: relative; width: 611px; }\",\".framer-8w9Sx .framer-1r8s5gw { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-8w9Sx .framer-1xwgows { aspect-ratio: 0.7069555254124883 / 1; flex: none; height: var(--framer-aspect-ratio-supported, 89px); position: relative; width: 63px; }\",\".framer-8w9Sx .framer-1694kei { --framer-text-wrap: balance; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 500px; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,'.framer-8w9Sx[data-border=\"true\"]::after, .framer-8w9Sx [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: 1439px) { .framer-8w9Sx.framer-72rtr7 { width: 1200px; } .framer-8w9Sx .framer-8g53xa { padding: 0px 60px 50px 60px; } .framer-8w9Sx .framer-8amm0t-container, .framer-8w9Sx .framer-aev4zn { top: 40px; } .framer-8w9Sx .framer-ndek6h { padding: 40px 60px 40px 60px; } .framer-8w9Sx .framer-17xsfai { left: 60px; top: 40px; } .framer-8w9Sx .framer-m42xjc-container { right: 60px; top: 40px; } .framer-8w9Sx .framer-rxqgf0 { padding: 100px 60px 100px 60px; } .framer-8w9Sx .framer-v4ace1, .framer-8w9Sx .framer-1nqu3ok { justify-content: center; } .framer-8w9Sx .framer-gtrul0 { justify-content: flex-start; padding: 60px; } .framer-8w9Sx .framer-10t2q3c-container { height: var(--framer-aspect-ratio-supported, 671px); top: 65px; } .framer-8w9Sx .framer-1nbfoj3 { max-width: unset; } .framer-8w9Sx .framer-8v6ltm { padding: 100px 60px 180px 60px; } .framer-8w9Sx .framer-nwd0wu { max-width: 1000px; }}\",\"@media (min-width: 810px) and (max-width: 1199px) { .framer-8w9Sx.framer-72rtr7 { width: 810px; } .framer-8w9Sx .framer-1v8qm68 { height: 180vh; } .framer-8w9Sx .framer-ndek6h, .framer-8w9Sx .framer-rxqgf0, .framer-8w9Sx .framer-8v6ltm { padding: 40px; } .framer-8w9Sx .framer-17xsfai { left: 40px; order: 2; top: 40px; } .framer-8w9Sx .framer-aev4zn { left: unset; order: 3; right: 40px; top: 40px; transform: unset; } .framer-8w9Sx .framer-fpqi8i { order: 4; } .framer-8w9Sx .framer-gw7wzg-container { -webkit-mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25%) add; height: 100vh; left: calc(30.00000000000002% - 60% / 2); mask: linear-gradient(270deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 25%) add; order: 1; top: calc(50.00000000000002% - 100vh / 2); width: 60%; } .framer-8w9Sx .framer-1ejrkjy, .framer-8w9Sx .framer-u5d12t { max-width: 800px; width: 730px; } .framer-8w9Sx .framer-1feh6ak, .framer-8w9Sx .framer-1xny4cu { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-8w9Sx .framer-1tihir1, .framer-8w9Sx .framer-1j65s9o { align-self: unset; padding: 0px; width: 100%; } .framer-8w9Sx .framer-jtht9f, .framer-8w9Sx .framer-brwj22 { height: var(--framer-aspect-ratio-supported, 200px); width: 100%; } .framer-8w9Sx .framer-gtrul0 { flex-direction: column; gap: 80px; padding: 40px; } .framer-8w9Sx .framer-10t2q3c-container { height: var(--framer-aspect-ratio-supported, 453px); top: 50%; transform: translateY(-50%); } .framer-8w9Sx .framer-1nbfoj3 { flex: none; justify-content: flex-start; width: 100%; } .framer-8w9Sx .framer-qiudjv { z-index: 3; } .framer-8w9Sx .framer-1w5zype { height: 100vh; padding: 100px 40px 40px 40px; } .framer-8w9Sx .framer-z9hfu8 { max-width: 48%; padding: 0px 0px 100px 0px; width: 100%; } .framer-8w9Sx .framer-133gim2 { width: 100%; }}\",\"@media (max-width: 809px) { .framer-8w9Sx.framer-72rtr7 { width: 390px; } .framer-8w9Sx .framer-1v8qm68 { height: 220.00000000000003vh; } .framer-8w9Sx .framer-ob5neg-container { bottom: 35px; } .framer-8w9Sx .framer-ndek6h { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 80px; height: min-content; justify-content: flex-end; min-height: 100vh; padding: 20px 20px 100px 20px; } .framer-8w9Sx .framer-17xsfai { left: 50%; order: 2; top: 20px; transform: translateX(-50%); } .framer-8w9Sx .framer-fpqi8i { align-content: flex-start; align-items: flex-start; flex: none; gap: 16px; justify-content: center; min-height: 23px; order: 4; width: 100%; z-index: 3; } .framer-8w9Sx .framer-gw7wzg-container { height: 100vh; order: 1; top: calc(50.00000000000002% - 100vh / 2); } .framer-8w9Sx .framer-rbelg5 { padding: 100px 20px 0px 20px; } .framer-8w9Sx .framer-1hsvfe, .framer-8w9Sx .framer-cso9lv, .framer-8w9Sx .framer-1vdq0ur, .framer-8w9Sx .framer-kbe4rs, .framer-8w9Sx .framer-1tbglwy-container, .framer-8w9Sx .framer-rwqifa, .framer-8w9Sx .framer-u540ye-container { order: 1; } .framer-8w9Sx .framer-1a6vjm7 { align-content: center; align-items: center; align-self: stretch; gap: 25px; order: 0; width: auto; } .framer-8w9Sx .framer-wcf468 { order: 2; } .framer-8w9Sx .framer-1jw0hcl { justify-content: center; } .framer-8w9Sx .framer-11gml29 { gap: 0px; justify-content: center; } .framer-8w9Sx .framer-4ece05 { flex-direction: column; min-height: unset; order: 2; } .framer-8w9Sx .framer-1pqkik5-container, .framer-8w9Sx .framer-1vnshdb, .framer-8w9Sx .framer-tcsl70 { order: 0; } .framer-8w9Sx .framer-rxqgf0 { padding: 140px 5px 100px 5px; } .framer-8w9Sx .framer-1ejrkjy, .framer-8w9Sx .framer-u5d12t { gap: 172px; order: 0; } .framer-8w9Sx .framer-1f6uzmo, .framer-8w9Sx .framer-z43op1 { gap: 16px; } .framer-8w9Sx .framer-1feh6ak { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 495px); width: 100%; } .framer-8w9Sx .framer-1tihir1, .framer-8w9Sx .framer-1j65s9o { align-self: unset; padding: 0px 16px 0px 0px; width: 100%; } .framer-8w9Sx .framer-m41qf0, .framer-8w9Sx .framer-s3bbrq { padding: 0px 0px 0px 12px; } .framer-8w9Sx .framer-jtht9f, .framer-8w9Sx .framer-brwj22 { border-bottom-left-radius: 8px; border-bottom-right-radius: 8px; border-top-left-radius: 8px; border-top-right-radius: 8px; gap: 8px; height: var(--framer-aspect-ratio-supported, 380px); overflow: hidden; padding: 8px; width: 100%; } .framer-8w9Sx .framer-1y97v9g, .framer-8w9Sx .framer-ym435a, .framer-8w9Sx .framer-17dig5p { align-self: unset; width: 100%; } .framer-8w9Sx .framer-gtrul0 { flex-direction: column; gap: 80px; justify-content: flex-start; overflow: visible; padding: 120px 20px 20px 20px; } .framer-8w9Sx .framer-1nbfoj3 { flex: none; justify-content: flex-start; order: 2; width: 100%; z-index: 4; } .framer-8w9Sx .framer-qiudjv { flex: 1 0 0px; gap: 98px; width: 1px; } .framer-8w9Sx .framer-skgtgv-container, .framer-8w9Sx .framer-jjh5ad-container, .framer-8w9Sx .framer-2d9dbv-container, .framer-8w9Sx .framer-1lkwi6j-container, .framer-8w9Sx .framer-18tr9l9-container, .framer-8w9Sx .framer-juylqx-container, .framer-8w9Sx .framer-1694kei { width: 100%; } .framer-8w9Sx .framer-8v6ltm { padding: 9px 5px 0px 5px; } .framer-8w9Sx .framer-1xny4cu { aspect-ratio: 1 / 1; border-bottom-left-radius: 16px; border-bottom-right-radius: 16px; border-top-left-radius: 16px; border-top-right-radius: 16px; height: var(--framer-aspect-ratio-supported, 478px); width: 100%; } .framer-8w9Sx .framer-1w5zype { height: min-content; padding: 80px 20px 200px 20px; } .framer-8w9Sx .framer-1xr6rnb { -webkit-mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 26%) add; height: 551px; mask: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0,0,0,1) 26%) add; order: 2; top: unset; } .framer-8w9Sx .framer-nwd0wu { align-content: center; align-items: center; flex: none; gap: 0px; height: min-content; justify-content: center; order: 1; z-index: 2; } .framer-8w9Sx .framer-z9hfu8 { padding: 0px 0px 100px 0px; width: 100%; } .framer-8w9Sx .framer-133gim2 { padding: 90px 27px 90px 0px; width: 100%; } .framer-8w9Sx .framer-1xwgows { height: var(--framer-aspect-ratio-supported, 112px); width: 79px; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 21573\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"wtyj1IWF9\":{\"layout\":[\"fixed\",\"auto\"]},\"C9AQv0GR3\":{\"layout\":[\"fixed\",\"auto\"]},\"kcyjsnmnY\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"Tq9ZQoifp\":{\"pattern\":\":Tq9ZQoifp\",\"name\":\"top\"},\"dUnexcjQj\":{\"pattern\":\":dUnexcjQj\",\"name\":\"footertrigger\"},\"IxqvwHFtI\":{\"pattern\":\":IxqvwHFtI\",\"name\":\"client-form\"},\"spFCXif90\":{\"pattern\":\":spFCXif90\",\"name\":\"back-to-top\"},\"jFHJ7aB2s\":{\"pattern\":\":jFHJ7aB2s\",\"name\":\"grids\"}}\n * @framerResponsiveScreen\n */const FrameraugiA20Il=withCSS(Component,css,\"framer-8w9Sx\");export default FrameraugiA20Il;FrameraugiA20Il.displayName=\"Home\";FrameraugiA20Il.defaultProps={height:21573,width:1440};const variationAxes=[{defaultValue:14,maxValue:32,minValue:14,name:\"Optical size\",tag:\"opsz\"},{defaultValue:400,maxValue:900,minValue:100,name:\"Weight\",tag:\"wght\"}];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/BkDpl4ghaqvMi1btKFyG2tdbec.woff2\",weight:\"300\"},{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/zAMK70AQRFSShJgUiaR5IiIhgzk.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/IETjvc5qzUaRoaruDpPSwCUM8.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/oLCoaT3ioA0fHdJnWR9W6k7NY.woff2\",weight:\"300\"},{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/Sj0PCHQSBjFmEp6NBWg6FNaKc.woff2\",weight:\"300\"},{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/v2q8JTTTs7McDMSEhnxAIBqd0.woff2\",weight:\"300\"},{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/H4TfENUY1rh8R9UaSD6vngjJP3M.woff2\",weight:\"300\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/mYcqTSergLb16PdbJJQMl9ebYm4.woff2\",variationAxes,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/ZRl8AlxwsX1m7xS1eJCiSPbztg.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/nhSQpBRqFmXNUBY2p5SENQ8NplQ.woff2\",variationAxes,weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/DYHjxG0qXjopUuruoacfl5SA.woff2\",variationAxes,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/s7NH6sl7w4NU984r5hcmo1tPSYo.woff2\",variationAxes,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/7lw0VWkeXrGYJT05oB3DsFy8BaY.woff2\",variationAxes,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/wx5nfqEgOXnxuFaxB0Mn9OhmcZA.woff2\",variationAxes,weight:\"400\"},{family:\"Inria Serif\",source:\"google\",style:\"italic\",url:\"https://fonts.gstatic.com/s/inriaserif/v16/fC16PYxPY3rXxEndZJAzN3SuT4THjl2PbmxN0_E.woff2\",weight:\"300\"}]},...SmoothScrollFonts,...CTAFonts,...VideoFonts,...ScrollDownArrowFonts,...QuarterlyUpdateFonts,...AnimatedCounterFonts,...LearnMoreFonts,...GooeyViewMoreFonts,...PHNLoadMoreFonts,...TickerFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FrameraugiA20Il\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"21573\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerColorSyntax\":\"true\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"wtyj1IWF9\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"C9AQv0GR3\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kcyjsnmnY\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerScrollSections\":\"{\\\"Tq9ZQoifp\\\":{\\\"pattern\\\":\\\":Tq9ZQoifp\\\",\\\"name\\\":\\\"top\\\"},\\\"dUnexcjQj\\\":{\\\"pattern\\\":\\\":dUnexcjQj\\\",\\\"name\\\":\\\"footertrigger\\\"},\\\"IxqvwHFtI\\\":{\\\"pattern\\\":\\\":IxqvwHFtI\\\",\\\"name\\\":\\\"client-form\\\"},\\\"spFCXif90\\\":{\\\"pattern\\\":\\\":spFCXif90\\\",\\\"name\\\":\\\"back-to-top\\\"},\\\"jFHJ7aB2s\\\":{\\\"pattern\\\":\\\":jFHJ7aB2s\\\",\\\"name\\\":\\\"grids\\\"}}\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["MAX_DUPLICATED_ITEMS", "MAX_AREA", "CSS_VAR_NAME", "supportsWaapi", "supportsRegisterProperty", "window", "Ticker", "props", "slots", "gap", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "speed", "hoverFactor", "direction", "alignment", "sizingOptions", "fadeOptions", "style", "fadeContent", "overflow", "fadeWidth", "fadeInset", "fadeAlpha", "widthType", "heightType", "paddingValue", "isCanvas", "RenderTarget", "filteredSlots", "numChildren", "j", "hasChildren", "isHorizontal", "offset", "useMotionValue", "axis", "minus", "transform", "useTransform", "parentRef", "pe", "childrenRef", "se", "W", "size", "setSize", "ye", "clonedChildren", "dupedChildren", "duplicateBy", "opacity", "fullChildrenArea", "isLayerTooBig", "measure", "te", "parentLength", "firstChild", "lastChild", "childrenLeft", "childrenRight", "childrenTop", "childrenBottom", "childrenWidth", "childrenHeight", "childrenArea", "childrenLength", "childrenStyles", "initialResize", "ue", "frame", "resize", "contentSize", "child", "index", "_child_props", "_child_props1", "_child_props2", "_child_props3", "ref", "p", "LayoutGroup", "q", "i", "childIndex", "_child_props4", "_child_props5", "animateToValue", "initialTime", "prevTime", "xOrY", "isHover", "isReducedMotion", "useReducedMotion", "listRef", "animationRef", "isInView", "useInView", "keyframes", "useAnimationFrame", "t", "delta", "wrap", "fadeDirection", "fadeWidthStart", "fadeWidthEnd", "fadeInsetStart", "clamp", "fadeInsetEnd", "fadeMask", "containerStyle", "u", "motion", "isValidNumber", "placeholderStyles", "emojiStyles", "titleStyles", "subtitleStyles", "addPropertyControls", "ControlType", "num", "min", "max", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "expandedText", "height", "id", "label", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "E0M8AsbVE", "nnS0mvWZt", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap13qizh8", "args", "onTap1cx34dd", "onTapufq0uv", "onTapfqj3vw", "scopingClassNames", "cx", "LayoutGroup", "u", "RichText2", "css", "FramerIS8FCxO8t", "withCSS", "IS8FCxO8t_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "saq0BRFou", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap17h6cdn", "args", "scopingClassNames", "cx", "LayoutGroup", "RichText2", "css", "Framerlwpxurkou", "withCSS", "lwpxurkou_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "fontStore", "fonts", "css", "className", "SmoothScrollFonts", "getFonts", "SmoothScroll_Prod_default", "CTAFonts", "QrE4K8Wyd_default", "ContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "Container", "MotionDivWithPaddingTop110vh8g53xa", "withCodeBoundaryForOverrides", "motion", "withPaddingTop110vh", "ContainerWithFX", "VideoFonts", "Video", "ContainerWithOptimizedAppearEffect", "MotionDivWithOptimizedAppearEffect", "MotionDivWithFXWithOptimizedAppearEffect", "ScrollDownArrowFonts", "q634ZJA33_default", "QuarterlyUpdateFonts", "trTXRPQa5_default", "RichTextWithFX", "RichText2", "MotionDivWithFX", "AnimatedCounterFonts", "AnimatedCounter", "MotionAWithFX", "LearnMoreFonts", "IS8FCxO8t_default", "GooeyViewMoreFonts", "LRmsrqbTP_default", "PHNLoadMoreFonts", "lwpxurkou_default", "TickerFonts", "Ticker", "breakpoints", "isBrowser", "serializationHash", "variantClassNames", "transition1", "animation", "animation1", "animation2", "transition2", "animation3", "transformTemplate1", "_", "t", "animation4", "animation5", "transition3", "animation6", "transition4", "animation7", "animation8", "transition5", "textEffect", "transition6", "animation9", "textEffect1", "textEffect2", "transition7", "animation10", "transition8", "animation11", "transition9", "animation12", "textEffect3", "transition10", "animation13", "transition11", "animation14", "transition12", "animation15", "transition13", "animation16", "transition14", "animation17", "transition15", "animation18", "transition16", "animation19", "transition17", "animation20", "transition18", "animation21", "transition19", "animation22", "transition20", "animation23", "transition21", "animation24", "transition22", "textEffect4", "textEffect5", "textEffect6", "transition23", "animation25", "transition24", "animation26", "transition25", "animation27", "transition26", "animation28", "toResponsiveImage", "value", "isSet", "negate", "toImageSrc", "QueryData", "query", "pageSize", "children", "paginatedQuery", "paginationInfo", "loadMore", "useLoadMorePaginatedQuery", "data", "useQueryData", "transition27", "textEffect7", "transition28", "animation29", "transition29", "animation30", "transition30", "animation31", "transition31", "animation32", "transition32", "animation33", "loaderVariants", "repeaterState", "variants", "currentVariant", "QueryData1", "HTMLStyle", "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", "jwKN9sCc_q3Z0VAwcl", "lyisMhj2cq3Z0VAwcl", "KpNqQTxWeq3Z0VAwcl", "KzHB6WjMmq3Z0VAwcl", "B6ssrChd4q3Z0VAwcl", "mAE3D2HE3q3Z0VAwcl", "U4akRB9ylq3Z0VAwcl", "dyXFbBOpsq3Z0VAwcl", "OI2erc3gNq3Z0VAwcl", "SXlMHeqwQq3Z0VAwcl", "idq3Z0VAwcl", "jwKN9sCc_g1pyn7u2J", "lyisMhj2cg1pyn7u2J", "KpNqQTxWeg1pyn7u2J", "KzHB6WjMmg1pyn7u2J", "B6ssrChd4g1pyn7u2J", "mAE3D2HE3g1pyn7u2J", "U4akRB9ylg1pyn7u2J", "dyXFbBOpsg1pyn7u2J", "OI2erc3gNg1pyn7u2J", "SXlMHeqwQg1pyn7u2J", "idg1pyn7u2J", "restProps", "ue", "metadata", "robotsTag", "ie", "baseVariant", "hydratedBaseVariant", "useHydratedBreakpointVariants", "gestureVariant", "activeVariantCallback", "delay", "useActiveVariantCallback", "VYDb9mTPN1b86s49", "overlay", "args", "saq0BRFou1b86s49", "scopingClassNames", "cx", "elementId", "useRouteElementId", "ref1", "elementId1", "dynamicRef", "useSiteRefs", "elementId2", "ref2", "elementId3", "ref3", "isDisplayed", "router", "useRouter", "isDisplayed1", "ref4", "isDisplayed2", "isDisplayed3", "elementId4", "useCustomCursors", "GeneratedComponentContext", "u", "LayoutGroup", "ComponentViewportProvider", "ResolveLinks", "resolvedLinks", "PropertyOverrides2", "resolvedLinks1", "SVG", "x", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "x4xdVl4Q3_default", "collection", "l", "index", "visible", "visible1", "visible2", "visible3", "PathVariablesContext", "Link", "getLoadingLazyAtYPosition", "Image2", "collection1", "paginationInfo1", "loadMore1", "index1", "visible4", "visible5", "visible6", "visible7", "css", "FrameraugiA20Il", "withCSS", "augiA20Il_default", "variationAxes", "addFonts", "getFontsFromSharedStyle", "fonts", "__FramerMetadata__"]
}
