{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/SWGekQcuX3bPAbidEFBM/8dgifCZ4MoJb2kNgnuxP/Test.js", "ssg:https://framerusercontent.com/modules/MohglnPUCVdsmU9UExA9/kLtulXDqyDKoSjQudjsE/TdvnOrbmK.js", "ssg:https://framerusercontent.com/modules/Y3feIpU3gckEjmwirL39/g5kLJoH8RjJLV84WhYCi/D0psE4pI8-0.js", "ssg:https://framerusercontent.com/modules/Y3feIpU3gckEjmwirL39/g5kLJoH8RjJLV84WhYCi/D0psE4pI8.js", "ssg:https://framerusercontent.com/modules/65KQMb3zwbqf7vycvpCP/4OUQXR7VscVjMTQxPRCn/EaUuuoTXz-0.js", "ssg:https://framerusercontent.com/modules/65KQMb3zwbqf7vycvpCP/4OUQXR7VscVjMTQxPRCn/EaUuuoTXz.js", "ssg:https://framerusercontent.com/modules/cWV0LlV4bO001hkHaxq5/Lp2ieEb7e6Troch7n6J7/w5HfsgO_Y.js", "ssg:https://framerusercontent.com/modules/v7D9sSfMv8cazYNFzFtn/klEzAxv0XtbVCi6zyq89/EaUuuoTXz.js", "ssg:https://framerusercontent.com/modules/ks8NVaKJYknUDtLf48nX/stm27qqBqX57QXtNPLeX/myp8bZJwQ-0.js", "ssg:https://framerusercontent.com/modules/ks8NVaKJYknUDtLf48nX/stm27qqBqX57QXtNPLeX/myp8bZJwQ.js", "ssg:https://framerusercontent.com/modules/Iu44109qjBVnWpMyRDWm/bGwAGldrBcOAKnhdSBzj/myp8bZJwQ.js", "ssg:https://framerusercontent.com/modules/TDI5cPMmogMDxy01Kqpo/utGImq8jhNo0qk27IymO/ohNDI4elP-0.js", "ssg:https://framerusercontent.com/modules/TDI5cPMmogMDxy01Kqpo/utGImq8jhNo0qk27IymO/ohNDI4elP.js", "ssg:https://framerusercontent.com/modules/niBwcwPluTjmdpsMkwiZ/kEESNih6Y0C3U9fv5FHt/ohNDI4elP.js", "ssg:https://framerusercontent.com/modules/1mm4Muxuynt8dkl35oSd/s0SoeUHuZ8cAnBwsI1K6/W3gSQ8sIl-0.js", "ssg:https://framerusercontent.com/modules/1mm4Muxuynt8dkl35oSd/s0SoeUHuZ8cAnBwsI1K6/W3gSQ8sIl.js", "ssg:https://framerusercontent.com/modules/IZeVp5uHFaTBOrdFTcyz/uUbNWMGNKuTX24K87Pna/W3gSQ8sIl.js", "ssg:https://framerusercontent.com/modules/h7uXxB8qbaz6eeWdF4Lb/9Q40WlcjWqTxoFeywe7X/Dfuh2_KfO.js", "ssg:https://framerusercontent.com/modules/CGQwr5pJVKve4UvfgVeu/ghWh6hjh7I244jLpGc3W/UKbHmsHnx.js", "ssg:https://framerusercontent.com/modules/Nq0E1EngyqBKhIKrbOsn/U9yeE1gmBWXgUQdTkCD5/xP1En_j9o.js", "ssg:https://framerusercontent.com/modules/wYXrcxlw9yXf64zC9JPC/iZtKK9tE9GZGCaiogiej/D0psE4pI8.js"],
  "sourcesContent": ["import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import{addPropertyControls,ControlType}from\"framer\";export function TextClip(props){const{text,lineCount,textStyle,letterMode,maxCharacters}=props;let lineClampStyle={};if(letterMode){lineClampStyle={display:\"block\",overflow:\"hidden\",textOverflow:\"ellipsis\",whiteSpace:\"nowrap\",width:`calc(${maxCharacters} * 0.6ch + 1.5ch)`};}else{lineClampStyle={display:\"-webkit-box\",WebkitLineClamp:lineCount,WebkitBoxOrient:\"vertical\",overflow:\"hidden\",textOverflow:\"ellipsis\",textAlign:textStyle.textAlign};}const transformStyle={textTransform:textStyle.textTransform};const containerStyle={display:\"flex\",justifyContent:getJustifyContent(textStyle.textAlign),alignItems:getAlignItems(textStyle.textAlign),overflow:\"visible\"};function getJustifyContent(textAlign){switch(textAlign){case\"center\":return\"center\";case\"right\":return\"flex-end\";case\"left\":default:return\"flex-start\";}}function getAlignItems(textAlign){switch(textAlign){case\"center\":return\"center\";case\"right\":case\"left\":default:return\"flex-start\";}}return /*#__PURE__*/_jsx(motion.div,{style:{...containerStyle},children:/*#__PURE__*/_jsx(motion.div,{style:{...lineClampStyle,...textStyle,...transformStyle,fontFamily:textStyle.font},children:text})});}addPropertyControls(TextClip,{text:{type:ControlType.String,defaultValue:\"Lorem ipsum dolor sit amet, consectetur adipiscing elit.\"},letterMode:{type:ControlType.Boolean,title:\"Letter Mode\",defaultValue:false},maxCharacters:{type:ControlType.Number,title:\"Max Characters\",defaultValue:20,min:1,step:1,displayStepper:true,hidden(props){return!props.letterMode;}},lineCount:{type:ControlType.Number,defaultValue:1,min:1,displayStepper:true,step:1,hidden(props){return props.letterMode;}},textStyle:{type:ControlType.Object,controls:{font:{type:ControlType.String,defaultValue:\"Inter\"},color:{type:ControlType.Color,defaultValue:\"#000\"},fontSize:{type:ControlType.Number,defaultValue:16},fontWeight:{type:ControlType.Number,defaultValue:400,displayStepper:true,step:100},lineHeight:{type:ControlType.Number,defaultValue:1.5,displayStepper:true,step:.1},letterSpacing:{type:ControlType.Number,defaultValue:0,displayStepper:true,step:.1},textAlign:{type:ControlType.Enum,options:[\"left\",\"center\",\"right\"],defaultValue:\"left\"},textTransform:{type:ControlType.Enum,options:[\"none\",\"capitalize\",\"lowercase\",\"uppercase\"],defaultValue:\"none\",title:\"Transform\"}}}});export default TextClip;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"TextClip\":{\"type\":\"reactComponent\",\"name\":\"TextClip\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Test.map", "// Generated by Framer (bab6da3)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,getLoadingLazyAtYPosition,Image,Link,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleCode,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import TextClip from\"https://framerusercontent.com/modules/SWGekQcuX3bPAbidEFBM/8dgifCZ4MoJb2kNgnuxP/Test.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/MWOXx5th16YjnIuStD6h/5TGXwJ2iUNrcfWmKK4So/Ixn2UyaWQ.js\";const TextClipFonts=getFonts(TextClip);const enabledGestures={HYydvDlye:{hover:true},qtTnsWP24:{hover:true}};const cycleOrder=[\"qtTnsWP24\",\"HYydvDlye\"];const serializationHash=\"framer-jVXjm\";const variantClassNames={HYydvDlye:\"framer-v-1g8j7so\",qtTnsWP24:\"framer-v-evg6wl\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const sharedDateFormatter=(value,formatOptions,locale)=>{if(typeof value!==\"string\")return\"\";const date=new Date(value);if(isNaN(date.getTime()))return\"\";const fallbackLocale=\"en-US\";try{return date.toLocaleString(locale||fallbackLocale,formatOptions);}catch{return date.toLocaleString(fallbackLocale,formatOptions);}};const dateOptions={dateStyle:\"medium\",timeZone:\"UTC\"};const toDateString=(value,activeLocale)=>{return sharedDateFormatter(value,dateOptions,activeLocale);};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={\"Light \":\"qtTnsWP24\",Dark:\"HYydvDlye\"};const getProps=({date,height,id,image,image1,link,title,width,...props})=>{return{...props,CObOqn_wO:image1??props.CObOqn_wO??true,fSgOfsKZP:date??props.fSgOfsKZP??\"1970-01-01T00:00:00.000Z\",variant:humanReadableVariantMap[props.variant]??props.variant??\"qtTnsWP24\",vPcE1jDRP:link??props.vPcE1jDRP,Y5kQI62Qh:title??props.Y5kQI62Qh??\"Title\",Z1jIb7bes:image??props.Z1jIb7bes};};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,vPcE1jDRP,Z1jIb7bes,Y5kQI62Qh,fSgOfsKZP,CObOqn_wO,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"qtTnsWP24\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const activeLocaleCode=useLocaleCode();const textContent=toDateString(fSgOfsKZP,activeLocaleCode);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:vPcE1jDRP,motionChild:true,nodeId:\"qtTnsWP24\",scopeId:\"TdvnOrbmK\",children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-evg6wl\",className,classNames)} framer-oaswxm`,\"data-framer-name\":\"Light \",layoutDependency:layoutDependency,layoutId:\"qtTnsWP24\",ref:refBinding,style:{opacity:1,...style},variants:{\"HYydvDlye-hover\":{opacity:1},\"qtTnsWP24-hover\":{opacity:.7}},...addPropertyOverrides({\"HYydvDlye-hover\":{\"data-framer-name\":undefined},\"qtTnsWP24-hover\":{\"data-framer-name\":undefined},HYydvDlye:{\"data-framer-name\":\"Dark\"}},baseVariant,gestureVariant),children:[CObOqn_wO&&/*#__PURE__*/_jsx(Image,{background:{alt:\"\",fit:\"fill\",loading:getLoadingLazyAtYPosition((componentViewport?.y||0)+0),sizes:\"70px\",...toResponsiveImage(Z1jIb7bes)},className:\"framer-yod0gs\",\"data-framer-name\":\"Image\",layoutDependency:layoutDependency,layoutId:\"xHY5EVo5b\",style:{borderBottomLeftRadius:4,borderBottomRightRadius:4,borderTopLeftRadius:4,borderTopRightRadius:4}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-14bz97p\",\"data-framer-name\":\"Title and Date\",layoutDependency:layoutDependency,layoutId:\"myc7vIQXi\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1sf3td7-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"SLPiQzDkH-container\",nodeId:\"SLPiQzDkH\",rendersWithMotion:true,scopeId:\"TdvnOrbmK\",children:/*#__PURE__*/_jsx(TextClip,{height:\"100%\",id:\"SLPiQzDkH\",layoutId:\"SLPiQzDkH\",letterMode:false,lineCount:2,maxCharacters:20,style:{maxWidth:\"100%\",width:\"100%\"},text:Y5kQI62Qh,textStyle:{color:\"var(--token-2cad1b04-09d6-418b-8c0a-430e2948dc46, rgb(34, 32, 34))\",font:\"Inter\",fontSize:14,fontWeight:600,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"},width:\"100%\",...addPropertyOverrides({\"HYydvDlye-hover\":{textStyle:{color:\"var(--token-462cb4f2-be64-4082-ad26-41bc8d27f0c3, rgb(251, 251, 251))\",font:\"Inter\",fontSize:14,fontWeight:600,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}},\"qtTnsWP24-hover\":{textStyle:{color:\"var(--token-64a6633a-aca9-4f9b-89e3-38bae9a83f9d, rgb(75, 75, 75))\",font:\"Inter\",fontSize:14,fontWeight:600,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}},HYydvDlye:{textStyle:{color:\"var(--token-991ca796-156f-4273-b2b4-8dc6dc8d1e52, rgb(255, 255, 255))\",font:\"Inter\",fontSize:14,fontWeight:600,letterSpacing:0,lineHeight:1.2,textAlign:\"left\",textTransform:\"none\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tnmhv2\",\"data-styles-preset\":\"Ixn2UyaWQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-64a6633a-aca9-4f9b-89e3-38bae9a83f9d, rgb(56, 53, 65)))\"},children:\"Content\"})}),className:\"framer-11lf3bn\",\"data-framer-name\":\"Date\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"Lwm3HUOuS\",style:{\"--extracted-r6o4lv\":\"var(--token-64a6633a-aca9-4f9b-89e3-38bae9a83f9d, rgb(56, 53, 65))\"},text:textContent,variants:{HYydvDlye:{\"--extracted-r6o4lv\":\"var(--token-462cb4f2-be64-4082-ad26-41bc8d27f0c3, rgb(251, 251, 251))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({HYydvDlye:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tnmhv2\",\"data-styles-preset\":\"Ixn2UyaWQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-462cb4f2-be64-4082-ad26-41bc8d27f0c3, rgb(251, 251, 251)))\"},children:\"Jan 1, 1970\"})})}},baseVariant,gestureVariant)})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-jVXjm.framer-oaswxm, .framer-jVXjm .framer-oaswxm { display: block; }\",\".framer-jVXjm.framer-evg6wl { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; text-decoration: none; width: 240px; }\",\".framer-jVXjm .framer-yod0gs { flex: none; height: 70px; position: relative; width: 70px; }\",\".framer-jVXjm .framer-14bz97p { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; min-width: 0%; padding: 0px; position: relative; width: 1px; }\",\".framer-jVXjm .framer-1sf3td7-container { flex: none; height: auto; max-width: 100%; position: relative; width: 100%; }\",\".framer-jVXjm .framer-11lf3bn { flex: none; height: auto; position: relative; white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 70\n * @framerIntrinsicWidth 240\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"HYydvDlye\":{\"layout\":[\"fixed\",\"auto\"]},\"QjFo1SpLX\":{\"layout\":[\"fixed\",\"auto\"]},\"DrFb4Njt0\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"vPcE1jDRP\":\"link\",\"Z1jIb7bes\":\"image\",\"Y5kQI62Qh\":\"title\",\"fSgOfsKZP\":\"date\",\"CObOqn_wO\":\"image1\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerTdvnOrbmK=withCSS(Component,css,\"framer-jVXjm\");export default FramerTdvnOrbmK;FramerTdvnOrbmK.displayName=\"Collection list item\";FramerTdvnOrbmK.defaultProps={height:70,width:240};addPropertyControls(FramerTdvnOrbmK,{variant:{options:[\"qtTnsWP24\",\"HYydvDlye\"],optionTitles:[\"Light \",\"Dark\"],title:\"Variant\",type:ControlType.Enum},vPcE1jDRP:{title:\"Link\",type:ControlType.Link},Z1jIb7bes:{title:\"Image\",type:ControlType.ResponsiveImage},Y5kQI62Qh:{defaultValue:\"Title\",title:\"Title\",type:ControlType.String},fSgOfsKZP:{defaultValue:\"1970-01-01T00:00:00.000Z\",title:\"Date\",type:ControlType.Date},CObOqn_wO:{defaultValue:true,title:\"Image\",type:ControlType.Boolean}});addFonts(FramerTdvnOrbmK,[{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\"}]},...TextClipFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerTdvnOrbmK\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"vPcE1jDRP\\\":\\\"link\\\",\\\"Z1jIb7bes\\\":\\\"image\\\",\\\"Y5kQI62Qh\\\":\\\"title\\\",\\\"fSgOfsKZP\\\":\\\"date\\\",\\\"CObOqn_wO\\\":\\\"image1\\\"}\",\"framerIntrinsicWidth\":\"240\",\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"HYydvDlye\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"QjFo1SpLX\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"DrFb4Njt0\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicHeight\":\"70\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./TdvnOrbmK.map", "export const v0=\"Product\";export const v1=\"Oplossingen\";export const v2=\"Bronnen\";export const v3=\"Prijzen\";export const v4=\"Enterprises\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b84331)\nimport*as localizedValues from\"./D0psE4pI8-0.js\";const valuesByLocaleId={MHMeTib5C:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Voor bedrijven\"})})});export const v1=\"Bureau's\";export const v2=\"Al uw freelancers op \\xe9\\xe9n plek\";export const v3=\"Enterprise\";export const v4=\"Voltooi je CW-programma\";export const v5=\"Freelance Platforms\";export const v6=\"Lanceer uw eigen White-label Platform\";export const v7=\"Uitzendbureaus\";export const v8=\"Word een platformgestuurde agency\";export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Oplossingen\"})})});export const v10=\"Freelance Beheersysteem\";export const v11=\"Beheer de freelancer levenscyclus\";export const v12=\"Direct Sourcing\";export const v13=\"Bouw je eigen private pool\";export const v14=\"Bubty Betalen\";export const v15=\"Betaal in 190+ landen\";export const v16=\"Bubty Geclassificeerd\";export const v17=\"Wereldwijde Freelancer Compliance\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v12\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v17\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v13\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v16\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v15\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v14\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v11\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport*as localizedValues from\"./EaUuuoTXz-0.js\";const valuesByLocaleId={MHMeTib5C:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b84331)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/8uJenXtSH7qHX0QyYgcN/wQQCH37qC1KRjbTAOFK0/E4FMNMDuo.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/MWOXx5th16YjnIuStD6h/5TGXwJ2iUNrcfWmKK4So/Ixn2UyaWQ.js\";const enabledGestures={dOB8cJ0FT:{hover:true}};const cycleOrder=[\"dOB8cJ0FT\",\"O4aeS0j6l\"];const serializationHash=\"framer-cq8j4\";const variantClassNames={dOB8cJ0FT:\"framer-v-p0ty5c\",O4aeS0j6l:\"framer-v-19q2poa\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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:\"dOB8cJ0FT\",Mobile:\"O4aeS0j6l\"};const getProps=({click,height,id,label,link,subtext,width,...props})=>{return{...props,NxFyOZlOR:link??props.NxFyOZlOR,ohTdXKhCJ:label??props.ohTdXKhCJ??\"Label\",S3M_Nk_tK:click??props.S3M_Nk_tK,sRz8jlo8S:subtext??props.sRz8jlo8S??\"Short Description\",variant:humanReadableVariantMap[props.variant]??props.variant??\"dOB8cJ0FT\"};};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,ohTdXKhCJ,sRz8jlo8S,NxFyOZlOR,S3M_Nk_tK,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"dOB8cJ0FT\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap11x5gn1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(S3M_Nk_tK){const res=await S3M_Nk_tK(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{motionChild:true,nodeId:\"dOB8cJ0FT\",scopeId:\"w5HfsgO_Y\",...addPropertyOverrides({\"dOB8cJ0FT-hover\":{href:NxFyOZlOR,openInNewTab:false,smoothScroll:true},O4aeS0j6l:{href:NxFyOZlOR}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-p0ty5c\",className,classNames)} framer-1fvj8x1`,\"data-framer-name\":\"Desktop\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"dOB8cJ0FT\",onTap:onTap11x5gn1,ref:refBinding,style:{...style},...addPropertyOverrides({\"dOB8cJ0FT-hover\":{\"data-framer-name\":undefined},O4aeS0j6l:{\"data-framer-name\":\"Mobile\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1aa7bpu\",layoutDependency:layoutDependency,layoutId:\"jtEDxpnzl\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ugklou\",\"data-styles-preset\":\"E4FMNMDuo\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255)))\"},children:\"Label\"})}),className:\"framer-p5mkmi\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"wzlYR50Mf\",style:{\"--extracted-r6o4lv\":\"var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:ohTdXKhCJ,variants:{\"dOB8cJ0FT-hover\":{\"--extracted-r6o4lv\":\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"dOB8cJ0FT-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-ugklou\",\"data-styles-preset\":\"E4FMNMDuo\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7)))\"},children:\"Label\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tnmhv2\",\"data-styles-preset\":\"Ixn2UyaWQ\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7)))\"},children:\"An infinite canvas\"})}),className:\"framer-1kfyk8m\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"nkkTl2KWo\",style:{\"--extracted-r6o4lv\":\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\",\"--framer-paragraph-spacing\":\"0px\"},text:sRz8jlo8S,verticalAlignment:\"top\",withExternalLayout:true})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-cq8j4.framer-1fvj8x1, .framer-cq8j4 .framer-1fvj8x1 { display: block; }\",\".framer-cq8j4.framer-p0ty5c { align-content: flex-start; align-items: flex-start; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 8px; height: min-content; justify-content: flex-start; min-width: 180px; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-cq8j4 .framer-1aa7bpu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-cq8j4 .framer-p5mkmi, .framer-cq8j4 .framer-1kfyk8m { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-cq8j4.framer-v-19q2poa.framer-p0ty5c { overflow: visible; text-decoration: none; width: 180px; }\",\".framer-cq8j4.framer-v-19q2poa .framer-1aa7bpu { flex: 1 0 0px; width: 1px; }\",\".framer-cq8j4.framer-v-19q2poa .framer-p5mkmi, .framer-cq8j4.framer-v-19q2poa .framer-1kfyk8m { white-space: pre-wrap; width: 100%; word-break: break-word; word-wrap: break-word; }\",\".framer-cq8j4.framer-v-p0ty5c.hover.framer-p0ty5c { text-decoration: none; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 180\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"180px\",null,null,null]},\"O4aeS0j6l\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[\"180px\",null,null,null]},\"nPQ4l_CCG\":{\"layout\":[\"auto\",\"auto\"],\"constraints\":[\"180px\",null,null,null]}}}\n * @framerVariables {\"ohTdXKhCJ\":\"label\",\"sRz8jlo8S\":\"subtext\",\"NxFyOZlOR\":\"link\",\"S3M_Nk_tK\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerw5HfsgO_Y=withCSS(Component,css,\"framer-cq8j4\");export default Framerw5HfsgO_Y;Framerw5HfsgO_Y.displayName=\"Menu/ Dropdown Item\";Framerw5HfsgO_Y.defaultProps={height:40,width:180};addPropertyControls(Framerw5HfsgO_Y,{variant:{options:[\"dOB8cJ0FT\",\"O4aeS0j6l\"],optionTitles:[\"Desktop\",\"Mobile\"],title:\"Variant\",type:ControlType.Enum},ohTdXKhCJ:{defaultValue:\"Label\",displayTextArea:false,title:\"Label\",type:ControlType.String},sRz8jlo8S:{defaultValue:\"Short Description\",displayTextArea:false,title:\"Subtext\",type:ControlType.String},NxFyOZlOR:{title:\"Link\",type:ControlType.Link},S3M_Nk_tK:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framerw5HfsgO_Y,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerw5HfsgO_Y\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerColorSyntax\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"180\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerVariables\":\"{\\\"ohTdXKhCJ\\\":\\\"label\\\",\\\"sRz8jlo8S\\\":\\\"subtext\\\",\\\"NxFyOZlOR\\\":\\\"link\\\",\\\"S3M_Nk_tK\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"180px\\\",null,null,null]},\\\"O4aeS0j6l\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"180px\\\",null,null,null]},\\\"nPQ4l_CCG\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"],\\\"constraints\\\":[\\\"180px\\\",null,null,null]}}}\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./w5HfsgO_Y.map", "// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/RJZEHi5o0wdxjVMhDzqV/ntuFUkXsVOb7uSP4lOwm/DN6zcsWvu.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/65KQMb3zwbqf7vycvpCP/4OUQXR7VscVjMTQxPRCn/EaUuuoTXz.js\";import MenuDropdownItem from\"https://framerusercontent.com/modules/cWV0LlV4bO001hkHaxq5/Lp2ieEb7e6Troch7n6J7/w5HfsgO_Y.js\";const MenuDropdownItemFonts=getFonts(MenuDropdownItem);const cycleOrder=[\"KDlzvJqo9\",\"hmIntsuHk\"];const serializationHash=\"framer-pXfCz\";const variantClassNames={hmIntsuHk:\"framer-v-1dodo29\",KDlzvJqo9:\"framer-v-34z2gt\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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:\"KDlzvJqo9\",Phone:\"hmIntsuHk\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"KDlzvJqo9\"};};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:\"KDlzvJqo9\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-34z2gt\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"KDlzvJqo9\",ref:refBinding,style:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.12)\",...style},variants:{hmIntsuHk:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({hmIntsuHk:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-6krtgo\",\"data-framer-name\":\"Menu/ Dropdown\",layoutDependency:layoutDependency,layoutId:\"a3WM_TZNn\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ciinxe\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"jPP7H8dG8\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"For Businesses\"})})}),className:\"framer-lvdihq\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"yFai1ahnz\",style:{\"--extracted-1w1cjl5\":\"var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-nfwekd\",\"data-framer-name\":\"Items Wrapper\",layoutDependency:layoutDependency,layoutId:\"WZiFVq3ga\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VLr4p41tN\"},implicitPathVariables:undefined},{href:{webPageId:\"VLr4p41tN\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-5rfxo1-container\",layoutDependency:layoutDependency,layoutId:\"DlXkfPxxC-container\",nodeId:\"DlXkfPxxC\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"nwqDSXCwW\",height:\"100%\",id:\"DlXkfPxxC\",layoutId:\"DlXkfPxxC\",NxFyOZlOR:resolvedLinks[0],ohTdXKhCJ:getLocalizedValue(\"v1\",activeLocale)??\"Agencies\",sRz8jlo8S:getLocalizedValue(\"v2\",activeLocale)??\"All your freelancers in one place\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WjDUUKKfb\"},implicitPathVariables:undefined},{href:{webPageId:\"WjDUUKKfb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+60,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-18a3cel-container\",layoutDependency:layoutDependency,layoutId:\"vViipPbX1-container\",nodeId:\"vViipPbX1\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"zuWYZQNRG\",height:\"100%\",id:\"vViipPbX1\",layoutId:\"vViipPbX1\",NxFyOZlOR:resolvedLinks1[0],ohTdXKhCJ:getLocalizedValue(\"v3\",activeLocale)??\"Enterprise\",sRz8jlo8S:getLocalizedValue(\"v4\",activeLocale)??\"Complete your CW program\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks1[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Xc2HVn252\"},implicitPathVariables:undefined},{href:{webPageId:\"Xc2HVn252\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+120,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-yku00m-container\",layoutDependency:layoutDependency,layoutId:\"EWwahk8tY-container\",nodeId:\"EWwahk8tY\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"WZNl464Bv\",height:\"100%\",id:\"EWwahk8tY\",layoutId:\"EWwahk8tY\",NxFyOZlOR:resolvedLinks2[0],ohTdXKhCJ:getLocalizedValue(\"v5\",activeLocale)??\"Freelance Platforms\",sRz8jlo8S:getLocalizedValue(\"v6\",activeLocale)??\"Launch your own White-label Platform\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks2[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"MRLU5MhYi\"},implicitPathVariables:undefined},{href:{webPageId:\"MRLU5MhYi\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+180,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vvwfjy-container\",layoutDependency:layoutDependency,layoutId:\"ZzibLHnG9-container\",nodeId:\"ZzibLHnG9\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"zj44T6wsE\",height:\"100%\",id:\"ZzibLHnG9\",layoutId:\"ZzibLHnG9\",NxFyOZlOR:resolvedLinks3[0],ohTdXKhCJ:getLocalizedValue(\"v7\",activeLocale)??\"Staffing Agencies\",sRz8jlo8S:getLocalizedValue(\"v8\",activeLocale)??\"Become a platform driven agency\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks3[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})})]})]}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-175v3s5\",\"data-framer-name\":\"Separator\",layoutDependency:layoutDependency,layoutId:\"Ixbg7IPuK\",style:{backgroundColor:\"var(--token-02b21f7a-54d9-461f-97c8-b716be8037d4, rgb(33, 33, 33))\"}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1sfc93h\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"sUcLWzj81\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Solutions\"})})}),className:\"framer-w2ihhr\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"E5FGcDeMv\",style:{\"--extracted-1w1cjl5\":\"var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e45si2\",\"data-framer-name\":\"Items Wrapper Inner\",layoutDependency:layoutDependency,layoutId:\"WPvMbA4Oq\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"wQd6esQIc\"},implicitPathVariables:undefined},{href:{webPageId:\"wQd6esQIc\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+313+24+44+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1cdq94v-container\",layoutDependency:layoutDependency,layoutId:\"yT1IFXNRd-container\",nodeId:\"yT1IFXNRd\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"RkNiiXgpN\",height:\"100%\",id:\"yT1IFXNRd\",layoutId:\"yT1IFXNRd\",NxFyOZlOR:resolvedLinks4[0],ohTdXKhCJ:getLocalizedValue(\"v10\",activeLocale)??\"Freelance Management System\",sRz8jlo8S:getLocalizedValue(\"v11\",activeLocale)??\"Manage the freelancer lifecycle\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks4[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"F0vQKXTo5\"},implicitPathVariables:undefined},{href:{webPageId:\"F0vQKXTo5\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+60,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+313+24+44+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-n31c4n-container\",layoutDependency:layoutDependency,layoutId:\"gWj72bmvn-container\",nodeId:\"gWj72bmvn\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"yFso8j5GB\",height:\"100%\",id:\"gWj72bmvn\",layoutId:\"gWj72bmvn\",NxFyOZlOR:resolvedLinks5[0],ohTdXKhCJ:getLocalizedValue(\"v12\",activeLocale)??\"Direct Sourcing\",sRz8jlo8S:getLocalizedValue(\"v13\",activeLocale)??\"Build your private talent pool\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks5[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"QoBeOCi30\"},implicitPathVariables:undefined},{href:{webPageId:\"QoBeOCi30\"},implicitPathVariables:undefined}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+120,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+313+24+44+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-45cb4y-container\",layoutDependency:layoutDependency,layoutId:\"wVdkQWogX-container\",nodeId:\"wVdkQWogX\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"SowPJdm1Y\",height:\"100%\",id:\"wVdkQWogX\",layoutId:\"wVdkQWogX\",NxFyOZlOR:resolvedLinks6[0],ohTdXKhCJ:getLocalizedValue(\"v14\",activeLocale)??\"Bubty Pay\",sRz8jlo8S:getLocalizedValue(\"v15\",activeLocale)??\"Pay in 190+ countries\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks6[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"lGVuE2f5P\"},implicitPathVariables:undefined},{href:{webPageId:\"lGVuE2f5P\"},implicitPathVariables:undefined}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+180,...addPropertyOverrides({hmIntsuHk:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+313+24+44+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vowlbi-container\",layoutDependency:layoutDependency,layoutId:\"MEK0ssc8j-container\",nodeId:\"MEK0ssc8j\",rendersWithMotion:true,scopeId:\"EaUuuoTXz\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"lykG7_PgE\",height:\"100%\",id:\"MEK0ssc8j\",layoutId:\"MEK0ssc8j\",NxFyOZlOR:resolvedLinks7[0],ohTdXKhCJ:getLocalizedValue(\"v16\",activeLocale)??\"Bubty Classified\",sRz8jlo8S:getLocalizedValue(\"v17\",activeLocale)??\"Global Freelancer Compliance\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({hmIntsuHk:{NxFyOZlOR:resolvedLinks7[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})})]})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-pXfCz.framer-15u1krf, .framer-pXfCz .framer-15u1krf { display: block; }\",\".framer-pXfCz.framer-34z2gt { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-pXfCz .framer-6krtgo { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-pXfCz .framer-1ciinxe, .framer-pXfCz .framer-1sfc93h { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: min-content; }\",\".framer-pXfCz .framer-lvdihq, .framer-pXfCz .framer-w2ihhr { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-pXfCz .framer-nfwekd, .framer-pXfCz .framer-1e45si2 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-pXfCz .framer-5rfxo1-container, .framer-pXfCz .framer-18a3cel-container, .framer-pXfCz .framer-yku00m-container, .framer-pXfCz .framer-1vvwfjy-container, .framer-pXfCz .framer-1cdq94v-container, .framer-pXfCz .framer-n31c4n-container, .framer-pXfCz .framer-45cb4y-container, .framer-pXfCz .framer-1vowlbi-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-pXfCz .framer-175v3s5 { align-self: stretch; flex: none; height: auto; overflow: hidden; position: relative; width: 1px; }\",\".framer-pXfCz.framer-v-1dodo29.framer-34z2gt { width: 390px; }\",\".framer-pXfCz.framer-v-1dodo29 .framer-6krtgo { flex-direction: column; order: 0; width: 100%; }\",\".framer-pXfCz.framer-v-1dodo29 .framer-1ciinxe { order: 0; width: 100%; }\",\".framer-pXfCz.framer-v-1dodo29 .framer-nfwekd, .framer-pXfCz.framer-v-1dodo29 .framer-5rfxo1-container, .framer-pXfCz.framer-v-1dodo29 .framer-18a3cel-container, .framer-pXfCz.framer-v-1dodo29 .framer-yku00m-container, .framer-pXfCz.framer-v-1dodo29 .framer-1vvwfjy-container, .framer-pXfCz.framer-v-1dodo29 .framer-1e45si2, .framer-pXfCz.framer-v-1dodo29 .framer-1cdq94v-container, .framer-pXfCz.framer-v-1dodo29 .framer-n31c4n-container, .framer-pXfCz.framer-v-1dodo29 .framer-45cb4y-container, .framer-pXfCz.framer-v-1dodo29 .framer-1vowlbi-container { width: 100%; }\",\".framer-pXfCz.framer-v-1dodo29 .framer-175v3s5 { align-self: unset; height: 1px; order: 1; width: 100%; }\",\".framer-pXfCz.framer-v-1dodo29 .framer-1sfc93h { order: 3; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 312\n * @framerIntrinsicWidth 651\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"hmIntsuHk\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerEaUuuoTXz=withCSS(Component,css,\"framer-pXfCz\");export default FramerEaUuuoTXz;FramerEaUuuoTXz.displayName=\"Menu/ Category: Why Bubty\";FramerEaUuuoTXz.defaultProps={height:312,width:651};addPropertyControls(FramerEaUuuoTXz,{variant:{options:[\"KDlzvJqo9\",\"hmIntsuHk\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerEaUuuoTXz,[{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\"}]},...MenuDropdownItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerEaUuuoTXz\",\"slots\":[],\"annotations\":{\"framerIntrinsicHeight\":\"312\",\"framerIntrinsicWidth\":\"651\",\"framerComponentViewportWidth\":\"true\",\"framerAutoSizeImages\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"hmIntsuHk\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Bedrijf\"})})});export const v1=\"Vacatures\";export const v2=\"Klaar voor het volgende hoofdstuk?\";export const v3=\"Persberichten\";export const v4=\"Lees over ons\";\nexport const __FramerMetadata__ = {\"exports\":{\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport*as localizedValues from\"./myp8bZJwQ-0.js\";const valuesByLocaleId={MHMeTib5C:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/RJZEHi5o0wdxjVMhDzqV/ntuFUkXsVOb7uSP4lOwm/DN6zcsWvu.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/ks8NVaKJYknUDtLf48nX/stm27qqBqX57QXtNPLeX/myp8bZJwQ.js\";import MenuDropdownItem from\"https://framerusercontent.com/modules/cWV0LlV4bO001hkHaxq5/Lp2ieEb7e6Troch7n6J7/w5HfsgO_Y.js\";const MenuDropdownItemFonts=getFonts(MenuDropdownItem);const cycleOrder=[\"HhU8uNzyR\",\"NrsvgFH15\"];const serializationHash=\"framer-QPTI3\";const variantClassNames={HhU8uNzyR:\"framer-v-f2ij8z\",NrsvgFH15:\"framer-v-jrmkoy\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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:\"HhU8uNzyR\",Phone:\"NrsvgFH15\"};const getProps=({click,height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"HhU8uNzyR\",XA9bAEPuE:click??props.XA9bAEPuE};};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,XA9bAEPuE,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"HhU8uNzyR\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const S3M_Nk_tK1vj99ww=activeVariantCallback(async(...args)=>{if(XA9bAEPuE){const res=await XA9bAEPuE(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"NrsvgFH15\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-f2ij8z\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"HhU8uNzyR\",ref:refBinding,style:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.12)\",...style},variants:{NrsvgFH15:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({NrsvgFH15:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-3qwq7p\",\"data-framer-name\":\"Menu/ Dropdown\",layoutDependency:layoutDependency,layoutId:\"Xq9KqVH62\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1226qbu\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"dTZJ3LZke\",children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Company\"})})}),className:\"framer-c47n38\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"KhhYzaBHW\",style:{\"--extracted-1w1cjl5\":\"var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-j67ifn\",\"data-framer-name\":\"Items Wrapper Outter\",layoutDependency:layoutDependency,layoutId:\"AFbpkc2Ey\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-12r3nfw\",\"data-framer-name\":\"Items Wrapper Inner\",layoutDependency:layoutDependency,layoutId:\"PIGWOotz9\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i64d6mE4Q\"},implicitPathVariables:undefined},{href:{webPageId:\"i64d6mE4Q\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0,...addPropertyOverrides({NrsvgFH15:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+24+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-11lott7-container\",layoutDependency:layoutDependency,layoutId:\"gxCO4H6TP-container\",nodeId:\"gxCO4H6TP\",rendersWithMotion:true,scopeId:\"myp8bZJwQ\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"upsO9sfiI\",height:\"100%\",id:\"gxCO4H6TP\",layoutId:\"gxCO4H6TP\",NxFyOZlOR:resolvedLinks[0],ohTdXKhCJ:getLocalizedValue(\"v1\",activeLocale)??\"Careers\",sRz8jlo8S:getLocalizedValue(\"v2\",activeLocale)??\"Ready for the next chapter?\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({NrsvgFH15:{NxFyOZlOR:resolvedLinks[1],S3M_Nk_tK:S3M_Nk_tK1vj99ww,style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"LF4Jqsiid\"},implicitPathVariables:undefined},{href:{webPageId:\"LF4Jqsiid\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+60,...addPropertyOverrides({NrsvgFH15:{width:`calc(max(${componentViewport?.width||\"100vw\"}, 1px) - 64px)`,y:(componentViewport?.y||0)+0+0+0+24+0+0+0+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-8bfxr0-container\",layoutDependency:layoutDependency,layoutId:\"znGUHTt2Q-container\",nodeId:\"znGUHTt2Q\",rendersWithMotion:true,scopeId:\"myp8bZJwQ\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"ILgZK6CFG\",height:\"100%\",id:\"znGUHTt2Q\",layoutId:\"znGUHTt2Q\",NxFyOZlOR:resolvedLinks1[0],ohTdXKhCJ:getLocalizedValue(\"v3\",activeLocale)??\"Press Releases\",sRz8jlo8S:getLocalizedValue(\"v4\",activeLocale)??\"Read about us\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({NrsvgFH15:{NxFyOZlOR:resolvedLinks1[1],S3M_Nk_tK:S3M_Nk_tK1vj99ww,style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-QPTI3.framer-ink19u, .framer-QPTI3 .framer-ink19u { display: block; }\",\".framer-QPTI3.framer-f2ij8z { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-QPTI3 .framer-3qwq7p { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-QPTI3 .framer-1226qbu { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: min-content; }\",\".framer-QPTI3 .framer-c47n38 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-QPTI3 .framer-j67ifn { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QPTI3 .framer-12r3nfw { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-QPTI3 .framer-11lott7-container, .framer-QPTI3 .framer-8bfxr0-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-QPTI3.framer-v-jrmkoy.framer-f2ij8z { width: 390px; }\",\".framer-QPTI3.framer-v-jrmkoy .framer-3qwq7p, .framer-QPTI3.framer-v-jrmkoy .framer-12r3nfw, .framer-QPTI3.framer-v-jrmkoy .framer-11lott7-container, .framer-QPTI3.framer-v-jrmkoy .framer-8bfxr0-container { width: 100%; }\",\".framer-QPTI3.framer-v-jrmkoy .framer-1226qbu { flex: 1 0 0px; overflow: visible; width: 1px; }\",\".framer-QPTI3.framer-v-jrmkoy .framer-j67ifn { flex-direction: column; width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 192\n * @framerIntrinsicWidth 275\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"NrsvgFH15\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"XA9bAEPuE\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framermyp8bZJwQ=withCSS(Component,css,\"framer-QPTI3\");export default Framermyp8bZJwQ;Framermyp8bZJwQ.displayName=\"Menu/ Category: Company\";Framermyp8bZJwQ.defaultProps={height:192,width:275};addPropertyControls(Framermyp8bZJwQ,{variant:{options:[\"HhU8uNzyR\",\"NrsvgFH15\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},XA9bAEPuE:{title:\"Click\",type:ControlType.EventHandler}});addFonts(Framermyp8bZJwQ,[{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\"}]},...MenuDropdownItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"Framermyp8bZJwQ\",\"slots\":[],\"annotations\":{\"framerAutoSizeImages\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"NrsvgFH15\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"192\",\"framerIntrinsicWidth\":\"275\",\"framerVariables\":\"{\\\"XA9bAEPuE\\\":\\\"click\\\"}\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Bronnen\"})})});export const v1=\"ROI Calculator\";export const v2=\"Korte beschrijving\";export const v3=\"Blogs\";export const v4=\"De laatste updates van Bubty\";export const v5=\"Cli\\xebntcases\";export const v6=\"Zie wat onze klanten zeggen\";export const v7=\"Integraties\";export const v8=\"Korte beschrijving\";export const v9=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(143, 90, 255) 0%, rgb(175, 96, 255) 51.351400000000005%, rgb(77, 73, 249) 100%)\"},children:\"Wat is nieuw?\"})})});\nexport const __FramerMetadata__ = {\"exports\":{\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b84331)\nimport*as localizedValues from\"./ohNDI4elP-0.js\";const valuesByLocaleId={MHMeTib5C:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (5b84331)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ChildrenCanSuspend,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,PathVariablesContext,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useQueryData,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import ClientCases from\"https://framerusercontent.com/modules/wk41kXqwmevkZEG0JILR/VJ2wc8LZE61Wa6r1iBgV/NtXM2EAnk.js\";import Newsletters from\"https://framerusercontent.com/modules/sQ5h64qJJ8VmopIWXjf8/2hcxnSnm8QIkz0TeX8pk/U7dGfsWz0.js\";import Studio from\"https://framerusercontent.com/modules/L8NbAxqujVZ4wniDODCn/8OYx5Si0AsTXjzXNdJsc/vZUeDDWf7.js\";import Blog from\"https://framerusercontent.com/modules/q9YKpJ0My2C1vqZc9hng/wFPWJLSyMWb8p9VyvXAO/wwWsv4tPD.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/RJZEHi5o0wdxjVMhDzqV/ntuFUkXsVOb7uSP4lOwm/DN6zcsWvu.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/TDI5cPMmogMDxy01Kqpo/utGImq8jhNo0qk27IymO/ohNDI4elP.js\";import CollectionListItem from\"https://framerusercontent.com/modules/MohglnPUCVdsmU9UExA9/kLtulXDqyDKoSjQudjsE/TdvnOrbmK.js\";import MenuDropdownItem from\"https://framerusercontent.com/modules/cWV0LlV4bO001hkHaxq5/Lp2ieEb7e6Troch7n6J7/w5HfsgO_Y.js\";const MenuDropdownItemFonts=getFonts(MenuDropdownItem);const CollectionListItemFonts=getFonts(CollectionListItem);const cycleOrder=[\"kwyFFyla3\",\"VzVnUOA03\"];const serializationHash=\"framer-tW8Cf\";const variantClassNames={kwyFFyla3:\"framer-v-1fxr1mz\",VzVnUOA03:\"framer-v-j23dsx\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const toResponsiveImage=value=>{if(typeof value===\"object\"&&value!==null&&typeof value.src===\"string\"){return value;}return typeof value===\"string\"?{src:value}:undefined;};const query=prequery=>prequery({from:{alias:\"Sj_AuhCf_\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"Sj_AuhCf_\",direction:\"desc\",name:\"Zqb0ZfAcM\",type:\"Identifier\"}],select:[{collection:\"Sj_AuhCf_\",name:\"L0LjlmzZB\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"Mo_L1FkG3\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"AsSl9FYL5\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"Zqb0ZfAcM\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"id\",type:\"Identifier\"}]});const QueryData=({query,pageSize,children})=>{const data=useQueryData(query);return children(data);};const query1=prequery=>prequery({from:{alias:\"eXyENuWAi\",data:ClientCases,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"eXyENuWAi\",direction:\"desc\",name:\"LOYzFfM1M\",type:\"Identifier\"}],select:[{collection:\"eXyENuWAi\",name:\"T5ra6gofw\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"nPmwCXETe\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"fMGSjpMrw\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"LOYzFfM1M\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"id\",type:\"Identifier\"}]});const query2=prequery=>prequery({from:{alias:\"FNtbJCHmm\",data:Newsletters,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"FNtbJCHmm\",direction:\"desc\",name:\"vKUp_yl6_\",type:\"Identifier\"}],select:[{collection:\"FNtbJCHmm\",name:\"E2rR29ryz\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"iLPZl6ezX\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"WFXwIQoov\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"vKUp_yl6_\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"id\",type:\"Identifier\"}]});const query3=prequery=>prequery({from:{alias:\"QiFb023gJ\",data:Studio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"QiFb023gJ\",direction:\"desc\",name:\"MDGoFfhNx\",type:\"Identifier\"}],select:[{collection:\"QiFb023gJ\",name:\"GSfoaFOn2\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"SmmQJp9sX\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"Twa1qQ6Hv\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"MDGoFfhNx\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"id\",type:\"Identifier\"}]});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:\"kwyFFyla3\",Phone:\"VzVnUOA03\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"kwyFFyla3\"};};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,L0LjlmzZBSj_AuhCf_,Mo_L1FkG3Sj_AuhCf_,AsSl9FYL5Sj_AuhCf_,Zqb0ZfAcMSj_AuhCf_,idSj_AuhCf_,T5ra6gofweXyENuWAi,nPmwCXETeeXyENuWAi,fMGSjpMrweXyENuWAi,LOYzFfM1MeXyENuWAi,ideXyENuWAi,E2rR29ryzFNtbJCHmm,iLPZl6ezXFNtbJCHmm,WFXwIQoovFNtbJCHmm,vKUp_yl6_FNtbJCHmm,idFNtbJCHmm,GSfoaFOn2QiFb023gJ,SmmQJp9sXQiFb023gJ,Twa1qQ6HvQiFb023gJ,MDGoFfhNxQiFb023gJ,idQiFb023gJ,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"kwyFFyla3\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"VzVnUOA03\")return false;return true;};const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1fxr1mz\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"kwyFFyla3\",ref:refBinding,style:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"var(--token-31aa9b3d-cf2c-438c-8c71-06331190db57, rgba(34, 34, 34, 0.05))\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.12)\",...style},variants:{VzVnUOA03:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({VzVnUOA03:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-7t3np6\",\"data-framer-name\":\"Menu/ Dropdown\",layoutDependency:layoutDependency,layoutId:\"ARHBJr73V\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-rd9lfb\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"g6X1zjB5n\",style:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:20,borderTopLeftRadius:20},variants:{VzVnUOA03:{borderBottomLeftRadius:0,borderTopLeftRadius:0}},children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Resources\"})})}),className:\"framer-2jaip5\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y7GjV1n7O\",style:{\"--extracted-1w1cjl5\":\"var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1qwrmim\",\"data-framer-name\":\"Items Wrapper Outter\",layoutDependency:layoutDependency,layoutId:\"DJQAv8bmy\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-2gsnqp\",\"data-framer-name\":\"Items Wrapper Inner\",layoutDependency:layoutDependency,layoutId:\"j0fWZjvZ7\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qxFJOAuVG\"},implicitPathVariables:undefined},{href:{webPageId:\"qxFJOAuVG\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0,...addPropertyOverrides({VzVnUOA03:{y:(componentViewport?.y||0)+0+0+0+0+24+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12la0mw-container\",layoutDependency:layoutDependency,layoutId:\"vhToisqTE-container\",nodeId:\"vhToisqTE\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"kuOMCqDAb\",height:\"100%\",id:\"vhToisqTE\",layoutId:\"vhToisqTE\",NxFyOZlOR:resolvedLinks[0],ohTdXKhCJ:getLocalizedValue(\"v1\",activeLocale)??\"Bubty studio\",sRz8jlo8S:getLocalizedValue(\"v2\",activeLocale)??\"Knowledge Hub\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({VzVnUOA03:{NxFyOZlOR:resolvedLinks[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"VQz0yuvvE\"},implicitPathVariables:undefined},{href:{webPageId:\"VQz0yuvvE\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+60,...addPropertyOverrides({VzVnUOA03:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+24+0+0+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1huh6u2-container\",layoutDependency:layoutDependency,layoutId:\"lVcOS80nr-container\",nodeId:\"lVcOS80nr\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"WoZhOcvaD\",height:\"100%\",id:\"lVcOS80nr\",layoutId:\"lVcOS80nr\",NxFyOZlOR:resolvedLinks1[0],ohTdXKhCJ:getLocalizedValue(\"v3\",activeLocale)??\"Blogs & News\",sRz8jlo8S:getLocalizedValue(\"v4\",activeLocale)??\"What's new at Bubty\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({VzVnUOA03:{NxFyOZlOR:resolvedLinks1[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"CV190fRde\"},implicitPathVariables:undefined},{href:{webPageId:\"CV190fRde\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+120,...addPropertyOverrides({VzVnUOA03:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+24+0+0+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1prwgf9-container\",layoutDependency:layoutDependency,layoutId:\"dnBTymH7D-container\",nodeId:\"dnBTymH7D\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"vwXoHqdth\",height:\"100%\",id:\"dnBTymH7D\",layoutId:\"dnBTymH7D\",NxFyOZlOR:resolvedLinks2[0],ohTdXKhCJ:getLocalizedValue(\"v5\",activeLocale)??\"Client Cases\",sRz8jlo8S:getLocalizedValue(\"v6\",activeLocale)??\"See what our clients say\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({VzVnUOA03:{NxFyOZlOR:resolvedLinks2[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"SVsUz0hbJ\"},implicitPathVariables:undefined},{href:{webPageId:\"SVsUz0hbJ\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+180,...addPropertyOverrides({VzVnUOA03:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+24+0+0+0+180}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3q6be7-container\",layoutDependency:layoutDependency,layoutId:\"o3OB8KiTu-container\",nodeId:\"o3OB8KiTu\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"B5gHYb26e\",height:\"100%\",id:\"o3OB8KiTu\",layoutId:\"o3OB8KiTu\",NxFyOZlOR:resolvedLinks3[0],ohTdXKhCJ:getLocalizedValue(\"v7\",activeLocale)??\"Compliance Capsule\",sRz8jlo8S:getLocalizedValue(\"v8\",activeLocale)??\"Newsletter\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({VzVnUOA03:{NxFyOZlOR:resolvedLinks3[1],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"mUcuWYs9h\"},implicitPathVariables:undefined},{href:{webPageId:\"mUcuWYs9h\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+240,...addPropertyOverrides({VzVnUOA03:{width:`max(${componentViewport?.width||\"100vw\"} - 64px, 1px)`,y:(componentViewport?.y||0)+0+0+0+0+24+0+0+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1scql1h-container\",layoutDependency:layoutDependency,layoutId:\"XOZgRKrz8-container\",nodeId:\"XOZgRKrz8\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"B5gHYb26e\",height:\"100%\",id:\"XOZgRKrz8\",layoutId:\"XOZgRKrz8\",NxFyOZlOR:resolvedLinks4[0],ohTdXKhCJ:\"Business Insider\",sRz8jlo8S:\"Newsletter\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({VzVnUOA03:{NxFyOZlOR:resolvedLinks4[1],style:{width:\"100%\"}}},baseVariant,gestureVariant)})})})})]})})]}),isDisplayed()&&/*#__PURE__*/_jsxs(motion.div,{className:\"framer-10bu1mw\",\"data-framer-name\":\"Right\",layoutDependency:layoutDependency,layoutId:\"pgWnw3nBE\",style:{backgroundColor:\"var(--token-57cdbc7c-efa8-4402-ada8-195b60f33186, rgb(251, 251, 251))\",borderBottomRightRadius:20,borderTopRightRadius:20},children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v9\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(143, 90, 255) 0%, rgb(175, 96, 255) 51.351400000000005%, rgb(77, 73, 249) 100%)\"},children:\"Whats New?\"})})}),className:\"framer-173ehv1\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"y5AC0FDyp\",style:{\"--extracted-1w1cjl5\":\"var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1owkutk\",layoutDependency:layoutDependency,layoutId:\"Sj_AuhCf_\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"Sj_AuhCf_\",data:Blog,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"Sj_AuhCf_\",direction:\"desc\",name:\"Zqb0ZfAcM\",type:\"Identifier\"}],select:[{collection:\"Sj_AuhCf_\",name:\"L0LjlmzZB\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"Mo_L1FkG3\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"AsSl9FYL5\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"Zqb0ZfAcM\",type:\"Identifier\"},{collection:\"Sj_AuhCf_\",name:\"id\",type:\"Identifier\"}]},children:(collection,paginationInfo,loadMore)=>/*#__PURE__*/_jsx(_Fragment,{children:collection?.map(({AsSl9FYL5:AsSl9FYL5Sj_AuhCf_,id:idSj_AuhCf_,L0LjlmzZB:L0LjlmzZBSj_AuhCf_,Mo_L1FkG3:Mo_L1FkG3Sj_AuhCf_,Zqb0ZfAcM:Zqb0ZfAcMSj_AuhCf_},index)=>{L0LjlmzZBSj_AuhCf_??=\"\";AsSl9FYL5Sj_AuhCf_??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`Sj_AuhCf_-${idSj_AuhCf_}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{L0LjlmzZB:L0LjlmzZBSj_AuhCf_},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ht4ml5\",layoutDependency:layoutDependency,layoutId:\"OxkjbSmAZ\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{L0LjlmzZB:L0LjlmzZBSj_AuhCf_},webPageId:\"ezXg2QrZv\"},implicitPathVariables:undefined}],children:resolvedLinks5=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"315px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-4nuumc-container\",layoutDependency:layoutDependency,layoutId:\"gAbCY9B3S-container\",nodeId:\"gAbCY9B3S\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(CollectionListItem,{CObOqn_wO:false,fSgOfsKZP:Zqb0ZfAcMSj_AuhCf_,height:\"100%\",id:\"gAbCY9B3S\",layoutId:\"gAbCY9B3S\",style:{width:\"100%\"},variant:\"qtTnsWP24\",vPcE1jDRP:resolvedLinks5[0],width:\"100%\",Y5kQI62Qh:AsSl9FYL5Sj_AuhCf_,Z1jIb7bes:toResponsiveImage(Mo_L1FkG3Sj_AuhCf_)})})})})})})},idSj_AuhCf_);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-2lcvgr\",layoutDependency:layoutDependency,layoutId:\"eXyENuWAi\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"eXyENuWAi\",data:ClientCases,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"eXyENuWAi\",direction:\"desc\",name:\"LOYzFfM1M\",type:\"Identifier\"}],select:[{collection:\"eXyENuWAi\",name:\"T5ra6gofw\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"nPmwCXETe\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"fMGSjpMrw\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"LOYzFfM1M\",type:\"Identifier\"},{collection:\"eXyENuWAi\",name:\"id\",type:\"Identifier\"}]},children:(collection1,paginationInfo1,loadMore1)=>/*#__PURE__*/_jsx(_Fragment,{children:collection1?.map(({fMGSjpMrw:fMGSjpMrweXyENuWAi,id:ideXyENuWAi,LOYzFfM1M:LOYzFfM1MeXyENuWAi,nPmwCXETe:nPmwCXETeeXyENuWAi,T5ra6gofw:T5ra6gofweXyENuWAi},index1)=>{T5ra6gofweXyENuWAi??=\"\";fMGSjpMrweXyENuWAi??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`eXyENuWAi-${ideXyENuWAi}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{T5ra6gofw:T5ra6gofweXyENuWAi},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1xlwnja\",layoutDependency:layoutDependency,layoutId:\"u1fSGVTom\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{T5ra6gofw:T5ra6gofweXyENuWAi},webPageId:\"ezXg2QrZv\"},implicitPathVariables:{T5ra6gofw:T5ra6gofweXyENuWAi}}],children:resolvedLinks6=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"315px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-zj6wgc-container\",layoutDependency:layoutDependency,layoutId:\"kJ1NTUmHm-container\",nodeId:\"kJ1NTUmHm\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(CollectionListItem,{CObOqn_wO:false,fSgOfsKZP:LOYzFfM1MeXyENuWAi,height:\"100%\",id:\"kJ1NTUmHm\",layoutId:\"kJ1NTUmHm\",style:{width:\"100%\"},variant:\"qtTnsWP24\",vPcE1jDRP:resolvedLinks6[0],width:\"100%\",Y5kQI62Qh:fMGSjpMrweXyENuWAi,Z1jIb7bes:toResponsiveImage(nPmwCXETeeXyENuWAi)})})})})})})},ideXyENuWAi);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-ncrozs\",layoutDependency:layoutDependency,layoutId:\"FNtbJCHmm\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"FNtbJCHmm\",data:Newsletters,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"FNtbJCHmm\",direction:\"desc\",name:\"vKUp_yl6_\",type:\"Identifier\"}],select:[{collection:\"FNtbJCHmm\",name:\"E2rR29ryz\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"iLPZl6ezX\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"WFXwIQoov\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"vKUp_yl6_\",type:\"Identifier\"},{collection:\"FNtbJCHmm\",name:\"id\",type:\"Identifier\"}]},children:(collection2,paginationInfo2,loadMore2)=>/*#__PURE__*/_jsx(_Fragment,{children:collection2?.map(({E2rR29ryz:E2rR29ryzFNtbJCHmm,id:idFNtbJCHmm,iLPZl6ezX:iLPZl6ezXFNtbJCHmm,vKUp_yl6_:vKUp_yl6_FNtbJCHmm,WFXwIQoov:WFXwIQoovFNtbJCHmm},index2)=>{E2rR29ryzFNtbJCHmm??=\"\";WFXwIQoovFNtbJCHmm??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`FNtbJCHmm-${idFNtbJCHmm}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{E2rR29ryz:E2rR29ryzFNtbJCHmm},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-umjd50\",layoutDependency:layoutDependency,layoutId:\"M7AWTO5fh\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{E2rR29ryz:E2rR29ryzFNtbJCHmm},webPageId:\"ezXg2QrZv\"},implicitPathVariables:{E2rR29ryz:E2rR29ryzFNtbJCHmm}}],children:resolvedLinks7=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"315px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-afyem0-container\",layoutDependency:layoutDependency,layoutId:\"uSpoL8xEz-container\",nodeId:\"uSpoL8xEz\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(CollectionListItem,{CObOqn_wO:false,fSgOfsKZP:vKUp_yl6_FNtbJCHmm,height:\"100%\",id:\"uSpoL8xEz\",layoutId:\"uSpoL8xEz\",style:{width:\"100%\"},variant:\"qtTnsWP24\",vPcE1jDRP:resolvedLinks7[0],width:\"100%\",Y5kQI62Qh:WFXwIQoovFNtbJCHmm,Z1jIb7bes:toResponsiveImage(iLPZl6ezXFNtbJCHmm)})})})})})})},idFNtbJCHmm);})})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-12aqng5\",layoutDependency:layoutDependency,layoutId:\"QiFb023gJ\",children:/*#__PURE__*/_jsx(ChildrenCanSuspend,{children:/*#__PURE__*/_jsx(QueryData,{query:{from:{alias:\"QiFb023gJ\",data:Studio,type:\"Collection\"},limit:{type:\"LiteralValue\",value:1},orderBy:[{collection:\"QiFb023gJ\",direction:\"desc\",name:\"MDGoFfhNx\",type:\"Identifier\"}],select:[{collection:\"QiFb023gJ\",name:\"GSfoaFOn2\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"SmmQJp9sX\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"Twa1qQ6Hv\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"MDGoFfhNx\",type:\"Identifier\"},{collection:\"QiFb023gJ\",name:\"id\",type:\"Identifier\"}]},children:(collection3,paginationInfo3,loadMore3)=>/*#__PURE__*/_jsx(_Fragment,{children:collection3?.map(({GSfoaFOn2:GSfoaFOn2QiFb023gJ,id:idQiFb023gJ,MDGoFfhNx:MDGoFfhNxQiFb023gJ,SmmQJp9sX:SmmQJp9sXQiFb023gJ,Twa1qQ6Hv:Twa1qQ6HvQiFb023gJ},index3)=>{GSfoaFOn2QiFb023gJ??=\"\";Twa1qQ6HvQiFb023gJ??=\"\";return /*#__PURE__*/_jsx(LayoutGroup,{id:`QiFb023gJ-${idQiFb023gJ}`,children:/*#__PURE__*/_jsx(PathVariablesContext.Provider,{value:{GSfoaFOn2:GSfoaFOn2QiFb023gJ},children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-fwgwl4\",layoutDependency:layoutDependency,layoutId:\"sfzQWUXRE\",children:/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{pathVariables:{GSfoaFOn2:GSfoaFOn2QiFb023gJ},webPageId:\"ezXg2QrZv\"},implicitPathVariables:{GSfoaFOn2:GSfoaFOn2QiFb023gJ}}],children:resolvedLinks8=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:70,width:\"315px\",children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-12wy7zm-container\",layoutDependency:layoutDependency,layoutId:\"Y7hoLc4dG-container\",nodeId:\"Y7hoLc4dG\",rendersWithMotion:true,scopeId:\"ohNDI4elP\",children:/*#__PURE__*/_jsx(CollectionListItem,{CObOqn_wO:false,fSgOfsKZP:MDGoFfhNxQiFb023gJ,height:\"100%\",id:\"Y7hoLc4dG\",layoutId:\"Y7hoLc4dG\",style:{width:\"100%\"},variant:\"qtTnsWP24\",vPcE1jDRP:resolvedLinks8[0],width:\"100%\",Y5kQI62Qh:Twa1qQ6HvQiFb023gJ,Z1jIb7bes:toResponsiveImage(SmmQJp9sXQiFb023gJ)})})})})})})},idQiFb023gJ);})})})})})]})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-tW8Cf.framer-kc5z31, .framer-tW8Cf .framer-kc5z31 { display: block; }\",\".framer-tW8Cf.framer-1fxr1mz { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-tW8Cf .framer-7t3np6 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-tW8Cf .framer-rd9lfb { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tW8Cf .framer-2jaip5, .framer-tW8Cf .framer-173ehv1 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-tW8Cf .framer-1qwrmim { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tW8Cf .framer-2gsnqp { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-tW8Cf .framer-12la0mw-container, .framer-tW8Cf .framer-1huh6u2-container, .framer-tW8Cf .framer-1prwgf9-container, .framer-tW8Cf .framer-3q6be7-container, .framer-tW8Cf .framer-1scql1h-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-tW8Cf .framer-10bu1mw { align-content: flex-start; align-items: flex-start; align-self: stretch; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: auto; justify-content: flex-start; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: min-content; will-change: var(--framer-will-change-override, transform); }\",\".framer-tW8Cf .framer-1owkutk, .framer-tW8Cf .framer-2lcvgr, .framer-tW8Cf .framer-ncrozs, .framer-tW8Cf .framer-12aqng5 { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: 1px; justify-content: center; padding: 0px; position: relative; width: min-content; }\",\".framer-tW8Cf .framer-1ht4ml5, .framer-tW8Cf .framer-1xlwnja, .framer-tW8Cf .framer-umjd50, .framer-tW8Cf .framer-fwgwl4 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: wrap; gap: 24px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: 315px; }\",\".framer-tW8Cf .framer-4nuumc-container, .framer-tW8Cf .framer-zj6wgc-container, .framer-tW8Cf .framer-afyem0-container, .framer-tW8Cf .framer-12wy7zm-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-tW8Cf.framer-v-j23dsx.framer-1fxr1mz { width: 390px; }\",\".framer-tW8Cf.framer-v-j23dsx .framer-7t3np6 { flex-direction: column; width: 100%; }\",\".framer-tW8Cf.framer-v-j23dsx .framer-rd9lfb { width: 100%; will-change: unset; }\",\".framer-tW8Cf.framer-v-j23dsx .framer-1qwrmim, .framer-tW8Cf.framer-v-j23dsx .framer-1huh6u2-container, .framer-tW8Cf.framer-v-j23dsx .framer-1prwgf9-container, .framer-tW8Cf.framer-v-j23dsx .framer-3q6be7-container, .framer-tW8Cf.framer-v-j23dsx .framer-1scql1h-container { width: 100%; }\",\".framer-tW8Cf.framer-v-j23dsx .framer-2gsnqp { flex: 1 0 0px; width: 1px; }\",...sharedStyle.css,'.framer-tW8Cf[data-border=\"true\"]::after, .framer-tW8Cf [data-border=\"true\"]::after { content: \"\"; border-width: var(--border-top-width, 0) var(--border-right-width, 0) var(--border-bottom-width, 0) var(--border-left-width, 0); border-color: var(--border-color, none); border-style: var(--border-style, none); width: 100%; height: 100%; position: absolute; box-sizing: border-box; left: 0; top: 0; border-radius: inherit; pointer-events: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 372\n * @framerIntrinsicWidth 632\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"VzVnUOA03\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerohNDI4elP=withCSS(Component,css,\"framer-tW8Cf\");export default FramerohNDI4elP;FramerohNDI4elP.displayName=\"Menu/ Category: Resources\";FramerohNDI4elP.defaultProps={height:372,width:632};addPropertyControls(FramerohNDI4elP,{variant:{options:[\"kwyFFyla3\",\"VzVnUOA03\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerohNDI4elP,[{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\"}]},...MenuDropdownItemFonts,...CollectionListItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerohNDI4elP\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"632\",\"framerColorSyntax\":\"true\",\"framerIntrinsicHeight\":\"372\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"VzVnUOA03\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{jsx as _jsx}from\"react/jsx-runtime\";import{motion}from\"framer-motion\";import*as React from\"react\";export const v0=/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Kenmerken\"})})});export const v1=\"Onboard\";export const v2=\"Freelancers automatisch onboarden\";export const v3=\"Talentpool\";export const v4=\"Bouw je eigen private pool\";export const v5=\"Contract\";export const v6=\"Match, onderhandel en contracteer\";export const v7=\"Naleving\";export const v8=\"Classificeer zzp'ers\";export const v9=\"Globale Betaling\";export const v10=\"Betaal in meer dan 190 landen\";\nexport const __FramerMetadata__ = {\"exports\":{\"v8\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v9\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v10\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport*as localizedValues from\"./W3gSQ8sIl-0.js\";const valuesByLocaleId={MHMeTib5C:localizedValues};export default function getLocalizedValue(key,locale){while(locale){const values=valuesByLocaleId[locale.id];if(values){const value=values[key];if(value)return value;}locale=locale.fallback;}}\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,ResolveLinks,RichText,SmartComponentScopedContainer,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle from\"https://framerusercontent.com/modules/RJZEHi5o0wdxjVMhDzqV/ntuFUkXsVOb7uSP4lOwm/DN6zcsWvu.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/1mm4Muxuynt8dkl35oSd/s0SoeUHuZ8cAnBwsI1K6/W3gSQ8sIl.js\";import MenuDropdownItem from\"https://framerusercontent.com/modules/cWV0LlV4bO001hkHaxq5/Lp2ieEb7e6Troch7n6J7/w5HfsgO_Y.js\";const MenuDropdownItemFonts=getFonts(MenuDropdownItem);const cycleOrder=[\"tDLMaboTl\",\"j_5Egp4_w\"];const serializationHash=\"framer-HL9xE\";const variantClassNames={j_5Egp4_w:\"framer-v-12657k9\",tDLMaboTl:\"framer-v-fycoyr\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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:\"tDLMaboTl\",Phone:\"j_5Egp4_w\"};const getProps=({height,id,width,...props})=>{return{...props,variant:humanReadableVariantMap[props.variant]??props.variant??\"tDLMaboTl\"};};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:\"tDLMaboTl\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[sharedStyle.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-fycoyr\",className,classNames),\"data-framer-name\":\"Desktop\",layoutDependency:layoutDependency,layoutId:\"tDLMaboTl\",ref:refBinding,style:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:20,borderBottomRightRadius:20,borderTopLeftRadius:20,borderTopRightRadius:20,boxShadow:\"0px 0px 10px 0px rgba(0, 0, 0, 0.12)\",...style},variants:{j_5Egp4_w:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({j_5Egp4_w:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(motion.div,{className:\"framer-1m3vg1d\",\"data-framer-name\":\"Menu/ Dropdown\",layoutDependency:layoutDependency,layoutId:\"RqKtxpxFv\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1e5mvs5\",\"data-framer-name\":\"Left\",layoutDependency:layoutDependency,layoutId:\"Kz88b8beH\",children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:getLocalizedValue(\"v0\",activeLocale)??/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h6,{className:\"framer-styles-preset-ze92xd\",\"data-styles-preset\":\"DN6zcsWvu\",style:{\"--framer-text-color\":\"var(--extracted-1w1cjl5, var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253)))\"},children:/*#__PURE__*/_jsx(motion.span,{\"data-text-fill\":\"true\",style:{backgroundImage:\"linear-gradient(90deg, rgb(186, 144, 255) 0%, rgb(143, 90, 255) 51.351400000000005%, rgb(155, 146, 255) 100%)\"},children:\"Features\"})})}),className:\"framer-yyry48\",\"data-framer-name\":\"Label\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"AQ7yURmBI\",style:{\"--extracted-1w1cjl5\":\"var(--token-8a1f2cf8-5648-458d-987f-de21c524aec0, rgb(123, 63, 253))\",\"--framer-paragraph-spacing\":\"0px\"},verticalAlignment:\"top\",withExternalLayout:true}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-aikxok\",\"data-framer-name\":\"Items Wrapper Outter\",layoutDependency:layoutDependency,layoutId:\"T06YT_B30\",children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-d2zd43\",\"data-framer-name\":\"Items Wrapper Inner\",layoutDependency:layoutDependency,layoutId:\"ImS4SYeDM\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1u35out\",\"data-framer-name\":\"Inner Left\",layoutDependency:layoutDependency,layoutId:\"jfTUSTrLi\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"GUUc4V7zp\"},implicitPathVariables:undefined},{href:{webPageId:\"GUUc4V7zp\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0+0,...addPropertyOverrides({j_5Egp4_w:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+0+0+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-x66038-container\",layoutDependency:layoutDependency,layoutId:\"JBLw0iAzv-container\",nodeId:\"JBLw0iAzv\",rendersWithMotion:true,scopeId:\"W3gSQ8sIl\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"HITZvXKlL\",height:\"100%\",id:\"JBLw0iAzv\",layoutId:\"JBLw0iAzv\",NxFyOZlOR:resolvedLinks[0],ohTdXKhCJ:getLocalizedValue(\"v1\",activeLocale)??\"Onboard\",sRz8jlo8S:getLocalizedValue(\"v2\",activeLocale)??\"Onboard freelancers automatically\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({j_5Egp4_w:{NxFyOZlOR:resolvedLinks[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"vXAv3KJax\"},implicitPathVariables:undefined},{href:{webPageId:\"vXAv3KJax\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0+60,...addPropertyOverrides({j_5Egp4_w:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+0+0+0+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-o0beno-container\",layoutDependency:layoutDependency,layoutId:\"pBd2C0L44-container\",nodeId:\"pBd2C0L44\",rendersWithMotion:true,scopeId:\"W3gSQ8sIl\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"M2cep9WKu\",height:\"100%\",id:\"pBd2C0L44\",layoutId:\"pBd2C0L44\",NxFyOZlOR:resolvedLinks1[0],ohTdXKhCJ:getLocalizedValue(\"v3\",activeLocale)??\"Talent Pool\",sRz8jlo8S:getLocalizedValue(\"v4\",activeLocale)??\"Build your own private pool\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({j_5Egp4_w:{NxFyOZlOR:resolvedLinks1[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"qzS1l_wn4\"},implicitPathVariables:undefined},{href:{webPageId:\"qzS1l_wn4\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0+120,...addPropertyOverrides({j_5Egp4_w:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+0+0+0+0+120}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1p0l18g-container\",layoutDependency:layoutDependency,layoutId:\"fySS5cqT3-container\",nodeId:\"fySS5cqT3\",rendersWithMotion:true,scopeId:\"W3gSQ8sIl\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"h5ijp5IHC\",height:\"100%\",id:\"fySS5cqT3\",layoutId:\"fySS5cqT3\",NxFyOZlOR:resolvedLinks2[0],ohTdXKhCJ:getLocalizedValue(\"v5\",activeLocale)??\"Contract\",sRz8jlo8S:getLocalizedValue(\"v6\",activeLocale)??\"Match, Negotiate, Contract\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({j_5Egp4_w:{NxFyOZlOR:resolvedLinks2[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})})]}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1p1cfw9\",\"data-framer-name\":\"Inner Right\",layoutDependency:layoutDependency,layoutId:\"dlehq66iH\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"KdmOTkD0t\"},implicitPathVariables:undefined},{href:{webPageId:\"KdmOTkD0t\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0+0,...addPropertyOverrides({j_5Egp4_w:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+0+0+180+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1ymogbt-container\",layoutDependency:layoutDependency,layoutId:\"merBePkA6-container\",nodeId:\"merBePkA6\",rendersWithMotion:true,scopeId:\"W3gSQ8sIl\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"jL8EXpas7\",height:\"100%\",id:\"merBePkA6\",layoutId:\"merBePkA6\",NxFyOZlOR:resolvedLinks3[0],ohTdXKhCJ:getLocalizedValue(\"v7\",activeLocale)??\"Compliance\",sRz8jlo8S:getLocalizedValue(\"v8\",activeLocale)??\"Classify freelancers properly\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({j_5Egp4_w:{NxFyOZlOR:resolvedLinks3[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"FCasFQINg\"},implicitPathVariables:undefined},{href:{webPageId:\"FCasFQINg\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,y:(componentViewport?.y||0)+0+0+0+24+44+0+0+0+60,...addPropertyOverrides({j_5Egp4_w:{width:`calc(${componentViewport?.width||\"100vw\"} - 64px)`,y:(componentViewport?.y||0)+0+0+0+0+24+44+0+0+0+180+0+60}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-iogmd5-container\",layoutDependency:layoutDependency,layoutId:\"gIbZHDCzV-container\",nodeId:\"gIbZHDCzV\",rendersWithMotion:true,scopeId:\"W3gSQ8sIl\",children:/*#__PURE__*/_jsx(MenuDropdownItem,{aWYreNnQF:\"VKOgGHvG3\",height:\"100%\",id:\"gIbZHDCzV\",layoutId:\"gIbZHDCzV\",NxFyOZlOR:resolvedLinks4[0],ohTdXKhCJ:getLocalizedValue(\"v9\",activeLocale)??\"Global Pay\",sRz8jlo8S:getLocalizedValue(\"v10\",activeLocale)??\"Pay in 190+ countries\",variant:\"dOB8cJ0FT\",width:\"100%\",...addPropertyOverrides({j_5Egp4_w:{NxFyOZlOR:resolvedLinks4[1],style:{width:\"100%\"},variant:\"O4aeS0j6l\"}},baseVariant,gestureVariant)})})})})]})]})})]})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-HL9xE.framer-to0v36, .framer-HL9xE .framer-to0v36 { display: block; }\",\".framer-HL9xE.framer-fycoyr { align-content: flex-start; align-items: flex-start; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; padding: 0px; position: relative; width: min-content; }\",\".framer-HL9xE .framer-1m3vg1d { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: flex-start; overflow: hidden; padding: 0px; position: relative; width: min-content; }\",\".framer-HL9xE .framer-1e5mvs5 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 24px 32px 24px 32px; position: relative; width: min-content; }\",\".framer-HL9xE .framer-yyry48 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-HL9xE .framer-aikxok { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HL9xE .framer-d2zd43 { 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; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-HL9xE .framer-1u35out, .framer-HL9xE .framer-1p1cfw9 { align-content: flex-start; align-items: flex-start; display: flex; flex: none; flex-direction: column; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: 256px; }\",\".framer-HL9xE .framer-x66038-container, .framer-HL9xE .framer-o0beno-container, .framer-HL9xE .framer-1p0l18g-container, .framer-HL9xE .framer-1ymogbt-container, .framer-HL9xE .framer-iogmd5-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-HL9xE.framer-v-12657k9.framer-fycoyr { overflow: hidden; width: 390px; }\",\".framer-HL9xE.framer-v-12657k9 .framer-1m3vg1d { flex-direction: column; overflow: visible; width: 100%; }\",\".framer-HL9xE.framer-v-12657k9 .framer-1e5mvs5 { justify-content: flex-start; overflow: visible; width: 100%; }\",\".framer-HL9xE.framer-v-12657k9 .framer-aikxok { flex-direction: column; width: 100%; }\",\".framer-HL9xE.framer-v-12657k9 .framer-d2zd43 { flex-direction: column; gap: 20px; width: 100%; }\",\".framer-HL9xE.framer-v-12657k9 .framer-1u35out, .framer-HL9xE.framer-v-12657k9 .framer-x66038-container, .framer-HL9xE.framer-v-12657k9 .framer-o0beno-container, .framer-HL9xE.framer-v-12657k9 .framer-1p0l18g-container, .framer-HL9xE.framer-v-12657k9 .framer-1p1cfw9, .framer-HL9xE.framer-v-12657k9 .framer-1ymogbt-container, .framer-HL9xE.framer-v-12657k9 .framer-iogmd5-container { width: 100%; }\",...sharedStyle.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 252\n * @framerIntrinsicWidth 608\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]},\"j_5Egp4_w\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerW3gSQ8sIl=withCSS(Component,css,\"framer-HL9xE\");export default FramerW3gSQ8sIl;FramerW3gSQ8sIl.displayName=\"Menu/ Category: Product\";FramerW3gSQ8sIl.defaultProps={height:252,width:608};addPropertyControls(FramerW3gSQ8sIl,{variant:{options:[\"tDLMaboTl\",\"j_5Egp4_w\"],optionTitles:[\"Desktop\",\"Phone\"],title:\"Variant\",type:ControlType.Enum}});addFonts(FramerW3gSQ8sIl,[{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\"}]},...MenuDropdownItemFonts,...getFontsFromSharedStyle(sharedStyle.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerW3gSQ8sIl\",\"slots\":[],\"annotations\":{\"framerImmutableVariables\":\"true\",\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"j_5Egp4_w\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"608\",\"framerIntrinsicHeight\":\"252\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (2a0d5ab)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getFontsFromSharedStyle,Link,RichText,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9WvMLkRqKXGnUGGHcZqR/nYNFnOlU46XlliiBRUK1/HeHTgvBV3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GmTkRg2dEjXdptdhix2P/8Y9fLkLAPeGcRIKwLBBt/PPyDnmCb5.js\";import LibraryBubtyIcons from\"https://framerusercontent.com/modules/4Dz9GzcvRbiW091kp88T/q9gM33mAChG4lXxm5sAQ/DIs1mT3Pk.js\";import MenuCategoryWhyBubty from\"https://framerusercontent.com/modules/v7D9sSfMv8cazYNFzFtn/klEzAxv0XtbVCi6zyq89/EaUuuoTXz.js\";import MenuCategoryCompany from\"https://framerusercontent.com/modules/Iu44109qjBVnWpMyRDWm/bGwAGldrBcOAKnhdSBzj/myp8bZJwQ.js\";import MenuCategoryResources from\"https://framerusercontent.com/modules/niBwcwPluTjmdpsMkwiZ/kEESNih6Y0C3U9fv5FHt/ohNDI4elP.js\";import MenuCategoryProduct from\"https://framerusercontent.com/modules/IZeVp5uHFaTBOrdFTcyz/uUbNWMGNKuTX24K87Pna/W3gSQ8sIl.js\";const LibraryBubtyIconsFonts=getFonts(LibraryBubtyIcons);const MenuCategoryProductFonts=getFonts(MenuCategoryProduct);const MenuCategoryCompanyFonts=getFonts(MenuCategoryCompany);const MenuCategoryResourcesFonts=getFonts(MenuCategoryResources);const MenuCategoryWhyBubtyFonts=getFonts(MenuCategoryWhyBubty);const cycleOrder=[\"aqy3cNago\",\"Z1D0cR4l3\",\"e9O8Rwn80\",\"mK8juHCVT\"];const serializationHash=\"framer-5GXym\";const variantClassNames={aqy3cNago:\"framer-v-1ufahfg\",e9O8Rwn80:\"framer-v-119276t\",mK8juHCVT:\"framer-v-1yxmgjw\",Z1D0cR4l3:\"framer-v-164s76\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:40,delay:0,mass:1,stiffness:600,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={\"Desk/ Closed\":\"aqy3cNago\",\"Desk/ Open\":\"Z1D0cR4l3\",\"Phone/ Closed\":\"e9O8Rwn80\",\"Phone/ Open\":\"mK8juHCVT\"};const getProps=({dropdownCompany,dropdownProduct,dropdownResources,dropdownWhyBubty,height,hover,id,link,title,width,...props})=>{return{...props,DApvjrdfG:title??props.DApvjrdfG??\"Product\",miO9y7hDv:dropdownResources??props.miO9y7hDv,NMQlPQQqQ:dropdownCompany??props.NMQlPQQqQ,PIECknLsB:link??props.PIECknLsB,PWSlWeqS6:hover??props.PWSlWeqS6,rHn3muUFS:dropdownWhyBubty??props.rHn3muUFS,variant:humanReadableVariantMap[props.variant]??props.variant??\"aqy3cNago\",Z4ywfFnsJ:dropdownProduct??props.Z4ywfFnsJ};};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,PWSlWeqS6,DApvjrdfG,PIECknLsB,Z4ywfFnsJ,NMQlPQQqQ,miO9y7hDv,rHn3muUFS,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"aqy3cNago\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter170i0h9=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(PWSlWeqS6){const res=await PWSlWeqS6(...args);if(res===false)return false;}});const onTap6m31nw=activeVariantCallback(async(...args)=>{setVariant(\"mK8juHCVT\");});const onTapzixl4e=activeVariantCallback(async(...args)=>{setVariant(\"e9O8Rwn80\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=value=>{if([\"e9O8Rwn80\",\"mK8juHCVT\"].includes(baseVariant))return value;return false;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:PIECknLsB,motionChild:true,nodeId:\"aqy3cNago\",scopeId:\"Dfuh2_KfO\",...addPropertyOverrides({e9O8Rwn80:{href:undefined},mK8juHCVT:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"Menu dropdown\",className:`${cx(scopingClassNames,\"framer-1ufahfg\",className,classNames)} framer-1fuxg1u`,\"data-framer-name\":\"Desk/ Closed\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"aqy3cNago\",onMouseEnter:onMouseEnter170i0h9,ref:refBinding,style:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",...style},tabIndex:1,...addPropertyOverrides({e9O8Rwn80:{\"data-framer-name\":\"Phone/ Closed\",\"data-highlight\":undefined,onMouseEnter:undefined},mK8juHCVT:{\"data-framer-name\":\"Phone/ Open\",\"data-highlight\":undefined,onMouseEnter:undefined},Z1D0cR4l3:{\"data-framer-name\":\"Desk/ Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1ocy6gw\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"E8ptQ94mM\",...addPropertyOverrides({e9O8Rwn80:{\"data-highlight\":true,onTap:onTap6m31nw},mK8juHCVT:{\"data-highlight\":true,onTap:onTapzixl4e}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tmdqj\",\"data-styles-preset\":\"PPyDnmCb5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255)))\"},children:\"Product\"})}),className:\"framer-10ckbi5\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"cmFVQhkd5\",style:{\"--extracted-r6o4lv\":\"var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:DApvjrdfG,variants:{e9O8Rwn80:{\"--extracted-1lwpl3i\":\"var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255))\"},mK8juHCVT:{\"--extracted-1lwpl3i\":\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\"},Z1D0cR4l3:{\"--extracted-r6o4lv\":\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({e9O8Rwn80:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1d29e48\",\"data-styles-preset\":\"HeHTgvBV3\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255)))\"},children:\"Product\"})})},mK8juHCVT:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1d29e48\",\"data-styles-preset\":\"HeHTgvBV3\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7)))\"},children:\"Product\"})})},Z1D0cR4l3:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tmdqj\",\"data-styles-preset\":\"PPyDnmCb5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7)))\"},children:\"Product\"})})}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(ComponentViewportProvider,{height:20,y:(componentViewport?.y||0)+(5+((componentViewport?.height||40)-10-20)/2)+0,...addPropertyOverrides({e9O8Rwn80:{height:24,width:\"24px\",y:(componentViewport?.y||0)+5+0+7},mK8juHCVT:{height:24,width:\"24px\",y:(componentViewport?.y||0)+5+0+7}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-fsvhy6-container\",layoutDependency:layoutDependency,layoutId:\"Ro0NJXwOm-container\",nodeId:\"Ro0NJXwOm\",rendersWithMotion:true,scopeId:\"Dfuh2_KfO\",style:{opacity:1,rotate:0},variants:{e9O8Rwn80:{rotate:0},mK8juHCVT:{opacity:.8,rotate:180},Z1D0cR4l3:{rotate:180}},children:/*#__PURE__*/_jsx(LibraryBubtyIcons,{height:\"100%\",id:\"Ro0NJXwOm\",layoutId:\"Ro0NJXwOm\",riJtIX2WW:\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\",variant:\"i66kIXxNl\",width:\"100%\",...addPropertyOverrides({e9O8Rwn80:{style:{height:\"100%\",width:\"100%\"},variant:\"LJQcQYgxJ\"},mK8juHCVT:{style:{height:\"100%\",width:\"100%\"},variant:\"LJQcQYgxJ\"}},baseVariant,gestureVariant)})})})]}),isDisplayed(Z4ywfFnsJ)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({e9O8Rwn80:{height:252,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+46},mK8juHCVT:{height:252,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+38}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-mte3mk-container\",layoutDependency:layoutDependency,layoutId:\"bBLilH2Ci-container\",nodeId:\"bBLilH2Ci\",rendersWithMotion:true,scopeId:\"Dfuh2_KfO\",style:{opacity:1},variants:{e9O8Rwn80:{opacity:0},mK8juHCVT:{opacity:1}},children:/*#__PURE__*/_jsx(MenuCategoryProduct,{height:\"100%\",id:\"bBLilH2Ci\",layoutId:\"bBLilH2Ci\",variant:\"tDLMaboTl\",width:\"100%\",...addPropertyOverrides({e9O8Rwn80:{style:{width:\"100%\"},variant:\"j_5Egp4_w\"},mK8juHCVT:{style:{width:\"100%\"},variant:\"j_5Egp4_w\"}},baseVariant,gestureVariant)})})}),isDisplayed(NMQlPQQqQ)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({e9O8Rwn80:{height:192,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+306},mK8juHCVT:{height:192,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+290}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fhzttr-container\",layoutDependency:layoutDependency,layoutId:\"qzuMquy_I-container\",nodeId:\"qzuMquy_I\",rendersWithMotion:true,scopeId:\"Dfuh2_KfO\",style:{opacity:1},variants:{e9O8Rwn80:{opacity:0},mK8juHCVT:{opacity:1}},children:/*#__PURE__*/_jsx(MenuCategoryCompany,{height:\"100%\",id:\"qzuMquy_I\",layoutId:\"qzuMquy_I\",style:{width:\"100%\"},variant:\"HhU8uNzyR\",width:\"100%\",...addPropertyOverrides({e9O8Rwn80:{variant:\"NrsvgFH15\"},mK8juHCVT:{variant:\"NrsvgFH15\"}},baseVariant,gestureVariant)})})}),isDisplayed(miO9y7hDv)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({e9O8Rwn80:{height:432,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+506},mK8juHCVT:{height:432,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+482}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-16zoycj-container\",layoutDependency:layoutDependency,layoutId:\"DfdXniZ7G-container\",nodeId:\"DfdXniZ7G\",rendersWithMotion:true,scopeId:\"Dfuh2_KfO\",style:{opacity:1},variants:{e9O8Rwn80:{opacity:0},mK8juHCVT:{opacity:1}},children:/*#__PURE__*/_jsx(MenuCategoryResources,{height:\"100%\",id:\"DfdXniZ7G\",layoutId:\"DfdXniZ7G\",style:{width:\"100%\"},variant:\"kwyFFyla3\",width:\"100%\",...addPropertyOverrides({e9O8Rwn80:{variant:\"VzVnUOA03\"},mK8juHCVT:{variant:\"VzVnUOA03\"}},baseVariant,gestureVariant)})})}),isDisplayed(rHn3muUFS)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({e9O8Rwn80:{height:312,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+946},mK8juHCVT:{height:312,width:`calc(${componentViewport?.width||\"100vw\"} - 8px)`,y:(componentViewport?.y||0)+5+914}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1882q75-container\",layoutDependency:layoutDependency,layoutId:\"hZl997Xwt-container\",nodeId:\"hZl997Xwt\",rendersWithMotion:true,scopeId:\"Dfuh2_KfO\",style:{opacity:1},variants:{e9O8Rwn80:{opacity:0},mK8juHCVT:{opacity:1}},children:/*#__PURE__*/_jsx(MenuCategoryWhyBubty,{height:\"100%\",id:\"hZl997Xwt\",layoutId:\"hZl997Xwt\",style:{width:\"100%\"},variant:\"KDlzvJqo9\",width:\"100%\",...addPropertyOverrides({e9O8Rwn80:{variant:\"hmIntsuHk\"},mK8juHCVT:{variant:\"hmIntsuHk\"}},baseVariant,gestureVariant)})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-5GXym.framer-1fuxg1u, .framer-5GXym .framer-1fuxg1u { display: block; }\",\".framer-5GXym.framer-1ufahfg { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 40px; justify-content: center; overflow: hidden; padding: 5px 0px 5px 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-5GXym .framer-1ocy6gw { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-5GXym .framer-10ckbi5 { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-5GXym .framer-fsvhy6-container, .framer-5GXym .framer-mte3mk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-5GXym .framer-1fhzttr-container, .framer-5GXym .framer-16zoycj-container, .framer-5GXym .framer-1882q75-container { flex: 1 0 0px; height: auto; position: relative; width: 1px; }\",\".framer-5GXym.framer-v-119276t.framer-1ufahfg { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 8px; height: 48px; justify-content: flex-start; padding: 5px 8px 5px 0px; width: 390px; }\",\".framer-5GXym.framer-v-119276t .framer-1ocy6gw { cursor: pointer; gap: unset; justify-content: space-evenly; width: 100%; }\",\".framer-5GXym.framer-v-119276t .framer-10ckbi5, .framer-5GXym.framer-v-1yxmgjw .framer-10ckbi5 { flex: 1 0 0px; white-space: pre-wrap; width: 1px; word-break: break-word; word-wrap: break-word; }\",\".framer-5GXym.framer-v-119276t .framer-fsvhy6-container, .framer-5GXym.framer-v-1yxmgjw .framer-fsvhy6-container { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 24px); width: 24px; }\",\".framer-5GXym.framer-v-119276t .framer-mte3mk-container, .framer-5GXym.framer-v-1yxmgjw .framer-mte3mk-container { width: 100%; }\",\".framer-5GXym.framer-v-119276t .framer-1fhzttr-container, .framer-5GXym.framer-v-119276t .framer-16zoycj-container, .framer-5GXym.framer-v-119276t .framer-1882q75-container, .framer-5GXym.framer-v-1yxmgjw .framer-1fhzttr-container, .framer-5GXym.framer-v-1yxmgjw .framer-16zoycj-container, .framer-5GXym.framer-v-1yxmgjw .framer-1882q75-container { flex: none; width: 100%; }\",\".framer-5GXym.framer-v-1yxmgjw.framer-1ufahfg { align-content: flex-start; align-items: flex-start; flex-direction: column; gap: 0px; height: min-content; justify-content: flex-start; padding: 5px 8px 5px 0px; width: 390px; }\",\".framer-5GXym.framer-v-1yxmgjw .framer-1ocy6gw { cursor: pointer; gap: 0px; justify-content: flex-start; width: 100%; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 83\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"Z1D0cR4l3\":{\"layout\":[\"auto\",\"fixed\"]},\"e9O8Rwn80\":{\"layout\":[\"fixed\",\"fixed\"]},\"mK8juHCVT\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"PWSlWeqS6\":\"hover\",\"DApvjrdfG\":\"title\",\"PIECknLsB\":\"link\",\"Z4ywfFnsJ\":\"dropdownProduct\",\"NMQlPQQqQ\":\"dropdownCompany\",\"miO9y7hDv\":\"dropdownResources\",\"rHn3muUFS\":\"dropdownWhyBubty\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerDfuh2_KfO=withCSS(Component,css,\"framer-5GXym\");export default FramerDfuh2_KfO;FramerDfuh2_KfO.displayName=\"Menu/ Trigger\";FramerDfuh2_KfO.defaultProps={height:40,width:83};addPropertyControls(FramerDfuh2_KfO,{variant:{options:[\"aqy3cNago\",\"Z1D0cR4l3\",\"e9O8Rwn80\",\"mK8juHCVT\"],optionTitles:[\"Desk/ Closed\",\"Desk/ Open\",\"Phone/ Closed\",\"Phone/ Open\"],title:\"Variant\",type:ControlType.Enum},PWSlWeqS6:{title:\"Hover\",type:ControlType.EventHandler},DApvjrdfG:{defaultValue:\"Product\",displayTextArea:false,title:\"Title\",type:ControlType.String},PIECknLsB:{title:\"Link\",type:ControlType.Link},Z4ywfFnsJ:{defaultValue:false,title:\"Dropdown: Product\",type:ControlType.Boolean},NMQlPQQqQ:{defaultValue:false,title:\"Dropdown: Company\",type:ControlType.Boolean},miO9y7hDv:{defaultValue:false,title:\"Dropdown: Resources\",type:ControlType.Boolean},rHn3muUFS:{defaultValue:false,title:\"Dropdown: Why Bubty\",type:ControlType.Boolean}});addFonts(FramerDfuh2_KfO,[{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\"}]},...LibraryBubtyIconsFonts,...MenuCategoryProductFonts,...MenuCategoryCompanyFonts,...MenuCategoryResourcesFonts,...MenuCategoryWhyBubtyFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerDfuh2_KfO\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"Z1D0cR4l3\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"e9O8Rwn80\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"mK8juHCVT\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerAutoSizeImages\":\"true\",\"framerIntrinsicWidth\":\"83\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"PWSlWeqS6\\\":\\\"hover\\\",\\\"DApvjrdfG\\\":\\\"title\\\",\\\"PIECknLsB\\\":\\\"link\\\",\\\"Z4ywfFnsJ\\\":\\\"dropdownProduct\\\",\\\"NMQlPQQqQ\\\":\\\"dropdownCompany\\\",\\\"miO9y7hDv\\\":\\\"dropdownResources\\\",\\\"rHn3muUFS\\\":\\\"dropdownWhyBubty\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"40\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (55cf326)\nimport{jsx as _jsx}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,getFontsFromSharedStyle,Link,RichText,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/9WvMLkRqKXGnUGGHcZqR/nYNFnOlU46XlliiBRUK1/HeHTgvBV3.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/GmTkRg2dEjXdptdhix2P/8Y9fLkLAPeGcRIKwLBBt/PPyDnmCb5.js\";const enabledGestures={FtQDtKKP8:{hover:true},NJxB98Jfn:{hover:true}};const cycleOrder=[\"NJxB98Jfn\",\"FtQDtKKP8\"];const serializationHash=\"framer-OX56Q\";const variantClassNames={FtQDtKKP8:\"framer-v-1p2mso1\",NJxB98Jfn:\"framer-v-whjk8a\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value??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={Desk:\"NJxB98Jfn\",Phone:\"FtQDtKKP8\"};const getProps=({click,height,id,link,title,width,...props})=>{return{...props,fR66SmE80:click??props.fR66SmE80,Nqh6nUIYR:title??props.Nqh6nUIYR??\"Enterprises\",Qbx2PdUws:link??props.Qbx2PdUws,variant:humanReadableVariantMap[props.variant]??props.variant??\"NJxB98Jfn\"};};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,Qbx2PdUws,Nqh6nUIYR,fR66SmE80,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"NJxB98Jfn\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap15eq90u=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(fR66SmE80){const res=await fR66SmE80(...args);if(res===false)return false;}});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsx(Link,{href:Qbx2PdUws,motionChild:true,nodeId:\"NJxB98Jfn\",scopeId:\"UKbHmsHnx\",children:/*#__PURE__*/_jsx(motion.a,{...restProps,...gestureHandlers,\"aria-label\":\"Menu\",className:`${cx(scopingClassNames,\"framer-whjk8a\",className,classNames)} framer-12c3dvp`,\"data-framer-name\":\"Desk\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"NJxB98Jfn\",onTap:onTap15eq90u,ref:refBinding,style:{...style},tabIndex:1,...addPropertyOverrides({\"FtQDtKKP8-hover\":{\"data-framer-name\":undefined},\"NJxB98Jfn-hover\":{\"data-framer-name\":undefined},FtQDtKKP8:{\"data-framer-name\":\"Phone\"}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tmdqj\",\"data-styles-preset\":\"PPyDnmCb5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255)))\"},children:\"Enterprises\"})}),className:\"framer-17ni5u\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"QB0gV7_Mx\",style:{\"--extracted-r6o4lv\":\"var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255))\",\"--framer-paragraph-spacing\":\"0px\"},text:Nqh6nUIYR,variants:{\"FtQDtKKP8-hover\":{\"--extracted-1lwpl3i\":\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\"},\"NJxB98Jfn-hover\":{\"--extracted-r6o4lv\":\"var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7))\"},FtQDtKKP8:{\"--extracted-1lwpl3i\":\"var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255))\"}},verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({\"FtQDtKKP8-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1d29e48\",\"data-styles-preset\":\"HeHTgvBV3\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7)))\"},children:\"Enterprises\"})})},\"NJxB98Jfn-hover\":{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-tmdqj\",\"data-styles-preset\":\"PPyDnmCb5\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--token-613aaa40-7c07-4515-ba1f-46b58393591c, rgba(255, 255, 255, 0.7)))\"},children:\"Enterprises\"})})},FtQDtKKP8:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.h5,{className:\"framer-styles-preset-1d29e48\",\"data-styles-preset\":\"HeHTgvBV3\",style:{\"--framer-text-color\":\"var(--extracted-1lwpl3i, var(--token-8a263245-abec-406c-a0e3-84d5742d04e7, rgb(255, 255, 255)))\"},children:\"Enterprises\"})})}},baseVariant,gestureVariant)})})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-OX56Q.framer-12c3dvp, .framer-OX56Q .framer-12c3dvp { display: block; }\",\".framer-OX56Q.framer-whjk8a { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: 40px; justify-content: center; overflow: visible; padding: 0px; position: relative; text-decoration: none; width: min-content; }\",\".framer-OX56Q .framer-17ni5u { -webkit-user-select: none; flex: none; height: auto; position: relative; user-select: none; white-space: pre; width: auto; }\",\".framer-OX56Q.framer-v-1p2mso1.framer-whjk8a { height: 48px; justify-content: flex-start; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 78\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"FtQDtKKP8\":{\"layout\":[\"auto\",\"fixed\"]},\"TrICviiA_\":{\"layout\":[\"auto\",\"fixed\"]},\"ceLDkr2ut\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"Qbx2PdUws\":\"link\",\"Nqh6nUIYR\":\"title\",\"fR66SmE80\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerUKbHmsHnx=withCSS(Component,css,\"framer-OX56Q\");export default FramerUKbHmsHnx;FramerUKbHmsHnx.displayName=\"Menu/ Item\";FramerUKbHmsHnx.defaultProps={height:40,width:78};addPropertyControls(FramerUKbHmsHnx,{variant:{options:[\"NJxB98Jfn\",\"FtQDtKKP8\"],optionTitles:[\"Desk\",\"Phone\"],title:\"Variant\",type:ControlType.Enum},Qbx2PdUws:{title:\"Link\",type:ControlType.Link},Nqh6nUIYR:{defaultValue:\"Enterprises\",displayTextArea:false,title:\"Title\",type:ControlType.String},fR66SmE80:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerUKbHmsHnx,[{explicitInter:true,fonts:[{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0460-052F, U+1C80-1C88, U+20B4, U+2DE0-2DFF, U+A640-A69F, U+FE2E-FE2F\",url:\"https://framerusercontent.com/assets/5vvr9Vy74if2I6bQbJvbw7SY1pQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0301, U+0400-045F, U+0490-0491, U+04B0-04B1, U+2116\",url:\"https://framerusercontent.com/assets/EOr0mi4hNtlgWNn9if640EZzXCo.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+1F00-1FFF\",url:\"https://framerusercontent.com/assets/Y9k9QrlZAqio88Klkmbd8VoMQc.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0370-03FF\",url:\"https://framerusercontent.com/assets/OYrD2tBIBPvoJXiIHnLoOXnY9M.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0100-024F, U+0259, U+1E00-1EFF, U+2020, U+20A0-20AB, U+20AD-20CF, U+2113, U+2C60-2C7F, U+A720-A7FF\",url:\"https://framerusercontent.com/assets/JeYwfuaPfZHQhEG8U5gtPDZ7WQ.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD\",url:\"https://framerusercontent.com/assets/vQyevYAyHtARFwPqUzQGpnDs.woff2\",weight:\"400\"},{family:\"Inter\",source:\"framer\",style:\"normal\",unicodeRange:\"U+0102-0103, U+0110-0111, U+0128-0129, U+0168-0169, U+01A0-01A1, U+01AF-01B0, U+1EA0-1EF9, U+20AB\",url:\"https://framerusercontent.com/assets/b6Y37FthZeALduNqHicBT6FutY.woff2\",weight:\"400\"}]},...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerUKbHmsHnx\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerComponentViewportWidth\":\"true\",\"framerVariables\":\"{\\\"Qbx2PdUws\\\":\\\"link\\\",\\\"Nqh6nUIYR\\\":\\\"title\\\",\\\"fR66SmE80\\\":\\\"click\\\"}\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"FtQDtKKP8\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"TrICviiA_\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"ceLDkr2ut\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"40\",\"framerContractVersion\":\"1\",\"framerIntrinsicWidth\":\"78\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./UKbHmsHnx.map", "// Generated by Framer (838580a)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ControlType,cx,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useVariantState,withCSS}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";const cycleOrder=[\"eSdcmKXGz\",\"YIHKINEHV\"];const serializationHash=\"framer-PPJhc\";const variantClassNames={eSdcmKXGz:\"framer-v-cyg9mw\",YIHKINEHV:\"framer-v-1mbvwir\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants===null||variants===void 0?void 0:variants.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const transition1={damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"};const Transition=({value,children})=>{const config=React.useContext(MotionConfigContext);const transition=value!==null&&value!==void 0?value:config.transition;const contextValue=React.useMemo(()=>({...config,transition}),[JSON.stringify(transition)]);return /*#__PURE__*/_jsx(MotionConfigContext.Provider,{value:contextValue,children:children});};const Variants=motion(React.Fragment);const humanReadableVariantMap={Clos:\"YIHKINEHV\",Menu:\"eSdcmKXGz\"};const getProps=({click,height,id,width,...props})=>{var _humanReadableVariantMap_props_variant,_ref;return{...props,KpCu0nILC:click!==null&&click!==void 0?click:props.KpCu0nILC,variant:(_ref=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref!==void 0?_ref:\"eSdcmKXGz\"};};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,KpCu0nILC,...restProps}=getProps(props);const{baseVariant,classNames,gestureHandlers,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"eSdcmKXGz\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1kpnrh5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KpCu0nILC){const res=await KpCu0nILC(...args);if(res===false)return false;}setVariant(\"YIHKINEHV\");});const onTap1gwhwg5=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(KpCu0nILC){const res=await KpCu0nILC(...args);if(res===false)return false;}setVariant(\"eSdcmKXGz\");});const ref1=React.useRef(null);const defaultLayoutId=React.useId();const sharedStyleClassNames=[];const componentViewport=useComponentViewport();return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId!==null&&layoutId!==void 0?layoutId:defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,children:/*#__PURE__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(serializationHash,...sharedStyleClassNames,\"framer-cyg9mw\",className,classNames),\"data-framer-name\":\"Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"eSdcmKXGz\",onTap:onTap1kpnrh5,ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({YIHKINEHV:{\"data-framer-name\":\"Clos\",onTap:onTap1gwhwg5}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1yyjg5i\",\"data-framer-name\":\"Bottom\",layoutDependency:layoutDependency,layoutId:\"lOXZvF7Oq\",style:{backgroundColor:\"var(--token-5c00d2ae-c67d-4dfb-8c97-3cc6c1c7eaa3, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{YIHKINEHV:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-55tolo\",\"data-framer-name\":\"Mid\",layoutDependency:layoutDependency,layoutId:\"SOFdQ3xU1\",style:{backgroundColor:\"var(--token-5c00d2ae-c67d-4dfb-8c97-3cc6c1c7eaa3, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{YIHKINEHV:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cmszzn\",\"data-framer-name\":\"Top\",layoutDependency:layoutDependency,layoutId:\"VDIKkyGC9\",style:{backgroundColor:\"var(--token-5c00d2ae-c67d-4dfb-8c97-3cc6c1c7eaa3, rgb(255, 255, 255))\",borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{YIHKINEHV:{rotate:45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PPJhc.framer-16mqoka, .framer-PPJhc .framer-16mqoka { display: block; }\",\".framer-PPJhc.framer-cyg9mw { cursor: pointer; height: 40px; overflow: hidden; position: relative; width: 40px; }\",\".framer-PPJhc .framer-1yyjg5i { bottom: 13px; flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PPJhc .framer-55tolo { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: calc(50.00000000000002% - 2px / 2); width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PPJhc .framer-1cmszzn { flex: none; height: 2px; left: calc(50.00000000000002% - 20px / 2); overflow: hidden; position: absolute; top: 13px; width: 20px; will-change: var(--framer-will-change-override, transform); }\",\".framer-PPJhc.framer-v-1mbvwir .framer-1yyjg5i { bottom: unset; top: calc(50.00000000000002% - 2px / 2); }\",\".framer-PPJhc.framer-v-1mbvwir .framer-1cmszzn { top: calc(50.00000000000002% - 2px / 2); }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 40\n * @framerIntrinsicWidth 40\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"YIHKINEHV\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"KpCu0nILC\":\"click\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerxP1En_j9o=withCSS(Component,css,\"framer-PPJhc\");export default FramerxP1En_j9o;FramerxP1En_j9o.displayName=\"Menu/ Hamburger Icon\";FramerxP1En_j9o.defaultProps={height:40,width:40};addPropertyControls(FramerxP1En_j9o,{variant:{options:[\"eSdcmKXGz\",\"YIHKINEHV\"],optionTitles:[\"Menu\",\"Clos\"],title:\"Variant\",type:ControlType.Enum},KpCu0nILC:{title:\"Click\",type:ControlType.EventHandler}});addFonts(FramerxP1En_j9o,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerxP1En_j9o\",\"slots\":[],\"annotations\":{\"framerContractVersion\":\"1\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"YIHKINEHV\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"40\",\"framerIntrinsicHeight\":\"40\",\"framerVariables\":\"{\\\"KpCu0nILC\\\":\\\"click\\\"}\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./xP1En_j9o.map", "// Generated by Framer (5b84331)\nimport{jsx as _jsx,jsxs as _jsxs,Fragment as _Fragment}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,Floating,getFonts,Link,ResolveLinks,SmartComponentScopedContainer,SVG,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useOverlayState,useRouter,useVariantState,withCSS,withFX}from\"framer\";import{AnimatePresence,LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import getLocalizedValue from\"https://framerusercontent.com/modules/Y3feIpU3gckEjmwirL39/g5kLJoH8RjJLV84WhYCi/D0psE4pI8.js\";import MenuTrigger from\"https://framerusercontent.com/modules/h7uXxB8qbaz6eeWdF4Lb/9Q40WlcjWqTxoFeywe7X/Dfuh2_KfO.js\";import MenuCategoryWhyBubty from\"https://framerusercontent.com/modules/v7D9sSfMv8cazYNFzFtn/klEzAxv0XtbVCi6zyq89/EaUuuoTXz.js\";import MenuCategoryResources from\"https://framerusercontent.com/modules/niBwcwPluTjmdpsMkwiZ/kEESNih6Y0C3U9fv5FHt/ohNDI4elP.js\";import InteractionStandartButtonBookADemoButton from\"https://framerusercontent.com/modules/IPK70yoEbzrv0O1rtbER/u8ysuknIwloKstZjUnma/Qe14B66sW.js\";import MenuItem from\"https://framerusercontent.com/modules/CGQwr5pJVKve4UvfgVeu/ghWh6hjh7I244jLpGc3W/UKbHmsHnx.js\";import MenuCategoryProduct from\"https://framerusercontent.com/modules/IZeVp5uHFaTBOrdFTcyz/uUbNWMGNKuTX24K87Pna/W3gSQ8sIl.js\";import MenuHamburgerIcon from\"https://framerusercontent.com/modules/Nq0E1EngyqBKhIKrbOsn/U9yeE1gmBWXgUQdTkCD5/xP1En_j9o.js\";const MenuHamburgerIconFonts=getFonts(MenuHamburgerIcon);const MenuTriggerFonts=getFonts(MenuTrigger);const MenuCategoryProductFonts=getFonts(MenuCategoryProduct);const SmartComponentScopedContainerWithFX=withFX(SmartComponentScopedContainer);const MenuCategoryWhyBubtyFonts=getFonts(MenuCategoryWhyBubty);const MenuCategoryResourcesFonts=getFonts(MenuCategoryResources);const MenuItemFonts=getFonts(MenuItem);const InteractionStandartButtonBookADemoButtonFonts=getFonts(InteractionStandartButtonBookADemoButton);const cycleOrder=[\"mFEruVpTQ\",\"IRqPSUPDg\",\"JJ6D9yt6X\"];const serializationHash=\"framer-q764K\";const variantClassNames={IRqPSUPDg:\"framer-v-1ukn9l6\",JJ6D9yt6X:\"framer-v-1qn1kwj\",mFEruVpTQ:\"framer-v-p6f5sm\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const numberToPixelString=value=>{if(typeof value!==\"number\")return value;if(!Number.isFinite(value))return undefined;return Math.max(0,value)+\"px\";};const transition1={damping:40,delay:0,mass:1,stiffness:400,type:\"spring\"};const transition2={damping:40,delay:0,mass:1,stiffness:600,type:\"spring\"};const transition3={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation1={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition3,x:0,y:0};const animation2={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const Overlay=({children,blockDocumentScrolling,enabled=true})=>{const[visible,setVisible]=useOverlayState({blockDocumentScrolling});return children({hide:()=>setVisible(false),show:()=>setVisible(true),toggle:()=>setVisible(!visible),visible:enabled&&visible});};const transition4={damping:40,delay:0,mass:.5,stiffness:600,type:\"spring\"};const animation3={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation4={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transformPerspective:1200,transition:transition4,x:0,y:0};const animation5={opacity:0,rotate:0,rotateX:0,rotateY:0,scale:.95,skewX:0,skewY:0,transformPerspective:1200,x:0,y:0};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={\"Phone Closed\":\"IRqPSUPDg\",\"Phone Open\":\"JJ6D9yt6X\",Desktop:\"mFEruVpTQ\"};const getProps=({background,height,hover,id,padding,width,...props})=>{return{...props,nJySxsDqh:hover??props.nJySxsDqh,variant:humanReadableVariantMap[props.variant]??props.variant??\"mFEruVpTQ\",vxvwgxn2C:background??props.vxvwgxn2C??\"rgba(0, 0, 0, 0)\",Z0DPz1nKy:padding??props.Z0DPz1nKy??\"0px 68px 0px 68px\"};};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,nJySxsDqh,Z0DPz1nKy,vxvwgxn2C,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"mFEruVpTQ\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapsji6jg=activeVariantCallback(async(...args)=>{setVariant(\"IRqPSUPDg\");});const KpCu0nILCqc5491=activeVariantCallback(async(...args)=>{setVariant(\"JJ6D9yt6X\");});const KpCu0nILCsji6jg=activeVariantCallback(async(...args)=>{setVariant(\"IRqPSUPDg\");});const PWSlWeqS61hot9d5=({overlay,loadMore})=>activeVariantCallback(async(...args)=>{if(nJySxsDqh){const res=await nJySxsDqh(...args);if(res===false)return false;}overlay.show();});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if([\"IRqPSUPDg\",\"JJ6D9yt6X\"].includes(baseVariant))return true;return false;};const ref1=React.useRef(null);const ref2=React.useRef(null);const ref3=React.useRef(null);const isDisplayed1=()=>{if(baseVariant===\"IRqPSUPDg\")return false;return true;};const ref4=React.useRef(null);const ref5=React.useRef(null);const ref6=React.useRef(null);const router=useRouter();const isDisplayed2=()=>{if(baseVariant===\"JJ6D9yt6X\")return true;return false;};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.nav,{...restProps,...gestureHandlers,\"aria-label\":\"Main navigation\",className:cx(scopingClassNames,\"framer-p6f5sm\",className,classNames),\"data-framer-name\":\"Desktop\",\"data-hide-scrollbars\":true,layoutDependency:layoutDependency,layoutId:\"mFEruVpTQ\",ref:refBinding,style:{\"--gxy8jk\":numberToPixelString(Z0DPz1nKy),backgroundColor:vxvwgxn2C,...style},variants:{JJ6D9yt6X:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\"}},...addPropertyOverrides({IRqPSUPDg:{\"data-framer-name\":\"Phone Closed\"},JJ6D9yt6X:{\"data-framer-name\":\"Phone Open\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1891a0n\",\"data-framer-name\":\"Placeholder\",layoutDependency:layoutDependency,layoutId:\"TqrNuoKq5\",style:{opacity:1},variants:{JJ6D9yt6X:{opacity:0}}}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-zvrxii\",\"data-framer-name\":\"Content Wrapper\",layoutDependency:layoutDependency,layoutId:\"nht2Oix6f\",style:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},tabIndex:1,variants:{IRqPSUPDg:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},JJ6D9yt6X:{borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},children:[/*#__PURE__*/_jsxs(motion.nav,{className:\"framer-1krmvtx\",\"data-framer-name\":\"Name\",layoutDependency:layoutDependency,layoutId:\"MKzPEhZXT\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0},variants:{IRqPSUPDg:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:100,borderBottomRightRadius:100,borderTopLeftRadius:100,borderTopRightRadius:100},JJ6D9yt6X:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0}},...addPropertyOverrides({JJ6D9yt6X:{\"data-highlight\":true,onTap:onTapsji6jg}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{\"aria-label\":\"Bubty logo\",className:\"framer-xz7jcs\",\"data-framer-name\":\"Logo and Name\",layoutDependency:layoutDependency,layoutId:\"dD6JPQcCS\",children:/*#__PURE__*/_jsx(Link,{href:{webPageId:\"augiA20Il\"},motionChild:true,nodeId:\"m67Tl96Cs\",scopeId:\"D0psE4pI8\",children:/*#__PURE__*/_jsx(SVG,{as:\"a\",className:\"framer-83bw7l framer-1f4lddx\",\"data-framer-name\":\"Logo\",layout:\"position\",layoutDependency:layoutDependency,layoutId:\"m67Tl96Cs\",opacity:1,svg:'<svg xmlns=\"http://www.w3.org/2000/svg\" xmlns:xlink=\"http://www.w3.org/1999/xlink\" viewBox=\"0 0 91 32\"><path d=\"M 54.857 8.141 L 54.788 8.094 L 54.621 7.985 C 54.347 7.813 54.063 7.658 53.77 7.52 L 53.743 7.507 C 52.47 6.899 51.075 6.59 49.664 6.604 C 48.253 6.619 46.864 6.955 45.603 7.589 L 45.603 2.544 C 45.611 2.208 45.552 1.874 45.428 1.561 C 45.306 1.248 45.121 0.963 44.886 0.722 C 44.397 0.265 43.752 0.011 43.082 0.011 C 42.412 0.011 41.767 0.265 41.277 0.722 C 41.034 0.96 40.843 1.246 40.715 1.561 C 40.587 1.876 40.525 2.214 40.534 2.555 L 40.534 15.161 C 40.522 15.386 40.522 15.611 40.534 15.835 C 40.533 16.626 40.621 17.415 40.799 18.186 C 41.147 19.515 41.786 20.749 42.67 21.8 C 43.555 22.851 44.662 23.692 45.912 24.262 C 47.161 24.832 48.522 25.116 49.896 25.095 C 51.269 25.073 52.621 24.746 53.852 24.137 L 53.902 24.111 C 55.347 23.381 56.576 22.284 57.465 20.931 C 58.354 19.578 58.872 18.015 58.968 16.398 C 59.064 14.782 58.734 13.169 58.011 11.72 C 57.288 10.271 56.198 9.037 54.849 8.141 Z M 53.535 17.601 C 53.103 18.538 52.341 19.283 51.394 19.692 C 50.448 20.101 49.383 20.146 48.405 19.818 C 47.427 19.49 46.605 18.812 46.097 17.915 C 45.588 17.018 45.429 15.965 45.649 14.957 C 45.87 13.95 46.455 13.059 47.292 12.457 C 48.129 11.855 49.159 11.583 50.185 11.694 C 51.21 11.804 52.158 12.29 52.847 13.058 C 53.536 13.825 53.918 14.82 53.918 15.851 C 53.922 16.455 53.795 17.052 53.545 17.601 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 37.087 7.3 C 36.597 6.843 35.952 6.588 35.282 6.588 C 34.612 6.588 33.967 6.843 33.477 7.3 C 33.234 7.538 33.043 7.823 32.915 8.139 C 32.787 8.454 32.726 8.792 32.734 9.132 L 32.734 17.648 C 32.742 18.12 32.601 18.582 32.333 18.97 C 32.029 19.402 31.622 19.751 31.148 19.983 C 30.595 20.249 29.987 20.38 29.374 20.366 C 28.71 20.378 28.053 20.238 27.452 19.956 C 26.93 19.702 26.502 19.29 26.225 18.78 C 25.884 18.102 25.724 17.348 25.76 16.591 L 25.76 9.119 C 25.76 8.447 25.493 7.803 25.018 7.328 C 24.543 6.853 23.898 6.586 23.227 6.586 C 22.555 6.586 21.911 6.853 21.436 7.328 C 20.961 7.803 20.694 8.447 20.694 9.119 L 20.694 16.591 C 20.694 18.383 21.048 19.935 21.751 21.199 C 22.418 22.444 23.432 23.468 24.67 24.147 C 25.938 24.818 27.353 25.159 28.787 25.139 C 30.184 25.159 31.563 24.822 32.793 24.158 C 32.925 24.084 33.057 24.007 33.184 23.928 C 33.266 24.048 33.36 24.159 33.464 24.261 C 33.952 24.733 34.603 24.997 35.282 24.997 C 35.961 24.997 36.612 24.733 37.1 24.261 C 37.562 23.781 37.815 23.137 37.803 22.471 L 37.803 9.119 C 37.811 8.783 37.752 8.449 37.629 8.137 C 37.506 7.824 37.322 7.54 37.087 7.3 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 14.705 8.14 L 14.636 8.093 L 14.47 7.984 C 14.196 7.812 13.912 7.657 13.619 7.519 L 13.592 7.506 C 12.319 6.898 10.923 6.589 9.512 6.604 C 8.101 6.618 6.712 6.954 5.451 7.588 L 5.451 2.543 C 5.46 2.207 5.401 1.873 5.279 1.56 C 5.156 1.247 4.972 0.962 4.737 0.721 C 4.497 0.487 4.212 0.303 3.9 0.181 C 3.588 0.058 3.254 -0.001 2.918 0.008 C 2.251 -0.004 1.607 0.249 1.126 0.711 C 0.882 0.948 0.689 1.234 0.561 1.549 C 0.432 1.864 0.369 2.203 0.378 2.543 L 0.378 15.16 C 0.366 15.385 0.366 15.61 0.378 15.834 C 0.378 16.625 0.466 17.414 0.642 18.185 C 0.989 19.516 1.629 20.753 2.514 21.805 C 3.4 22.858 4.509 23.7 5.761 24.27 C 7.013 24.84 8.376 25.124 9.751 25.101 C 11.126 25.078 12.479 24.748 13.711 24.137 L 13.759 24.11 C 15.204 23.38 16.433 22.284 17.322 20.93 C 18.21 19.577 18.729 18.014 18.825 16.398 C 18.92 14.781 18.59 13.168 17.867 11.719 C 17.145 10.27 16.054 9.036 14.705 8.14 Z M 13.383 17.601 C 12.952 18.537 12.19 19.282 11.243 19.691 C 10.296 20.1 9.232 20.145 8.254 19.817 C 7.276 19.489 6.454 18.811 5.945 17.914 C 5.437 17.017 5.277 15.964 5.498 14.956 C 5.719 13.949 6.304 13.058 7.141 12.456 C 7.978 11.854 9.008 11.582 10.034 11.693 C 11.059 11.804 12.007 12.289 12.696 13.057 C 13.385 13.824 13.766 14.819 13.767 15.85 C 13.77 16.454 13.643 17.051 13.394 17.601 Z\" fill=\"rgb(255,255,255)\"></path><path d=\"M 71.093 20.739 C 70.887 20.5 70.63 20.308 70.342 20.177 C 70.054 20.046 69.741 19.979 69.425 19.98 L 68.425 19.98 C 68.272 19.983 68.121 19.946 67.985 19.875 C 67.85 19.804 67.734 19.7 67.648 19.573 C 67.356 19.197 67.21 18.727 67.236 18.251 L 67.236 11.16 L 68.69 11.16 C 69.317 11.176 69.926 10.951 70.393 10.531 C 70.621 10.324 70.803 10.07 70.926 9.787 C 71.049 9.504 71.111 9.198 71.106 8.889 C 71.115 8.571 71.055 8.255 70.932 7.962 C 70.809 7.669 70.625 7.406 70.393 7.189 C 69.925 6.771 69.317 6.547 68.69 6.562 L 67.236 6.562 L 67.236 2.512 C 67.236 1.846 66.971 1.207 66.5 0.736 C 66.029 0.265 65.39 0 64.724 0 C 64.058 0 63.419 0.265 62.948 0.736 C 62.477 1.207 62.212 1.846 62.212 2.512 L 62.212 6.562 L 61.903 6.562 C 61.276 6.547 60.667 6.771 60.2 7.189 C 59.968 7.406 59.784 7.669 59.66 7.962 C 59.538 8.255 59.478 8.571 59.486 8.889 C 59.482 9.198 59.543 9.504 59.666 9.787 C 59.789 10.07 59.971 10.324 60.2 10.531 C 60.666 10.951 61.276 11.176 61.903 11.16 L 62.212 11.16 L 62.212 18.251 C 62.197 19.427 62.469 20.589 63.005 21.636 C 63.514 22.628 64.277 23.467 65.216 24.068 C 66.17 24.676 67.281 24.992 68.412 24.98 L 68.941 24.98 C 69.642 25.008 70.329 24.777 70.871 24.332 C 71.143 24.108 71.361 23.825 71.508 23.504 C 71.656 23.184 71.729 22.834 71.722 22.482 C 71.738 21.841 71.513 21.218 71.093 20.734\" fill=\"rgb(255,255,255)\"></path><path d=\"M 87.962 6.483 C 87.433 6.483 86.455 6.674 85.847 7.956 L 81.955 16.742 L 77.513 7.916 C 77.249 7.331 76.767 6.872 76.17 6.637 C 75.901 6.535 75.616 6.483 75.329 6.483 C 74.981 6.487 74.636 6.558 74.316 6.695 C 73.711 6.941 73.228 7.416 72.97 8.017 C 72.834 8.334 72.773 8.679 72.793 9.024 C 72.812 9.369 72.911 9.705 73.082 10.005 L 79.522 22.244 L 76.788 28.447 C 76.633 28.737 76.54 29.056 76.513 29.384 C 76.486 29.712 76.527 30.042 76.632 30.353 C 76.755 30.665 76.94 30.948 77.176 31.186 C 77.412 31.424 77.694 31.611 78.004 31.736 L 78.026 31.736 C 78.38 31.9 78.764 31.99 79.155 32 C 80.114 32 80.889 31.429 81.286 30.433 L 90.368 10.002 C 91.341 7.919 89.413 6.483 87.962 6.483 Z\" fill=\"rgb(255,255,255)\"></path></svg>',svgContentId:9102105824,tabIndex:1,title:\"Bubty logo\",withExternalLayout:true})})}),isDisplayed()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({IRqPSUPDg:{height:40,width:\"40px\",y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+0+12},JJ6D9yt6X:{height:40,width:\"40px\",y:(componentViewport?.y||0)+0+1+0+0+20}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-qrsvyu-container\",layoutDependency:layoutDependency,layoutId:\"bz8yHHhZS-container\",nodeId:\"bz8yHHhZS\",rendersWithMotion:true,scopeId:\"D0psE4pI8\",children:/*#__PURE__*/_jsx(MenuHamburgerIcon,{height:\"100%\",id:\"bz8yHHhZS\",layoutId:\"bz8yHHhZS\",style:{height:\"100%\",width:\"100%\"},variant:\"eSdcmKXGz\",width:\"100%\",...addPropertyOverrides({IRqPSUPDg:{KpCu0nILC:KpCu0nILCqc5491},JJ6D9yt6X:{KpCu0nILC:KpCu0nILCsji6jg,variant:\"YIHKINEHV\"}},baseVariant,gestureVariant)})})})]}),/*#__PURE__*/_jsx(Transition,{...addPropertyOverrides({IRqPSUPDg:{value:transition2},JJ6D9yt6X:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-u0ppwt\",\"data-framer-name\":\"Links\",layoutDependency:layoutDependency,layoutId:\"OW3p6K8KD\",style:{backgroundColor:\"rgba(0, 0, 0, 0)\",opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{backgroundColor:\"var(--token-0d1d180e-a0be-48c7-b2a2-7b682086a4f9, rgb(2, 2, 2))\",opacity:1}},children:[/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,children:overlay=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({IRqPSUPDg:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.89, 1288px) - 40px, 100px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+0},JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+104+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1l19f52-container\",id:`${layoutId}-1l19f52`,layoutDependency:layoutDependency,layoutId:\"MPz_pAe30-container\",nodeId:\"MPz_pAe30\",ref:ref1,rendersWithMotion:true,scopeId:\"D0psE4pI8\",style:{opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{opacity:1}},children:[/*#__PURE__*/_jsx(MenuTrigger,{DApvjrdfG:getLocalizedValue(\"v0\",activeLocale)??\"Product\",height:\"100%\",id:\"MPz_pAe30\",layoutId:\"MPz_pAe30\",miO9y7hDv:false,NMQlPQQqQ:false,PWSlWeqS6:PWSlWeqS61hot9d5({overlay}),rHn3muUFS:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:overlay.visible?\"Z1D0cR4l3\":\"aqy3cNago\",width:\"100%\",Z4ywfFnsJ:false,...addPropertyOverrides({IRqPSUPDg:{variant:overlay.visible?\"Z1D0cR4l3\":\"e9O8Rwn80\"},JJ6D9yt6X:{PWSlWeqS6:undefined,style:{width:\"100%\"},variant:overlay.visible?\"mK8juHCVT\":\"e9O8Rwn80\",Z4ywfFnsJ:true}},baseVariant,gestureVariant)}),/*#__PURE__*/_jsx(AnimatePresence,{children:overlay.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref1,className:cx(scopingClassNames,classNames),collisionDetection:true,collisionDetectionPadding:20,\"data-framer-portal-id\":`${layoutId}-1l19f52`,offsetX:0,offsetY:24,onDismiss:overlay.hide,placement:\"bottom\",safeArea:true,zIndex:11,children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:252,...addPropertyOverrides({IRqPSUPDg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+0+0},JJ6D9yt6X:{y:(componentViewport?.y||0)+0+1+0+104+0+0+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation1,className:\"framer-1jzsocu-container\",exit:animation,inComponentSlot:true,initial:animation2,layoutDependency:layoutDependency,layoutId:\"S8aK2Jn03-container\",nodeId:\"S8aK2Jn03\",ref:ref2,rendersWithMotion:true,role:\"dialog\",scopeId:\"D0psE4pI8\",children:/*#__PURE__*/_jsx(MenuCategoryProduct,{height:\"100%\",id:\"S8aK2Jn03\",layoutId:\"S8aK2Jn03\",variant:\"tDLMaboTl\",width:\"100%\"})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed1(),children:overlay1=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({IRqPSUPDg:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.89, 1288px) - 40px, 120px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+40},JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+104+0+48}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-iqavwq-container\",id:`${layoutId}-iqavwq`,layoutDependency:layoutDependency,layoutId:\"dnrAniCGS-container\",nodeId:\"dnrAniCGS\",ref:ref3,rendersWithMotion:true,scopeId:\"D0psE4pI8\",style:{opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{opacity:1}},children:[/*#__PURE__*/_jsx(MenuTrigger,{DApvjrdfG:getLocalizedValue(\"v1\",activeLocale)??\"Why Bubty?\",height:\"100%\",id:\"dnrAniCGS\",layoutId:\"dnrAniCGS\",miO9y7hDv:false,NMQlPQQqQ:false,PWSlWeqS6:PWSlWeqS61hot9d5({overlay:overlay1}),rHn3muUFS:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:overlay1.visible?\"Z1D0cR4l3\":\"aqy3cNago\",width:\"100%\",Z4ywfFnsJ:false,...addPropertyOverrides({IRqPSUPDg:{variant:overlay1.visible?\"Z1D0cR4l3\":\"e9O8Rwn80\"},JJ6D9yt6X:{rHn3muUFS:true,style:{width:\"100%\"},variant:overlay1.visible?\"mK8juHCVT\":\"e9O8Rwn80\"}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay1.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref3,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-iqavwq`,offsetX:0,offsetY:24,onDismiss:overlay1.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({JJ6D9yt6X:{offsetX:-32,offsetY:0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:312,...addPropertyOverrides({JJ6D9yt6X:{y:(componentViewport?.y||0)+0+1+0+104+0+48+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-dujxqp-container\",exit:animation3,inComponentSlot:true,initial:animation5,layoutDependency:layoutDependency,layoutId:\"rGPkugAdo-container\",nodeId:\"rGPkugAdo\",ref:ref4,rendersWithMotion:true,role:\"dialog\",scopeId:\"D0psE4pI8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MenuCategoryWhyBubty,{height:\"100%\",id:\"rGPkugAdo\",layoutId:\"rGPkugAdo\",variant:\"KDlzvJqo9\",width:\"100%\",...addPropertyOverrides({JJ6D9yt6X:{variant:\"hmIntsuHk\"}},baseVariant,gestureVariant)})})})})})]})})})}),/*#__PURE__*/_jsx(Overlay,{blockDocumentScrolling:false,enabled:isDisplayed1(),children:overlay2=>/*#__PURE__*/_jsx(_Fragment,{children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,...addPropertyOverrides({IRqPSUPDg:{width:`min(min(${componentViewport?.width||\"100vw\"} * 0.89, 1288px) - 40px, 100px)`,y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+80},JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+104+0+96}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(SmartComponentScopedContainer,{className:\"framer-1ytcbyb-container\",id:`${layoutId}-1ytcbyb`,layoutDependency:layoutDependency,layoutId:\"soteLnnfw-container\",nodeId:\"soteLnnfw\",ref:ref5,rendersWithMotion:true,scopeId:\"D0psE4pI8\",style:{opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{opacity:1}},children:[/*#__PURE__*/_jsx(MenuTrigger,{DApvjrdfG:getLocalizedValue(\"v2\",activeLocale)??\"Resources\",height:\"100%\",id:\"soteLnnfw\",layoutId:\"soteLnnfw\",miO9y7hDv:false,NMQlPQQqQ:false,PWSlWeqS6:PWSlWeqS61hot9d5({overlay:overlay2}),rHn3muUFS:false,style:{maxWidth:\"100%\",width:\"100%\"},variant:overlay2.visible?\"Z1D0cR4l3\":\"aqy3cNago\",width:\"100%\",Z4ywfFnsJ:false,...addPropertyOverrides({IRqPSUPDg:{variant:overlay2.visible?\"Z1D0cR4l3\":\"e9O8Rwn80\"},JJ6D9yt6X:{miO9y7hDv:true,style:{width:\"100%\"},variant:overlay2.visible?\"mK8juHCVT\":\"e9O8Rwn80\"}},baseVariant,gestureVariant)}),isDisplayed1()&&/*#__PURE__*/_jsx(AnimatePresence,{children:overlay2.visible&&/*#__PURE__*/_jsx(Floating,{alignment:\"start\",anchorRef:ref5,className:cx(scopingClassNames,classNames),collisionDetection:false,\"data-framer-portal-id\":`${layoutId}-1ytcbyb`,offsetX:0,offsetY:27,onDismiss:overlay2.hide,placement:\"bottom\",safeArea:true,zIndex:11,...addPropertyOverrides({JJ6D9yt6X:{offsetY:0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(ComponentViewportProvider,{height:372,...addPropertyOverrides({JJ6D9yt6X:{y:(componentViewport?.y||0)+0+1+0+104+0+96+70}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFX,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation4,className:\"framer-1hr1eza-container\",exit:animation3,inComponentSlot:true,initial:animation5,layoutDependency:layoutDependency,layoutId:\"abA7gkQZj-container\",nodeId:\"abA7gkQZj\",ref:ref6,rendersWithMotion:true,role:\"dialog\",scopeId:\"D0psE4pI8\",style:{transformPerspective:1200},children:/*#__PURE__*/_jsx(MenuCategoryResources,{height:\"100%\",id:\"abA7gkQZj\",layoutId:\"abA7gkQZj\",variant:\"kwyFFyla3\",width:\"100%\",...addPropertyOverrides({JJ6D9yt6X:{variant:\"VzVnUOA03\"}},baseVariant,gestureVariant)})})})})})]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"N4TfZuBXY\"},implicitPathVariables:undefined},{href:{webPageId:\"N4TfZuBXY\"},implicitPathVariables:undefined},{href:{webPageId:\"N4TfZuBXY\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"100px\",...addPropertyOverrides({IRqPSUPDg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+120},JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+104+0+144}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-it6jan-container\",layoutDependency:layoutDependency,layoutId:\"f8VliQXTb-container\",nodeId:\"f8VliQXTb\",rendersWithMotion:true,scopeId:\"D0psE4pI8\",style:{opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{opacity:1}},children:/*#__PURE__*/_jsx(MenuItem,{height:\"100%\",id:\"f8VliQXTb\",layoutId:\"f8VliQXTb\",Nqh6nUIYR:getLocalizedValue(\"v3\",activeLocale)??\"Pricing\",Qbx2PdUws:resolvedLinks[0],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NJxB98Jfn\",width:\"100%\",...addPropertyOverrides({IRqPSUPDg:{Qbx2PdUws:resolvedLinks[1],variant:\"FtQDtKKP8\"},JJ6D9yt6X:{Qbx2PdUws:resolvedLinks[2],style:{width:\"100%\"},variant:\"FtQDtKKP8\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"WjDUUKKfb\"},implicitPathVariables:undefined},{href:{webPageId:\"WjDUUKKfb\"},implicitPathVariables:undefined},{href:{webPageId:\"WjDUUKKfb\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"100px\",...addPropertyOverrides({IRqPSUPDg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+160},JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+104+0+192}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1u512xc-container\",layoutDependency:layoutDependency,layoutId:\"CfCFm6zTE-container\",nodeId:\"CfCFm6zTE\",rendersWithMotion:true,scopeId:\"D0psE4pI8\",style:{opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{opacity:1}},children:/*#__PURE__*/_jsx(MenuItem,{height:\"100%\",id:\"CfCFm6zTE\",layoutId:\"CfCFm6zTE\",Nqh6nUIYR:getLocalizedValue(\"v4\",activeLocale)??\"Enterprises\",Qbx2PdUws:resolvedLinks1[0],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NJxB98Jfn\",width:\"100%\",...addPropertyOverrides({IRqPSUPDg:{Qbx2PdUws:resolvedLinks1[1],variant:\"FtQDtKKP8\"},JJ6D9yt6X:{fR66SmE80:undefined,Qbx2PdUws:resolvedLinks1[2],style:{width:\"100%\"},variant:\"FtQDtKKP8\"}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"i64d6mE4Q\"},implicitPathVariables:undefined},{href:{webPageId:\"i64d6mE4Q\"},implicitPathVariables:undefined},{href:{webPageId:\"i64d6mE4Q\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:40,width:\"100px\",...addPropertyOverrides({IRqPSUPDg:{y:(componentViewport?.y||0)+0+(((componentViewport?.height||96)-0-96)/2+32+0)+0+64+0+200},JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+104+0+240}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-3i4u2u-container\",layoutDependency:layoutDependency,layoutId:\"Tn3dPmjc_-container\",nodeId:\"Tn3dPmjc_\",rendersWithMotion:true,scopeId:\"D0psE4pI8\",style:{opacity:1},variants:{IRqPSUPDg:{opacity:0},JJ6D9yt6X:{opacity:1}},children:/*#__PURE__*/_jsx(MenuItem,{height:\"100%\",id:\"Tn3dPmjc_\",layoutId:\"Tn3dPmjc_\",Nqh6nUIYR:\"Company\",Qbx2PdUws:resolvedLinks2[0],style:{maxWidth:\"100%\",width:\"100%\"},variant:\"NJxB98Jfn\",width:\"100%\",...addPropertyOverrides({IRqPSUPDg:{Qbx2PdUws:resolvedLinks2[1],variant:\"FtQDtKKP8\"},JJ6D9yt6X:{fR66SmE80:undefined,Qbx2PdUws:resolvedLinks2[2],style:{width:\"100%\"},variant:\"FtQDtKKP8\"}},baseVariant,gestureVariant)})})})})]})}),isDisplayed1()&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:44,...addPropertyOverrides({JJ6D9yt6X:{width:`calc(min(${componentViewport?.width||\"100vw\"}, 1288px) - 64px)`,y:(componentViewport?.y||0)+0+1+0+408}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1lt5z36-container\",layoutDependency:layoutDependency,layoutId:\"ZoZ9vtb41-container\",nodeId:\"ZoZ9vtb41\",rendersWithMotion:true,scopeId:\"D0psE4pI8\",children:/*#__PURE__*/_jsx(InteractionStandartButtonBookADemoButton,{height:\"100%\",id:\"ZoZ9vtb41\",layoutId:\"ZoZ9vtb41\",variant:\"r7s3JmrJI\",width:\"100%\",...addPropertyOverrides({JJ6D9yt6X:{style:{width:\"100%\"}}},baseVariant,gestureVariant)})})}),isDisplayed2()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-1nv1pm6\",\"data-framer-name\":\"Placeholder\",layoutDependency:layoutDependency,layoutId:\"FUOu85ZH3\"})]})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-q764K.framer-1f4lddx, .framer-q764K .framer-1f4lddx { display: block; }\",\".framer-q764K.framer-p6f5sm { align-content: center; align-items: center; display: flex; flex-direction: column; flex-wrap: nowrap; gap: 0px; height: min-content; justify-content: center; overflow: visible; padding: var(--gxy8jk); position: relative; width: 1280px; }\",\".framer-q764K .framer-1891a0n { flex: none; height: 32px; overflow: hidden; position: relative; width: 100%; }\",\".framer-q764K .framer-zvrxii { 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: 1288px; overflow: visible; padding: 16px 16px 16px 32px; position: relative; width: 100%; }\",\".framer-q764K .framer-1krmvtx { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: flex-start; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-q764K .framer-xz7jcs { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-q764K .framer-83bw7l { flex: none; height: 32px; position: relative; text-decoration: none; width: 91px; }\",\".framer-q764K .framer-qrsvyu-container { flex: none; height: 40px; position: relative; width: 40px; }\",\".framer-q764K .framer-u0ppwt { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; gap: 20px; height: min-content; justify-content: center; overflow: hidden; padding: 0px; position: relative; width: 1px; z-index: 10; }\",\".framer-q764K .framer-1l19f52-container, .framer-q764K .framer-1ytcbyb-container { flex: 1 0 0px; height: auto; max-width: 100px; position: relative; width: 1px; }\",\".framer-q764K .framer-1jzsocu-container, .framer-q764K .framer-dujxqp-container, .framer-q764K .framer-1hr1eza-container { height: auto; position: relative; width: auto; }\",\".framer-q764K .framer-iqavwq-container { flex: 1 0 0px; height: auto; max-width: 120px; position: relative; width: 1px; }\",\".framer-q764K .framer-it6jan-container, .framer-q764K .framer-1u512xc-container, .framer-q764K .framer-3i4u2u-container { flex: none; height: auto; max-width: 100px; position: relative; width: 100px; }\",\".framer-q764K .framer-1lt5z36-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-q764K .framer-1nv1pm6 { flex: 1 0 0px; height: 32px; overflow: hidden; position: relative; width: 1px; }\",\".framer-q764K.framer-v-1ukn9l6.framer-p6f5sm { height: 96px; overflow: hidden; padding: 0px; width: 390px; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-1891a0n, .framer-q764K.framer-v-1ukn9l6 .framer-xz7jcs, .framer-q764K.framer-v-1qn1kwj .framer-xz7jcs { order: 0; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-zvrxii { flex-direction: column; height: 64px; justify-content: flex-start; order: 1; overflow: hidden; padding: 0px; width: 89%; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-1krmvtx { gap: unset; height: 64px; justify-content: space-between; padding: 0px 20px 0px 24px; width: 100%; z-index: 2; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-qrsvyu-container, .framer-q764K.framer-v-1qn1kwj .framer-qrsvyu-container { order: 1; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-u0ppwt { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 0px; height: 1px; justify-content: flex-start; padding: 0px 20px 0px 20px; width: 100%; z-index: 2; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-1l19f52-container { flex: none; order: 0; width: 100%; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-iqavwq-container { flex: none; order: 1; width: 100%; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-1ytcbyb-container { flex: none; order: 2; width: 100%; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-it6jan-container { order: 3; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-1u512xc-container { order: 4; }\",\".framer-q764K.framer-v-1ukn9l6 .framer-3i4u2u-container { order: 5; }\",\".framer-q764K.framer-v-1qn1kwj.framer-p6f5sm { justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; overscroll-behavior: contain; padding: 0px 0px 120px 0px; width: 390px; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1891a0n { height: 1px; order: 0; }\",\".framer-q764K.framer-v-1qn1kwj .framer-zvrxii { flex-direction: column; gap: 24px; height: calc(var(--framer-viewport-height, 100vh) * 1); justify-content: flex-start; order: 1; padding: 0px 32px 32px 32px; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1krmvtx { cursor: pointer; gap: unset; height: 80px; justify-content: space-between; width: 100%; z-index: 2; }\",\".framer-q764K.framer-v-1qn1kwj .framer-u0ppwt { align-content: flex-start; align-items: flex-start; flex: none; flex-direction: column; gap: 8px; justify-content: flex-start; width: 100%; z-index: 2; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1l19f52-container { flex: none; max-width: unset; order: 0; width: 100%; }\",\".framer-q764K.framer-v-1qn1kwj .framer-iqavwq-container { flex: none; max-width: unset; order: 1; width: 100%; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1ytcbyb-container { flex: none; max-width: unset; order: 2; width: 100%; }\",\".framer-q764K.framer-v-1qn1kwj .framer-it6jan-container { max-width: unset; order: 3; width: 100%; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1u512xc-container { max-width: unset; order: 4; width: 100%; }\",\".framer-q764K.framer-v-1qn1kwj .framer-3i4u2u-container { max-width: unset; order: 5; width: 100%; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1lt5z36-container { width: 100%; z-index: 1; }\",\".framer-q764K.framer-v-1qn1kwj .framer-1nv1pm6 { flex: none; width: 100%; }\",'.framer-q764K[data-hide-scrollbars=\"true\"]::-webkit-scrollbar, .framer-q764K [data-hide-scrollbars=\"true\"]::-webkit-scrollbar { width: 0px; height: 0px; }','.framer-q764K[data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb, .framer-q764K [data-hide-scrollbars=\"true\"]::-webkit-scrollbar-thumb { background: transparent; }','.framer-q764K[data-hide-scrollbars=\"true\"], .framer-q764K [data-hide-scrollbars=\"true\"] { scrollbar-width: none; }'];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 108\n * @framerIntrinsicWidth 1280\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"IRqPSUPDg\":{\"layout\":[\"fixed\",\"fixed\"]},\"JJ6D9yt6X\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,null,\"100vh\"]}}}\n * @framerVariables {\"nJySxsDqh\":\"hover\",\"Z0DPz1nKy\":\"padding\",\"vxvwgxn2C\":\"background\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerD0psE4pI8=withCSS(Component,css,\"framer-q764K\");export default FramerD0psE4pI8;FramerD0psE4pI8.displayName=\"Menu/ Nav bar\";FramerD0psE4pI8.defaultProps={height:108,width:1280};addPropertyControls(FramerD0psE4pI8,{variant:{options:[\"mFEruVpTQ\",\"IRqPSUPDg\",\"JJ6D9yt6X\"],optionTitles:[\"Desktop\",\"Phone Closed\",\"Phone Open\"],title:\"Variant\",type:ControlType.Enum},nJySxsDqh:{title:\"Hover\",type:ControlType.EventHandler},Z0DPz1nKy:{defaultValue:\"0px 68px 0px 68px\",title:\"Padding\",type:ControlType.Padding},vxvwgxn2C:{defaultValue:\"rgba(0, 0, 0, 0)\",title:\"Background\",type:ControlType.Color}});addFonts(FramerD0psE4pI8,[{explicitInter:true,fonts:[]},...MenuHamburgerIconFonts,...MenuTriggerFonts,...MenuCategoryProductFonts,...MenuCategoryWhyBubtyFonts,...MenuCategoryResourcesFonts,...MenuItemFonts,...InteractionStandartButtonBookADemoButtonFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerD0psE4pI8\",\"slots\":[],\"annotations\":{\"framerColorSyntax\":\"true\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"108\",\"framerImmutableVariables\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"IRqPSUPDg\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"JJ6D9yt6X\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,null,\\\"100vh\\\"]}}}\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicWidth\":\"1280\",\"framerDisplayContentsDiv\":\"false\",\"framerVariables\":\"{\\\"nJySxsDqh\\\":\\\"hover\\\",\\\"Z0DPz1nKy\\\":\\\"padding\\\",\\\"vxvwgxn2C\\\":\\\"background\\\"}\",\"framerAutoSizeImages\":\"true\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["TextClip", "props", "text", "lineCount", "textStyle", "letterMode", "maxCharacters", "lineClampStyle", "transformStyle", "containerStyle", "getJustifyContent", "getAlignItems", "textAlign", "p", "motion", "addPropertyControls", "ControlType", "Test_default", "TextClipFonts", "getFonts", "Test_default", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "sharedDateFormatter", "formatOptions", "locale", "date", "fallbackLocale", "dateOptions", "toDateString", "activeLocale", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "image", "image1", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "vPcE1jDRP", "Z1jIb7bes", "Y5kQI62Qh", "fSgOfsKZP", "CObOqn_wO", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "activeLocaleCode", "useLocaleCode", "textContent", "LayoutGroup", "Link", "u", "Image2", "getLoadingLazyAtYPosition", "ComponentViewportProvider", "SmartComponentScopedContainer", "RichText", "css", "FramerTdvnOrbmK", "withCSS", "TdvnOrbmK_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "D0psE4pI8_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v0", "v1", "v2", "v3", "v4", "__FramerMetadata__", "valuesByLocaleId", "D0psE4pI8_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "EaUuuoTXz_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "v11", "v12", "v13", "v14", "v15", "v16", "v17", "__FramerMetadata__", "valuesByLocaleId", "EaUuuoTXz_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "label", "link", "subtext", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ohTdXKhCJ", "sRz8jlo8S", "NxFyOZlOR", "S3M_Nk_tK", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap11x5gn1", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "u", "RichText", "css", "Framerw5HfsgO_Y", "withCSS", "w5HfsgO_Y_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "MenuDropdownItemFonts", "getFonts", "w5HfsgO_Y_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "resolvedLinks5", "resolvedLinks6", "resolvedLinks7", "css", "FramerEaUuuoTXz", "withCSS", "EaUuuoTXz_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "myp8bZJwQ_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "__FramerMetadata__", "valuesByLocaleId", "myp8bZJwQ_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MenuDropdownItemFonts", "getFonts", "w5HfsgO_Y_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "XA9bAEPuE", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "S3M_Nk_tK1vj99ww", "args", "scopingClassNames", "cx", "isDisplayed", "router", "useRouter", "LayoutGroup", "u", "RichText", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "css", "Framermyp8bZJwQ", "withCSS", "myp8bZJwQ_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "ohNDI4elP_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "__FramerMetadata__", "valuesByLocaleId", "ohNDI4elP_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MenuDropdownItemFonts", "getFonts", "w5HfsgO_Y_default", "CollectionListItemFonts", "TdvnOrbmK_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "toResponsiveImage", "value", "QueryData", "query", "pageSize", "children", "data", "useQueryData", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "L0LjlmzZBSj_AuhCf_", "Mo_L1FkG3Sj_AuhCf_", "AsSl9FYL5Sj_AuhCf_", "Zqb0ZfAcMSj_AuhCf_", "idSj_AuhCf_", "T5ra6gofweXyENuWAi", "nPmwCXETeeXyENuWAi", "fMGSjpMrweXyENuWAi", "LOYzFfM1MeXyENuWAi", "ideXyENuWAi", "E2rR29ryzFNtbJCHmm", "iLPZl6ezXFNtbJCHmm", "WFXwIQoovFNtbJCHmm", "vKUp_yl6_FNtbJCHmm", "idFNtbJCHmm", "GSfoaFOn2QiFb023gJ", "SmmQJp9sXQiFb023gJ", "Twa1qQ6HvQiFb023gJ", "MDGoFfhNxQiFb023gJ", "idQiFb023gJ", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "cycleOrder", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "isDisplayed", "router", "useRouter", "LayoutGroup", "transition1", "addPropertyOverrides", "u", "RichText", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "w5HfsgO_Y_default", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "ChildrenCanSuspend", "QueryData", "wwWsv4tPD_default", "collection", "paginationInfo", "loadMore", "l", "index", "PathVariablesContext", "resolvedLinks5", "TdvnOrbmK_default", "toResponsiveImage", "NtXM2EAnk_default", "collection1", "paginationInfo1", "loadMore1", "index1", "resolvedLinks6", "U7dGfsWz0_default", "collection2", "paginationInfo2", "loadMore2", "index2", "resolvedLinks7", "vZUeDDWf7_default", "collection3", "paginationInfo3", "loadMore3", "index3", "resolvedLinks8", "css", "FramerohNDI4elP", "withCSS", "ohNDI4elP_default", "addPropertyControls", "ControlType", "addFonts", "MenuDropdownItemFonts", "CollectionListItemFonts", "getFontsFromSharedStyle", "fonts", "W3gSQ8sIl_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v10", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v0", "p", "x", "motion", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v8", "v9", "v10", "__FramerMetadata__", "valuesByLocaleId", "W3gSQ8sIl_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MenuDropdownItemFonts", "getFonts", "w5HfsgO_Y_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "height", "id", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "scopingClassNames", "cx", "router", "useRouter", "LayoutGroup", "u", "RichText", "getLocalizedValue", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerW3gSQ8sIl", "withCSS", "W3gSQ8sIl_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "LibraryBubtyIconsFonts", "getFonts", "DIs1mT3Pk_default", "MenuCategoryProductFonts", "W3gSQ8sIl_default", "MenuCategoryCompanyFonts", "myp8bZJwQ_default", "MenuCategoryResourcesFonts", "ohNDI4elP_default", "MenuCategoryWhyBubtyFonts", "EaUuuoTXz_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "dropdownCompany", "dropdownProduct", "dropdownResources", "dropdownWhyBubty", "height", "hover", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "PWSlWeqS6", "DApvjrdfG", "PIECknLsB", "Z4ywfFnsJ", "NMQlPQQqQ", "miO9y7hDv", "rHn3muUFS", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter170i0h9", "args", "onTap6m31nw", "onTapzixl4e", "scopingClassNames", "cx", "isDisplayed", "LayoutGroup", "Link", "u", "RichText", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerDfuh2_KfO", "withCSS", "Dfuh2_KfO_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "link", "title", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "Qbx2PdUws", "Nqh6nUIYR", "fR66SmE80", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap15eq90u", "args", "scopingClassNames", "cx", "LayoutGroup", "Link", "RichText", "css", "FramerUKbHmsHnx", "withCSS", "UKbHmsHnx_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "click", "height", "id", "width", "props", "_humanReadableVariantMap_props_variant", "_ref", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "KpCu0nILC", "restProps", "baseVariant", "classNames", "gestureHandlers", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1kpnrh5", "args", "onTap1gwhwg5", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramerxP1En_j9o", "withCSS", "xP1En_j9o_default", "addPropertyControls", "ControlType", "addFonts", "MenuHamburgerIconFonts", "getFonts", "xP1En_j9o_default", "MenuTriggerFonts", "Dfuh2_KfO_default", "MenuCategoryProductFonts", "W3gSQ8sIl_default", "SmartComponentScopedContainerWithFX", "withFX", "SmartComponentScopedContainer", "MenuCategoryWhyBubtyFonts", "EaUuuoTXz_default", "MenuCategoryResourcesFonts", "ohNDI4elP_default", "MenuItemFonts", "UKbHmsHnx_default", "InteractionStandartButtonBookADemoButtonFonts", "Qe14B66sW_default", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "numberToPixelString", "value", "transition1", "transition2", "transition3", "animation", "animation1", "animation2", "Overlay", "children", "blockDocumentScrolling", "enabled", "visible", "setVisible", "useOverlayState", "transition4", "animation3", "animation4", "animation5", "Transition", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableVariantMap", "getProps", "background", "height", "hover", "id", "padding", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "nJySxsDqh", "Z0DPz1nKy", "vxvwgxn2C", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapsji6jg", "args", "KpCu0nILCqc5491", "KpCu0nILCsji6jg", "PWSlWeqS61hot9d5", "overlay", "loadMore", "scopingClassNames", "cx", "isDisplayed", "ref1", "ref2", "ref3", "isDisplayed1", "ref4", "ref5", "ref6", "router", "useRouter", "isDisplayed2", "LayoutGroup", "u", "Link", "SVG", "ComponentViewportProvider", "l", "getLocalizedValue", "AnimatePresence", "Floating", "overlay1", "overlay2", "ResolveLinks", "resolvedLinks", "resolvedLinks1", "resolvedLinks2", "css", "FramerD0psE4pI8", "withCSS", "D0psE4pI8_default", "addPropertyControls", "ControlType", "addFonts"]
}
