{"version":3,"file":"0JGm_h3gfylp9aP7tyvamAA_Igetn_b1YoT0vfV4q4U.CFANqnfJ.mjs","names":["addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","animation","transition2","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","Image","css","serializationHash","variantClassNames","transition1","animation","animation1","transition2","Transition","Variants","getProps","createLayoutDependency","Component","className","Image","css","addPropertyOverrides","cycleOrder","serializationHash","variantClassNames","transition1","Transition","Variants","humanReadableVariantMap","getProps","createLayoutDependency","Component","className","css","serializationHash","variantClassNames","transition1","humanReadableVariantMap","getProps","Component","className","css","HeaderNavigation","TeamTeamSocial","TeamSkillBar","SectionsCTASection","SectionsFooterSection","MiscGetFigma","ButtonsFreeRemix","TeamDetails","metadata","className","PropertyOverrides","Image","css"],"sources":["https:/framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/lGu9VayhxpYD2v9lbKlh/AnimatedCounter.js","https:/framerusercontent.com/modules/5PMT9QAuXlOWLQimlCkg/lvbptNWkdB9ggvLh0ocJ/OWBxIwbmj.js","https:/framerusercontent.com/modules/1n2MdBIFrfFnMP5pLOa1/crlWeTgKbEMGeQi9pEaB/qqiXqx9H_.js","https:/framerusercontent.com/modules/NDrG3d9gwVLMAyXRGeGl/6hYhMXOzFX3dOWlW6swC/vEJeKn0jB.js","https:/framerusercontent.com/modules/ljkjsTIvsVZXDGepBCaF/PHHfZXyHb46wNmM28Gg2/x5lMc6coz.js","https:/framerusercontent.com/modules/pG64eJbzoPmxlkWOgauA/USJvAsjyA6lvmwpG5xXw/JrRWlVYt9.js"],"sourcesContent":["/*\n * Animated Counter by framer.today\n * v1.0.1\n *\n * hi@framer.today\n * _joerl on 𝕏\n *\n * Full terms here ↴\n * https://framer.today/license\n *\n */import{jsx as _jsx}from\"react/jsx-runtime\";import{animate,motion,useInView}from\"framer-motion\";import{useEffect,useRef,useState}from\"react\";import{addPropertyControls,ControlType,RenderTarget}from\"framer\";/**\n * @framerDisableUnlink\n */export default function AnimatedCounter(props){const{from,to,duration,decimalPlaces,decimalSeparator,font:{fontFamily,fontWeight,fontSize,lineHeight,letterSpacing,textAlign},color,playOnLoad,once,animationType}=props;const ref=useRef(null);const isCanvas=RenderTarget.current()===RenderTarget.canvas;const ariaLabel=`Counter ends at ${to}`;// Pass 'once' to useInView\nconst isInView=useInView(ref,{once});const[hasAnimated,setHasAnimated]=useState(false);const[displayValue,setDisplayValue]=useState(()=>formatNumber(from));function formatNumber(value){let formattedNumber=value.toFixed(decimalPlaces).replace(\".\",decimalSeparator);return formattedNumber;}useEffect(()=>{// Determine if animation should play\nif(!isCanvas&&(playOnLoad||isInView)&&!hasAnimated){const animationControl=animate(from,to,{duration,ease:animationType===\"smooth\"?\"easeInOut\":\"linear\",onUpdate:latest=>{setDisplayValue(formatNumber(latest));},onComplete:()=>{if(once){setHasAnimated(true);}}});return()=>animationControl.stop();}},[from,to,duration,decimalPlaces,decimalSeparator,playOnLoad,isInView,animationType,once,hasAnimated]);return /*#__PURE__*/_jsx(motion.div,{ref:ref,initial:{opacity:isCanvas?1:0},whileInView:{opacity:1},style:{fontFamily,fontWeight,fontSize,lineHeight,letterSpacing,textAlign,color,fontVariantNumeric:\"tabular-nums\",userSelect:\"none\"},\"aria-label\":ariaLabel,children:isCanvas?formatNumber(to):displayValue});}AnimatedCounter.defaultProps={from:0,to:24,duration:5,decimalPlaces:0,decimalSeparator:\".\",font:{fontFamily:\"Manrope\",fontWeight:\"400\",fontSize:40,lineHeight:\"1.5em\",letterSpacing:\"normal\",textAlign:\"left\"},color:\"#FFF\",playOnLoad:true,once:true,animationType:\"smooth\"};addPropertyControls(AnimatedCounter,{from:{type:ControlType.Number,title:\"From\",defaultValue:0,min:0,step:.1,displayStepper:true},to:{type:ControlType.Number,title:\"To\",defaultValue:16,min:0,step:.1,displayStepper:true},animationType:{type:ControlType.Enum,title:\"Animation Type\",defaultValue:\"smooth\",options:[\"smooth\",\"linear\"],optionTitles:[\"Smooth\",\"Linear\"]},duration:{type:ControlType.Number,title:\"Duration\",defaultValue:2.5,min:0,step:.1,displayStepper:true},decimalPlaces:{type:ControlType.Number,displayStepper:true,title:\"Decimal Places\",defaultValue:0,min:0,max:2,step:1},decimalSeparator:{type:ControlType.Enum,title:\"↳ Separator\",defaultValue:\".\",options:[\".\",\",\"],optionTitles:[\".\",\",\"],hidden:({decimalPlaces})=>decimalPlaces===0},font:{type:ControlType.Font,title:\"Font\",controls:\"extended\",defaultValue:{fontFamily:\"Manrope\",fontWeight:\"400\",fontSize:64,lineHeight:\"1.5em\",letterSpacing:\"Medium\",textAlign:\"left\"},displayFontSize:true,displayTextAlignment:false,defaultFontType:\"monospace\"},color:{type:ControlType.Color,title:\"Color\",defaultValue:\"#FFF\"},once:{type:ControlType.Boolean,title:\"Once\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\"},playOnLoad:{type:ControlType.Boolean,title:\"Play on Load\",defaultValue:true,enabledTitle:\"Yes\",disabledTitle:\"No\",description:`\n        \n        *from framer.today*\n [License](https://framer.today/license)\n    `}});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"AnimatedCounter\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerDisableUnlink\":\"\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./AnimatedCounter.map","// Generated by Framer (2fef4c5)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getLoadingLazyAtYPosition,Image,RichText,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionDivWithFX=withFX(motion.div);const cycleOrder=[\"bME12X0zK\",\"iuerdOUCA\",\"XqAY1vF2P\"];const serializationHash=\"framer-e2mTR\";const variantClassNames={bME12X0zK:\"framer-v-1745hdl\",iuerdOUCA:\"framer-v-17gvzir\",XqAY1vF2P:\"framer-v-1xfplo8\"};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 animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:50};const transition2={bounce:0,delay:0,duration:.6,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={Desktop:\"bME12X0zK\",Phone:\"XqAY1vF2P\",Tablet:\"iuerdOUCA\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"bME12X0zK\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"bME12X0zK\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.section,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1745hdl\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"bME12X0zK\",ref:refBinding,style:{backgroundColor:\"var(--token-b0e418fd-2dac-47db-b309-809594329caf, rgb(234, 235, 231))\",...style},...addPropertyOverrides({iuerdOUCA:{\"data-framer-name\":\"Tablet\"},XqAY1vF2P:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"Section BG\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-408),pixelHeight:1219,pixelWidth:2435,sizes:`calc(${componentViewport?.width||\"100vw\"} + 115px)`,src:\"https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg\",srcSet:\"https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg 2435w\"},className:\"framer-1puyet5\",\"data-framer-name\":\"Section BG\",layoutDependency:layoutDependency,layoutId:\"f71GUPCKS\",...addPropertyOverrides({iuerdOUCA:{background:{alt:\"Section BG\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+-86),pixelHeight:1219,pixelWidth:2435,sizes:`calc(${componentViewport?.width||\"100vw\"} + 48px)`,src:\"https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg\",srcSet:\"https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg 2435w\"}},XqAY1vF2P:{background:{alt:\"Section BG\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),pixelHeight:1219,pixelWidth:2435,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg\",srcSet:\"https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=512 512w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg?scale-down-to=2048 2048w,https://framerusercontent.com/images/XT3hDL0O2GZCRv5YYTlT0WcJY.svg 2435w\"}}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-28cgn1\",\"data-framer-name\":\"Container\",layoutDependency:layoutDependency,layoutId:\"OqsMByEJi\",children:/*#__PURE__*/_jsx(MotionDivWithFX,{__framer__animate:{transition:transition2},__framer__animateOnce:true,__framer__enter:animation,__framer__styleAppearEffectEnabled:true,__framer__threshold:0,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:\"framer-1mufmaa\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"lfyOdt2yK\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsxs(motion.h2,{style:{\"--font-selector\":\"RlM7TW9udHNlcnJhdC1saWdodA==\",\"--framer-font-family\":'\"Montserrat\", \"Montserrat Placeholder\", sans-serif',\"--framer-font-size\":\"38px\",\"--framer-font-weight\":\"300\",\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--extracted-1of0zx5, var(--token-319d9a5d-dd4a-4c6d-ae5b-ab2b13b474f9, rgb(17, 17, 17)))\"},children:[/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1qn201a, rgb(0, 193, 194))\"},children:/*#__PURE__*/_jsx(motion.em,{children:/*#__PURE__*/_jsx(motion.strong,{children:\"Our mission\"})})}),/*#__PURE__*/_jsx(motion.span,{style:{\"--framer-text-color\":\"var(--extracted-1fiaymt, rgb(234, 235, 231))\"},children:\" \"}),\"is to transform real estate relationships by empowering agents and loan officers with innovative technology that fosters authentic, long-lasting connections throughout the entire homeownership journey.\"]})}),className:\"framer-16omxg9\",fonts:[\"FS;Montserrat-light\",\"FS;Montserrat-regular\",\"FS;Montserrat-italic\",\"FS;Montserrat-light italic\"],layoutDependency:layoutDependency,layoutId:\"JBdSvGs72\",style:{\"--extracted-1fiaymt\":\"rgb(234, 235, 231)\",\"--extracted-1of0zx5\":\"var(--token-319d9a5d-dd4a-4c6d-ae5b-ab2b13b474f9, rgb(17, 17, 17))\",\"--extracted-1qn201a\":\"rgb(0, 193, 194)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-e2mTR.framer-1loep8i, .framer-e2mTR .framer-1loep8i { display: block; }\",\".framer-e2mTR.framer-1745hdl { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 50px 60px 50px 60px; position: relative; width: 1440px; }\",\".framer-e2mTR .framer-1puyet5 { align-content: center; align-items: center; bottom: -205px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; justify-content: center; left: 0px; overflow: visible; padding: 0px; position: absolute; right: -115px; top: -408px; z-index: 1; }\",\".framer-e2mTR .framer-28cgn1 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 48px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 0px; position: relative; width: 100%; z-index: 5; }\",\".framer-e2mTR .framer-1mufmaa { 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-e2mTR .framer-16omxg9 { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-e2mTR.framer-1745hdl, .framer-e2mTR .framer-1puyet5, .framer-e2mTR .framer-28cgn1, .framer-e2mTR .framer-1mufmaa { gap: 0px; } .framer-e2mTR.framer-1745hdl > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e2mTR.framer-1745hdl > :first-child, .framer-e2mTR .framer-28cgn1 > :first-child, .framer-e2mTR .framer-1mufmaa > :first-child { margin-top: 0px; } .framer-e2mTR.framer-1745hdl > :last-child, .framer-e2mTR .framer-28cgn1 > :last-child, .framer-e2mTR .framer-1mufmaa > :last-child { margin-bottom: 0px; } .framer-e2mTR .framer-1puyet5 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-e2mTR .framer-1puyet5 > :first-child { margin-left: 0px; } .framer-e2mTR .framer-1puyet5 > :last-child { margin-right: 0px; } .framer-e2mTR .framer-28cgn1 > * { margin: 0px; margin-bottom: calc(48px / 2); margin-top: calc(48px / 2); } .framer-e2mTR .framer-1mufmaa > * { margin: 0px; margin-bottom: calc(16px / 2); margin-top: calc(16px / 2); } }\",\".framer-e2mTR.framer-v-17gvzir.framer-1745hdl { padding: 80px 30px 80px 30px; width: 810px; }\",\".framer-e2mTR.framer-v-17gvzir .framer-1puyet5 { bottom: -76px; right: -48px; top: -86px; }\",\".framer-e2mTR.framer-v-17gvzir .framer-28cgn1 { justify-content: flex-start; }\",\".framer-e2mTR.framer-v-17gvzir .framer-1mufmaa, .framer-e2mTR.framer-v-1xfplo8 .framer-1mufmaa { width: 100%; }\",\".framer-e2mTR.framer-v-17gvzir .framer-16omxg9 { width: 68%; }\",\".framer-e2mTR.framer-v-1xfplo8.framer-1745hdl { padding: 60px 20px 60px 20px; width: 390px; }\",\".framer-e2mTR.framer-v-1xfplo8 .framer-1puyet5 { bottom: unset; height: 100%; right: unset; top: 0px; width: 100%; }\",\".framer-e2mTR.framer-v-1xfplo8 .framer-28cgn1 { gap: 32px; justify-content: flex-start; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-e2mTR.framer-v-1xfplo8 .framer-28cgn1 { gap: 0px; } .framer-e2mTR.framer-v-1xfplo8 .framer-28cgn1 > * { margin: 0px; margin-bottom: calc(32px / 2); margin-top: calc(32px / 2); } .framer-e2mTR.framer-v-1xfplo8 .framer-28cgn1 > :first-child { margin-top: 0px; } .framer-e2mTR.framer-v-1xfplo8 .framer-28cgn1 > :last-child { margin-bottom: 0px; } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 282.5\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"iuerdOUCA\":{\"layout\":[\"fixed\",\"auto\"]},\"XqAY1vF2P\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerOWBxIwbmj=withCSS(Component,css,\"framer-e2mTR\");export default FramerOWBxIwbmj;FramerOWBxIwbmj.displayName=\"Sections/CTA Section\";FramerOWBxIwbmj.defaultProps={height:282.5,width:1440};addPropertyControls(FramerOWBxIwbmj,{variant:{options:[\"bME12X0zK\",\"iuerdOUCA\",\"XqAY1vF2P\"],optionTitles:[\"Desktop\",\"Tablet\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerOWBxIwbmj,[{explicitInter:true,fonts:[{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/JBAX5LNUCKEVXKRK3ARXNMEMQYQYP6WR/P3OTF2DNFMTAXKSAW4JNN6DPWEDDI5MN/4IO2HK2EZ7GHCZN7I3I4WKBAO7IH72SS.woff2\",weight:\"300\"},{family:\"Montserrat\",source:\"fontshare\",style:\"normal\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/NZ67QOF3FXYLOR27ABJOZVKKBKNRMKMF/EHBFE55HTLOOJHTZSLD54GSL3EBTAFNQ/DI2GHUWG3WKRXISSCTNDMTWKWZC25UIW.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CC6FT7O535LIU5P34T6V2W7R57LGKSDT/KUZZS4REMM64PV6S4GGM77HZQUVJPYU2/3ZPIFBJ6EZFOZSYT4ISIO7DHQQODA5IR.woff2\",weight:\"400\"},{family:\"Montserrat\",source:\"fontshare\",style:\"italic\",url:\"https://framerusercontent.com/third-party-assets/fontshare/wf/CNH2P436UGGNUN7A3WATPUSLXUAUNZXM/WBOFTJORLE3KJUXNB6IW2NWNOCLK5DCI/34EMF6YG4SKA4J64Y4FGBZREAWR4SYHF.woff2\",weight:\"300\"}]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerOWBxIwbmj\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"282.5\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1440\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"iuerdOUCA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"XqAY1vF2P\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./OWBxIwbmj.map","// Generated by Framer (f7d95e4)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,cx,getLoadingLazyAtYPosition,Image,Link,useComponentViewport,useLocaleInfo,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";const MotionAWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(motion.a));const serializationHash=\"framer-8rQkl\";const variantClassNames={zOwKn6LkT:\"framer-v-1ems0qi\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={delay:1,duration:.4,ease:[.44,0,.56,1],type:\"tween\"};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:10};const transition2={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const getProps=({height,id,width,...props})=>{return{...props};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const fallbackRef=useRef(null);const refBinding=ref??fallbackRef;const defaultLayoutId=React.useId();const{activeLocale,setLocale}=useLocaleInfo();const componentViewport=useComponentViewport();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"zOwKn6LkT\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsx(Link,{href:\"https://grooic.lemonsqueezy.com/buy/e68ed7ec-8697-41b3-9ca6-5ea20f657aff\",motionChild:true,nodeId:\"zOwKn6LkT\",openInNewTab:true,scopeId:\"qqiXqx9H_\",children:/*#__PURE__*/_jsx(MotionAWithFXWithOptimizedAppearEffect,{...restProps,...gestureHandlers,__framer__presenceAnimate:animation,__framer__presenceInitial:animation1,__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,className:`${cx(scopingClassNames,\"framer-1ems0qi\",className,classNames)} framer-1td87br`,\"data-framer-appear-id\":\"1ems0qi\",\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"zOwKn6LkT\",optimized:true,ref:refBinding,style:{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,...style},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+(16+((componentViewport?.height||36)-32-18.6)/2)),pixelHeight:31,pixelWidth:41,src:\"https://framerusercontent.com/images/s0uklTJf0BwNKN3OKNO6DkslGBc.svg\"},className:\"framer-xfnq33\",\"data-framer-name\":\"Logo\",layoutDependency:layoutDependency,layoutId:\"EffA1k6ZS\"})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-8rQkl.framer-1td87br, .framer-8rQkl .framer-1td87br { display: block; }\",\".framer-8rQkl.framer-1ems0qi { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: 36px; justify-content: center; overflow: hidden; padding: 16px; position: relative; text-decoration: none; width: 142px; will-change: var(--framer-will-change-override, transform); }\",\".framer-8rQkl .framer-xfnq33 { -webkit-user-select: none; align-content: center; align-items: center; aspect-ratio: 1.2903225806451613 / 1; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 19px); justify-content: center; overflow: hidden; padding: 0px; position: relative; user-select: none; width: 24px; z-index: 1; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-8rQkl.framer-1ems0qi, .framer-8rQkl .framer-xfnq33 { gap: 0px; } .framer-8rQkl.framer-1ems0qi > * { margin: 0px; margin-left: calc(8px / 2); margin-right: calc(8px / 2); } .framer-8rQkl.framer-1ems0qi > :first-child, .framer-8rQkl .framer-xfnq33 > :first-child { margin-left: 0px; } .framer-8rQkl.framer-1ems0qi > :last-child, .framer-8rQkl .framer-xfnq33 > :last-child { margin-right: 0px; } .framer-8rQkl .framer-xfnq33 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 142\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerqqiXqx9H_=withCSS(Component,css,\"framer-8rQkl\");export default FramerqqiXqx9H_;FramerqqiXqx9H_.displayName=\"Buttons/Free Remix\";FramerqqiXqx9H_.defaultProps={height:36,width:142};addFonts(FramerqqiXqx9H_,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerqqiXqx9H_\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"142\",\"framerIntrinsicHeight\":\"36\",\"framerContractVersion\":\"1\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./qqiXqx9H_.map","// Generated by Framer (cf240c2)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,Link,SVG,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const enabledGestures={Jn3mBwb27:{hover:true},KWfVw4xpD:{hover:true},l2QM1cXGs:{hover:true},mIVYsnV2H:{hover:true},uxWwKiGPn:{hover:true},wYZqQLnmv:{hover:true}};const cycleOrder=[\"KWfVw4xpD\",\"wYZqQLnmv\",\"mIVYsnV2H\",\"uxWwKiGPn\",\"l2QM1cXGs\",\"Jn3mBwb27\"];const serializationHash=\"framer-BoU2y\";const variantClassNames={Jn3mBwb27:\"framer-v-1mgo94p\",KWfVw4xpD:\"framer-v-ta6fk0\",l2QM1cXGs:\"framer-v-droa9w\",mIVYsnV2H:\"framer-v-1sr0j79\",uxWwKiGPn:\"framer-v-1eg7s9v\",wYZqQLnmv:\"framer-v-ytac96\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:.2,delay:0,duration:.4,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"Bigger - Facebook\":\"uxWwKiGPn\",\"Bigger - Instagram\":\"Jn3mBwb27\",\"Bigger - Twitter\":\"l2QM1cXGs\",\"Default - Facebook\":\"KWfVw4xpD\",\"Default - Instagram\":\"mIVYsnV2H\",\"Default - Twitter\":\"wYZqQLnmv\"};const getProps=({height,id,link,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,HSRE67XOC:link!==null&&link!==void 0?link:props.HSRE67XOC,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"KWfVw4xpD\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,HSRE67XOC,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"KWfVw4xpD\",enabledGestures,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const isDisplayed=()=>{if([\"wYZqQLnmv-hover\",\"mIVYsnV2H-hover\",\"l2QM1cXGs-hover\",\"Jn3mBwb27-hover\"].includes(gestureVariant))return false;if([\"wYZqQLnmv\",\"mIVYsnV2H\",\"l2QM1cXGs\",\"Jn3mBwb27\"].includes(baseVariant))return false;return true;};const isDisplayed1=()=>{if([\"wYZqQLnmv-hover\",\"l2QM1cXGs-hover\"].includes(gestureVariant))return true;if([\"wYZqQLnmv\",\"l2QM1cXGs\"].includes(baseVariant))return true;return false;};const isDisplayed2=()=>{if([\"mIVYsnV2H-hover\",\"Jn3mBwb27-hover\"].includes(gestureVariant))return true;if([\"mIVYsnV2H\",\"Jn3mBwb27\"].includes(baseVariant))return true;return false;};const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:HSRE67XOC,children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(serializationHash,...sharedStyleClassNames,\"framer-ta6fk0\",className,classNames)} framer-g1bc4c`,\"data-framer-name\":\"Default - Facebook\",layoutDependency:layoutDependency,layoutId:\"KWfVw4xpD\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-d382d4db-a012-4919-91d6-5f841b5280d1, rgb(24, 24, 29))\",...style},variants:{\"Jn3mBwb27-hover\":{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},\"KWfVw4xpD-hover\":{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},\"l2QM1cXGs-hover\":{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},\"mIVYsnV2H-hover\":{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},\"uxWwKiGPn-hover\":{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},\"wYZqQLnmv-hover\":{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"}},...addPropertyOverrides({\"Jn3mBwb27-hover\":{\"data-framer-name\":undefined},\"KWfVw4xpD-hover\":{\"data-framer-name\":undefined},\"l2QM1cXGs-hover\":{\"data-framer-name\":undefined},\"mIVYsnV2H-hover\":{\"data-framer-name\":undefined},\"uxWwKiGPn-hover\":{\"data-framer-name\":undefined},\"wYZqQLnmv-hover\":{\"data-framer-name\":undefined},Jn3mBwb27:{\"data-framer-name\":\"Bigger - Instagram\"},l2QM1cXGs:{\"data-framer-name\":\"Bigger - Twitter\"},mIVYsnV2H:{\"data-framer-name\":\"Default - Instagram\"},uxWwKiGPn:{\"data-framer-name\":\"Bigger - Facebook\"},wYZqQLnmv:{\"data-framer-name\":\"Default - Twitter\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-11701i2\",\"data-framer-name\":\"Facebook\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"nUqXTAokX\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 11.085 2.631 C 11.085 2.459 10.945 2.319 10.773 2.319 L 9.213 2.319 C 7.578 2.238 6.184 3.492 6.093 5.126 L 6.093 6.812 L 4.534 6.812 C 4.362 6.812 4.222 6.951 4.222 7.123 L 4.222 8.746 C 4.222 8.918 4.362 9.057 4.534 9.057 L 6.093 9.057 L 6.093 13.238 C 6.093 13.321 6.126 13.4 6.185 13.459 C 6.243 13.517 6.323 13.55 6.406 13.55 L 8.278 13.55 C 8.361 13.55 8.44 13.517 8.498 13.459 C 8.557 13.4 8.59 13.321 8.589 13.238 L 8.589 9.057 L 10.225 9.057 C 10.367 9.059 10.493 8.964 10.53 8.827 L 10.979 7.204 C 11.004 7.111 10.985 7.011 10.926 6.934 C 10.868 6.857 10.776 6.812 10.68 6.812 L 8.589 6.812 L 8.589 5.126 C 8.622 4.806 8.892 4.563 9.213 4.565 L 10.774 4.565 C 10.857 4.565 10.936 4.532 10.994 4.474 C 11.053 4.415 11.086 4.336 11.085 4.253 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></svg>',svgContentId:9343641515,withExternalLayout:true,...addPropertyOverrides({\"KWfVw4xpD-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 16\"><path d=\"M 11.085 2.631 C 11.085 2.459 10.945 2.319 10.773 2.319 L 9.213 2.319 C 7.578 2.238 6.184 3.492 6.093 5.126 L 6.093 6.812 L 4.534 6.812 C 4.362 6.812 4.222 6.951 4.222 7.123 L 4.222 8.746 C 4.222 8.918 4.362 9.057 4.534 9.057 L 6.093 9.057 L 6.093 13.238 C 6.093 13.321 6.126 13.4 6.185 13.459 C 6.243 13.517 6.323 13.55 6.406 13.55 L 8.278 13.55 C 8.361 13.55 8.44 13.517 8.498 13.459 C 8.557 13.4 8.59 13.321 8.589 13.238 L 8.589 9.057 L 10.225 9.057 C 10.367 9.059 10.493 8.964 10.53 8.827 L 10.979 7.204 C 11.004 7.111 10.985 7.011 10.926 6.934 C 10.868 6.857 10.776 6.812 10.68 6.812 L 8.589 6.812 L 8.589 5.126 C 8.622 4.806 8.892 4.563 9.213 4.565 L 10.774 4.565 C 10.857 4.565 10.936 4.532 10.994 4.474 C 11.053 4.415 11.086 4.336 11.085 4.253 Z\" fill=\"var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15))\"></path></svg>',svgContentId:11733318395},\"uxWwKiGPn-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.628 3.947 C 16.628 3.688 16.418 3.479 16.16 3.479 L 13.82 3.479 C 11.368 3.356 9.277 5.238 9.14 7.69 L 9.14 10.217 L 6.801 10.217 C 6.542 10.217 6.333 10.427 6.333 10.685 L 6.333 13.118 C 6.333 13.377 6.542 13.586 6.801 13.586 L 9.14 13.586 L 9.14 19.857 C 9.14 19.981 9.189 20.1 9.277 20.188 C 9.365 20.276 9.484 20.325 9.609 20.325 L 12.417 20.325 C 12.541 20.325 12.66 20.276 12.748 20.188 C 12.835 20.1 12.884 19.981 12.884 19.857 L 12.884 13.586 L 15.337 13.586 C 15.551 13.589 15.739 13.446 15.795 13.24 L 16.469 10.807 C 16.507 10.667 16.477 10.517 16.389 10.401 C 16.301 10.286 16.165 10.218 16.02 10.217 L 12.884 10.217 L 12.884 7.69 C 12.933 7.21 13.338 6.845 13.82 6.848 L 16.161 6.848 C 16.285 6.848 16.404 6.798 16.492 6.71 C 16.579 6.623 16.628 6.503 16.628 6.379 Z\" fill=\"var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15))\"></path></svg>',svgContentId:11685359660},uxWwKiGPn:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 24\"><path d=\"M 16.628 3.947 C 16.628 3.688 16.418 3.479 16.16 3.479 L 13.82 3.479 C 11.368 3.356 9.277 5.238 9.14 7.69 L 9.14 10.217 L 6.801 10.217 C 6.542 10.217 6.333 10.427 6.333 10.685 L 6.333 13.118 C 6.333 13.377 6.542 13.586 6.801 13.586 L 9.14 13.586 L 9.14 19.857 C 9.14 19.981 9.189 20.1 9.277 20.188 C 9.365 20.276 9.484 20.325 9.609 20.325 L 12.417 20.325 C 12.541 20.325 12.66 20.276 12.748 20.188 C 12.835 20.1 12.884 19.981 12.884 19.857 L 12.884 13.586 L 15.337 13.586 C 15.551 13.589 15.739 13.446 15.795 13.24 L 16.469 10.807 C 16.507 10.667 16.477 10.517 16.389 10.401 C 16.301 10.286 16.165 10.218 16.02 10.217 L 12.884 10.217 L 12.884 7.69 C 12.933 7.21 13.338 6.845 13.82 6.848 L 16.161 6.848 C 16.285 6.848 16.404 6.798 16.492 6.71 C 16.579 6.623 16.628 6.503 16.628 6.379 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></svg>',svgContentId:10566812762}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-1aymkyc\",\"data-framer-name\":\"Twitter\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"FPuwjuGu5\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><path d=\"M 5.613 13.735 C 7.555 13.801 9.441 13.064 10.841 11.69 C 12.242 10.317 13.039 8.424 13.05 6.442 C 13.49 5.886 13.818 5.246 14.012 4.559 C 14.041 4.449 14.005 4.331 13.918 4.258 C 13.831 4.185 13.71 4.171 13.609 4.221 C 13.137 4.454 12.572 4.352 12.205 3.97 C 11.745 3.455 11.099 3.152 10.415 3.131 C 9.732 3.109 9.069 3.371 8.579 3.857 C 7.902 4.525 7.618 5.506 7.831 6.442 C 5.653 6.576 4.158 5.522 2.962 4.076 C 2.888 3.992 2.773 3.96 2.668 3.994 C 2.562 4.028 2.487 4.123 2.475 4.235 C 2.008 6.875 3.201 9.533 5.465 10.898 C 4.724 11.765 3.683 12.306 2.559 12.409 C 2.436 12.43 2.339 12.529 2.319 12.655 C 2.298 12.78 2.358 12.905 2.468 12.966 C 3.445 13.464 4.522 13.727 5.614 13.735 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></svg>',svgContentId:10637768988,withExternalLayout:true,...addPropertyOverrides({\"l2QM1cXGs-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 26\"><path d=\"M 8.42 21.006 C 11.333 21.108 14.161 19.98 16.262 17.879 C 18.363 15.779 19.558 12.884 19.575 9.853 C 20.236 9.003 20.726 8.024 21.018 6.973 C 21.062 6.804 21.007 6.623 20.877 6.512 C 20.746 6.4 20.565 6.379 20.414 6.456 C 19.705 6.811 18.858 6.656 18.308 6.072 C 17.617 5.284 16.648 4.821 15.623 4.788 C 14.598 4.756 13.604 5.156 12.868 5.899 C 11.853 6.921 11.427 8.421 11.746 9.853 C 8.48 10.057 6.237 8.445 4.443 6.234 C 4.333 6.105 4.16 6.056 4.001 6.108 C 3.843 6.161 3.73 6.306 3.712 6.477 C 3.012 10.515 4.801 14.579 8.197 16.667 C 7.085 17.993 5.524 18.821 3.839 18.979 C 3.654 19.011 3.509 19.162 3.478 19.354 C 3.447 19.546 3.537 19.738 3.702 19.831 C 5.168 20.592 6.782 20.994 8.421 21.006 Z\" fill=\"var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15))\"></path></svg>',svgContentId:11387924772},\"wYZqQLnmv-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><path d=\"M 5.613 13.735 C 7.555 13.801 9.441 13.064 10.841 11.69 C 12.242 10.317 13.039 8.424 13.05 6.442 C 13.49 5.886 13.818 5.246 14.012 4.559 C 14.041 4.449 14.005 4.331 13.918 4.258 C 13.831 4.185 13.71 4.171 13.609 4.221 C 13.137 4.454 12.572 4.352 12.205 3.97 C 11.745 3.455 11.099 3.152 10.415 3.131 C 9.732 3.109 9.069 3.371 8.579 3.857 C 7.902 4.525 7.618 5.506 7.831 6.442 C 5.653 6.576 4.158 5.522 2.962 4.076 C 2.888 3.992 2.773 3.96 2.668 3.994 C 2.562 4.028 2.487 4.123 2.475 4.235 C 2.008 6.875 3.201 9.533 5.465 10.898 C 4.724 11.765 3.683 12.306 2.559 12.409 C 2.436 12.43 2.339 12.529 2.319 12.655 C 2.298 12.78 2.358 12.905 2.468 12.966 C 3.445 13.464 4.522 13.727 5.614 13.735 Z\" fill=\"var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15))\"></path></svg>',svgContentId:12057470415},l2QM1cXGs:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 26\"><path d=\"M 8.42 21.006 C 11.333 21.108 14.161 19.98 16.262 17.879 C 18.363 15.779 19.558 12.884 19.575 9.853 C 20.236 9.003 20.726 8.024 21.018 6.973 C 21.062 6.804 21.007 6.623 20.877 6.512 C 20.746 6.4 20.565 6.379 20.414 6.456 C 19.705 6.811 18.858 6.656 18.308 6.072 C 17.617 5.284 16.648 4.821 15.623 4.788 C 14.598 4.756 13.604 5.156 12.868 5.899 C 11.853 6.921 11.427 8.421 11.746 9.853 C 8.48 10.057 6.237 8.445 4.443 6.234 C 4.333 6.105 4.16 6.056 4.001 6.108 C 3.843 6.161 3.73 6.306 3.712 6.477 C 3.012 10.515 4.801 14.579 8.197 16.667 C 7.085 17.993 5.524 18.821 3.839 18.979 C 3.654 19.011 3.509 19.162 3.478 19.354 C 3.447 19.546 3.537 19.738 3.702 19.831 C 5.168 20.592 6.782 20.994 8.421 21.006 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></svg>',svgContentId:11761181494},wYZqQLnmv:{svgContentId:9697965957}},baseVariant,gestureVariant)}),isDisplayed2()&&/*#__PURE__*/_jsx(SVG,{className:\"framer-iuvo1i\",\"data-framer-name\":\"Instagram\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"kesppN_Mi\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><g transform=\"translate(0.148 0.475)\" id=\"ss8599748616_1\"><path d=\"M 0 0 L 15.599 0 L 15.599 15.911 L 0 15.911 Z\" fill=\"transparent\"></path><path d=\"M 7.799 0 C 5.683 0 5.417 0.01 4.585 0.048 C 3.753 0.087 3.187 0.22 2.691 0.418 C 2.17 0.617 1.699 0.931 1.309 1.336 C 0.913 1.733 0.605 2.214 0.409 2.744 C 0.216 3.25 0.085 3.828 0.047 4.674 C 0.009 5.524 0 5.794 0 7.956 C 0 10.116 0.009 10.387 0.047 11.235 C 0.085 12.082 0.216 12.66 0.409 13.166 C 0.609 13.69 0.875 14.132 1.309 14.575 C 1.698 14.98 2.169 15.294 2.689 15.493 C 3.187 15.69 3.752 15.824 4.583 15.863 C 5.416 15.901 5.681 15.911 7.799 15.911 C 9.918 15.911 10.182 15.901 11.015 15.863 C 11.844 15.824 12.413 15.69 12.909 15.493 C 13.429 15.293 13.9 14.98 14.289 14.575 C 14.686 14.178 14.993 13.697 15.189 13.166 C 15.381 12.66 15.513 12.082 15.552 11.235 C 15.589 10.387 15.599 10.116 15.599 7.955 C 15.599 5.794 15.589 5.524 15.552 4.674 C 15.513 3.828 15.381 3.25 15.189 2.744 C 14.993 2.214 14.686 1.733 14.289 1.336 C 13.9 0.93 13.429 0.617 12.908 0.418 C 12.411 0.22 11.843 0.086 11.014 0.048 C 10.18 0.01 9.916 0 7.797 0 L 7.8 0 L 7.799 0 Z M 7.164 1.496 L 7.864 1.496 C 9.947 1.496 10.193 1.503 11.015 1.542 C 11.775 1.577 12.189 1.707 12.464 1.815 C 12.803 1.943 13.109 2.147 13.361 2.411 C 13.634 2.69 13.803 2.954 13.944 3.326 C 14.051 3.605 14.178 4.027 14.212 4.803 C 14.25 5.641 14.258 5.893 14.258 8.016 C 14.258 10.139 14.25 10.391 14.212 11.229 C 14.178 12.005 14.05 12.426 13.944 12.706 C 13.819 13.052 13.619 13.364 13.36 13.62 C 13.087 13.899 12.827 14.071 12.463 14.215 C 12.19 14.324 11.777 14.453 11.015 14.489 C 10.193 14.527 9.947 14.537 7.864 14.537 C 5.782 14.537 5.534 14.527 4.712 14.489 C 3.952 14.454 3.539 14.325 3.265 14.215 C 2.926 14.088 2.619 13.884 2.367 13.62 C 2.108 13.364 1.908 13.051 1.783 12.706 C 1.676 12.426 1.549 12.004 1.515 11.229 C 1.477 10.39 1.469 10.139 1.469 8.014 C 1.469 5.889 1.477 5.639 1.515 4.801 C 1.549 4.025 1.676 3.604 1.783 3.323 C 1.909 2.977 2.108 2.665 2.367 2.408 C 2.641 2.129 2.9 1.957 3.265 1.813 C 3.539 1.704 3.951 1.575 4.712 1.539 C 5.432 1.505 5.711 1.495 7.164 1.494 Z M 12.465 2.874 C 11.948 2.874 11.529 3.302 11.529 3.829 C 11.529 4.356 11.948 4.784 12.465 4.784 C 12.982 4.784 13.401 4.356 13.401 3.829 C 13.401 3.302 12.982 2.874 12.465 2.874 Z M 7.967 4.038 C 6.521 3.991 5.162 4.744 4.413 6.006 C 3.663 7.268 3.639 8.844 4.35 10.13 C 5.06 11.415 6.395 12.21 7.842 12.21 C 10.03 12.209 11.812 10.418 11.846 8.186 C 11.88 5.955 10.153 4.109 7.967 4.038 Z M 8.036 5.534 C 9.472 5.534 10.636 6.721 10.636 8.186 C 10.636 9.651 9.472 10.838 8.036 10.838 C 6.6 10.838 5.436 9.651 5.436 8.186 C 5.436 6.721 6.6 5.534 8.036 5.534 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></g></svg>',svgContentId:8599748616,withExternalLayout:true,...addPropertyOverrides({\"Jn3mBwb27-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 26\"><g transform=\"translate(0.332 1.111)\" id=\"ss11036813317_1\"><path d=\"M 0.111 0.385 L 23.509 0.385 L 23.509 24.719 L 0.111 24.719 Z\" fill=\"transparent\"></path><path d=\"M 11.698 0 C 8.525 0 8.126 0.015 6.878 0.073 C 5.63 0.133 4.78 0.337 4.036 0.639 C 3.255 0.944 2.548 1.423 1.964 2.043 C 1.369 2.65 0.908 3.386 0.614 4.197 C 0.324 4.97 0.127 5.855 0.07 7.148 C 0.014 8.448 0 8.862 0 12.168 C 0 15.472 0.014 15.886 0.07 17.183 C 0.128 18.479 0.324 19.363 0.614 20.136 C 0.914 20.937 1.313 21.614 1.964 22.291 C 2.547 22.911 3.254 23.39 4.034 23.695 C 4.78 23.997 5.628 24.202 6.874 24.261 C 8.124 24.319 8.521 24.334 11.699 24.334 C 14.877 24.334 15.273 24.319 16.522 24.261 C 17.766 24.201 18.619 23.997 19.363 23.695 C 20.143 23.39 20.85 22.911 21.434 22.291 C 22.029 21.683 22.49 20.948 22.784 20.136 C 23.072 19.363 23.269 18.479 23.328 17.183 C 23.384 15.886 23.398 15.472 23.398 12.167 C 23.398 8.862 23.384 8.448 23.328 7.149 C 23.269 5.855 23.072 4.97 22.784 4.197 C 22.49 3.386 22.029 2.65 21.434 2.043 C 20.85 1.423 20.143 0.944 19.362 0.639 C 18.616 0.337 17.765 0.132 16.521 0.073 C 15.27 0.015 14.874 0 11.696 0 L 11.7 0 L 11.699 0 Z M 10.746 2.288 L 11.796 2.288 C 14.92 2.288 15.29 2.298 16.523 2.358 C 17.663 2.411 18.283 2.611 18.696 2.776 C 19.204 2.972 19.664 3.283 20.042 3.687 C 20.451 4.114 20.704 4.517 20.916 5.086 C 21.076 5.514 21.267 6.158 21.318 7.345 C 21.375 8.627 21.387 9.012 21.387 12.259 C 21.387 15.506 21.375 15.893 21.318 17.174 C 21.267 18.361 21.075 19.005 20.916 19.433 C 20.728 19.961 20.429 20.439 20.04 20.831 C 19.63 21.257 19.241 21.52 18.695 21.741 C 18.285 21.907 17.665 22.105 16.523 22.16 C 15.29 22.218 14.92 22.233 11.796 22.233 C 8.673 22.233 8.301 22.218 7.068 22.16 C 5.928 22.106 5.309 21.908 4.897 21.741 C 4.388 21.546 3.928 21.235 3.551 20.831 C 3.162 20.438 2.862 19.96 2.674 19.432 C 2.514 19.005 2.323 18.36 2.272 17.173 C 2.216 15.891 2.204 15.506 2.204 12.256 C 2.204 9.007 2.216 8.624 2.272 7.342 C 2.324 6.156 2.514 5.512 2.675 5.082 C 2.863 4.554 3.162 4.076 3.551 3.683 C 3.961 3.257 4.35 2.994 4.897 2.773 C 5.309 2.607 5.927 2.408 7.068 2.353 C 8.148 2.301 8.566 2.287 10.746 2.285 Z M 18.697 4.396 C 17.921 4.396 17.293 5.05 17.293 5.856 C 17.293 6.663 17.921 7.317 18.697 7.317 C 19.472 7.317 20.101 6.663 20.101 5.856 C 20.101 5.05 19.472 4.396 18.697 4.396 Z M 11.95 6.176 C 9.781 6.105 7.743 7.255 6.619 9.185 C 5.495 11.116 5.459 13.527 6.525 15.493 C 7.591 17.459 9.593 18.675 11.763 18.674 C 15.045 18.672 17.718 15.933 17.769 12.52 C 17.82 9.108 15.23 6.284 11.95 6.176 Z M 12.055 8.464 C 14.208 8.464 15.955 10.28 15.955 12.52 C 15.955 14.76 14.208 16.576 12.055 16.576 C 9.901 16.576 8.155 14.76 8.155 12.52 C 8.155 10.28 9.901 8.464 12.055 8.464 Z\" fill=\"var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15))\"></path></g></svg>',svgContentId:11036813317},\"mIVYsnV2H-hover\":{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><g transform=\"translate(0.148 0.475)\" id=\"ss10049566952_1\"><path d=\"M 0 0 L 15.599 0 L 15.599 15.911 L 0 15.911 Z\" fill=\"transparent\"></path><path d=\"M 7.799 0 C 5.683 0 5.417 0.01 4.585 0.048 C 3.753 0.087 3.187 0.22 2.691 0.418 C 2.17 0.617 1.699 0.931 1.309 1.336 C 0.913 1.733 0.605 2.214 0.409 2.744 C 0.216 3.25 0.085 3.828 0.047 4.674 C 0.009 5.524 0 5.794 0 7.956 C 0 10.116 0.009 10.387 0.047 11.235 C 0.085 12.082 0.216 12.66 0.409 13.166 C 0.609 13.69 0.875 14.132 1.309 14.575 C 1.698 14.98 2.169 15.294 2.689 15.493 C 3.187 15.69 3.752 15.824 4.583 15.863 C 5.416 15.901 5.681 15.911 7.799 15.911 C 9.918 15.911 10.182 15.901 11.015 15.863 C 11.844 15.824 12.413 15.69 12.909 15.493 C 13.429 15.293 13.9 14.98 14.289 14.575 C 14.686 14.178 14.993 13.697 15.189 13.166 C 15.381 12.66 15.513 12.082 15.552 11.235 C 15.589 10.387 15.599 10.116 15.599 7.955 C 15.599 5.794 15.589 5.524 15.552 4.674 C 15.513 3.828 15.381 3.25 15.189 2.744 C 14.993 2.214 14.686 1.733 14.289 1.336 C 13.9 0.93 13.429 0.617 12.908 0.418 C 12.411 0.22 11.843 0.086 11.014 0.048 C 10.18 0.01 9.916 0 7.797 0 L 7.8 0 L 7.799 0 Z M 7.164 1.496 L 7.864 1.496 C 9.947 1.496 10.193 1.503 11.015 1.542 C 11.775 1.577 12.189 1.707 12.464 1.815 C 12.803 1.943 13.109 2.147 13.361 2.411 C 13.634 2.69 13.803 2.954 13.944 3.326 C 14.051 3.605 14.178 4.027 14.212 4.803 C 14.25 5.641 14.258 5.893 14.258 8.016 C 14.258 10.139 14.25 10.391 14.212 11.229 C 14.178 12.005 14.05 12.426 13.944 12.706 C 13.819 13.052 13.619 13.364 13.36 13.62 C 13.087 13.899 12.827 14.071 12.463 14.215 C 12.19 14.324 11.777 14.453 11.015 14.489 C 10.193 14.527 9.947 14.537 7.864 14.537 C 5.782 14.537 5.534 14.527 4.712 14.489 C 3.952 14.454 3.539 14.325 3.265 14.215 C 2.926 14.088 2.619 13.884 2.367 13.62 C 2.108 13.364 1.908 13.051 1.783 12.706 C 1.676 12.426 1.549 12.004 1.515 11.229 C 1.477 10.39 1.469 10.139 1.469 8.014 C 1.469 5.889 1.477 5.639 1.515 4.801 C 1.549 4.025 1.676 3.604 1.783 3.323 C 1.909 2.977 2.108 2.665 2.367 2.408 C 2.641 2.129 2.9 1.957 3.265 1.813 C 3.539 1.704 3.951 1.575 4.712 1.539 C 5.432 1.505 5.711 1.495 7.164 1.494 Z M 12.465 2.874 C 11.948 2.874 11.529 3.302 11.529 3.829 C 11.529 4.356 11.948 4.784 12.465 4.784 C 12.982 4.784 13.401 4.356 13.401 3.829 C 13.401 3.302 12.982 2.874 12.465 2.874 Z M 7.967 4.038 C 6.521 3.991 5.162 4.744 4.413 6.006 C 3.663 7.268 3.639 8.844 4.35 10.13 C 5.06 11.415 6.395 12.21 7.842 12.21 C 10.03 12.209 11.812 10.418 11.846 8.186 C 11.88 5.955 10.153 4.109 7.967 4.038 Z M 8.036 5.534 C 9.472 5.534 10.636 6.721 10.636 8.186 C 10.636 9.651 9.472 10.838 8.036 10.838 C 6.6 10.838 5.436 9.651 5.436 8.186 C 5.436 6.721 6.6 5.534 8.036 5.534 Z\" fill=\"var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15))\"></path></g></svg>',svgContentId:10049566952},Jn3mBwb27:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 24 26\"><g transform=\"translate(0.222 0.727)\" id=\"ss10223957720_1\"><path d=\"M 0 0 L 23.398 0 L 23.398 24.334 L 0 24.334 Z\" fill=\"transparent\"></path><path d=\"M 11.809 0.385 C 8.636 0.385 8.237 0.399 6.989 0.457 C 5.741 0.518 4.891 0.722 4.147 1.023 C 3.366 1.329 2.659 1.808 2.075 2.427 C 1.48 3.035 1.019 3.77 0.725 4.582 C 0.435 5.355 0.238 6.24 0.181 7.533 C 0.125 8.833 0.111 9.246 0.111 12.553 C 0.111 15.857 0.125 16.271 0.181 17.568 C 0.239 18.863 0.435 19.747 0.725 20.521 C 1.025 21.322 1.424 21.999 2.075 22.676 C 2.658 23.296 3.364 23.775 4.145 24.08 C 4.891 24.382 5.739 24.586 6.985 24.646 C 8.235 24.704 8.632 24.719 11.81 24.719 C 14.988 24.719 15.384 24.704 16.633 24.646 C 17.877 24.585 18.73 24.382 19.474 24.08 C 20.254 23.774 20.961 23.295 21.545 22.676 C 22.14 22.068 22.6 21.333 22.895 20.521 C 23.183 19.747 23.38 18.863 23.439 17.568 C 23.495 16.271 23.509 15.857 23.509 12.552 C 23.509 9.246 23.495 8.833 23.439 7.534 C 23.38 6.24 23.183 5.355 22.895 4.582 C 22.601 3.77 22.14 3.035 21.545 2.427 C 20.961 1.808 20.254 1.328 19.473 1.023 C 18.727 0.722 17.876 0.517 16.632 0.457 C 15.381 0.399 14.985 0.385 11.807 0.385 L 11.811 0.385 L 11.81 0.385 Z M 10.857 2.672 L 11.907 2.672 C 15.031 2.672 15.401 2.683 16.634 2.743 C 17.774 2.796 18.394 2.996 18.807 3.161 C 19.315 3.356 19.775 3.668 20.153 4.072 C 20.562 4.498 20.815 4.902 21.027 5.471 C 21.187 5.898 21.378 6.543 21.429 7.73 C 21.486 9.012 21.498 9.397 21.498 12.644 C 21.498 15.891 21.486 16.277 21.429 17.559 C 21.378 18.745 21.186 19.389 21.027 19.818 C 20.839 20.346 20.54 20.824 20.151 21.215 C 19.741 21.642 19.352 21.905 18.806 22.125 C 18.396 22.292 17.776 22.489 16.634 22.545 C 15.401 22.603 15.031 22.617 11.907 22.617 C 8.784 22.617 8.412 22.603 7.179 22.545 C 6.039 22.49 5.42 22.293 5.008 22.125 C 4.499 21.931 4.039 21.62 3.662 21.215 C 3.272 20.823 2.973 20.345 2.785 19.817 C 2.625 19.389 2.434 18.744 2.383 17.558 C 2.327 16.275 2.315 15.891 2.315 12.641 C 2.315 9.392 2.327 9.009 2.383 7.727 C 2.435 6.541 2.625 5.896 2.786 5.467 C 2.974 4.938 3.273 4.46 3.662 4.068 C 4.072 3.641 4.461 3.378 5.008 3.158 C 5.42 2.991 6.038 2.793 7.179 2.738 C 8.259 2.686 8.677 2.671 10.857 2.67 Z M 18.808 4.781 C 18.032 4.781 17.404 5.435 17.404 6.241 C 17.404 7.047 18.032 7.701 18.808 7.701 C 19.583 7.701 20.212 7.047 20.212 6.241 C 20.212 5.435 19.583 4.781 18.808 4.781 Z M 12.061 6.56 C 9.892 6.489 7.854 7.64 6.73 9.57 C 5.606 11.501 5.57 13.912 6.636 15.878 C 7.701 17.844 9.704 19.059 11.874 19.058 C 15.155 19.057 17.829 16.318 17.88 12.905 C 17.931 9.493 15.341 6.668 12.061 6.56 Z M 12.165 8.848 C 14.319 8.848 16.065 10.664 16.065 12.904 C 16.065 15.144 14.319 16.96 12.165 16.96 C 10.011 16.96 8.265 15.144 8.265 12.904 C 8.265 10.664 10.011 8.848 12.165 8.848 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></g></svg>',svgContentId:10223957720},mIVYsnV2H:{svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 16 17\"><g transform=\"translate(0.148 0.475)\" id=\"ss10474644955_1\"><path d=\"M 0 0 L 15.599 0 L 15.599 15.911 L 0 15.911 Z\" fill=\"transparent\"></path><path d=\"M 7.799 0 C 5.683 0 5.417 0.01 4.585 0.048 C 3.753 0.087 3.187 0.22 2.691 0.418 C 2.17 0.617 1.699 0.931 1.309 1.336 C 0.913 1.733 0.605 2.214 0.409 2.744 C 0.216 3.25 0.085 3.828 0.047 4.674 C 0.009 5.524 0 5.794 0 7.956 C 0 10.116 0.009 10.387 0.047 11.235 C 0.085 12.082 0.216 12.66 0.409 13.166 C 0.609 13.69 0.875 14.132 1.309 14.575 C 1.698 14.98 2.169 15.294 2.689 15.493 C 3.187 15.69 3.752 15.824 4.583 15.863 C 5.416 15.901 5.681 15.911 7.799 15.911 C 9.918 15.911 10.182 15.901 11.015 15.863 C 11.844 15.824 12.413 15.69 12.909 15.493 C 13.429 15.293 13.9 14.98 14.289 14.575 C 14.686 14.178 14.993 13.697 15.189 13.166 C 15.381 12.66 15.513 12.082 15.552 11.235 C 15.589 10.387 15.599 10.116 15.599 7.955 C 15.599 5.794 15.589 5.524 15.552 4.674 C 15.513 3.828 15.381 3.25 15.189 2.744 C 14.993 2.214 14.686 1.733 14.289 1.336 C 13.9 0.93 13.429 0.617 12.908 0.418 C 12.411 0.22 11.843 0.086 11.014 0.048 C 10.18 0.01 9.916 0 7.797 0 L 7.8 0 L 7.799 0 Z M 7.164 1.496 L 7.864 1.496 C 9.947 1.496 10.193 1.503 11.015 1.542 C 11.775 1.577 12.189 1.707 12.464 1.815 C 12.803 1.943 13.109 2.147 13.361 2.411 C 13.634 2.69 13.803 2.954 13.944 3.326 C 14.051 3.605 14.178 4.027 14.212 4.803 C 14.25 5.641 14.258 5.893 14.258 8.016 C 14.258 10.139 14.25 10.391 14.212 11.229 C 14.178 12.005 14.05 12.426 13.944 12.706 C 13.819 13.052 13.619 13.364 13.36 13.62 C 13.087 13.899 12.827 14.071 12.463 14.215 C 12.19 14.324 11.777 14.453 11.015 14.489 C 10.193 14.527 9.947 14.537 7.864 14.537 C 5.782 14.537 5.534 14.527 4.712 14.489 C 3.952 14.454 3.539 14.325 3.265 14.215 C 2.926 14.088 2.619 13.884 2.367 13.62 C 2.108 13.364 1.908 13.051 1.783 12.706 C 1.676 12.426 1.549 12.004 1.515 11.229 C 1.477 10.39 1.469 10.139 1.469 8.014 C 1.469 5.889 1.477 5.639 1.515 4.801 C 1.549 4.025 1.676 3.604 1.783 3.323 C 1.909 2.977 2.108 2.665 2.367 2.408 C 2.641 2.129 2.9 1.957 3.265 1.813 C 3.539 1.704 3.951 1.575 4.712 1.539 C 5.432 1.505 5.711 1.495 7.164 1.494 Z M 12.465 2.874 C 11.948 2.874 11.529 3.302 11.529 3.829 C 11.529 4.356 11.948 4.784 12.465 4.784 C 12.982 4.784 13.401 4.356 13.401 3.829 C 13.401 3.302 12.982 2.874 12.465 2.874 Z M 7.967 4.038 C 6.521 3.991 5.162 4.744 4.413 6.006 C 3.663 7.268 3.639 8.844 4.35 10.13 C 5.06 11.415 6.395 12.21 7.842 12.21 C 10.03 12.209 11.812 10.418 11.846 8.186 C 11.88 5.955 10.153 4.109 7.967 4.038 Z M 8.036 5.534 C 9.472 5.534 10.636 6.721 10.636 8.186 C 10.636 9.651 9.472 10.838 8.036 10.838 C 6.6 10.838 5.436 9.651 5.436 8.186 C 5.436 6.721 6.6 5.534 8.036 5.534 Z\" fill=\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"></path></g></svg>',svgContentId:10474644955}},baseVariant,gestureVariant)})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-BoU2y.framer-g1bc4c, .framer-BoU2y .framer-g1bc4c { display: block; }\",\".framer-BoU2y.framer-ta6fk0 { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 8px; position: relative; text-decoration: none; width: min-content; }\",\".framer-BoU2y .framer-11701i2 { flex: none; height: 16px; position: relative; width: 16px; }\",\".framer-BoU2y .framer-1aymkyc, .framer-BoU2y .framer-iuvo1i { flex: none; height: 17px; position: relative; width: 16px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-BoU2y.framer-ta6fk0 { gap: 0px; } .framer-BoU2y.framer-ta6fk0 > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-BoU2y.framer-ta6fk0 > :first-child { margin-left: 0px; } .framer-BoU2y.framer-ta6fk0 > :last-child { margin-right: 0px; } }\",\".framer-BoU2y.framer-v-1eg7s9v .framer-11701i2 { height: 24px; width: 24px; }\",\".framer-BoU2y.framer-v-droa9w .framer-1aymkyc, .framer-BoU2y.framer-v-1mgo94p .framer-iuvo1i { height: 26px; width: 24px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 32\n * @framerIntrinsicWidth 32\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"wYZqQLnmv\":{\"layout\":[\"auto\",\"auto\"]},\"mIVYsnV2H\":{\"layout\":[\"auto\",\"auto\"]},\"uxWwKiGPn\":{\"layout\":[\"auto\",\"auto\"]},\"l2QM1cXGs\":{\"layout\":[\"auto\",\"auto\"]},\"Jn3mBwb27\":{\"layout\":[\"auto\",\"auto\"]},\"yRlj76fGr\":{\"layout\":[\"auto\",\"auto\"]},\"hJ1DF9a68\":{\"layout\":[\"auto\",\"auto\"]},\"Jcy0LFWUH\":{\"layout\":[\"auto\",\"auto\"]},\"li0WiUJ_n\":{\"layout\":[\"auto\",\"auto\"]},\"iHQtH1NeS\":{\"layout\":[\"auto\",\"auto\"]},\"ycjmslNtq\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"HSRE67XOC\":\"link\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramervEJeKn0jB=withCSS(Component,css,\"framer-BoU2y\");export default FramervEJeKn0jB;FramervEJeKn0jB.displayName=\"Team/Team Social\";FramervEJeKn0jB.defaultProps={height:32,width:32};addPropertyControls(FramervEJeKn0jB,{variant:{options:[\"KWfVw4xpD\",\"wYZqQLnmv\",\"mIVYsnV2H\",\"uxWwKiGPn\",\"l2QM1cXGs\",\"Jn3mBwb27\"],optionTitles:[\"Default - Facebook\",\"Default - Twitter\",\"Default - Instagram\",\"Bigger - Facebook\",\"Bigger - Twitter\",\"Bigger - Instagram\"],title:\"Variant\",type:ControlType.Enum},HSRE67XOC:{title:\"Link\",type:ControlType.Link}});addFonts(FramervEJeKn0jB,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramervEJeKn0jB\",\"slots\":[],\"annotations\":{\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"32\",\"framerVariables\":\"{\\\"HSRE67XOC\\\":\\\"link\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"wYZqQLnmv\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"mIVYsnV2H\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"uxWwKiGPn\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"l2QM1cXGs\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jn3mBwb27\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"yRlj76fGr\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hJ1DF9a68\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Jcy0LFWUH\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"li0WiUJ_n\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"iHQtH1NeS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"ycjmslNtq\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"32\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./vEJeKn0jB.map","// Generated by Framer (cf240c2)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"AWeOUiZtT\",\"nOji8Pf2V\",\"fvmeAYUUx\",\"eHonuFw2q\",\"gPvMFgk9E\",\"vpSuVVpHu\",\"FJO9g0Vyw\",\"J3iaKcGv_\"];const serializationHash=\"framer-yX9UV\";const variantClassNames={AWeOUiZtT:\"framer-v-q9u8g8\",eHonuFw2q:\"framer-v-1y4n0o0\",FJO9g0Vyw:\"framer-v-1breb6x\",fvmeAYUUx:\"framer-v-bpwwa\",gPvMFgk9E:\"framer-v-130eudi\",J3iaKcGv_:\"framer-v-4xrewb\",nOji8Pf2V:\"framer-v-yi2ytt\",vpSuVVpHu:\"framer-v-qpl2mz\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={bounce:0,delay:0,duration:3,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion.create(React.Fragment);const humanReadableVariantMap={\"65% Active\":\"J3iaKcGv_\",\"70% Active\":\"FJO9g0Vyw\",\"75% Active\":\"vpSuVVpHu\",\"80% Active\":\"gPvMFgk9E\",\"85% Active\":\"eHonuFw2q\",\"90% Active\":\"fvmeAYUUx\",\"95% Active\":\"nOji8Pf2V\",Default:\"AWeOUiZtT\"};const getProps=({height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"AWeOUiZtT\"};};const createLayoutDependency=(props,variants)=>{if(props.layoutDependency)return variants.join(\"-\")+props.layoutDependency;return variants.join(\"-\");};const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"AWeOUiZtT\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-q9u8g8\",className,classNames),\"data-framer-name\":\"Default\",layoutDependency:layoutDependency,layoutId:\"AWeOUiZtT\",ref:ref!==null&&ref!==void 0?ref:ref1,style:{backgroundColor:\"var(--token-b0cced49-9941-4da7-8aa3-fe8f76023c29, rgba(205, 255, 9, 0.1))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100,...style},...addPropertyOverrides({eHonuFw2q:{\"data-framer-name\":\"85% Active\"},FJO9g0Vyw:{\"data-framer-name\":\"70% Active\"},fvmeAYUUx:{\"data-framer-name\":\"90% Active\"},gPvMFgk9E:{\"data-framer-name\":\"80% Active\"},J3iaKcGv_:{\"data-framer-name\":\"65% Active\"},nOji8Pf2V:{\"data-framer-name\":\"95% Active\"},vpSuVVpHu:{\"data-framer-name\":\"75% Active\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1bvnjer\",\"data-framer-name\":\"Bar Fill\",layoutDependency:layoutDependency,layoutId:\"q6OM7mQFR\",style:{backgroundColor:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100}})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-yX9UV.framer-58dmq7, .framer-yX9UV .framer-58dmq7 { display: block; }\",\".framer-yX9UV.framer-q9u8g8 { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: 8px; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 1060px; will-change: var(--framer-will-change-override, transform); }\",\".framer-yX9UV .framer-1bvnjer { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 8px; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1%; will-change: var(--framer-will-change-override, transform); }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-yX9UV.framer-q9u8g8, .framer-yX9UV .framer-1bvnjer { gap: 0px; } .framer-yX9UV.framer-q9u8g8 > * { margin: 0px; margin-bottom: calc(10px / 2); margin-top: calc(10px / 2); } .framer-yX9UV.framer-q9u8g8 > :first-child { margin-top: 0px; } .framer-yX9UV.framer-q9u8g8 > :last-child { margin-bottom: 0px; } .framer-yX9UV .framer-1bvnjer > * { margin: 0px; margin-left: calc(10px / 2); margin-right: calc(10px / 2); } .framer-yX9UV .framer-1bvnjer > :first-child { margin-left: 0px; } .framer-yX9UV .framer-1bvnjer > :last-child { margin-right: 0px; } }\",\".framer-yX9UV.framer-v-yi2ytt .framer-1bvnjer { width: 95%; }\",\".framer-yX9UV.framer-v-bpwwa .framer-1bvnjer { width: 90%; }\",\".framer-yX9UV.framer-v-1y4n0o0 .framer-1bvnjer { width: 85%; }\",\".framer-yX9UV.framer-v-130eudi .framer-1bvnjer { width: 80%; }\",\".framer-yX9UV.framer-v-qpl2mz .framer-1bvnjer { width: 75%; }\",\".framer-yX9UV.framer-v-1breb6x .framer-1bvnjer { width: 70%; }\",\".framer-yX9UV.framer-v-4xrewb .framer-1bvnjer { width: 65%; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 8\n * @framerIntrinsicWidth 1060\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"nOji8Pf2V\":{\"layout\":[\"fixed\",\"fixed\"]},\"fvmeAYUUx\":{\"layout\":[\"fixed\",\"fixed\"]},\"eHonuFw2q\":{\"layout\":[\"fixed\",\"fixed\"]},\"gPvMFgk9E\":{\"layout\":[\"fixed\",\"fixed\"]},\"vpSuVVpHu\":{\"layout\":[\"fixed\",\"fixed\"]},\"FJO9g0Vyw\":{\"layout\":[\"fixed\",\"fixed\"]},\"J3iaKcGv_\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const Framerx5lMc6coz=withCSS(Component,css,\"framer-yX9UV\");export default Framerx5lMc6coz;Framerx5lMc6coz.displayName=\"Team/Skill Bar\";Framerx5lMc6coz.defaultProps={height:8,width:1060};addPropertyControls(Framerx5lMc6coz,{variant:{options:[\"AWeOUiZtT\",\"nOji8Pf2V\",\"fvmeAYUUx\",\"eHonuFw2q\",\"gPvMFgk9E\",\"vpSuVVpHu\",\"FJO9g0Vyw\",\"J3iaKcGv_\"],optionTitles:[\"Default\",\"95% Active\",\"90% Active\",\"85% Active\",\"80% Active\",\"75% Active\",\"70% Active\",\"65% Active\"],title:\"Variant\",type:ControlType.Enum}});addFonts(Framerx5lMc6coz,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx5lMc6coz\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"8\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"nOji8Pf2V\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"fvmeAYUUx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"eHonuFw2q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"gPvMFgk9E\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"vpSuVVpHu\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"FJO9g0Vyw\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"J3iaKcGv_\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"1060\",\"framerDisplayContentsDiv\":\"false\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./x5lMc6coz.map","// Generated by Framer (3d3d426)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,ComponentViewportProvider,Container,cx,GeneratedComponentContext,getFonts,getFontsFromSharedStyle,getWhereExpressionFromPathVariables,Image,Link,NotFoundError,PropertyOverrides,ResolveLinks,RichText,useComponentViewport,useCurrentPathVariables,useCustomCursors,useHydratedBreakpointVariants,useIsOnFramerCanvas,useLocaleInfo,useQueryData,useRouteElementId,useRouter,withCSS,withOptimizedAppearEffect,withVariantAppearEffect}from\"framer\";import{LayoutGroup,motion}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import AnimatedCounter from\"https://framerusercontent.com/modules/sIxZFVxIOBdfeANYhkj2/lGu9VayhxpYD2v9lbKlh/AnimatedCounter.js\";import MiscGetFigma from\"#framer/local/canvasComponent/Agbtnjqvv/Agbtnjqvv.js\";import SectionsCTASection from\"#framer/local/canvasComponent/OWBxIwbmj/OWBxIwbmj.js\";import ButtonsFreeRemix from\"#framer/local/canvasComponent/qqiXqx9H_/qqiXqx9H_.js\";import SectionsFooterSection from\"#framer/local/canvasComponent/qZgwx6mWX/qZgwx6mWX.js\";import TeamTeamSocial from\"#framer/local/canvasComponent/vEJeKn0jB/vEJeKn0jB.js\";import TeamSkillBar from\"#framer/local/canvasComponent/x5lMc6coz/x5lMc6coz.js\";import HeaderNavigation from\"#framer/local/canvasComponent/y9DALnaXZ/y9DALnaXZ.js\";import TeamDetails from\"#framer/local/collection/apjtjBcFT/apjtjBcFT.js\";import*as sharedStyle8 from\"#framer/local/css/BKe6fUvGk/BKe6fUvGk.js\";import*as sharedStyle11 from\"#framer/local/css/c3Z_yOl41/c3Z_yOl41.js\";import*as sharedStyle6 from\"#framer/local/css/GnVJ2cRuW/GnVJ2cRuW.js\";import*as sharedStyle5 from\"#framer/local/css/JPaW6PNRB/JPaW6PNRB.js\";import*as sharedStyle4 from\"#framer/local/css/lPCU_fhID/lPCU_fhID.js\";import*as sharedStyle1 from\"#framer/local/css/LXiiPPhOK/LXiiPPhOK.js\";import*as sharedStyle from\"#framer/local/css/mwx4oouTQ/mwx4oouTQ.js\";import*as sharedStyle2 from\"#framer/local/css/olsXqC2nu/olsXqC2nu.js\";import*as sharedStyle9 from\"#framer/local/css/PiJTGYyAz/PiJTGYyAz.js\";import*as sharedStyle3 from\"#framer/local/css/qgiZVInlW/qgiZVInlW.js\";import*as sharedStyle10 from\"#framer/local/css/TeR3vA9R_/TeR3vA9R_.js\";import*as sharedStyle7 from\"#framer/local/css/WSvN_jD8X/WSvN_jD8X.js\";import metadataProvider from\"#framer/local/webPageMetadata/JrRWlVYt9/JrRWlVYt9.js\";const HeaderNavigationFonts=getFonts(HeaderNavigation);const HeaderNavigationWithVariantAppearEffect=withVariantAppearEffect(HeaderNavigation);const MotionDivWithOptimizedAppearEffect=withOptimizedAppearEffect(motion.div);const TeamTeamSocialFonts=getFonts(TeamTeamSocial);const TeamSkillBarFonts=getFonts(TeamSkillBar);const TeamSkillBarWithVariantAppearEffect=withVariantAppearEffect(TeamSkillBar);const AnimatedCounterFonts=getFonts(AnimatedCounter);const SectionsCTASectionFonts=getFonts(SectionsCTASection);const SectionsFooterSectionFonts=getFonts(SectionsFooterSection);const MiscGetFigmaFonts=getFonts(MiscGetFigma);const ButtonsFreeRemixFonts=getFonts(ButtonsFreeRemix);const breakpoints={G2HhZk8SN:\"(min-width: 810px) and (max-width: 1439px)\",wMPNCroFJ:\"(min-width: 1440px)\",yqt1dS4CU:\"(max-width: 809px)\"};const isBrowser=()=>typeof document!==\"undefined\";const serializationHash=\"framer-Hfn2Z\";const variantClassNames={G2HhZk8SN:\"framer-v-inxpbi\",wMPNCroFJ:\"framer-v-1dgpc8q\",yqt1dS4CU:\"framer-v-2wt4ri\"};const transformTemplate1=(_,t)=>`translateX(-50%) ${t}`;const transition1={bounce:0,delay:.1,duration:.6,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:50};const transition2={bounce:0,delay:.2,duration:.6,type:\"spring\"};const animation2={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition2,x:0,y:0};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const equals=(a,b)=>{return typeof a===\"string\"&&typeof b===\"string\"?a.toLowerCase()===b.toLowerCase():a===b;};const negate=value=>{return!value;};const HTMLStyle=({value})=>{const onCanvas=useIsOnFramerCanvas();if(onCanvas)return null;return /*#__PURE__*/_jsx(\"style\",{dangerouslySetInnerHTML:{__html:value},\"data-framer-html-style\":\"\"});};const humanReadableVariantMap={Desktop:\"wMPNCroFJ\",Phone:\"yqt1dS4CU\",Tablet:\"G2HhZk8SN\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"wMPNCroFJ\"};};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 currentPathVariables=useCurrentPathVariables();const[currentRouteData]=useQueryData({from:{alias:\"JrRWlVYt9\",data:TeamDetails,type:\"Collection\"},select:[{collection:\"JrRWlVYt9\",name:\"RNw0R9elz\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"kMc396IMk\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"vcX0uvaQk\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"rm9WUPG2h\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"MdElYXOSu\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"dbALWl3Yj\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"SlqOyI88o\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"FFvirznWX\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"ZqqH8atct\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"s_9Yon_YE\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"k32UOSUVy\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"Fpp5GjvOr\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"Fs7BMm1cr\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"oAGHu2f8W\",type:\"Identifier\"},{collection:\"JrRWlVYt9\",name:\"GEvOkevmR\",type:\"Identifier\"}],where:getWhereExpressionFromPathVariables(currentPathVariables,\"JrRWlVYt9\")});const getFromCurrentRouteData=key=>{if(!currentRouteData)throw new NotFoundError(`No data matches path variables: ${JSON.stringify(currentPathVariables)}`);return currentRouteData[key];};const{style,className,layoutId,variant,RNw0R9elz=getFromCurrentRouteData(\"RNw0R9elz\")??\"\",kMc396IMk=getFromCurrentRouteData(\"kMc396IMk\")??\"\",rm9WUPG2h=getFromCurrentRouteData(\"rm9WUPG2h\")??\"\",MdElYXOSu=getFromCurrentRouteData(\"MdElYXOSu\")??\"\",dbALWl3Yj=getFromCurrentRouteData(\"dbALWl3Yj\")??\"\",SlqOyI88o=getFromCurrentRouteData(\"SlqOyI88o\")??\"\",vcX0uvaQk=getFromCurrentRouteData(\"vcX0uvaQk\"),FFvirznWX=getFromCurrentRouteData(\"FFvirznWX\")??\"\",ZqqH8atct=getFromCurrentRouteData(\"ZqqH8atct\")??\"\",s_9Yon_YE=getFromCurrentRouteData(\"s_9Yon_YE\")??0,Fs7BMm1cr=getFromCurrentRouteData(\"Fs7BMm1cr\")??\"\",k32UOSUVy=getFromCurrentRouteData(\"k32UOSUVy\")??0,oAGHu2f8W=getFromCurrentRouteData(\"oAGHu2f8W\")??\"\",Fpp5GjvOr=getFromCurrentRouteData(\"Fpp5GjvOr\")??0,GEvOkevmR=getFromCurrentRouteData(\"GEvOkevmR\")??\"\",...restProps}=getProps(props);React.useEffect(()=>{const metadata=metadataProvider(currentRouteData,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);}}},[currentRouteData,activeLocale]);React.useInsertionEffect(()=>{const metadata=metadataProvider(currentRouteData,activeLocale);document.title=metadata.title||\"\";if(metadata.viewport){document.querySelector('meta[name=\"viewport\"]')?.setAttribute(\"content\",metadata.viewport);}},[currentRouteData,activeLocale]);const[baseVariant,hydratedBaseVariant]=useHydratedBreakpointVariants(variant,breakpoints,false);const gestureVariant=undefined;const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className,sharedStyle2.className,sharedStyle3.className,sharedStyle4.className,sharedStyle5.className,sharedStyle6.className,sharedStyle7.className,sharedStyle8.className,sharedStyle9.className,sharedStyle10.className,sharedStyle11.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const ref1=React.useRef(null);const elementId=useRouteElementId(\"GNUxkngvq\");const router=useRouter();const visible=negate(equals(s_9Yon_YE,0));const visible1=negate(equals(k32UOSUVy,0));const visible2=negate(equals(Fpp5GjvOr,0));useCustomCursors({});return /*#__PURE__*/_jsx(GeneratedComponentContext.Provider,{value:{primaryVariantId:\"wMPNCroFJ\",variantClassNames},children:/*#__PURE__*/_jsxs(LayoutGroup,{id:layoutId??defaultLayoutId,children:[/*#__PURE__*/_jsx(HTMLStyle,{value:\"html body { background: var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, rgb(9, 9, 15)); }\"}),/*#__PURE__*/_jsxs(motion.div,{...restProps,className:cx(scopingClassNames,\"framer-1dgpc8q\",className),ref:refBinding,style:{...style},children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{height:90,width:\"100vw\",y:0,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9dmy19-container\",layoutScroll:true,nodeId:\"UjI2Ir2G4\",rendersWithMotion:true,scopeId:\"JrRWlVYt9\",transformTemplate:transformTemplate1,children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{__framer__targets:[{offset:100,ref:ref1,target:\"hjGVF3uKX\"}],variant:\"FrCA6W333\"},yqt1dS4CU:{__framer__targets:[{offset:100,ref:ref1,target:\"WqQSO6GXy\"}],variant:\"q17ImrfGK\"}},children:/*#__PURE__*/_jsx(HeaderNavigationWithVariantAppearEffect,{__framer__animateOnce:false,__framer__targets:[{offset:100,ref:ref1,target:\"Oo5858qNm\"}],__framer__threshold:0,__framer__variantAppearEffectEnabled:true,height:\"100%\",id:\"UjI2Ir2G4\",layoutId:\"UjI2Ir2G4\",style:{width:\"100%\"},variant:\"AYGZ5gx4L\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"section\",{className:\"framer-1dib4c3\",\"data-framer-name\":\"Hero Section\",children:[/*#__PURE__*/_jsx(Image,{background:{alt:\"BG Pattern\",fit:\"fill\",pixelHeight:648,pixelWidth:1708,sizes:componentViewport?.width||\"100vw\",src:\"https://framerusercontent.com/images/d6DuJK4lSNgmOT5fXrqehovDu98.svg\",srcSet:\"https://framerusercontent.com/images/d6DuJK4lSNgmOT5fXrqehovDu98.svg?scale-down-to=512 512w,https://framerusercontent.com/images/d6DuJK4lSNgmOT5fXrqehovDu98.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/d6DuJK4lSNgmOT5fXrqehovDu98.svg 1708w\"},className:\"framer-10yh0o1\",\"data-framer-name\":\"BG Pattern\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:943,pixelWidth:1164,src:\"https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg\",srcSet:\"https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg 1164w\"},className:\"framer-wom4fb\",\"data-framer-name\":\"Shadow 01\"}),/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:943,pixelWidth:1164,src:\"https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg\",srcSet:\"https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg?scale-down-to=512 512w,https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg?scale-down-to=1024 1024w,https://framerusercontent.com/images/x6aTsfjkvgmR0ZjGoMJ315Kz8.svg 1164w\"},className:\"framer-u0m6rv\",\"data-framer-name\":\"Shadow 02\"}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-v5eg3n\",\"data-framer-name\":\"Container\",id:elementId,ref:ref1,children:/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation,className:\"framer-1xsiq7n\",\"data-framer-appear-id\":\"1xsiq7n\",\"data-framer-name\":\"Heading\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h2\",{className:\"framer-styles-preset-1x2lvsl\",\"data-styles-preset\":\"mwx4oouTQ\",style:{\"--framer-text-alignment\":\"center\",\"--framer-text-color\":\"var(--token-334132c0-2be2-470f-a75b-2f98dddca96a, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-5mskmf\",fonts:[\"Inter\"],text:RNw0R9elz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-brppbf\",\"data-framer-name\":\"Sub Links\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"tKuFCkvLO\",openInNewTab:false,scopeId:\"JrRWlVYt9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gm4i2b\",\"data-styles-preset\":\"olsXqC2nu\",children:\"Home\"})})})}),className:\"framer-1ql7oj0\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:\"/\"})}),className:\"framer-6icyxs\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"V9AFod64r\"},motionChild:true,nodeId:\"acSRO7vOv\",openInNewTab:false,scopeId:\"JrRWlVYt9\",smoothScroll:false,children:/*#__PURE__*/_jsx(motion.a,{className:\"framer-styles-preset-gm4i2b\",\"data-styles-preset\":\"olsXqC2nu\",children:\"Team\"})})})}),className:\"framer-1dqxbcu\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:\"/\"})}),className:\"framer-1rodctw\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"Content\"})}),className:\"framer-5pm1xr\",fonts:[\"Inter\"],text:RNw0R9elz,verticalAlignment:\"top\",withExternalLayout:true})]})]})})]}),/*#__PURE__*/_jsx(\"section\",{className:\"framer-1jr8chr\",\"data-framer-name\":\"Team Details Section\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1tdowu4\",\"data-framer-name\":\"Container\",children:[/*#__PURE__*/_jsxs(MotionDivWithOptimizedAppearEffect,{animate:animation2,className:\"framer-167x52m\",\"data-framer-appear-id\":\"167x52m\",\"data-framer-name\":\"Team Details Top\",initial:animation1,optimized:true,children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1qq5rd0\",\"data-framer-name\":\"Details\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-nzfy55\",\"data-framer-name\":\"Content Left\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-oows1x\",\"data-framer-name\":\"Name & Designation\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12abuqk\",\"data-styles-preset\":\"qgiZVInlW\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"Content\"})}),className:\"framer-1woh66r\",fonts:[\"Inter\"],text:RNw0R9elz,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:\"Content\"})}),className:\"framer-s83ijb\",fonts:[\"Inter\"],text:kMc396IMk,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-p2zz8i\",\"data-framer-name\":\"Content\",children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:rm9WUPG2h,className:\"framer-53pv2i\",fonts:[\"Inter\"],stylesPresetsClassNames:{a:\"framer-styles-preset-gm4i2b\",blockquote:\"framer-styles-preset-1lu7ep4\",h1:\"framer-styles-preset-1xnh4p9\",h2:\"framer-styles-preset-1x2lvsl\",h3:\"framer-styles-preset-12abuqk\",h4:\"framer-styles-preset-xrb74y\",h5:\"framer-styles-preset-dpj62f\",h6:\"framer-styles-preset-4oseaq\",img:\"framer-styles-preset-1t43yd1\",p:\"framer-styles-preset-11ni3nk\"},verticalAlignment:\"top\",withExternalLayout:true})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-71ishm\",\"data-border\":true,\"data-framer-name\":\"Social Wrapper\",children:[/*#__PURE__*/_jsx(\"div\",{className:\"framer-14khg9k\",\"data-framer-name\":\"Single Social\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:MdElYXOSu,implicitPathVariables:undefined},{href:MdElYXOSu,implicitPathVariables:undefined},{href:MdElYXOSu,implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-14lsc1s-container\",nodeId:\"J4d87iW36\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{HSRE67XOC:resolvedLinks[1]},yqt1dS4CU:{HSRE67XOC:resolvedLinks[2]}},children:/*#__PURE__*/_jsx(TeamTeamSocial,{height:\"100%\",HSRE67XOC:resolvedLinks[0],id:\"J4d87iW36\",layoutId:\"J4d87iW36\",variant:\"uxWwKiGPn\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1p0uytj\",\"data-border\":true,\"data-framer-name\":\"Single Social\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:dbALWl3Yj,implicitPathVariables:undefined},{href:dbALWl3Yj,implicitPathVariables:undefined},{href:dbALWl3Yj,implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-pas7ht-container\",nodeId:\"wlBh0NsSt\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{HSRE67XOC:resolvedLinks1[1]},yqt1dS4CU:{HSRE67XOC:resolvedLinks1[2]}},children:/*#__PURE__*/_jsx(TeamTeamSocial,{height:\"100%\",HSRE67XOC:resolvedLinks1[0],id:\"wlBh0NsSt\",layoutId:\"wlBh0NsSt\",variant:\"l2QM1cXGs\",width:\"100%\"})})})})})}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1jgs8l0\",\"data-framer-name\":\"Single Social\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:SlqOyI88o,implicitPathVariables:undefined},{href:SlqOyI88o,implicitPathVariables:undefined},{href:SlqOyI88o,implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:32,children:/*#__PURE__*/_jsx(Container,{className:\"framer-u1dtxn-container\",nodeId:\"YE8iI5eEI\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{HSRE67XOC:resolvedLinks2[1]},yqt1dS4CU:{HSRE67XOC:resolvedLinks2[2]}},children:/*#__PURE__*/_jsx(TeamTeamSocial,{height:\"100%\",HSRE67XOC:resolvedLinks2[0],id:\"YE8iI5eEI\",layoutId:\"YE8iI5eEI\",variant:\"Jn3mBwb27\",width:\"100%\"})})})})})})]})]}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{background:{alt:\"\",fit:\"fill\",pixelHeight:1659,pixelWidth:1717,sizes:`min(${componentViewport?.width||\"100vw\"} - 60px, 1170px)`,...toResponsiveImage(vcX0uvaQk)}},yqt1dS4CU:{background:{alt:\"\",fit:\"fill\",pixelHeight:1659,pixelWidth:1717,sizes:`min(${componentViewport?.width||\"100vw\"} - 40px, 1170px)`,...toResponsiveImage(vcX0uvaQk)}}},children:/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",pixelHeight:1659,pixelWidth:1717,sizes:`max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px) / 2 - 10px, 1px)`,...toResponsiveImage(vcX0uvaQk)},className:\"framer-18cz9ul\",\"data-framer-name\":\"Author Image\"})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-wb52el\",\"data-framer-name\":\"Qalifications\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-h2kgrd\",\"data-border\":true,\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12abuqk\",\"data-styles-preset\":\"qgiZVInlW\",style:{\"--framer-text-color\":\"var(--token-334132c0-2be2-470f-a75b-2f98dddca96a, rgb(255, 255, 255))\"},children:\"Qualifications\"})}),className:\"framer-pciags\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-180w2aa\",\"data-framer-name\":\"Qualifications Wrapper\",children:[/*#__PURE__*/_jsxs(\"div\",{className:\"framer-hu51u5\",\"data-framer-name\":\"Single Qualification\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-xrb74y\",\"data-styles-preset\":\"JPaW6PNRB\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"Academic  :\"})}),className:\"framer-1txqv8v\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:\"Content\"})}),className:\"framer-1wf8u81\",fonts:[\"Inter\"],text:FFvirznWX,verticalAlignment:\"top\",withExternalLayout:true})]}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-pn0ezr\",\"data-framer-name\":\"Single Qualification\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h4\",{className:\"framer-styles-preset-xrb74y\",\"data-styles-preset\":\"JPaW6PNRB\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"Experience  :\"})}),className:\"framer-iq86wm\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-1gt529f\",\"data-styles-preset\":\"LXiiPPhOK\",style:{\"--framer-text-alignment\":\"left\",\"--framer-text-color\":\"var(--token-49bcef3f-e873-4b1c-b34d-520e3631025a, rgb(235, 235, 235))\"},children:\"Content\"})}),className:\"framer-195pjv2\",fonts:[\"Inter\"],text:ZqqH8atct,verticalAlignment:\"top\",withExternalLayout:true})]})]})]})})]}),/*#__PURE__*/_jsx(\"div\",{className:\"framer-1nouc2y\",\"data-framer-name\":\"Skills\",children:/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1yofdb1\",\"data-framer-name\":\"Content Wrapper\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"h3\",{className:\"framer-styles-preset-12abuqk\",\"data-styles-preset\":\"qgiZVInlW\",style:{\"--framer-text-color\":\"var(--token-334132c0-2be2-470f-a75b-2f98dddca96a, rgb(255, 255, 255))\"},children:\"Skills\"})}),className:\"framer-1knwbwt\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1se1mph\",\"data-framer-name\":\"Skills Wrapper\",children:[visible&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-5dybq5\",\"data-framer-name\":\"Single Skill\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eh1axi\",\"data-styles-preset\":\"c3Z_yOl41\",style:{\"--framer-text-color\":\"var(--token-334132c0-2be2-470f-a75b-2f98dddca96a, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-1qr3r4\",fonts:[\"Inter\"],text:Fs7BMm1cr,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px) - 34px) / 0, 1px) - 40px)`},yqt1dS4CU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1170px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:8,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px) - 38px) / 0, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-10ls8pe-container\",nodeId:\"GmES6UUwq\",rendersWithMotion:true,scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(TeamSkillBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"AWeOUiZtT\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"fvmeAYUUx\",height:\"100%\",id:\"GmES6UUwq\",layoutId:\"GmES6UUwq\",style:{width:\"100%\"},variant:\"AWeOUiZtT\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-sickl8\",\"data-framer-name\":\"Counter Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hwfh9-container\",\"data-framer-name\":\"Counter\",isAuthoredByUser:true,isModuleExternal:true,name:\"Counter\",nodeId:\"U2pOUIhB9\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\",decimalPlaces:0,decimalSeparator:\".\",duration:2.5,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.6em\"},from:0,height:\"100%\",id:\"U2pOUIhB9\",layoutId:\"U2pOUIhB9\",name:\"Counter\",once:true,playOnLoad:true,to:s_9Yon_YE,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eh1axi\",\"data-styles-preset\":\"c3Z_yOl41\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"%\"})}),className:\"framer-1v7n01b\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible1&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-1cuoaer\",\"data-framer-name\":\"Single Skill\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eh1axi\",\"data-styles-preset\":\"c3Z_yOl41\",style:{\"--framer-text-color\":\"var(--token-334132c0-2be2-470f-a75b-2f98dddca96a, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-1hpcyye\",fonts:[\"Inter\"],text:oAGHu2f8W,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px) - 34px) / 0, 1px) - 40px)`},yqt1dS4CU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1170px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:8,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px) - 38px) / 0, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-5vryed-container\",nodeId:\"iJe6Xy8fo\",rendersWithMotion:true,scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(TeamSkillBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"AWeOUiZtT\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"gPvMFgk9E\",height:\"100%\",id:\"iJe6Xy8fo\",layoutId:\"iJe6Xy8fo\",style:{width:\"100%\"},variant:\"AWeOUiZtT\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-g5xxic\",\"data-framer-name\":\"Counter Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-1beko10-container\",\"data-framer-name\":\"Counter\",isAuthoredByUser:true,isModuleExternal:true,name:\"Counter\",nodeId:\"z1JCgBTvi\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\",decimalPlaces:0,decimalSeparator:\".\",duration:2.5,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.6em\"},from:0,height:\"100%\",id:\"z1JCgBTvi\",layoutId:\"z1JCgBTvi\",name:\"Counter\",once:true,playOnLoad:true,to:k32UOSUVy,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eh1axi\",\"data-styles-preset\":\"c3Z_yOl41\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"%\"})}),className:\"framer-10ofhps\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]}),visible2&&/*#__PURE__*/_jsxs(\"div\",{className:\"framer-4yijs6\",\"data-framer-name\":\"Single Skill\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eh1axi\",\"data-styles-preset\":\"c3Z_yOl41\",style:{\"--framer-text-color\":\"var(--token-334132c0-2be2-470f-a75b-2f98dddca96a, rgb(255, 255, 255))\"},children:\"Content\"})}),className:\"framer-1w8p1gj\",fonts:[\"Inter\"],text:GEvOkevmR,verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px) - 34px) / 0, 1px) - 40px)`},yqt1dS4CU:{width:`calc(min(${componentViewport?.width||\"100vw\"} - 40px, 1170px) - 80px)`}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:8,width:`calc(max((max(min(${componentViewport?.width||\"100vw\"} - 60px, 1170px), 1px) - 38px) / 0, 1px) - 40px)`,children:/*#__PURE__*/_jsx(Container,{className:\"framer-9a041c-container\",nodeId:\"XcjdPcaSL\",rendersWithMotion:true,scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(TeamSkillBarWithVariantAppearEffect,{__framer__animateOnce:false,__framer__obscuredVariantId:\"AWeOUiZtT\",__framer__threshold:.5,__framer__variantAppearEffectEnabled:true,__framer__visibleVariantId:\"nOji8Pf2V\",height:\"100%\",id:\"XcjdPcaSL\",layoutId:\"XcjdPcaSL\",style:{width:\"100%\"},variant:\"AWeOUiZtT\",width:\"100%\"})})})}),/*#__PURE__*/_jsxs(\"div\",{className:\"framer-u931za\",\"data-framer-name\":\"Counter Wrapper\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(Container,{className:\"framer-fg43fc-container\",\"data-framer-name\":\"Counter\",isAuthoredByUser:true,isModuleExternal:true,name:\"Counter\",nodeId:\"WxK2_497v\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(AnimatedCounter,{animationType:\"smooth\",color:\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\",decimalPlaces:0,decimalSeparator:\".\",duration:2.5,font:{fontFamily:'\"Inter\", \"Inter Placeholder\", sans-serif',fontSize:\"16px\",fontStyle:\"normal\",fontWeight:500,letterSpacing:\"0em\",lineHeight:\"1.6em\"},from:0,height:\"100%\",id:\"WxK2_497v\",layoutId:\"WxK2_497v\",name:\"Counter\",once:true,playOnLoad:true,to:Fpp5GjvOr,width:\"100%\"})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(\"p\",{className:\"framer-styles-preset-eh1axi\",\"data-styles-preset\":\"c3Z_yOl41\",style:{\"--framer-text-color\":\"var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, rgb(205, 255, 9))\"},children:\"%\"})}),className:\"framer-1d4tiwl\",fonts:[\"Inter\"],verticalAlignment:\"top\",withExternalLayout:true})]})]})]})]})})]})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:282,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1hqwfl0-container\",nodeId:\"ku5z_DfdX\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{variant:\"iuerdOUCA\"},yqt1dS4CU:{variant:\"XqAY1vF2P\"}},children:/*#__PURE__*/_jsx(SectionsCTASection,{height:\"100%\",id:\"ku5z_DfdX\",layoutId:\"ku5z_DfdX\",style:{width:\"100%\"},variant:\"bME12X0zK\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:411,width:componentViewport?.width||\"100vw\",children:/*#__PURE__*/_jsx(Container,{className:\"framer-1i27vpw-container\",nodeId:\"OiIlq5agE\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{G2HhZk8SN:{variant:\"DfdJlSx2V\"},yqt1dS4CU:{variant:\"ITYsFtUVR\"}},children:/*#__PURE__*/_jsx(SectionsFooterSection,{height:\"100%\",id:\"OiIlq5agE\",layoutId:\"OiIlq5agE\",style:{width:\"100%\"},variant:\"TLVFtpL3v\",width:\"100%\"})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqt1dS4CU:{width:`calc(${componentViewport?.width||\"100vw\"} - 40px)`,y:830}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:100,y:880,children:/*#__PURE__*/_jsx(Container,{className:\"framer-nobwb0-container\",layoutScroll:true,nodeId:\"MOur_gwx6\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqt1dS4CU:{style:{width:\"100%\"},variant:\"kUihZpX1O\"}},children:/*#__PURE__*/_jsx(MiscGetFigma,{height:\"100%\",id:\"MOur_gwx6\",layoutId:\"MOur_gwx6\",variant:\"QK6Leq71E\",width:\"100%\"})})})})}),/*#__PURE__*/_jsx(PropertyOverrides,{breakpoint:baseVariant,overrides:{yqt1dS4CU:{y:944}},children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,width:\"142px\",y:900,children:/*#__PURE__*/_jsx(Container,{className:\"framer-8575vw-container\",layoutScroll:true,nodeId:\"leTyrf4Zq\",scopeId:\"JrRWlVYt9\",children:/*#__PURE__*/_jsx(ButtonsFreeRemix,{height:\"100%\",id:\"leTyrf4Zq\",layoutId:\"leTyrf4Zq\",style:{height:\"100%\",width:\"100%\"},width:\"100%\"})})})})]}),/*#__PURE__*/_jsx(\"div\",{id:\"overlay\"})]})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-Hfn2Z.framer-1r6o0ka, .framer-Hfn2Z .framer-1r6o0ka { display: block; }\",\".framer-Hfn2Z.framer-1dgpc8q { align-content: center; align-items: center; background-color: var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, #09090f); 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-Hfn2Z .framer-9dmy19-container { flex: none; height: auto; left: 50%; position: fixed; top: 0px; transform: translateX(-50%); width: 100%; z-index: 9; }\",\".framer-Hfn2Z .framer-1dib4c3 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 180px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-10yh0o1 { -webkit-user-select: none; bottom: 0px; flex: none; left: 0px; position: absolute; right: 0px; top: 0px; user-select: none; }\",\".framer-Hfn2Z .framer-wom4fb { -webkit-user-select: none; aspect-ratio: 1.2074688796680497 / 1; bottom: -420px; flex: none; position: absolute; right: -460px; top: -138px; user-select: none; width: var(--framer-aspect-ratio-supported, 1180px); }\",\".framer-Hfn2Z .framer-u0m6rv { -webkit-user-select: none; aspect-ratio: 1.2074688796680497 / 1; bottom: -375px; flex: none; left: -440px; position: absolute; top: -183px; user-select: none; width: var(--framer-aspect-ratio-supported, 1180px); }\",\".framer-Hfn2Z .framer-v5eg3n { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 0px; position: relative; scroll-margin-top: 100px; width: 100%; }\",\".framer-Hfn2Z .framer-1xsiq7n { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Hfn2Z .framer-5mskmf { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-Hfn2Z .framer-brppbf { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 5px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-1ql7oj0, .framer-Hfn2Z .framer-1dqxbcu { --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Hfn2Z .framer-6icyxs, .framer-Hfn2Z .framer-1rodctw, .framer-Hfn2Z .framer-5pm1xr { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; --framer-paragraph-spacing: 0px; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Hfn2Z .framer-1jr8chr { align-content: center; align-items: center; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; overflow: hidden; padding: 120px 30px 120px 30px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-1tdowu4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 56px; height: min-content; justify-content: center; max-width: 1170px; overflow: visible; padding: 0px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-167x52m { align-content: center; align-items: center; background-color: var(--token-d382d4db-a012-4919-91d6-5f841b5280d1, #18181d); 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: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; will-change: var(--framer-will-change-effect-override, transform); }\",\".framer-Hfn2Z .framer-1qq5rd0, .framer-Hfn2Z .framer-wb52el, .framer-Hfn2Z .framer-1nouc2y { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-nzfy55 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 40px 40px; position: relative; width: 50%; }\",\".framer-Hfn2Z .framer-oows1x, .framer-Hfn2Z .framer-p2zz8i, .framer-Hfn2Z .framer-180w2aa { 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: 100%; }\",\".framer-Hfn2Z .framer-1woh66r, .framer-Hfn2Z .framer-s83ijb, .framer-Hfn2Z .framer-53pv2i, .framer-Hfn2Z .framer-pciags, .framer-Hfn2Z .framer-1knwbwt, .framer-Hfn2Z .framer-1qr3r4, .framer-Hfn2Z .framer-1hpcyye, .framer-Hfn2Z .framer-1w8p1gj { --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-Hfn2Z .framer-71ishm { --border-bottom-width: 1px; --border-color: var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, #cdff09); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 1px; align-content: center; align-items: center; border-bottom-left-radius: 6px; border-bottom-right-radius: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hfn2Z .framer-14khg9k, .framer-Hfn2Z .framer-1jgs8l0 { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Hfn2Z .framer-14lsc1s-container, .framer-Hfn2Z .framer-pas7ht-container, .framer-Hfn2Z .framer-u1dtxn-container, .framer-Hfn2Z .framer-1hwfh9-container, .framer-Hfn2Z .framer-1beko10-container, .framer-Hfn2Z .framer-fg43fc-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-Hfn2Z .framer-1p0uytj { --border-bottom-width: 0px; --border-color: var(--token-3e733acb-e530-41a2-a48f-2c42f2bd0427, #cdff09); --border-left-width: 1px; --border-right-width: 1px; --border-style: solid; --border-top-width: 0px; align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-Hfn2Z .framer-18cz9ul { align-content: center; align-items: center; aspect-ratio: 1.0454545454545454 / 1; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: var(--framer-aspect-ratio-supported, 191px); justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; }\",\".framer-Hfn2Z .framer-h2kgrd { --border-bottom-width: 0px; --border-color: var(--token-c6c5f38d-5da9-4fe1-a568-8aac69964074, #09090f); --border-left-width: 0px; --border-right-width: 0px; --border-style: solid; --border-top-width: 1px; align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 40px 40px; position: relative; width: 1px; }\",\".framer-Hfn2Z .framer-hu51u5, .framer-Hfn2Z .framer-pn0ezr { 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-Hfn2Z .framer-1txqv8v, .framer-Hfn2Z .framer-iq86wm, .framer-Hfn2Z .framer-1v7n01b, .framer-Hfn2Z .framer-10ofhps, .framer-Hfn2Z .framer-1d4tiwl { --framer-link-text-color: #0099ff; --framer-link-text-decoration: underline; flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-Hfn2Z .framer-1wf8u81, .framer-Hfn2Z .framer-195pjv2 { --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-Hfn2Z .framer-1yofdb1 { align-content: flex-start; align-items: flex-start; background-color: var(--token-d382d4db-a012-4919-91d6-5f841b5280d1, #18181d); border-bottom-left-radius: 24px; border-bottom-right-radius: 24px; border-top-left-radius: 24px; border-top-right-radius: 24px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: center; overflow: hidden; padding: 40px 30px 40px 40px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hfn2Z .framer-1se1mph { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 32px; height: min-content; justify-content: center; min-height: 19px; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-5dybq5, .framer-Hfn2Z .framer-1cuoaer, .framer-Hfn2Z .framer-4yijs6 { align-content: center; align-items: center; background-color: rgba(255, 255, 255, 0.05); border-bottom-left-radius: 10px; border-bottom-right-radius: 10px; border-top-left-radius: 10px; border-top-right-radius: 10px; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 12px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 20px 24px 20px; position: relative; width: 1px; will-change: var(--framer-will-change-override, transform); }\",\".framer-Hfn2Z .framer-10ls8pe-container, .framer-Hfn2Z .framer-5vryed-container, .framer-Hfn2Z .framer-9a041c-container, .framer-Hfn2Z .framer-1hqwfl0-container, .framer-Hfn2Z .framer-1i27vpw-container { flex: none; height: auto; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-sickl8, .framer-Hfn2Z .framer-g5xxic, .framer-Hfn2Z .framer-u931za { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: 100%; }\",\".framer-Hfn2Z .framer-nobwb0-container { bottom: 20px; flex: none; height: auto; left: 20px; position: fixed; width: auto; z-index: 9; }\",\".framer-Hfn2Z .framer-8575vw-container { bottom: 64px; flex: none; height: 36px; position: fixed; right: 20px; width: 142px; z-index: 9; }\",...sharedStyle.css,...sharedStyle1.css,...sharedStyle2.css,...sharedStyle3.css,...sharedStyle4.css,...sharedStyle5.css,...sharedStyle6.css,...sharedStyle7.css,...sharedStyle8.css,...sharedStyle9.css,...sharedStyle10.css,...sharedStyle11.css,'.framer-Hfn2Z[data-border=\"true\"]::after, .framer-Hfn2Z [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }',\"@media (min-width: 810px) and (max-width: 1439px) { .framer-Hfn2Z.framer-1dgpc8q { width: 810px; } .framer-Hfn2Z .framer-1dib4c3 { padding: 140px 30px 80px 30px; } .framer-Hfn2Z .framer-wom4fb { bottom: -169px; right: -199px; width: var(--framer-aspect-ratio-supported, 520px); } .framer-Hfn2Z .framer-u0m6rv { bottom: -173px; left: -203px; width: var(--framer-aspect-ratio-supported, 633px); } .framer-Hfn2Z .framer-v5eg3n { gap: 50px; } .framer-Hfn2Z .framer-1jr8chr { padding: 80px 30px 80px 30px; } .framer-Hfn2Z .framer-1tdowu4 { gap: 40px; } .framer-Hfn2Z .framer-1qq5rd0 { flex-direction: column; gap: 0px; } .framer-Hfn2Z .framer-nzfy55 { order: 1; padding: 40px 30px 40px 20px; width: 100%; } .framer-Hfn2Z .framer-53pv2i { order: 0; } .framer-Hfn2Z .framer-18cz9ul { flex: none; order: 0; width: 100%; } .framer-Hfn2Z .framer-h2kgrd { padding: 40px 30px 40px 20px; } .framer-Hfn2Z .framer-1yofdb1 { padding: 20px 30px 40px 20px; } .framer-Hfn2Z .framer-1se1mph { gap: 16px; }}\",\"@media (max-width: 809px) { .framer-Hfn2Z.framer-1dgpc8q { width: 390px; } .framer-Hfn2Z .framer-1dib4c3 { padding: 105px 20px 60px 20px; } .framer-Hfn2Z .framer-wom4fb { bottom: -151px; right: -220px; width: var(--framer-aspect-ratio-supported, 490px); } .framer-Hfn2Z .framer-u0m6rv { bottom: -86px; left: -159px; width: var(--framer-aspect-ratio-supported, 403px); } .framer-Hfn2Z .framer-v5eg3n { gap: 30px; } .framer-Hfn2Z .framer-1xsiq7n { gap: 16px; } .framer-Hfn2Z .framer-1jr8chr { padding: 60px 20px 60px 20px; } .framer-Hfn2Z .framer-1tdowu4 { gap: 32px; } .framer-Hfn2Z .framer-1qq5rd0, .framer-Hfn2Z .framer-wb52el, .framer-Hfn2Z .framer-1nouc2y { flex-direction: column; gap: 0px; } .framer-Hfn2Z .framer-nzfy55 { order: 1; padding: 30px 20px 30px 20px; width: 100%; } .framer-Hfn2Z .framer-18cz9ul { flex: none; order: 0; width: 100%; } .framer-Hfn2Z .framer-h2kgrd, .framer-Hfn2Z .framer-1yofdb1 { flex: none; padding: 30px 20px 30px 20px; width: 100%; } .framer-Hfn2Z .framer-hu51u5, .framer-Hfn2Z .framer-pn0ezr { flex-direction: column; gap: 10px; } .framer-Hfn2Z .framer-1wf8u81, .framer-Hfn2Z .framer-195pjv2 { flex: none; width: 100%; } .framer-Hfn2Z .framer-1se1mph { flex-direction: column; gap: 24px; } .framer-Hfn2Z .framer-5dybq5, .framer-Hfn2Z .framer-1cuoaer, .framer-Hfn2Z .framer-4yijs6 { align-content: flex-start; align-items: flex-start; flex: none; gap: 10px; width: 100%; } .framer-Hfn2Z .framer-nobwb0-container { bottom: 70px; right: 20px; width: unset; } .framer-Hfn2Z .framer-8575vw-container { bottom: 20px; left: 20px; right: unset; }}\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 2741\n * @framerIntrinsicWidth 1440\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"G2HhZk8SN\":{\"layout\":[\"fixed\",\"auto\"]},\"yqt1dS4CU\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n * @framerAcceptsLayoutTemplate true\n * @framerScrollSections {\"GNUxkngvq\":{\"pattern\":\":GNUxkngvq\",\"name\":\"hero\"}}\n * @framerResponsiveScreen\n */const FramerJrRWlVYt9=withCSS(Component,css,\"framer-Hfn2Z\");export default FramerJrRWlVYt9;FramerJrRWlVYt9.displayName=\"Teams\";FramerJrRWlVYt9.defaultProps={height:2741,width:1440};addFonts(FramerJrRWlVYt9,[{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/5A3Ce6C9YYmCjpQx9M4inSaKU.woff2\",weight:\"500\"},{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/Qx95Xyt0Ka3SGhinnbXIGpEIyP4.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/6mJuEAguuIuMog10gGvH5d3cl8.woff2\",weight:\"500\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/xYYWaj7wCU5zSQH0eXvSaS19wo.woff2\",weight:\"500\"},{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/otTaNuNpVK4RbdlT7zDDdKvQBA.woff2\",weight:\"500\"},{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/d3tHnaQIAeqiE5hGcRw4mmgWYU.woff2\",weight:\"500\"},{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/DolVirEGb34pEXEp8t8FQBSK4.woff2\",weight:\"500\"}]},...HeaderNavigationFonts,...TeamTeamSocialFonts,...TeamSkillBarFonts,...AnimatedCounterFonts,...SectionsCTASectionFonts,...SectionsFooterSectionFonts,...MiscGetFigmaFonts,...ButtonsFreeRemixFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts),...getFontsFromSharedStyle(sharedStyle2.fonts),...getFontsFromSharedStyle(sharedStyle3.fonts),...getFontsFromSharedStyle(sharedStyle4.fonts),...getFontsFromSharedStyle(sharedStyle5.fonts),...getFontsFromSharedStyle(sharedStyle6.fonts),...getFontsFromSharedStyle(sharedStyle7.fonts),...getFontsFromSharedStyle(sharedStyle8.fonts),...getFontsFromSharedStyle(sharedStyle9.fonts),...getFontsFromSharedStyle(sharedStyle10.fonts),...getFontsFromSharedStyle(sharedStyle11.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerJrRWlVYt9\",\"slots\":[],\"annotations\":{\"framerIntrinsicWidth\":\"1440\",\"framerAcceptsLayoutTemplate\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"G2HhZk8SN\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"yqt1dS4CU\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicHeight\":\"2741\",\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerScrollSections\":\"{\\\"GNUxkngvq\\\":{\\\"pattern\\\":\\\":GNUxkngvq\\\",\\\"name\\\":\\\"hero\\\"}}\",\"framerResponsiveScreen\":\"\",\"framerDisplayContentsDiv\":\"false\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],"mappings":"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"}