{
  "version": 3,
  "sources": ["ssg:https://framerusercontent.com/modules/fbE0oBG3xy0tbGOC3RmK/2ittzShCSkitIyjgXNbE/ThemeSwitch.js", "ssg:https://framerusercontent.com/modules/6ofdAc0dukNTvAJWJueh/rgbktVROoXmffgmCo8L3/sDquhqjHT.js", "ssg:https://framerusercontent.com/modules/4AH1iWn5WxOFmW6BMk3r/0RjIJDIWeQRIqqemGAJc/maGpaxTnj.js", "ssg:https://framerusercontent.com/modules/j7CLyQyChT4hszmGwx0i/8qjr0uplFB32w5GWk4AZ/Z5aW2k3RB.js", "ssg:https://framerusercontent.com/modules/64LqZfsPo2S4ckJvdzIn/dpGMBN59jMOuqTOaacjF/x6PfALCgy-0.js", "ssg:https://framerusercontent.com/modules/64LqZfsPo2S4ckJvdzIn/dpGMBN59jMOuqTOaacjF/x6PfALCgy.js", "ssg:https://framerusercontent.com/modules/n4rmu10ZZT40xTfGKhQp/ER9cpNrw2jho0Dju7kcY/x6PfALCgy.js", "ssg:https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/border.js", "ssg:https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js", "ssg:https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js", "ssg:https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js", "ssg:https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js", "ssg:https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js", "ssg:https://framerusercontent.com/modules/3904msUznXovbLSTdvtR/G5ku4dCwyyBLqmCC9uUy/R59UUiNVK-0.js", "ssg:https://framerusercontent.com/modules/3904msUznXovbLSTdvtR/G5ku4dCwyyBLqmCC9uUy/R59UUiNVK.js", "ssg:https://framerusercontent.com/modules/9W7zktCEDLLMzlgqiWZG/NqrTf6hyiopBLamPcBfx/R59UUiNVK.js"],
  "sourcesContent": ["function _define_property(obj,key,value){if(key in obj){Object.defineProperty(obj,key,{value:value,enumerable:true,configurable:true,writable:true});}else{obj[key]=value;}return obj;}import{jsx as _jsx}from\"react/jsx-runtime\";import{addPropertyControls,ControlType}from\"framer\";import{useState,useEffect}from\"react\";import{motion}from\"framer-motion\";function extractDarkModeCSS(cssString){const regex=/@media\\s*\\(prefers-color-scheme:\\s*dark\\)\\s*\\{([^}]*)\\}/;const match=cssString.match(regex);return match?match[1].trim():\"\";}function extractDarkModeCSSVariables(css){// Regular expression to match @media (prefers-color-scheme: dark) { ... }\nconst regex=/@media\\s+\\(prefers-color-scheme:\\s*dark\\)\\s*{([^}]*)body\\s*{([^}]*)}}/;const matches=css.match(regex);if(matches&&matches[2]){return matches[2].trim();}return\"\";}function extractLightModeCSSVariables(css){// Match body block, excluding nested @media blocks\nconst bodyRegex=/body\\s*{([^}]*)}/g;const mediaRegex=/@media\\s+\\(prefers-color-scheme:\\s*dark\\)\\s*{[^}]*body\\s*{[^}]*}}/g;// Extract body block without @media blocks\nconst bodyMatches=css.match(bodyRegex);const mediaMatches=css.match(mediaRegex);let bodyContent=\"\";if(bodyMatches){bodyContent=bodyMatches[0];}// Remove media block content from bodyContent\nif(mediaMatches){mediaMatches.forEach(mediaMatch=>{bodyContent=bodyContent.replace(mediaMatch,\"\");});}// Extract the CSS variables from the body block\nconst cssVarRegex=/--[\\w-]+:\\s*[^;]+;/g;const cssVars=bodyContent.match(cssVarRegex);return cssVars?cssVars.join(\"\\n\"):\"\";}function setDarkThemeCode(code){const styleId=\"pix-dark-theme-style\";// Check if a <style> element with the specified ID already exists\nlet existingStyle=document.getElementById(styleId);if(existingStyle){return;// If it exists, do nothing\n}// Step 1: Create a <style> element\nconst style=document.createElement(\"style\");// Step 2: Set its content to the desired CSS string\nconst cssString=`body.pix-is-dark, body:has(.pix-is-dark) {${code}}`;style.textContent=cssString;// Step 3: Set the ID of the <style> element\nstyle.id=styleId;// Step 4: Append the <style> element to the <head>\ndocument.head.appendChild(style);}function setLightThemeCode(code){const styleId=\"pix-light-theme-style\";// Check if a <style> element with the specified ID already exists\nlet existingStyle=document.getElementById(styleId);if(existingStyle){return;// If it exists, do nothing\n}// Step 1: Create a <style> element\nconst style=document.createElement(\"style\");// Step 2: Set its content to the desired CSS string\nconst cssString=`body.pix-is-light, body:has(.pix-is-light) {${code}}`;style.textContent=cssString;// Step 3: Set the ID of the <style> element\nstyle.id=styleId;// Step 4: Append the <style> element to the <head>\ndocument.head.appendChild(style);}class EventEmitter{on(event,listener){if(!this.events[event]){this.events[event]=[];}this.events[event].push(listener);}emit(event,data){if(this.events[event]){this.events[event].forEach(listener=>listener(data));}}off(event,listenerToRemove){if(!this.events[event])return;this.events[event]=this.events[event].filter(listener=>listener!==listenerToRemove);}constructor(){_define_property(this,\"events\",void 0);this.events={};}}const eventEmitter=new EventEmitter;class ThemeCheck{constructor(){const savedTheme=localStorage.getItem(\"theme\");if(savedTheme){if(savedTheme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(savedTheme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}}if(localStorage.getItem(\"darkThemeVars\")){setDarkThemeCode(localStorage.getItem(\"darkThemeVars\"));}if(localStorage.getItem(\"lightThemeVars\")){setLightThemeCode(localStorage.getItem(\"lightThemeVars\"));}}}const themeChecker=new ThemeCheck;/**\n * @framerSupportedLayoutWidth any\n * @framerSupportedLayoutHeight any\n */export default function ThemeSwitcher(props){// Config Properties\nconst{defaultTheme,color,size,strokeWidth}=props;const getInitialTheme=()=>{if(typeof window===\"undefined\"){return defaultTheme;}const savedTheme=localStorage.getItem(\"theme\");if(savedTheme){return savedTheme;}if(defaultTheme===\"System\"){const prefersDarkScheme=window.matchMedia(\"(prefers-color-scheme: dark)\").matches;return prefersDarkScheme?\"Dark\":\"Light\";}return defaultTheme;};const[theme,setTheme]=useState(\"\");useEffect(()=>{setTheme(getInitialTheme());},[]);let lightIcon=/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",height:size,fill:\"none\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{fill:\"none\",fontSize:size,stroke:color,strokeWidth:strokeWidth,strokeLinecap:\"round\",strokeLinejoin:\"round\",fillRule:\"evenodd\",d:\"M12,16 C14.209139,16 16,14.209139 16,12 C16,9.790861 14.209139,8 12,8 C9.790861,8 8,9.790861 8,12 C8,14.209139 9.790861,16 12,16 Z M3.75,12 L4,12 M20,12 L20.25,12 M6.16636906,6.16636906 L6.34314575,6.34314575 M17.6568542,17.6568542 L17.8336309,17.8336309 M12,3.75 L12,4 M12,20 L12,20.25 M17.8336309,6.16636906 L17.6568542,6.34314575 M6.34314575,17.6568542 L6.16636906,17.8336309\"})});let moonIcon=/*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",height:size,fill:\"none\",viewBox:\"0 0 24 24\",children:/*#__PURE__*/_jsx(\"path\",{fill:\"none\",fontSize:size,stroke:color,strokeWidth:strokeWidth,strokeLinecap:\"round\",strokeLinejoin:\"round\",fillRule:\"evenodd\",d:\"M10.0097755,3.50866835 C6.50909297,4.74141324 4,8.07769159 4,12 C4,16.9705627 8.02943725,21 13,21 C16.0968026,21 18.8282936,19.4359151 20.4476029,17.0546154 C12.1379474,17.2549581 7.62134541,13.421417 10.0097755,3.50866835 Z\"})});if(localStorage.getItem(\"darkThemeVars\")){setDarkThemeCode(localStorage.getItem(\"darkThemeVars\"));}if(localStorage.getItem(\"lightThemeVars\")){setLightThemeCode(localStorage.getItem(\"lightThemeVars\"));}useEffect(()=>{if(theme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(theme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}},[]);if(typeof document!==\"undefined\"){if(theme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(theme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}const savedTheme=localStorage.getItem(\"theme\");if(savedTheme){if(savedTheme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(savedTheme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}}if(localStorage.getItem(\"darkThemeVars\")){setDarkThemeCode(localStorage.getItem(\"darkThemeVars\"));}if(localStorage.getItem(\"lightThemeVars\")){setLightThemeCode(localStorage.getItem(\"lightThemeVars\"));}}useEffect(()=>{if(theme===\"Light\"||theme===\"Dark\"){localStorage.setItem(\"theme\",theme);const styleTags=Array.from(document.getElementsByTagName(\"style\"));const themeStyleTag=styleTags.find(tag=>tag.innerHTML.includes(\"prefers-color-scheme:\"));if(themeStyleTag){const darkModeCSS=extractDarkModeCSSVariables(themeStyleTag.innerHTML);const lightModeCSS=extractLightModeCSSVariables(themeStyleTag.innerHTML);localStorage.setItem(\"darkThemeVars\",darkModeCSS);localStorage.setItem(\"lightThemeVars\",lightModeCSS);setDarkThemeCode(darkModeCSS);setLightThemeCode(lightModeCSS);if(theme===\"Dark\"){document.body.classList.add(\"pix-is-dark\");document.body.classList.remove(\"pix-is-light\");}else if(theme===\"Light\"){document.body.classList.add(\"pix-is-light\");document.body.classList.remove(\"pix-is-dark\");}}}},[theme]);const handleReload=data=>{setTheme(data);};useEffect(()=>{eventEmitter.on(\"reload\",handleReload);// Cleanup the event listener on component unmount\nreturn()=>{eventEmitter.off(\"reload\",handleReload);};},[]);const switchTheme=e=>{e.preventDefault();let newTheme=theme===\"Light\"?\"Dark\":\"Light\";setTheme(prevTheme=>{return prevTheme===\"Light\"?\"Dark\":\"Light\";});eventEmitter.emit(\"reload\",newTheme);};return /*#__PURE__*/_jsx(motion.div,{style:{},whileHover:{scale:.98,opacity:.8,cursor:\"pointer\"},transition:{type:\"spring\",stiffness:500,damping:30},children:/*#__PURE__*/_jsx(\"a\",{style:containerStyle,onClick:switchTheme,href:\"#\",\"aria-label\":\"Theme switch\",children:theme?theme===\"Dark\"?moonIcon:lightIcon:null})});}addPropertyControls(ThemeSwitcher,{defaultTheme:{type:ControlType.Enum,options:[\"Light\",\"Dark\",\"System\"],optionTitles:[\"Light\",\"Dark\",\"System (auto)\"],title:\"Default Theme\",defaultValue:\"System\",description:\"Theme Switcher will work only in live preview (the icon showing in Framer editor is a placeholder).\"},color:{type:ControlType.Color,defaultValue:\"#09090b\"},size:{type:ControlType.Number,defaultValue:30},strokeWidth:{type:ControlType.Number,defaultValue:2,max:3,min:.5}});const containerStyle={cursor:\"pointer\",display:\"inline-flex\",justifyContent:\"center\",alignItems:\"center\"};\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"ThemeSwitcher\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any\",\"framerContractVersion\":\"1\",\"framerSupportedLayoutHeight\":\"any\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./ThemeSwitch.map", "// Generated by Framer (33d5032)\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=[\"jes3YGVf7\",\"EiPw8AZS4\"];const serializationHash=\"framer-x5SFt\";const variantClassNames={EiPw8AZS4:\"framer-v-es8tzg\",jes3YGVf7:\"framer-v-1ib4qbi\"};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={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};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={\"Mobile Menu [Open]\":\"EiPw8AZS4\",\"Mobile Menu\":\"jes3YGVf7\"};const getProps=({height,iconColor,id,tap,width,...props})=>{var _ref,_humanReadableVariantMap_props_variant,_ref1;return{...props,E6NV4Gf2f:tap!==null&&tap!==void 0?tap:props.E6NV4Gf2f,lYvpkC7IW:(_ref=iconColor!==null&&iconColor!==void 0?iconColor:props.lYvpkC7IW)!==null&&_ref!==void 0?_ref:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",variant:(_ref1=(_humanReadableVariantMap_props_variant=humanReadableVariantMap[props.variant])!==null&&_humanReadableVariantMap_props_variant!==void 0?_humanReadableVariantMap_props_variant:props.variant)!==null&&_ref1!==void 0?_ref1:\"jes3YGVf7\"};};const createLayoutDependency=(props,variants)=>variants.join(\"-\")+props.layoutDependency;const Component=/*#__PURE__*/React.forwardRef(function(props,ref){const{activeLocale,setLocale}=useLocaleInfo();const{style,className,layoutId,variant,E6NV4Gf2f,lYvpkC7IW,...restProps}=getProps(props);const{baseVariant,classNames,gestureVariant,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"jes3YGVf7\",variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTapey0dds=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E6NV4Gf2f){const res=await E6NV4Gf2f(...args);if(res===false)return false;}setVariant(\"EiPw8AZS4\");});const onTap108nq5d=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});if(E6NV4Gf2f){const res=await E6NV4Gf2f(...args);if(res===false)return false;}setVariant(\"jes3YGVf7\");});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,className:cx(serializationHash,...sharedStyleClassNames,\"framer-1ib4qbi\",className,classNames),\"data-framer-name\":\"Mobile Menu\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"jes3YGVf7\",onHoverEnd:()=>setGestureState({isHovered:false}),onHoverStart:()=>setGestureState({isHovered:true}),onTap:onTapey0dds,onTapCancel:()=>setGestureState({isPressed:false}),onTapStart:()=>setGestureState({isPressed:true}),ref:ref!==null&&ref!==void 0?ref:ref1,style:{...style},...addPropertyOverrides({EiPw8AZS4:{\"data-framer-name\":\"Mobile Menu [Open]\",onTap:onTap108nq5d}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(motion.div,{className:\"framer-1cux5of\",layoutDependency:layoutDependency,layoutId:\"axZqjz8iD\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{EiPw8AZS4:{rotate:45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1w1bul6\",layoutDependency:layoutDependency,layoutId:\"NLO8BEcKq\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,rotate:0},variants:{EiPw8AZS4:{rotate:-45}}}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-1ku2ucf\",layoutDependency:layoutDependency,layoutId:\"eoR2V6lm3\",style:{backgroundColor:lYvpkC7IW,borderBottomLeftRadius:10,borderBottomRightRadius:10,borderTopLeftRadius:10,borderTopRightRadius:10,opacity:1,rotate:0},variants:{EiPw8AZS4:{opacity:0,rotate:-45}}})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-x5SFt.framer-3vm2ug, .framer-x5SFt .framer-3vm2ug { display: block; }\",\".framer-x5SFt.framer-1ib4qbi { cursor: pointer; height: 48px; position: relative; width: 48px; }\",\".framer-x5SFt .framer-1cux5of { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 14px; width: 26px; }\",\".framer-x5SFt .framer-1w1bul6 { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 22px; width: 26px; }\",\".framer-x5SFt .framer-1ku2ucf { flex: none; height: 3px; left: 11px; overflow: visible; position: absolute; top: 30px; width: 19px; }\",\".framer-x5SFt.framer-v-es8tzg.framer-1ib4qbi { aspect-ratio: 1 / 1; height: var(--framer-aspect-ratio-supported, 48px); }\",\".framer-x5SFt.framer-v-es8tzg .framer-1cux5of { left: calc(50.00000000000002% - 26px / 2); top: 23px; }\",\".framer-x5SFt.framer-v-es8tzg .framer-1w1bul6 { top: 23px; }\",\".framer-x5SFt.framer-v-es8tzg .framer-1ku2ucf { bottom: 18px; height: unset; left: 13px; width: 13px; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 48\n * @framerIntrinsicWidth 48\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"fixed\"]},\"EiPw8AZS4\":{\"layout\":[\"fixed\",\"fixed\"]}}}\n * @framerVariables {\"E6NV4Gf2f\":\"tap\",\"lYvpkC7IW\":\"iconColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramersDquhqjHT=withCSS(Component,css,\"framer-x5SFt\");export default FramersDquhqjHT;FramersDquhqjHT.displayName=\"Menu/Hamburger Menu\";FramersDquhqjHT.defaultProps={height:48,width:48};addPropertyControls(FramersDquhqjHT,{variant:{options:[\"jes3YGVf7\",\"EiPw8AZS4\"],optionTitles:[\"Mobile Menu\",\"Mobile Menu [Open]\"],title:\"Variant\",type:ControlType.Enum},E6NV4Gf2f:{title:\"Tap\",type:ControlType.EventHandler},lYvpkC7IW:{defaultValue:'var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11)) /* {\"name\":\"Gray 950\"} */',title:\"Icon Color\",type:ControlType.Color}});addFonts(FramersDquhqjHT,[{explicitInter:true,fonts:[]}],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"FramersDquhqjHT\",\"slots\":[],\"annotations\":{\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerVariables\":\"{\\\"E6NV4Gf2f\\\":\\\"tap\\\",\\\"lYvpkC7IW\\\":\\\"iconColor\\\"}\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"48\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]},\\\"EiPw8AZS4\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"fixed\\\"]}}}\",\"framerIntrinsicWidth\":\"48\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./sDquhqjHT.map", "// Generated by Framer (a2fb474)\nimport{fontStore}from\"framer\";fontStore.loadFonts([\"CUSTOM;Nekst Medium\"]);export const fonts=[{explicitInter:true,fonts:[{family:\"Nekst Medium\",source:\"custom\",url:\"https://framerusercontent.com/assets/kGZQqCTurab0l9NAO93wult5Qe4.woff2\"}]}];export const css=['.framer-GIxwI .framer-styles-preset-1b8z1kr:not(.rich-text-wrapper), .framer-GIxwI .framer-styles-preset-1b8z1kr.rich-text-wrapper p { --framer-font-family: \"Nekst Medium\", \"Nekst Medium Placeholder\", sans-serif; --framer-font-open-type-features: normal; --framer-font-size: 12px; --framer-font-style: normal; --framer-font-variation-axes: normal; --framer-font-weight: 400; --framer-letter-spacing: 0.04em; --framer-line-height: 1.2em; --framer-paragraph-spacing: 20px; --framer-text-alignment: center; --framer-text-color: var(--token-fd54a91d-2c97-4609-acbc-244da5b6b983, #71717a); --framer-text-decoration: none; --framer-text-stroke-color: initial; --framer-text-stroke-width: initial; --framer-text-transform: none; }'];export const className=\"framer-GIxwI\";\nexport const __FramerMetadata__ = {\"exports\":{\"className\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"css\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"fonts\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (f26e712)\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{Icon as Phosphor}from\"https://framerusercontent.com/modules/tYScH7LTqUtz5KUaUAYP/p8dptk4UIND8hbFWz9V7/Phosphor.js\";import*as sharedStyle from\"https://framerusercontent.com/modules/qlfXhUFZW3o7wg1JPUZ2/Mfr7WFYJAzApdaoA6TjB/aGffgv7Ct.js\";import*as sharedStyle1 from\"https://framerusercontent.com/modules/4AH1iWn5WxOFmW6BMk3r/0RjIJDIWeQRIqqemGAJc/maGpaxTnj.js\";import Badge from\"https://framerusercontent.com/modules/qYpjwFAmw4GB6kFw76g8/PlDhNht5IE8kRksHKOBZ/ZC6oaTVqt.js\";const BadgeFonts=getFonts(Badge);const PhosphorFonts=getFonts(Phosphor);const enabledGestures={icuU8oJ0t:{hover:true}};const cycleOrder=[\"icuU8oJ0t\",\"HhwQ1hV0t\",\"LQXjyoW02\",\"kc88LMeYu\",\"usttoGkoS\"];const serializationHash=\"framer-PLBd9\";const variantClassNames={HhwQ1hV0t:\"framer-v-1vx7c28\",icuU8oJ0t:\"framer-v-hfop9t\",kc88LMeYu:\"framer-v-1rk7qb1\",LQXjyoW02:\"framer-v-ix00l\",usttoGkoS:\"framer-v-ri7xm7\"};function addPropertyOverrides(overrides,...variants){const nextOverrides={};variants?.forEach(variant=>variant&&Object.assign(nextOverrides,overrides[variant]));return nextOverrides;}const radiusForCorner=(value,cornerIndex)=>{if(typeof value===\"number\"&&Number.isFinite(value))return Math.max(0,value)+\"px\";if(typeof value!==\"string\"||typeof cornerIndex!==\"number\")return undefined;const segments=value.split(\" \");return segments[cornerIndex]||segments[cornerIndex-2]||segments[0];};const transition1={damping:60,delay:0,mass:.5,stiffness:500,type:\"spring\"};const transition2={damping:60,delay:0,mass:.5,stiffness:300,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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Dropdown Title Item\":\"kc88LMeYu\",\"Empty space\":\"usttoGkoS\",\"Menu Item Dropdown [Open]\":\"LQXjyoW02\",\"Menu Item Dropdown\":\"HhwQ1hV0t\",\"Menu Item Simple\":\"icuU8oJ0t\"};const getProps=({align,badgeBGColor,badgeBorder,badgeText,badgeTextColor,bGColor,bGHover,enableBadge,height,hover,id,link,name1,openInNewTab,radius,tap,textColor,width,...props})=>{return{...props,bxYeoQnmJ:badgeBGColor??props.bxYeoQnmJ??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:badgeBorder??props.CKLn4URch??{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},dqMpST25y:radius??props.dqMpST25y??10,i6eMpMhze:tap??props.i6eMpMhze,i8hVK17KP:bGHover??props.i8hVK17KP??\"rgba(113, 113, 122, 0.08)\",kf3NktHXk:badgeText??props.kf3NktHXk??\"Badge\",ku0K5iab7:name1??props.ku0K5iab7??\"Link\",PnQ813Qxg:hover??props.PnQ813Qxg,qfg9TUc_S:enableBadge??props.qfg9TUc_S,stziIHmv7:bGColor??props.stziIHmv7??\"rgba(113, 113, 122, 0)\",T3ktnO2nz:openInNewTab??props.T3ktnO2nz,variant:humanReadableVariantMap[props.variant]??props.variant??\"icuU8oJ0t\",VdwkoqfEz:badgeTextColor??props.VdwkoqfEz??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:textColor??props.wGRcFK04x??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",ycFa86gVJ:humanReadableEnumMap[align]??align??props.ycFa86gVJ??\"center\",ZpWw94nXT:link??props.ZpWw94nXT};};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,ku0K5iab7,ZpWw94nXT,T3ktnO2nz,wGRcFK04x,stziIHmv7,i8hVK17KP,ycFa86gVJ,i6eMpMhze,PnQ813Qxg,dqMpST25y,qfg9TUc_S,kf3NktHXk,VdwkoqfEz,bxYeoQnmJ,CKLn4URch,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"icuU8oJ0t\",enabledGestures,ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onMouseEnter1p982a=activeVariantCallback(async(...args)=>{setGestureState({isHovered:true});if(PnQ813Qxg){const res=await PnQ813Qxg(...args);if(res===false)return false;}if(i6eMpMhze){const res=await i6eMpMhze(...args);if(res===false)return false;}});const onTap8kwsl1=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});setVariant(\"HhwQ1hV0t\");});const sharedStyleClassNames=[sharedStyle.className,sharedStyle1.className];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const isDisplayed=()=>{if(baseVariant===\"usttoGkoS\")return false;return true;};const isDisplayed1=()=>{if([\"HhwQ1hV0t\",\"LQXjyoW02\"].includes(baseVariant))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,...addPropertyOverrides({LQXjyoW02:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(Link,{href:ZpWw94nXT,motionChild:true,nodeId:\"icuU8oJ0t\",openInNewTab:T3ktnO2nz,scopeId:\"Z5aW2k3RB\",smoothScroll:true,...addPropertyOverrides({kc88LMeYu:{href:undefined},usttoGkoS:{href:undefined}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.a,{...restProps,...gestureHandlers,className:`${cx(scopingClassNames,\"framer-hfop9t\",className,classNames)} framer-1xk21ds`,\"data-framer-name\":\"Menu Item Simple\",\"data-highlight\":true,layoutDependency:layoutDependency,layoutId:\"icuU8oJ0t\",onMouseEnter:onMouseEnter1p982a,ref:refBinding,style:{\"--1rj8ghj\":ycFa86gVJ,backgroundColor:stziIHmv7,borderBottomLeftRadius:radiusForCorner(dqMpST25y,3),borderBottomRightRadius:radiusForCorner(dqMpST25y,2),borderTopLeftRadius:radiusForCorner(dqMpST25y,0),borderTopRightRadius:radiusForCorner(dqMpST25y,1),...style},variants:{\"icuU8oJ0t-hover\":{backgroundColor:i8hVK17KP},LQXjyoW02:{backgroundColor:\"rgba(9, 9, 11, 0.05)\"}},...addPropertyOverrides({\"icuU8oJ0t-hover\":{\"data-framer-name\":undefined},HhwQ1hV0t:{\"data-framer-name\":\"Menu Item Dropdown\",onTap:onTap8kwsl1},kc88LMeYu:{\"data-framer-name\":\"Dropdown Title Item\"},LQXjyoW02:{\"data-framer-name\":\"Menu Item Dropdown [Open]\"},usttoGkoS:{\"data-framer-name\":\"Empty space\"}},baseVariant,gestureVariant),children:[isDisplayed()&&/*#__PURE__*/_jsx(RichText,{__fromCanvasComponent:true,children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1xyptdp\",\"data-styles-preset\":\"aGffgv7Ct\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wGRcFK04x-Z5aW2k3RB))\"},children:\"Link\"})}),className:\"framer-1vx5tu0\",fonts:[\"Inter\"],layoutDependency:layoutDependency,layoutId:\"gTNv8fTVS\",style:{\"--extracted-r6o4lv\":\"var(--variable-reference-wGRcFK04x-Z5aW2k3RB)\",\"--framer-link-text-color\":\"rgb(0, 153, 255)\",\"--framer-link-text-decoration\":\"underline\",\"--variable-reference-wGRcFK04x-Z5aW2k3RB\":wGRcFK04x},text:ku0K5iab7,verticalAlignment:\"top\",withExternalLayout:true,...addPropertyOverrides({kc88LMeYu:{children:/*#__PURE__*/_jsx(React.Fragment,{children:/*#__PURE__*/_jsx(motion.p,{className:\"framer-styles-preset-1b8z1kr\",\"data-styles-preset\":\"maGpaxTnj\",style:{\"--framer-text-color\":\"var(--extracted-r6o4lv, var(--variable-reference-wGRcFK04x-Z5aW2k3RB))\"},children:\"Link\"})})}},baseVariant,gestureVariant)}),qfg9TUc_S&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:41,y:(componentViewport?.y||0)+(18+((componentViewport?.height||17)-36-41)/2),...addPropertyOverrides({\"icuU8oJ0t-hover\":{y:(componentViewport?.y||0)+(18+((componentViewport?.height||36)-36-41)/2)},HhwQ1hV0t:{y:(componentViewport?.y||0)+(18+((componentViewport?.height||36)-36-41)/2)},kc88LMeYu:{y:(componentViewport?.y||0)+(8+((componentViewport?.height||200)-16-41)/2)},LQXjyoW02:{y:(componentViewport?.y||0)+(18+((componentViewport?.height||36)-36-41)/2)},usttoGkoS:{y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-41)/2)}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-eukp2i-container\",layoutDependency:layoutDependency,layoutId:\"JN6O6Y8K9-container\",nodeId:\"JN6O6Y8K9\",rendersWithMotion:true,scopeId:\"Z5aW2k3RB\",children:/*#__PURE__*/_jsx(Badge,{C_fTzd5lR:CKLn4URch,height:\"100%\",id:\"JN6O6Y8K9\",iXsfVjsEM:bxYeoQnmJ,JPO2n74ig:5,layoutId:\"JN6O6Y8K9\",Lsu1xrgI3:VdwkoqfEz,p4KdNyw2A:0,variant:\"cUGIJY4lk\",width:\"100%\",XGtDHEUvE:kf3NktHXk})})}),isDisplayed1()&&/*#__PURE__*/_jsx(motion.div,{className:\"framer-12jenrk\",layoutDependency:layoutDependency,layoutId:\"qdqvZw6xP\",children:/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-kr3p8o-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"TfGao9FSL-container\",nodeId:\"TfGao9FSL\",rendersWithMotion:true,scopeId:\"Z5aW2k3RB\",style:{opacity:.5,rotate:0},variants:{LQXjyoW02:{rotate:-180}},children:/*#__PURE__*/_jsx(Phosphor,{color:wGRcFK04x,height:\"100%\",iconSearch:\"House\",iconSelection:\"CaretDown\",id:\"TfGao9FSL\",layoutId:\"TfGao9FSL\",mirrored:false,selectByList:true,style:{height:\"100%\",width:\"100%\"},weight:\"bold\",width:\"100%\"})})})})]})})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-PLBd9.framer-1xk21ds, .framer-PLBd9 .framer-1xk21ds { display: block; }\",\".framer-PLBd9.framer-hfop9t { align-content: center; align-items: center; cursor: pointer; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 7px; height: 17px; justify-content: var(--1rj8ghj); overflow: visible; padding: 18px 12px 18px 12px; position: relative; text-decoration: none; width: min-content; }\",\".framer-PLBd9 .framer-1vx5tu0 { flex: none; height: auto; position: relative; white-space: pre; width: auto; }\",\".framer-PLBd9 .framer-eukp2i-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-PLBd9 .framer-12jenrk { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: 17px; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-PLBd9 .framer-kr3p8o-container { flex: none; height: 14px; position: relative; width: 14px; }\",\"@supports (background: -webkit-named-image(i)) and (not (font-palette:dark)) { .framer-PLBd9.framer-hfop9t, .framer-PLBd9 .framer-12jenrk { gap: 0px; } .framer-PLBd9.framer-hfop9t > * { margin: 0px; margin-left: calc(7px / 2); margin-right: calc(7px / 2); } .framer-PLBd9.framer-hfop9t > :first-child, .framer-PLBd9 .framer-12jenrk > :first-child { margin-left: 0px; } .framer-PLBd9.framer-hfop9t > :last-child, .framer-PLBd9 .framer-12jenrk > :last-child { margin-right: 0px; } .framer-PLBd9 .framer-12jenrk > * { margin: 0px; margin-left: calc(5px / 2); margin-right: calc(5px / 2); } }\",\".framer-PLBd9.framer-v-1vx7c28.framer-hfop9t, .framer-PLBd9.framer-v-hfop9t.hover.framer-hfop9t { height: 36px; }\",\".framer-PLBd9.framer-v-ix00l.framer-hfop9t { cursor: unset; height: 36px; }\",\".framer-PLBd9.framer-v-1rk7qb1.framer-hfop9t { cursor: unset; height: min-content; padding: 8px 12px 8px 12px; }\",\".framer-PLBd9.framer-v-1rk7qb1 .framer-1vx5tu0 { order: 0; }\",\".framer-PLBd9.framer-v-1rk7qb1 .framer-eukp2i-container, .framer-PLBd9.framer-v-ri7xm7 .framer-eukp2i-container { order: 1; }\",\".framer-PLBd9.framer-v-ri7xm7.framer-hfop9t { cursor: unset; height: min-content; padding: 0px; }\",...sharedStyle.css,...sharedStyle1.css];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 51\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"fixed\"]},\"HhwQ1hV0t\":{\"layout\":[\"auto\",\"fixed\"]},\"LQXjyoW02\":{\"layout\":[\"auto\",\"fixed\"]},\"kc88LMeYu\":{\"layout\":[\"auto\",\"auto\"]},\"usttoGkoS\":{\"layout\":[\"auto\",\"auto\"]},\"Dv2nGJV7X\":{\"layout\":[\"auto\",\"fixed\"]}}}\n * @framerVariables {\"ku0K5iab7\":\"name1\",\"ZpWw94nXT\":\"link\",\"T3ktnO2nz\":\"openInNewTab\",\"wGRcFK04x\":\"textColor\",\"stziIHmv7\":\"bGColor\",\"i8hVK17KP\":\"bGHover\",\"ycFa86gVJ\":\"align\",\"i6eMpMhze\":\"tap\",\"PnQ813Qxg\":\"hover\",\"dqMpST25y\":\"radius\",\"qfg9TUc_S\":\"enableBadge\",\"kf3NktHXk\":\"badgeText\",\"VdwkoqfEz\":\"badgeTextColor\",\"bxYeoQnmJ\":\"badgeBGColor\",\"CKLn4URch\":\"badgeBorder\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerComponentViewportWidth true\n */const FramerZ5aW2k3RB=withCSS(Component,css,\"framer-PLBd9\");export default FramerZ5aW2k3RB;FramerZ5aW2k3RB.displayName=\"Menu/Item\";FramerZ5aW2k3RB.defaultProps={height:36,width:51};addPropertyControls(FramerZ5aW2k3RB,{variant:{options:[\"icuU8oJ0t\",\"HhwQ1hV0t\",\"LQXjyoW02\",\"kc88LMeYu\",\"usttoGkoS\"],optionTitles:[\"Menu Item Simple\",\"Menu Item Dropdown\",\"Menu Item Dropdown [Open]\",\"Dropdown Title Item\",\"Empty space\"],title:\"Variant\",type:ControlType.Enum},ku0K5iab7:{defaultValue:\"Link\",displayTextArea:false,title:\"Name\",type:ControlType.String},ZpWw94nXT:{title:\"Link\",type:ControlType.Link},T3ktnO2nz:{defaultValue:false,title:\"Open in New Tab\",type:ControlType.Boolean},wGRcFK04x:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},stziIHmv7:{defaultValue:\"rgba(113, 113, 122, 0)\",title:\"BG Color\",type:ControlType.Color},i8hVK17KP:{defaultValue:\"rgba(113, 113, 122, 0.08)\",title:\"BG Hover\",type:ControlType.Color},ycFa86gVJ:{defaultValue:\"center\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Align\",type:ControlType.Enum},i6eMpMhze:{title:\"Tap\",type:ControlType.EventHandler},PnQ813Qxg:{title:\"Hover\",type:ControlType.EventHandler},dqMpST25y:{defaultValue:10,title:\"Radius\",type:ControlType.Number},qfg9TUc_S:{defaultValue:false,title:\"Enable Badge\",type:ControlType.Boolean},kf3NktHXk:{defaultValue:\"Badge\",displayTextArea:false,title:\"Badge Text\",type:ControlType.String},VdwkoqfEz:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Badge Text Color\",type:ControlType.Color},bxYeoQnmJ:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White/Gray 950 [Dynamic]\"} */',title:\"Badge BG Color\",type:ControlType.Color},CKLn4URch:{defaultValue:{borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderStyle:\"solid\",borderWidth:1},title:\"Badge Border\",type:ControlType.Border}});addFonts(FramerZ5aW2k3RB,[{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\"}]},...BadgeFonts,...PhosphorFonts,...getFontsFromSharedStyle(sharedStyle.fonts),...getFontsFromSharedStyle(sharedStyle1.fonts)],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerZ5aW2k3RB\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ku0K5iab7\\\":\\\"name1\\\",\\\"ZpWw94nXT\\\":\\\"link\\\",\\\"T3ktnO2nz\\\":\\\"openInNewTab\\\",\\\"wGRcFK04x\\\":\\\"textColor\\\",\\\"stziIHmv7\\\":\\\"bGColor\\\",\\\"i8hVK17KP\\\":\\\"bGHover\\\",\\\"ycFa86gVJ\\\":\\\"align\\\",\\\"i6eMpMhze\\\":\\\"tap\\\",\\\"PnQ813Qxg\\\":\\\"hover\\\",\\\"dqMpST25y\\\":\\\"radius\\\",\\\"qfg9TUc_S\\\":\\\"enableBadge\\\",\\\"kf3NktHXk\\\":\\\"badgeText\\\",\\\"VdwkoqfEz\\\":\\\"badgeTextColor\\\",\\\"bxYeoQnmJ\\\":\\\"badgeBGColor\\\",\\\"CKLn4URch\\\":\\\"badgeBorder\\\"}\",\"framerComponentViewportWidth\":\"true\",\"framerDisplayContentsDiv\":\"false\",\"framerIntrinsicWidth\":\"51\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"HhwQ1hV0t\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"LQXjyoW02\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]},\\\"kc88LMeYu\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"usttoGkoS\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"Dv2nGJV7X\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"fixed\\\"]}}}\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"36\",\"framerImmutableVariables\":\"true\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./Z5aW2k3RB.map", "export const v0=\"\u0413\u043E\u043B\u043E\u0432\u043D\u0430\";export const v1=\"Badge\";export const v2=\"\u041F\u043E\u0441\u043B\u0443\u0433\u0438\";export const v3=\"\u0428\u0406 \u0440\u0456\u0448\u0435\u043D\u043D\u044F\";export const v4=\"\u0417\u043E\u043D\u0438 \u0432\u043F\u0440\u043E\u0432\u0430\u0434\u0436\u0435\u043D\u043D\u044F\";\nexport const __FramerMetadata__ = {\"exports\":{\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (455587d)\nimport*as localizedValues from\"./x6PfALCgy-0.js\";const valuesByLocaleId={uI0_UWbhv: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 (455587d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,ResolveLinks,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 getLocalizedValue from\"https://framerusercontent.com/modules/64LqZfsPo2S4ckJvdzIn/dpGMBN59jMOuqTOaacjF/x6PfALCgy.js\";import MenuItem from\"https://framerusercontent.com/modules/j7CLyQyChT4hszmGwx0i/8qjr0uplFB32w5GWk4AZ/Z5aW2k3RB.js\";const MenuItemFonts=getFonts(MenuItem);const serializationHash=\"framer-xs3or\";const variantClassNames={GqsjJ_k1_:\"framer-v-1ltwia3\"};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 humanReadableEnumMap={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const getProps=({align,height,id,textColor,width,...props})=>{return{...props,odLrH8wIa:textColor??props.odLrH8wIa??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",ZmT46usVX:humanReadableEnumMap[align]??align??props.ZmT46usVX??\"flex-start\"};};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,ZmT46usVX,odLrH8wIa,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({defaultVariant:\"GqsjJ_k1_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const sharedStyleClassNames=[];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__*/_jsxs(motion.div,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-1ltwia3\",className,classNames),\"data-framer-name\":\"Menu\",layoutDependency:layoutDependency,layoutId:\"GqsjJ_k1_\",ref:refBinding,style:{\"--hkf6fz\":ZmT46usVX,...style},children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hdL9_6kRv\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-14day1l-container\",layoutDependency:layoutDependency,layoutId:\"JuMrSWolJ-container\",nodeId:\"JuMrSWolJ\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"JuMrSWolJ\",kf3NktHXk:getLocalizedValue(\"v1\",activeLocale)??\"Badge\",ku0K5iab7:getLocalizedValue(\"v0\",activeLocale)??\"\u0413\u043B\u0430\u0432\u043D\u0430\u044F\",layoutId:\"JuMrSWolJ\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XMGmxSgVi\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-45owg4-container\",layoutDependency:layoutDependency,layoutId:\"yTT6iqjSL-container\",nodeId:\"yTT6iqjSL\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"yTT6iqjSL\",kf3NktHXk:getLocalizedValue(\"v1\",activeLocale)??\"Badge\",ku0K5iab7:getLocalizedValue(\"v2\",activeLocale)??\"\u0423\u0441\u043B\u0443\u0433\u0438\",layoutId:\"yTT6iqjSL\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks1[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Cpq0PDmdd\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-2bsq3a-container\",layoutDependency:layoutDependency,layoutId:\"pgdLXbIJA-container\",nodeId:\"pgdLXbIJA\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"pgdLXbIJA\",kf3NktHXk:getLocalizedValue(\"v1\",activeLocale)??\"Badge\",ku0K5iab7:getLocalizedValue(\"v3\",activeLocale)??\"AI \u0440\u0435\u0448\u0435\u043D\u0438\u044F\",layoutId:\"pgdLXbIJA\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks2[0]})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HmNU394go\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(0+((componentViewport?.height||200)-0-36)/2),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-za3wrs-container\",layoutDependency:layoutDependency,layoutId:\"TWFsVa5mu-container\",nodeId:\"TWFsVa5mu\",rendersWithMotion:true,scopeId:\"x6PfALCgy\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(113, 113, 122, 0.08)\",id:\"TWFsVa5mu\",kf3NktHXk:\"Badge\",ku0K5iab7:getLocalizedValue(\"v4\",activeLocale)??\"\u0417\u043E\u043D\u044B \u0432\u043D\u0435\u0434\u0440\u0435\u043D\u0438\u044F\",layoutId:\"TWFsVa5mu\",qfg9TUc_S:false,stziIHmv7:\"rgba(113, 113, 122, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:odLrH8wIa,width:\"100%\",ycFa86gVJ:\"center\",ZpWw94nXT:resolvedLinks3[0]})})})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-xs3or.framer-10aihsl, .framer-xs3or .framer-10aihsl { display: block; }\",\".framer-xs3or.framer-1ltwia3 { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 5px; height: min-content; justify-content: var(--hkf6fz); overflow: visible; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-xs3or .framer-14day1l-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-xs3or .framer-45owg4-container, .framer-xs3or .framer-2bsq3a-container, .framer-xs3or .framer-za3wrs-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\"];/**\n * This is a generated Framer component.\n * @framerIntrinsicHeight 36\n * @framerIntrinsicWidth 441\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"auto\",\"auto\"]}}}\n * @framerVariables {\"ZmT46usVX\":\"align\",\"odLrH8wIa\":\"textColor\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const Framerx6PfALCgy=withCSS(Component,css,\"framer-xs3or\");export default Framerx6PfALCgy;Framerx6PfALCgy.displayName=\"Menu/Menu\";Framerx6PfALCgy.defaultProps={height:36,width:441};addPropertyControls(Framerx6PfALCgy,{ZmT46usVX:{defaultValue:\"flex-start\",options:[\"flex-start\",\"center\",\"flex-end\",\"space-between\",\"space-around\",\"space-evenly\"],optionTitles:[\"Start\",\"Center\",\"End\",\"Space Between\",\"Space Around\",\"Space Evenly\"],title:\"Align\",type:ControlType.Enum},odLrH8wIa:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color}});addFonts(Framerx6PfALCgy,[{explicitInter:true,fonts:[]},...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"default\":{\"type\":\"reactComponent\",\"name\":\"Framerx6PfALCgy\",\"slots\":[],\"annotations\":{\"framerVariables\":\"{\\\"ZmT46usVX\\\":\\\"align\\\",\\\"odLrH8wIa\\\":\\\"textColor\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerColorSyntax\":\"true\",\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]}}}\",\"framerIntrinsicWidth\":\"441\",\"framerComponentViewportWidth\":\"true\",\"framerImmutableVariables\":\"true\",\"framerIntrinsicHeight\":\"36\",\"framerDisplayContentsDiv\":\"false\",\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "import{ControlType as e}from\"framer\";export function getBorderStyle({color:e,width:t=0,widthPerSide:o=!1,widthTop:d=0,widthRight:r=0,widthBottom:i=0,widthLeft:l=0,style:h=\"none\"}={}){let b={};return e?(b[\"--framer-border-color\"]=e,b.borderStyle=h,o?(b.borderTopWidth=d,b.borderRightWidth=r,b.borderBottomWidth=i,b.borderLeftWidth=l):(b.borderTopWidth=t,b.borderRightWidth=t,b.borderBottomWidth=t,b.borderLeftWidth=t)):b.border=\"none\",b;}export const borderControls={color:{type:e.Color,defaultValue:\"#444\"},width:{type:e.FusedNumber,toggleKey:\"widthPerSide\",toggleTitles:[\"Width\",\"Width per side\"],valueKeys:[\"widthTop\",\"widthRight\",\"widthBottom\",\"widthLeft\"],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:1,min:0},style:{type:e.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"}};\nexport const __FramerMetadata__ = {\"exports\":{\"borderControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getBorderStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"BorderOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./border.map", "import{ControlType}from\"framer\";export function getFocusStyle({color,width,style,offset}={}){const result={};if(color){result[\"--framer-focus-outline\"]=`${width}px ${style} ${color}`;result[\"--framer-focus-outline-offset\"]=`${offset}px`;}return result;}export const focusControls={color:{type:ControlType.Color,defaultValue:\"#09f\"},width:{type:ControlType.Number,displayStepper:true,defaultValue:1,min:0},style:{type:ControlType.Enum,options:[\"solid\",\"dashed\",\"dotted\",\"double\"],optionTitles:[\"Solid\",\"Dashed\",\"Dotted\",\"double\"],defaultValue:\"solid\"},offset:{type:ControlType.Number,displayStepper:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"focusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getFocusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"FocusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./focus.map", "import{ControlType}from\"framer\";export function getHoverStyle({fillColor,textColor,borderColor}={}){return{\"--framer-hover-background-color\":fillColor,\"--framer-hover-color\":textColor,\"--framer-hover-border-color\":borderColor};}export const hoverControls={fillColor:{type:ControlType.Color,title:\"Fill\",optional:true},textColor:{type:ControlType.Color,title:\"Text\",optional:true},borderColor:{type:ControlType.Color,title:\"Border\",optional:true}};\nexport const __FramerMetadata__ = {\"exports\":{\"HoverOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"getHoverStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"hoverControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./hover.map", "import{ControlType}from\"framer\";export function getPaddingStyle({padding=0,paddingPerSide=false,paddingTop=0,paddingRight=0,paddingBottom=0,paddingLeft=0}={}){if(paddingPerSide){return{paddingTop:paddingTop,paddingRight:paddingRight,paddingBottom:paddingBottom,paddingLeft:paddingLeft};}else{return{paddingTop:padding,paddingRight:padding,paddingBottom:padding,paddingLeft:padding};}}export const paddingControls={padding:{type:ControlType.FusedNumber,toggleKey:\"paddingPerSide\",toggleTitles:[\"Padding\",\"Padding per side\"],valueKeys:[\"paddingTop\",\"paddingRight\",\"paddingBottom\",\"paddingLeft\",],valueLabels:[\"T\",\"R\",\"B\",\"L\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getPaddingStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"paddingControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"PaddingOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./padding.map", "import{ControlType}from\"framer\";export function getRadiusStyle({radius=0,radiusPerCorner=false,radiusTopLeft=0,radiusTopRight=0,radiusBottomRight=0,radiusBottomLeft=0}={}){const result={};if(radiusPerCorner){result.borderTopLeftRadius=radiusTopLeft;result.borderTopRightRadius=radiusTopRight;result.borderBottomRightRadius=radiusBottomRight;result.borderBottomLeftRadius=radiusBottomLeft;}else{result.borderTopLeftRadius=radius;result.borderTopRightRadius=radius;result.borderBottomRightRadius=radius;result.borderBottomLeftRadius=radius;}return result;}export const radiusControls={radius:{type:ControlType.FusedNumber,toggleKey:\"radiusPerConrner\",toggleTitles:[\"Radius\",\"Radius per side\"],valueKeys:[\"radiusTopLeft\",\"radiusTopRight\",\"radiusBottomRight\",\"radiusBottomLeft\",],valueLabels:[\"TL\",\"TR\",\"BR\",\"BL\"],defaultValue:10,min:0}};\nexport const __FramerMetadata__ = {\"exports\":{\"getRadiusStyle\":{\"type\":\"function\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"radiusControls\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"RadiusOptions\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./radius.map", "import{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addPropertyControls,ControlType,// @ts-ignore Internal function\nuseLocaleInfo,withCSS}from\"framer\";import{useId,useState}from\"react\";import{getBorderStyle,borderControls}from\"https://framerusercontent.com/modules/cuKUFdzXlhvw8OVOBeAc/T08RxQJ4qrs7LLc8wx4E/border.js\";import{getFocusStyle,focusControls}from\"https://framerusercontent.com/modules/9muYaW1MvHoRQJ0P7dkP/V2GVvLqiMxXRSxszkCSa/focus.js\";import{getHoverStyle,hoverControls}from\"https://framerusercontent.com/modules/YfmtnpWjJrP37sQ18QUZ/9Y2P24U2SBIbf2fPVsOX/hover.js\";import{getPaddingStyle,paddingControls}from\"https://framerusercontent.com/modules/wjZLfSMaP1TvJDu5PCwr/6SPClu354QJPCp6Xj5C0/padding.js\";import{getRadiusStyle,radiusControls}from\"https://framerusercontent.com/modules/N6MwtHbWoiZJNn1xpqxu/58OHv7BfCzgeBhiv1TYu/radius.js\";const className=\"framer-locale-picker\";function addPixel(value){if(typeof value===\"number\"){return`${value}px`;}return value;}var IconType;(function(IconType){IconType[\"Default\"]=\"default\";IconType[\"Custom\"]=\"custom\";})(IconType||(IconType={}));function Icon({type,color,image,size}){if(type===\"custom\"&&image){return /*#__PURE__*/_jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 256 256\",width:size,height:size,fill:color,children:/*#__PURE__*/_jsx(\"path\",{d:\"M128,24A104,104,0,1,0,232,128,104.11,104.11,0,0,0,128,24Zm87.63,96H175.8c-1.41-28.46-10.27-55.47-25.12-77A88.2,88.2,0,0,1,215.63,120ZM128,215.89c-18.73-20.27-30.09-49-31.77-79.89h63.54C158.09,166.87,146.73,195.62,128,215.89ZM96.23,120c1.68-30.87,13-59.62,31.77-79.89,18.73,20.27,30.09,49,31.77,79.89Zm9.09-77C90.47,64.53,81.61,91.54,80.2,120H40.37A88.2,88.2,0,0,1,105.32,43ZM40.37,136H80.2c1.41,28.46,10.27,55.47,25.12,77A88.2,88.2,0,0,1,40.37,136Zm110.31,77c14.85-21.56,23.71-48.57,25.12-77h39.83A88.2,88.2,0,0,1,150.68,213Z\"})});}var CaretType;(function(CaretType){CaretType[\"Default\"]=\"default\";CaretType[\"Custom\"]=\"custom\";})(CaretType||(CaretType={}));function Caret({type,color,image,size}){if(type===\"custom\"&&image){return /*#__PURE__*/_jsx(\"img\",{...image,width:size,height:size});}return /*#__PURE__*/_jsx(\"svg\",{xmlns:\"http://www.w3.org/2000/svg\",viewBox:\"0 0 12 12\",width:size,height:size,children:/*#__PURE__*/_jsx(\"path\",{d:\"M 2 4.5 L 6 8.5 L 10 4.5\",fill:\"none\",stroke:color,strokeWidth:1.5,strokeLinecap:\"round\",strokeLinejoin:\"round\"})});}/**\n * @framerSupportedLayoutWidth any-prefer-fixed\n * @framerSupportedLayoutHeight any\n * @framerDisableUnlink\n * @framerIntrinsicWidth 120\n * @framerIntrinsicHeight 34\n */const LocaleSelector=withCSS(({font,fillColor,textColor,icon,caret,options:{title,gap,border,hover,focus},style,...props})=>{const id=useId();const{activeLocale,locales,setLocale}=useLocaleInfo();var _activeLocale_id;const activeLocaleId=(_activeLocale_id=activeLocale===null||activeLocale===void 0?void 0:activeLocale.id)!==null&&_activeLocale_id!==void 0?_activeLocale_id:\"default\";const[lastActiveLocaleId,setLastActiveLocaleId]=useState(activeLocaleId);// The useLocaleInfo hook updates the activeLocale variable inside\n// a startTransition to load the translations with Suspense. To make\n// the component feel responsive we update our own state without Suspense.\nconst[selectedLocaleId,setSelectedLocaleId]=useState(activeLocaleId);const selectedLocale=locales.find(locale=>locale.id===selectedLocaleId);// The active locale was updated. Ensure we update our internal state as well.\nif(lastActiveLocaleId!==activeLocaleId){setLastActiveLocaleId(activeLocaleId);if(selectedLocaleId!==activeLocaleId){setSelectedLocaleId(activeLocaleId);}}function handleChange(event){const localeId=event.target.value;setSelectedLocaleId(localeId);const locale=locales.find(locale=>locale.id===localeId);setLocale(locale);}var _selectedLocale_name;return /*#__PURE__*/_jsxs(\"div\",{className:className,style:style,children:[/*#__PURE__*/_jsx(\"label\",{htmlFor:id,children:\"Select Language\"}),/*#__PURE__*/_jsx(\"select\",{id:id,value:selectedLocaleId,onChange:handleChange,// If a navigation occurs from switching locales\n// the browser can attempt to autofill the select to the last value\n// when you use browser back navigation. We don't want that.\nautoComplete:\"off\",children:locales.map(locale=>/*#__PURE__*/_jsx(\"option\",{value:locale.id,children:locale.name},locale.id))}),/*#__PURE__*/_jsxs(\"div\",{className:\"input\",style:{...font,\"--framer-background-color\":fillColor,\"--framer-color\":textColor,...getPaddingStyle(props),...getRadiusStyle(props),...getBorderStyle(border),...getHoverStyle(hover),...getFocusStyle(focus),gap},children:[icon&&/*#__PURE__*/_jsx(\"div\",{className:\"icon\",children:/*#__PURE__*/_jsx(Icon,{...icon})}),title&&/*#__PURE__*/_jsx(\"div\",{className:\"title\",children:(_selectedLocale_name=selectedLocale===null||selectedLocale===void 0?void 0:selectedLocale.name)!==null&&_selectedLocale_name!==void 0?_selectedLocale_name:\"English\"}),caret&&/*#__PURE__*/_jsx(\"div\",{className:\"caret\",children:/*#__PURE__*/_jsx(Caret,{...caret})})]})]});},[`\n            .${className} {\n                position: relative;\n            }\n        `,`\n            .${className} label {\n                position: absolute;\n                width: 1px;\n                height: 1px;\n                margin: -1px;\n                overflow: hidden;\n                white-space: nowrap;\n                clip: rect(0 0 0 0);\n                clip-path: inset(50%);\n            }\n        `,`\n            .${className} select {\n                appearance: none;\n                position: absolute;\n                opacity: 0;\n                top: 0;\n                right: 0;\n                bottom: 0;\n                left: 0;\n                cursor: inherit;\n                width: 100%;\n            }\n        `,`\n            .${className} .input {\n                display: flex;\n                justify-content: center;\n                align-items: center;\n                height: 100%;\n                pointer-events: none;\n                overflow: hidden;\n                background-color: var(--framer-background-color);\n                color: var(--framer-color);\n                border-color: var(--framer-border-color);\n            }\n        `,`\n            .${className} select:focus-visible + .input  {\n                outline: var(--framer-focus-outline, none);\n                outline-offset: var(--framer-focus-outline-offset);\n            }\n        `,`\n            .${className}:hover .input {\n                background-color: var(--framer-hover-background-color, var(--framer-background-color));\n                color: var(--framer-hover-color, var(--framer-color));\n                border-color: var(--framer-hover-border-color, var(--framer-border-color));\n            }\n        `,`\n            .${className} .title {\n                flex: 1 1 auto;\n                white-space: nowrap;\n                text-overflow: ellipsis;\n                overflow: hidden;\n            }\n        `,`\n            .${className} .icon, .${className} .caret {\n                display: flex;\n                align-items: center;\n            }\n        `]);LocaleSelector.displayName=\"Locale Selector\";addPropertyControls(LocaleSelector,{font:{// @ts-ignore\ntype:ControlType.Font,controls:\"extended\",defaultFontType:\"sans-serif\",defaultValue:{fontSize:14,lineHeight:\"1.5em\"}},fillColor:{type:ControlType.Color,title:\"Fill\",optional:true,defaultValue:\"#eee\"},textColor:{type:ControlType.Color,title:\"Text\",defaultValue:\"#000\"},...paddingControls,...radiusControls,icon:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(IconType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,displaySegmentedControl:true,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type!==\"custom\"},size:{type:ControlType.Number,displayStepper:true,defaultValue:18}}},caret:{type:ControlType.Object,buttonTitle:\"Size, Color\",optional:true,controls:{type:{type:ControlType.Enum,title:\"Icon\",options:Object.values(CaretType),optionTitles:[\"Default\",\"Custom\"],displaySegmentedControl:true,defaultValue:\"default\"},color:{type:ControlType.Color,displaySegmentedControl:true,defaultValue:\"#000\",hidden:props=>props.type!==\"default\"},image:{type:ControlType.ResponsiveImage,title:\"File\",allowedFileTypes:[\"jpg\",\"png\",\"svg\"],hidden:props=>props.type!==\"custom\"},size:{type:ControlType.Number,displayStepper:true,defaultValue:12}},defaultValue:{}},options:{type:ControlType.Object,title:\"Options\",buttonTitle:\"Border, Hover\",controls:{title:{type:ControlType.Boolean,defaultValue:true},gap:{type:ControlType.Number,displayStepper:true,defaultValue:5},border:{type:ControlType.Object,buttonTitle:\"Color, Width\",optional:true,controls:borderControls},hover:{type:ControlType.Object,buttonTitle:\"Fill, Border\",optional:true,controls:hoverControls},focus:{type:ControlType.Object,buttonTitle:\"Color, Width\",controls:focusControls}}}});export default LocaleSelector;\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"LocaleSelector\",\"slots\":[],\"annotations\":{\"framerSupportedLayoutWidth\":\"any-prefer-fixed\",\"framerSupportedLayoutHeight\":\"any\",\"framerDisableUnlink\":\"* @framerIntrinsicWidth 120\",\"framerContractVersion\":\"1\",\"framerIntrinsicHeight\":\"34\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}\n//# sourceMappingURL=./LocaleSelector.map", "export const v0=\"SHEVTSOV.AI\";export const v1=\"Search...\";export const v2=\"\u0427\u0438\u0441\u0442\u0438\u0439\";export const v3=\"\u0413\u043E\u043B\u043E\u0432\u043D\u0430\";export const v4=\"Badge\";export const v5=\"\u041F\u043E\u0441\u043B\u0443\u0433\u0438\";export const v6=\"\u0428\u0406 \u0440\u0456\u0448\u0435\u043D\u043D\u044F\";export const v7=\"\u0417\u043E\u043D\u0438 \u0432\u043F\u0440\u043E\u0432\u0430\u0434\u0436\u0435\u043D\u043D\u044F\";\nexport const __FramerMetadata__ = {\"exports\":{\"v7\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v3\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v2\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v6\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v0\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v4\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v1\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"v5\":{\"type\":\"variable\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}", "// Generated by Framer (455587d)\nimport*as localizedValues from\"./R59UUiNVK-0.js\";const valuesByLocaleId={uI0_UWbhv: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 (455587d)\nimport{jsx as _jsx,jsxs as _jsxs}from\"react/jsx-runtime\";import{addFonts,addPropertyControls,ComponentViewportProvider,ControlType,cx,getFonts,getPropertyControls,ResolveLinks,SmartComponentScopedContainer,useActiveVariantCallback,useComponentViewport,useLocaleInfo,useRouter,useVariantState,withCSS,withFX,withOptimizedAppearEffect}from\"framer\";import{LayoutGroup,motion,MotionConfigContext}from\"framer-motion\";import*as React from\"react\";import{useRef}from\"react\";import LocaleSelector from\"https://framerusercontent.com/modules/57FhkldN9P7x88MqAEaR/UfMN9oeTJKQqVQHIwZ5z/LocaleSelector.js\";import Search from\"https://framerusercontent.com/modules/6wAE2eMb2Tl3zrU7u4UL/HPzg2Uk7mwtBmDzvGbWF/Search.js\";import ThemeSwitcher from\"https://framerusercontent.com/modules/fbE0oBG3xy0tbGOC3RmK/2ittzShCSkitIyjgXNbE/ThemeSwitch.js\";import getLocalizedValue from\"https://framerusercontent.com/modules/3904msUznXovbLSTdvtR/G5ku4dCwyyBLqmCC9uUy/R59UUiNVK.js\";import Button from\"https://framerusercontent.com/modules/29kzsgWXNORk3M8P5kXD/gWPZdJRwJWYORe69NWpS/LNCJ8JrMb.js\";import MenuHamburgerMenu from\"https://framerusercontent.com/modules/6ofdAc0dukNTvAJWJueh/rgbktVROoXmffgmCo8L3/sDquhqjHT.js\";import Logo from\"https://framerusercontent.com/modules/pPZW2KCAup88qdtJFmmM/3mKJb5We507UKgbxyzXh/W4JrbG6G8.js\";import MenuMenu from\"https://framerusercontent.com/modules/n4rmu10ZZT40xTfGKhQp/ER9cpNrw2jho0Dju7kcY/x6PfALCgy.js\";import MenuItem from\"https://framerusercontent.com/modules/j7CLyQyChT4hszmGwx0i/8qjr0uplFB32w5GWk4AZ/Z5aW2k3RB.js\";const LogoFonts=getFonts(Logo);const MenuMenuFonts=getFonts(MenuMenu);const LocaleSelectorFonts=getFonts(LocaleSelector);const SmartComponentScopedContainerWithFXWithOptimizedAppearEffect=withOptimizedAppearEffect(withFX(SmartComponentScopedContainer));const ThemeSwitcherFonts=getFonts(ThemeSwitcher);const SearchFonts=getFonts(Search);const ButtonFonts=getFonts(Button);const MenuHamburgerMenuFonts=getFonts(MenuHamburgerMenu);const MenuItemFonts=getFonts(MenuItem);const LogoControls=getPropertyControls(Logo);const MenuMenuControls=getPropertyControls(MenuMenu);const cycleOrder=[\"BGu0Mgwf_\",\"kWA7tr2eA\",\"OEkGhi0ka\",\"GEMmITSAJ\",\"g7fLVO5ml\",\"qLlnLn20q\",\"ZyI7H7hNx\"];const serializationHash=\"framer-ZPwmY\";const variantClassNames={BGu0Mgwf_:\"framer-v-wkp83w\",g7fLVO5ml:\"framer-v-4gxnd7\",GEMmITSAJ:\"framer-v-1aczhvd\",kWA7tr2eA:\"framer-v-yhrlyd\",OEkGhi0ka:\"framer-v-6snq6t\",qLlnLn20q:\"framer-v-1069zb2\",ZyI7H7hNx:\"framer-v-1691itd\"};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 transition2={delay:0,duration:.3,ease:[.44,0,.56,1],type:\"tween\"};const transition3={delay:.1,duration:.15,ease:[.44,0,.56,1],type:\"tween\"};const transition4={bounce:.2,delay:0,duration:.4,type:\"spring\"};const animation={opacity:1,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,transition:transition4,x:0,y:0};const animation1={opacity:.001,rotate:0,rotateX:0,rotateY:0,scale:1,skewX:0,skewY:0,x:0,y:0};const 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 humanReadableEnumMap={\"Logo [Image + Text]\":\"XgBIHPUqi\",\"Logo [Image]\":\"k53kEg_LU\",\"Logo [Text]\":\"WcDnzt3zw\",Custom:\"sbTfL03X9\"};const humanReadableEnumMap1={\"Space Around\":\"space-around\",\"Space Between\":\"space-between\",\"Space Evenly\":\"space-evenly\",Center:\"center\",End:\"flex-end\",Start:\"flex-start\"};const humanReadableVariantMap={\"Desktop [Boxed Mini]\":\"GEMmITSAJ\",\"Desktop [Boxed]\":\"OEkGhi0ka\",\"Desktop [Default]\":\"BGu0Mgwf_\",\"Desktop [Full Width]\":\"kWA7tr2eA\",\"Mobile [Menu Opend]\":\"qLlnLn20q\",\"Variant 7\":\"ZyI7H7hNx\",Mobile:\"g7fLVO5ml\"};const getProps=({alignMenu,bGBlur,bgBorder,buttonColor,buttonLink,buttonText,buttonTextColor,desktopBG,height,id,logoVariant,mobileBG,newTab,showButton,showMenu,showSearch,showThemeSwitcher,textColor,width,...props})=>{return{...props,BeZsA273t:showMenu??props.BeZsA273t??true,Cof0RMUzO:textColor??props.Cof0RMUzO??\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",dbTkB554q:buttonLink??props.dbTkB554q,EdKYuwXXP:mobileBG??props.EdKYuwXXP??\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9))\",eGOhp_OqC:buttonText??props.eGOhp_OqC??\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0438\u044F\",ewfFJItNT:humanReadableEnumMap[logoVariant]??logoVariant??props.ewfFJItNT??\"XgBIHPUqi\",FFcnuU4Ek:desktopBG??props.FFcnuU4Ek??\"var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95))\",fjP7WXjeu:showThemeSwitcher??props.fjP7WXjeu??true,KDPaGeBIL:buttonTextColor??props.KDPaGeBIL??\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",oqjnlG1pR:showSearch??props.oqjnlG1pR??true,ORnOR2pUN:bgBorder??props.ORnOR2pUN??{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},sGHTFWZo5:showButton??props.sGHTFWZo5??true,t4qtipNl7:bGBlur??props.t4qtipNl7??10,UTTJR9foI:newTab??props.UTTJR9foI,v06jigF6i:humanReadableEnumMap1[alignMenu]??alignMenu??props.v06jigF6i??\"flex-start\",variant:humanReadableVariantMap[props.variant]??props.variant??\"BGu0Mgwf_\",zzroHIlLa:buttonColor??props.zzroHIlLa??\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\"};};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,ewfFJItNT,Cof0RMUzO,ORnOR2pUN,fjP7WXjeu,oqjnlG1pR,BeZsA273t,v06jigF6i,sGHTFWZo5,eGOhp_OqC,zzroHIlLa,KDPaGeBIL,UTTJR9foI,dbTkB554q,FFcnuU4Ek,EdKYuwXXP,t4qtipNl7,...restProps}=getProps(props);const{baseVariant,classNames,clearLoadingGesture,gestureHandlers,gestureVariant,isLoading,setGestureState,setVariant,variants}=useVariantState({cycleOrder,defaultVariant:\"BGu0Mgwf_\",ref:refBinding,variant,variantClassNames});const layoutDependency=createLayoutDependency(props,variants);const{activeVariantCallback,delay}=useActiveVariantCallback(baseVariant);const onTap1d62pie=activeVariantCallback(async(...args)=>{setGestureState({isPressed:false});await delay(()=>setVariant(\"g7fLVO5ml\"),100);});const E6NV4Gf2fquv5vp=activeVariantCallback(async(...args)=>{setVariant(\"qLlnLn20q\");});const E6NV4Gf2ftv5rva=activeVariantCallback(async(...args)=>{setVariant(\"g7fLVO5ml\");});const sharedStyleClassNames=[];const scopingClassNames=cx(serializationHash,...sharedStyleClassNames);const router=useRouter();const isDisplayed=value=>{if([\"g7fLVO5ml\",\"qLlnLn20q\",\"ZyI7H7hNx\"].includes(baseVariant))return false;return value;};const isDisplayed1=value=>{if([\"g7fLVO5ml\",\"ZyI7H7hNx\"].includes(baseVariant))return value;if(baseVariant===\"qLlnLn20q\")return true;return false;};const isDisplayed2=()=>{if(baseVariant===\"qLlnLn20q\")return true;return false;};const isDisplayed3=value=>{if(baseVariant===\"qLlnLn20q\")return true;return value;};return /*#__PURE__*/_jsx(LayoutGroup,{id:layoutId??defaultLayoutId,children:/*#__PURE__*/_jsx(Variants,{animate:variants,initial:false,children:/*#__PURE__*/_jsx(Transition,{value:transition1,...addPropertyOverrides({g7fLVO5ml:{value:transition2},qLlnLn20q:{value:transition3},ZyI7H7hNx:{value:transition2}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsxs(motion.nav,{...restProps,...gestureHandlers,className:cx(scopingClassNames,\"framer-wkp83w\",className,classNames),\"data-border\":true,\"data-framer-name\":\"Desktop [Default]\",layoutDependency:layoutDependency,layoutId:\"BGu0Mgwf_\",ref:refBinding,style:{\"--border-bottom-width\":(ORnOR2pUN.borderBottomWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-color\":ORnOR2pUN.borderColor,\"--border-left-width\":(ORnOR2pUN.borderLeftWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-right-width\":(ORnOR2pUN.borderRightWidth??ORnOR2pUN.borderWidth)+\"px\",\"--border-style\":ORnOR2pUN.borderStyle,\"--border-top-width\":(ORnOR2pUN.borderTopWidth??ORnOR2pUN.borderWidth)+\"px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,...style},variants:{g7fLVO5ml:{backgroundColor:EdKYuwXXP},GEMmITSAJ:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\"},OEkGhi0ka:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\"},qLlnLn20q:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backgroundColor:EdKYuwXXP},ZyI7H7hNx:{backgroundColor:EdKYuwXXP}},...addPropertyOverrides({g7fLVO5ml:{\"data-framer-name\":\"Mobile\"},GEMmITSAJ:{\"data-framer-name\":\"Desktop [Boxed Mini]\"},kWA7tr2eA:{\"data-framer-name\":\"Desktop [Full Width]\"},OEkGhi0ka:{\"data-framer-name\":\"Desktop [Boxed]\"},qLlnLn20q:{\"data-framer-name\":\"Mobile [Menu Opend]\",\"data-highlight\":true,onTap:onTap1d62pie},ZyI7H7hNx:{\"data-framer-name\":\"Variant 7\"}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-k0mvlx\",\"data-framer-name\":\"Main Area\",layoutDependency:layoutDependency,layoutId:\"xZNePz6BP\",style:{\"--border-bottom-width\":\"0px\",\"--border-color\":\"rgba(0, 0, 0, 0)\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-style\":\"solid\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},variants:{g7fLVO5ml:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},GEMmITSAJ:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,borderBottomLeftRadius:46,borderBottomRightRadius:46,borderTopLeftRadius:46,borderTopRightRadius:46,boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.05), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.05), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.07), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.06), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.03)\"},OEkGhi0ka:{\"--border-bottom-width\":\"1px\",\"--border-color\":\"rgba(113, 113, 122, 0.2)\",\"--border-left-width\":\"1px\",\"--border-right-width\":\"1px\",\"--border-style\":\"solid\",\"--border-top-width\":\"1px\",backdropFilter:`blur(${t4qtipNl7}px)`,backgroundColor:FFcnuU4Ek,borderBottomLeftRadius:15,borderBottomRightRadius:15,borderTopLeftRadius:15,borderTopRightRadius:15,boxShadow:\"0px 0.24145061431045178px 0.24145061431045178px -1.25px rgba(0, 0, 0, 0.05), 0px 2px 2px -2.5px rgba(0, 0, 0, 0.05), 0px 0.6021873017743928px 0.6021873017743928px -1.25px rgba(9, 9, 11, 0.07), 0px 2.288533303243457px 2.288533303243457px -2.5px rgba(9, 9, 11, 0.06), 0px 10px 10px -3.75px rgba(9, 9, 11, 0.03)\"},qLlnLn20q:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"},ZyI7H7hNx:{\"--border-bottom-width\":\"0px\",\"--border-left-width\":\"0px\",\"--border-right-width\":\"0px\",\"--border-top-width\":\"0px\",backdropFilter:\"none\",backgroundColor:\"rgba(0, 0, 0, 0)\",borderBottomLeftRadius:0,borderBottomRightRadius:0,borderTopLeftRadius:0,borderTopRightRadius:0,boxShadow:\"none\"}},...addPropertyOverrides({GEMmITSAJ:{\"data-border\":true},OEkGhi0ka:{\"data-border\":true}},baseVariant,gestureVariant),children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined},{href:{webPageId:\"augiA20Il\"},implicitPathVariables:undefined}],children:resolvedLinks=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,y:(componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-200)/2)+82,...addPropertyOverrides({g7fLVO5ml:{height:22,y:(componentViewport?.y||0)+0+0+19},GEMmITSAJ:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-230)/2)+97},OEkGhi0ka:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-15-230)/2)+97},qLlnLn20q:{y:(componentViewport?.y||0)+0+0+12},ZyI7H7hNx:{height:22,y:(componentViewport?.y||0)+0+0+19}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1fa3x8m-container\",layoutDependency:layoutDependency,layoutId:\"L3AW7zokX-container\",nodeId:\"L3AW7zokX\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Logo,{height:\"100%\",id:\"L3AW7zokX\",layoutId:\"L3AW7zokX\",qj6tn2Ux3:resolvedLinks[0],style:{height:\"100%\"},variant:ewfFJItNT,width:\"100%\",wJOYtHzul:false,ZzpJSRgMV:getLocalizedValue(\"v0\",activeLocale)??\"SHEVTSOV.AI\",...addPropertyOverrides({g7fLVO5ml:{qj6tn2Ux3:resolvedLinks[4],variant:\"WcDnzt3zw\"},GEMmITSAJ:{qj6tn2Ux3:resolvedLinks[3],variant:\"k53kEg_LU\"},kWA7tr2eA:{qj6tn2Ux3:resolvedLinks[1]},OEkGhi0ka:{qj6tn2Ux3:resolvedLinks[2]},qLlnLn20q:{qj6tn2Ux3:resolvedLinks[5],variant:\"k53kEg_LU\"},ZyI7H7hNx:{qj6tn2Ux3:resolvedLinks[6],variant:\"WcDnzt3zw\"}},baseVariant,gestureVariant)})})})}),isDisplayed(BeZsA273t)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:30,y:(componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-200)/2)+85,...addPropertyOverrides({GEMmITSAJ:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-230)/2)+100},OEkGhi0ka:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-15-230)/2)+100}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-6zkne-container\",\"data-framer-name\":\"Menu [Desktop]\",layoutDependency:layoutDependency,layoutId:\"TPCEs2Im5-container\",name:\"Menu [Desktop]\",nodeId:\"TPCEs2Im5\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuMenu,{height:\"100%\",id:\"TPCEs2Im5\",layoutId:\"TPCEs2Im5\",name:\"Menu [Desktop]\",odLrH8wIa:Cof0RMUzO,style:{height:\"100%\",width:\"100%\"},width:\"100%\",ZmT46usVX:v06jigF6i,...addPropertyOverrides({GEMmITSAJ:{style:{height:\"100%\"}}},baseVariant,gestureVariant)})})}),/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1gael6y\",layoutDependency:layoutDependency,layoutId:\"gzzExDpTx\",children:[/*#__PURE__*/_jsxs(motion.div,{className:\"framer-sl0xsi\",layoutDependency:layoutDependency,layoutId:\"aqRkbnsW9\",children:[/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainerWithFXWithOptimizedAppearEffect,{__perspectiveFX:false,__smartComponentFX:true,__targetOpacity:1,animate:animation,className:\"framer-1blc1ea-container\",\"data-framer-appear-id\":\"1blc1ea\",initial:animation1,isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"GxouBCpuA-container\",nodeId:\"GxouBCpuA\",optimized:true,rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(LocaleSelector,{caret:{color:\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",size:12,type:\"default\"},font:{fontFamily:'\"Inter\", sans-serif',fontSize:\"14px\",fontStyle:\"normal\",letterSpacing:\"0em\",lineHeight:\"1.5em\"},height:\"100%\",icon:{color:\"var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91))\",size:22,type:\"default\"},id:\"GxouBCpuA\",layoutId:\"GxouBCpuA\",options:{focus:{color:\"rgba(255, 255, 255, 0.01)\",offset:0,style:\"solid\",width:1},gap:5,hover:{textColor:\"var(--token-4e3d4b62-b411-4488-b97a-8ff2a61d3177, rgb(82, 82, 91))\"},title:false},padding:10,paddingBottom:10,paddingLeft:0,paddingPerSide:false,paddingRight:0,paddingTop:10,radius:10,radiusBottomLeft:10,radiusBottomRight:10,radiusPerConrner:false,radiusTopLeft:10,radiusTopRight:10,textColor:\"rgb(255, 255, 255)\",width:\"100%\",...addPropertyOverrides({kWA7tr2eA:{paddingLeft:10,paddingRight:10}},baseVariant,gestureVariant)})})}),fjP7WXjeu&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-ha7gt9-container\",isAuthoredByUser:true,layoutDependency:layoutDependency,layoutId:\"btJ50WeRy-container\",nodeId:\"btJ50WeRy\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(ThemeSwitcher,{color:Cof0RMUzO,defaultTheme:\"System\",height:\"100%\",id:\"btJ50WeRy\",layoutId:\"btJ50WeRy\",size:30,strokeWidth:2,style:{height:\"100%\"},width:\"100%\"})})}),oqjnlG1pR&&/*#__PURE__*/_jsx(ComponentViewportProvider,{children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-dmyapf-container\",isAuthoredByUser:true,isModuleExternal:true,layoutDependency:layoutDependency,layoutId:\"uhMK_3Vhi-container\",nodeId:\"uhMK_3Vhi\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Search,{backdropOptions:{backgroundColor:\"rgba(9, 9, 11, 0.4)\",transition:{damping:60,delay:0,mass:1,stiffness:500,type:\"spring\"},zIndex:10},height:\"100%\",iconColor:Cof0RMUzO,iconSize:26,iconType:\"default\",id:\"uhMK_3Vhi\",inputOptions:{clearButtonText:getLocalizedValue(\"v2\",activeLocale)??\"Clear\",clearButtonType:\"icon\",dividerType:\"fullWidth\",iconOptions:{iconColor:\"rgba(0, 0, 0, 0.45)\",iconSize:18,iconType:\"default\"},inputFont:{},placeholderOptions:{placeholderColor:\"rgba(0, 0, 0, 0.4)\",placeholderText:getLocalizedValue(\"v1\",activeLocale)??\"Search...\"},textColor:\"rgb(51, 51, 51)\"},layoutId:\"uhMK_3Vhi\",modalOptions:{backgroundColor:\"rgb(255, 255, 255)\",borderRadius:16,heightIsStatic:false,heightTransition:{damping:60,delay:0,mass:1,stiffness:800,type:\"spring\"},layoutType:\"QuickMenu\",shadow:{blur:40,color:\"rgba(0, 0, 0, 0.2)\",spread:0,x:0,y:20},top:0,width:600},resultOptions:{itemType:\"fullWidth\",subtitleOptions:{subtitleColor:\"rgba(0, 0, 0, 0.4)\",subtitleFont:{},subtitleType:\"path\"},titleColor:\"rgb(51, 51, 51)\",titleFont:{},titleType:\"h1\"},width:\"100%\"})})}),isDisplayed(sGHTFWZo5)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,y:(componentViewport?.y||0)+(10+((componentViewport?.height||200)-20-200)/2)+0+0+75,...addPropertyOverrides({GEMmITSAJ:{y:(componentViewport?.y||0)+(20+((componentViewport?.height||200)-20-230)/2)+15+0+75},OEkGhi0ka:{y:(componentViewport?.y||0)+(15+((componentViewport?.height||200)-15-230)/2)+15+0+75}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-bncuxq-container\",\"data-framer-name\":\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0456\u044F\",layoutDependency:layoutDependency,layoutId:\"vCdf7a16A-container\",name:\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0456\u044F\",nodeId:\"vCdf7a16A\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:UTTJR9foI,G77f5Yx_v:eGOhp_OqC,height:\"100%\",HFfTjmBlq:\"rgb(255, 255, 255)\",id:\"vCdf7a16A\",layoutId:\"vCdf7a16A\",n9WP3fBIv:true,name:\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0456\u044F\",oV7zrnzuy:\"var(--token-44ba4d15-de95-4ba6-998e-92f0bf192c5f, rgb(63, 63, 70))\",SZQpZ3lk2:10,U1Kbkgydv:dbTkB554q,variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false,...addPropertyOverrides({GEMmITSAJ:{SZQpZ3lk2:30}},baseVariant,gestureVariant)})})})]}),isDisplayed1(BeZsA273t)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{...addPropertyOverrides({g7fLVO5ml:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6+0},qLlnLn20q:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6+0},ZyI7H7hNx:{height:48,width:\"48px\",y:(componentViewport?.y||0)+0+0+6+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-tiny8t-container\",layoutDependency:layoutDependency,layoutId:\"cUX92OO8H-container\",nodeId:\"cUX92OO8H\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuHamburgerMenu,{E6NV4Gf2f:E6NV4Gf2fquv5vp,height:\"100%\",id:\"cUX92OO8H\",layoutId:\"cUX92OO8H\",lYvpkC7IW:\"var(--token-963ba7ff-1506-4ab8-a9bc-332b05614e66, rgb(9, 9, 11))\",style:{height:\"100%\",width:\"100%\"},variant:\"jes3YGVf7\",width:\"100%\",...addPropertyOverrides({g7fLVO5ml:{lYvpkC7IW:Cof0RMUzO},qLlnLn20q:{E6NV4Gf2f:E6NV4Gf2ftv5rva,lYvpkC7IW:Cof0RMUzO,variant:\"EiPw8AZS4\"},ZyI7H7hNx:{lYvpkC7IW:Cof0RMUzO}},baseVariant,gestureVariant)})})})]})]}),isDisplayed2()&&/*#__PURE__*/_jsx(Transition,{value:transition2,children:/*#__PURE__*/_jsxs(motion.div,{className:\"framer-1t87v2a\",\"data-framer-name\":\"Mobile Dropdown\",layoutDependency:layoutDependency,layoutId:\"Qo0kpX5ez\",children:[/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"hdL9_6kRv\"},implicitPathVariables:undefined},{href:{webPageId:\"hdL9_6kRv\"},implicitPathVariables:undefined}],children:resolvedLinks1=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+0}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-9o2zij-container\",layoutDependency:layoutDependency,layoutId:\"IMalsj8cG-container\",nodeId:\"IMalsj8cG\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"IMalsj8cG\",kf3NktHXk:getLocalizedValue(\"v4\",activeLocale)??\"Badge\",ku0K5iab7:getLocalizedValue(\"v3\",activeLocale)??\"\u0413\u043B\u0430\u0432\u043D\u0430\u044F\",layoutId:\"IMalsj8cG\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks1[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks1[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"XMGmxSgVi\"},implicitPathVariables:undefined},{href:{webPageId:\"XMGmxSgVi\"},implicitPathVariables:undefined}],children:resolvedLinks2=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+46}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1vvnvgl-container\",layoutDependency:layoutDependency,layoutId:\"ftS9D8V46-container\",nodeId:\"ftS9D8V46\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"ftS9D8V46\",kf3NktHXk:getLocalizedValue(\"v4\",activeLocale)??\"Badge\",ku0K5iab7:getLocalizedValue(\"v5\",activeLocale)??\"\u0423\u0441\u043B\u0443\u0433\u0438\",layoutId:\"ftS9D8V46\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks2[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks2[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"Cpq0PDmdd\"},implicitPathVariables:undefined},{href:{webPageId:\"Cpq0PDmdd\"},implicitPathVariables:undefined}],children:resolvedLinks3=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+92}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-b8n0b2-container\",layoutDependency:layoutDependency,layoutId:\"QhPOKaAjk-container\",nodeId:\"QhPOKaAjk\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"QhPOKaAjk\",kf3NktHXk:getLocalizedValue(\"v4\",activeLocale)??\"Badge\",ku0K5iab7:getLocalizedValue(\"v6\",activeLocale)??\"AI \u0440\u0435\u0448\u0435\u043D\u0438\u044F\",layoutId:\"QhPOKaAjk\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks3[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks3[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(ResolveLinks,{links:[{href:{webPageId:\"HmNU394go\"},implicitPathVariables:undefined},{href:{webPageId:\"HmNU394go\"},implicitPathVariables:undefined}],children:resolvedLinks4=>/*#__PURE__*/_jsx(ComponentViewportProvider,{height:36,...addPropertyOverrides({qLlnLn20q:{width:`calc(${componentViewport?.width||\"100vw\"} - 30px)`,y:(componentViewport?.y||0)+0+60+15+138}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-1rfjgal-container\",layoutDependency:layoutDependency,layoutId:\"d1DDfUeUD-container\",nodeId:\"d1DDfUeUD\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(MenuItem,{bxYeoQnmJ:\"var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255))\",CKLn4URch:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},dqMpST25y:10,height:\"100%\",i8hVK17KP:\"rgba(9, 9, 11, 0.05)\",id:\"d1DDfUeUD\",kf3NktHXk:\"Badge\",ku0K5iab7:getLocalizedValue(\"v7\",activeLocale)??\"\u0417\u043E\u043D\u044B \u0432\u043D\u0435\u0434\u0440\u0435\u043D\u0438\u044F\",layoutId:\"d1DDfUeUD\",qfg9TUc_S:false,style:{height:\"100%\",width:\"100%\"},stziIHmv7:\"rgba(255, 255, 255, 0)\",T3ktnO2nz:false,variant:\"icuU8oJ0t\",VdwkoqfEz:\"var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11))\",wGRcFK04x:Cof0RMUzO,width:\"100%\",ycFa86gVJ:\"flex-start\",ZpWw94nXT:resolvedLinks4[0],...addPropertyOverrides({qLlnLn20q:{ZpWw94nXT:resolvedLinks4[1]}},baseVariant,gestureVariant)})})})}),/*#__PURE__*/_jsx(motion.div,{className:\"framer-u7677l\",layoutDependency:layoutDependency,layoutId:\"BRgz_1V_F\",children:isDisplayed3(sGHTFWZo5)&&/*#__PURE__*/_jsx(ComponentViewportProvider,{height:50,...addPropertyOverrides({qLlnLn20q:{width:`max(${componentViewport?.width||\"100vw\"} - 30px, 1px)`,y:(componentViewport?.y||0)+0+60+15+184+10}},baseVariant,gestureVariant),children:/*#__PURE__*/_jsx(SmartComponentScopedContainer,{className:\"framer-19y5fjk-container\",layoutDependency:layoutDependency,layoutId:\"WV_KMD5tj-container\",nodeId:\"WV_KMD5tj\",rendersWithMotion:true,scopeId:\"R59UUiNVK\",children:/*#__PURE__*/_jsx(Button,{ApWhoO21o:{borderColor:\"var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231))\",borderStyle:\"solid\",borderWidth:1},ey7w8muFX:UTTJR9foI,G77f5Yx_v:eGOhp_OqC,height:\"100%\",HFfTjmBlq:KDPaGeBIL,id:\"WV_KMD5tj\",layoutId:\"WV_KMD5tj\",n9WP3fBIv:true,oV7zrnzuy:zzroHIlLa,SZQpZ3lk2:10,U1Kbkgydv:dbTkB554q,variant:\"Nw_OMPtNd\",VkxZQkMEC:\"\",Vo_oxchYD:\"CaretRight\",width:\"100%\",WM2TpCryl:false,...addPropertyOverrides({qLlnLn20q:{HFfTjmBlq:\"rgb(255, 255, 255)\",oV7zrnzuy:\"rgb(0, 0, 0)\",style:{width:\"100%\"},variant:\"rt1NrdlKK\"}},baseVariant,gestureVariant)})})})})]})})]})})})});});const css=[\"@supports (aspect-ratio: 1) { body { --framer-aspect-ratio-supported: auto; } }\",\".framer-ZPwmY.framer-ltaqx7, .framer-ZPwmY .framer-ltaqx7 { display: block; }\",\".framer-ZPwmY.framer-wkp83w { align-content: center; align-items: center; display: flex; flex-direction: row; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: center; overflow: visible; padding: 10px 40px 10px 40px; position: relative; width: 1200px; }\",\".framer-ZPwmY .framer-k0mvlx { align-content: center; align-items: center; display: flex; flex: 1 0 0px; flex-direction: row; flex-wrap: nowrap; height: min-content; justify-content: space-between; max-width: 1200px; overflow: visible; padding: 0px; position: relative; width: 1px; }\",\".framer-ZPwmY .framer-1fa3x8m-container { flex: none; height: 36px; position: relative; width: auto; }\",\".framer-ZPwmY .framer-6zkne-container { flex: 1 0 0px; height: 30px; position: relative; width: 1px; z-index: 1; }\",\".framer-ZPwmY .framer-1gael6y { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: center; overflow: visible; padding: 0px; position: relative; width: min-content; }\",\".framer-ZPwmY .framer-sl0xsi { align-content: center; align-items: center; display: flex; flex: none; flex-direction: row; flex-wrap: nowrap; gap: 15px; height: min-content; justify-content: flex-end; overflow: visible; padding: 0px 0px 0px 15px; position: relative; width: min-content; }\",\".framer-ZPwmY .framer-1blc1ea-container, .framer-ZPwmY .framer-dmyapf-container { cursor: pointer; flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZPwmY .framer-ha7gt9-container { flex: none; height: 30px; position: relative; width: auto; }\",\".framer-ZPwmY .framer-bncuxq-container, .framer-ZPwmY .framer-19y5fjk-container { flex: none; height: auto; position: relative; width: auto; }\",\".framer-ZPwmY .framer-tiny8t-container { flex: none; height: 48px; position: relative; width: 48px; }\",\".framer-ZPwmY .framer-1t87v2a { align-content: flex-start; align-items: flex-start; display: flex; flex: 1 0 0px; flex-direction: column; flex-wrap: nowrap; gap: 10px; height: min-content; justify-content: flex-start; overflow: visible; padding: 15px; position: relative; width: 1px; }\",\".framer-ZPwmY .framer-9o2zij-container, .framer-ZPwmY .framer-1vvnvgl-container, .framer-ZPwmY .framer-b8n0b2-container, .framer-ZPwmY .framer-1rfjgal-container { flex: none; height: 36px; position: relative; width: 100%; }\",\".framer-ZPwmY .framer-u7677l { 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: 10px 0px 10px 0px; position: relative; width: 100%; }\",\".framer-ZPwmY.framer-v-yhrlyd .framer-k0mvlx { max-width: unset; }\",\".framer-ZPwmY.framer-v-6snq6t.framer-wkp83w { padding: 15px 15px 0px 15px; }\",\".framer-ZPwmY.framer-v-6snq6t .framer-k0mvlx { max-width: 1120px; padding: 15px 20px 15px 20px; z-index: 10; }\",\".framer-ZPwmY.framer-v-1aczhvd.framer-wkp83w { padding: 20px 15px 0px 15px; width: min-content; }\",\".framer-ZPwmY.framer-v-1aczhvd .framer-k0mvlx { flex: none; max-width: unset; padding: 15px 15px 15px 25px; width: min-content; z-index: 10; }\",\".framer-ZPwmY.framer-v-1aczhvd .framer-6zkne-container { flex: none; width: auto; }\",\".framer-ZPwmY.framer-v-4gxnd7.framer-wkp83w { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px; width: 390px; }\",\".framer-ZPwmY.framer-v-4gxnd7 .framer-k0mvlx { flex: none; height: 60px; padding: 15px; width: 100%; z-index: 10; }\",\".framer-ZPwmY.framer-v-4gxnd7 .framer-1fa3x8m-container, .framer-ZPwmY.framer-v-1691itd .framer-1fa3x8m-container { height: 22px; }\",\".framer-ZPwmY.framer-v-4gxnd7 .framer-1gael6y, .framer-ZPwmY.framer-v-1691itd .framer-1gael6y { gap: 0px; justify-content: flex-end; }\",\".framer-ZPwmY.framer-v-4gxnd7 .framer-sl0xsi, .framer-ZPwmY.framer-v-1691itd .framer-sl0xsi { gap: 10px; order: 0; padding: 0px 10px 0px 15px; }\",\".framer-ZPwmY.framer-v-4gxnd7 .framer-tiny8t-container, .framer-ZPwmY.framer-v-1069zb2 .framer-1vvnvgl-container, .framer-ZPwmY.framer-v-1691itd .framer-tiny8t-container { order: 1; }\",\".framer-ZPwmY.framer-v-1069zb2.framer-wkp83w { cursor: pointer; flex-direction: column; gap: 0px; justify-content: flex-start; max-height: calc(var(--framer-viewport-height, 100vh) * 1); min-height: calc(var(--framer-viewport-height, 100vh) * 1); overflow: auto; padding: 0px; width: 390px; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-k0mvlx { flex: none; height: 60px; padding: 15px 10px 15px 15px; width: 100%; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-1fa3x8m-container, .framer-ZPwmY.framer-v-1069zb2 .framer-9o2zij-container { order: 0; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-1gael6y { gap: 10px; order: 2; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-1t87v2a { flex: none; width: 100%; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-b8n0b2-container { order: 2; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-1rfjgal-container { order: 3; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-u7677l { order: 4; }\",\".framer-ZPwmY.framer-v-1069zb2 .framer-19y5fjk-container { flex: 1 0 0px; width: 1px; }\",\".framer-ZPwmY.framer-v-1691itd.framer-wkp83w { flex-direction: column; gap: 0px; justify-content: flex-start; padding: 0px; width: 360px; }\",\".framer-ZPwmY.framer-v-1691itd .framer-k0mvlx { flex: none; height: 60px; padding: 15px; width: 390px; z-index: 10; }\",'.framer-ZPwmY[data-border=\"true\"]::after, .framer-ZPwmY [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 62\n * @framerIntrinsicWidth 1200\n * @framerCanvasComponentVariantDetails {\"propertyName\":\"variant\",\"data\":{\"default\":{\"layout\":[\"fixed\",\"auto\"]},\"kWA7tr2eA\":{\"layout\":[\"fixed\",\"auto\"]},\"OEkGhi0ka\":{\"layout\":[\"fixed\",\"auto\"]},\"GEMmITSAJ\":{\"layout\":[\"auto\",\"auto\"]},\"g7fLVO5ml\":{\"layout\":[\"fixed\",\"auto\"]},\"qLlnLn20q\":{\"layout\":[\"fixed\",\"auto\"],\"constraints\":[null,null,\"100vh\",\"100vh\"]},\"ZyI7H7hNx\":{\"layout\":[\"fixed\",\"auto\"]}}}\n * @framerVariables {\"ewfFJItNT\":\"logoVariant\",\"Cof0RMUzO\":\"textColor\",\"ORnOR2pUN\":\"bgBorder\",\"fjP7WXjeu\":\"showThemeSwitcher\",\"oqjnlG1pR\":\"showSearch\",\"BeZsA273t\":\"showMenu\",\"v06jigF6i\":\"alignMenu\",\"sGHTFWZo5\":\"showButton\",\"eGOhp_OqC\":\"buttonText\",\"zzroHIlLa\":\"buttonColor\",\"KDPaGeBIL\":\"buttonTextColor\",\"UTTJR9foI\":\"newTab\",\"dbTkB554q\":\"buttonLink\",\"FFcnuU4Ek\":\"desktopBG\",\"EdKYuwXXP\":\"mobileBG\",\"t4qtipNl7\":\"bGBlur\"}\n * @framerImmutableVariables true\n * @framerDisplayContentsDiv false\n * @framerAutoSizeImages true\n * @framerComponentViewportWidth true\n * @framerColorSyntax true\n */const FramerR59UUiNVK=withCSS(Component,css,\"framer-ZPwmY\");export default FramerR59UUiNVK;FramerR59UUiNVK.displayName=\"Header\";FramerR59UUiNVK.defaultProps={height:62,width:1200};addPropertyControls(FramerR59UUiNVK,{variant:{options:[\"BGu0Mgwf_\",\"kWA7tr2eA\",\"OEkGhi0ka\",\"GEMmITSAJ\",\"g7fLVO5ml\",\"qLlnLn20q\",\"ZyI7H7hNx\"],optionTitles:[\"Desktop [Default]\",\"Desktop [Full Width]\",\"Desktop [Boxed]\",\"Desktop [Boxed Mini]\",\"Mobile\",\"Mobile [Menu Opend]\",\"Variant 7\"],title:\"Variant\",type:ControlType.Enum},ewfFJItNT:LogoControls?.[\"variant\"]&&{...LogoControls[\"variant\"],defaultValue:\"XgBIHPUqi\",description:undefined,hidden:undefined,title:\"Logo Variant\"},Cof0RMUzO:{defaultValue:'var(--token-e6a1425f-5cc8-4e16-87a5-8615ab8b8fe1, rgb(82, 82, 91)) /* {\"name\":\"Gray 600 [Dynamic]\"} */',title:\"Text Color\",type:ControlType.Color},ORnOR2pUN:{defaultValue:{borderBottomWidth:1,borderColor:'var(--token-31213cc7-db87-4df4-8209-e72c8adb68fb, rgb(228, 228, 231)) /* {\"name\":\"Gray 200 [Dynamic]\"} */',borderLeftWidth:0,borderRightWidth:0,borderStyle:\"solid\",borderTopWidth:0},title:\"Bg Border\",type:ControlType.Border},fjP7WXjeu:{defaultValue:true,title:\"Show Theme Switcher\",type:ControlType.Boolean},oqjnlG1pR:{defaultValue:true,title:\"Show Search\",type:ControlType.Boolean},BeZsA273t:{defaultValue:true,title:\"Show Menu\",type:ControlType.Boolean},v06jigF6i:MenuMenuControls?.[\"ZmT46usVX\"]&&{...MenuMenuControls[\"ZmT46usVX\"],defaultValue:\"flex-start\",description:undefined,hidden:undefined,title:\"Align Menu\"},sGHTFWZo5:{defaultValue:true,title:\"Show Button\",type:ControlType.Boolean},eGOhp_OqC:{defaultValue:\"\u041A\u043E\u043D\u0441\u0443\u043B\u044C\u0442\u0430\u0446\u0438\u044F\",displayTextArea:false,placeholder:\"\",title:\"Button Text\",type:ControlType.String},zzroHIlLa:{defaultValue:'var(--token-de5448c6-98bb-4403-96cd-7fe86bf2daa6, rgb(9, 9, 11)) /* {\"name\":\"Gray 950 [Dynamic]\"} */',title:\"Button Color\",type:ControlType.Color},KDPaGeBIL:{defaultValue:'var(--token-2b0e18bf-9e9a-4016-bdfc-5769700a5529, rgb(255, 255, 255)) /* {\"name\":\"White/Gray 950 [Dynamic]\"} */',title:\"Button Text Color\",type:ControlType.Color},UTTJR9foI:{defaultValue:false,title:\"New Tab\",type:ControlType.Boolean},dbTkB554q:{title:\"Button Link\",type:ControlType.Link},FFcnuU4Ek:{defaultValue:'var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.95)) /* {\"name\":\"Header Background [Dynamic]\"} */',title:\"Desktop BG\",type:ControlType.Color},EdKYuwXXP:{defaultValue:'var(--token-5cb9a68d-31cb-4baf-8414-1a3d9276de57, rgba(255, 255, 255, 0.9)) /* {\"name\":\"Header Background\"} */',title:\"Mobile BG\",type:ControlType.Color},t4qtipNl7:{defaultValue:10,step:1,title:\"BG Blur\",type:ControlType.Number}});addFonts(FramerR59UUiNVK,[{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\"}]},...LogoFonts,...MenuMenuFonts,...LocaleSelectorFonts,...ThemeSwitcherFonts,...SearchFonts,...ButtonFonts,...MenuHamburgerMenuFonts,...MenuItemFonts],{supportsExplicitInterCodegen:true});\nexport const __FramerMetadata__ = {\"exports\":{\"default\":{\"type\":\"reactComponent\",\"name\":\"FramerR59UUiNVK\",\"slots\":[],\"annotations\":{\"framerCanvasComponentVariantDetails\":\"{\\\"propertyName\\\":\\\"variant\\\",\\\"data\\\":{\\\"default\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"kWA7tr2eA\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"OEkGhi0ka\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"GEMmITSAJ\\\":{\\\"layout\\\":[\\\"auto\\\",\\\"auto\\\"]},\\\"g7fLVO5ml\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]},\\\"qLlnLn20q\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"],\\\"constraints\\\":[null,null,\\\"100vh\\\",\\\"100vh\\\"]},\\\"ZyI7H7hNx\\\":{\\\"layout\\\":[\\\"fixed\\\",\\\"auto\\\"]}}}\",\"framerColorSyntax\":\"true\",\"framerIntrinsicWidth\":\"1200\",\"framerImmutableVariables\":\"true\",\"framerComponentViewportWidth\":\"true\",\"framerIntrinsicHeight\":\"62\",\"framerVariables\":\"{\\\"ewfFJItNT\\\":\\\"logoVariant\\\",\\\"Cof0RMUzO\\\":\\\"textColor\\\",\\\"ORnOR2pUN\\\":\\\"bgBorder\\\",\\\"fjP7WXjeu\\\":\\\"showThemeSwitcher\\\",\\\"oqjnlG1pR\\\":\\\"showSearch\\\",\\\"BeZsA273t\\\":\\\"showMenu\\\",\\\"v06jigF6i\\\":\\\"alignMenu\\\",\\\"sGHTFWZo5\\\":\\\"showButton\\\",\\\"eGOhp_OqC\\\":\\\"buttonText\\\",\\\"zzroHIlLa\\\":\\\"buttonColor\\\",\\\"KDPaGeBIL\\\":\\\"buttonTextColor\\\",\\\"UTTJR9foI\\\":\\\"newTab\\\",\\\"dbTkB554q\\\":\\\"buttonLink\\\",\\\"FFcnuU4Ek\\\":\\\"desktopBG\\\",\\\"EdKYuwXXP\\\":\\\"mobileBG\\\",\\\"t4qtipNl7\\\":\\\"bGBlur\\\"}\",\"framerAutoSizeImages\":\"true\",\"framerContractVersion\":\"1\",\"framerDisplayContentsDiv\":\"false\"}},\"Props\":{\"type\":\"tsType\",\"annotations\":{\"framerContractVersion\":\"1\"}},\"__FramerMetadata__\":{\"type\":\"variable\"}}}"],
  "mappings": "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",
  "names": ["_define_property", "obj", "key", "value", "extractDarkModeCSSVariables", "css", "regex", "matches", "extractLightModeCSSVariables", "bodyRegex", "mediaRegex", "bodyMatches", "mediaMatches", "bodyContent", "mediaMatch", "cssVarRegex", "cssVars", "setDarkThemeCode", "code", "styleId", "style", "cssString", "setLightThemeCode", "EventEmitter", "event", "listener", "data", "listenerToRemove", "_define_property", "eventEmitter", "ThemeCheck", "savedTheme", "themeChecker", "ThemeSwitcher", "props", "defaultTheme", "color", "size", "strokeWidth", "getInitialTheme", "window", "theme", "setTheme", "ye", "lightIcon", "p", "moonIcon", "themeStyleTag", "tag", "darkModeCSS", "lightModeCSS", "handleReload", "switchTheme", "e", "newTheme", "prevTheme", "motion", "containerStyle", "addPropertyControls", "ControlType", "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", "iconColor", "id", "tap", "width", "props", "_ref", "_humanReadableVariantMap_props_variant", "_ref1", "createLayoutDependency", "Component", "Y", "ref", "activeLocale", "setLocale", "useLocaleInfo", "style", "className", "layoutId", "E6NV4Gf2f", "lYvpkC7IW", "restProps", "baseVariant", "classNames", "gestureVariant", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTapey0dds", "args", "onTap108nq5d", "ref1", "pe", "defaultLayoutId", "ae", "sharedStyleClassNames", "componentViewport", "useComponentViewport", "LayoutGroup", "u", "cx", "css", "FramersDquhqjHT", "withCSS", "sDquhqjHT_default", "addPropertyControls", "ControlType", "addFonts", "fontStore", "fonts", "css", "className", "BadgeFonts", "getFonts", "ZC6oaTVqt_default", "PhosphorFonts", "Icon", "enabledGestures", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "radiusForCorner", "value", "cornerIndex", "segments", "transition1", "transition2", "Transition", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableVariantMap", "getProps", "align", "badgeBGColor", "badgeBorder", "badgeText", "badgeTextColor", "bGColor", "bGHover", "enableBadge", "height", "hover", "id", "link", "name1", "openInNewTab", "radius", "tap", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ku0K5iab7", "ZpWw94nXT", "T3ktnO2nz", "wGRcFK04x", "stziIHmv7", "i8hVK17KP", "ycFa86gVJ", "i6eMpMhze", "PnQ813Qxg", "dqMpST25y", "qfg9TUc_S", "kf3NktHXk", "VdwkoqfEz", "bxYeoQnmJ", "CKLn4URch", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onMouseEnter1p982a", "args", "onTap8kwsl1", "scopingClassNames", "cx", "isDisplayed", "isDisplayed1", "LayoutGroup", "Link", "u", "RichText2", "ComponentViewportProvider", "SmartComponentScopedContainer", "css", "FramerZ5aW2k3RB", "withCSS", "Z5aW2k3RB_default", "addPropertyControls", "ControlType", "addFonts", "getFontsFromSharedStyle", "fonts", "x6PfALCgy_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v0", "v1", "v2", "v3", "v4", "__FramerMetadata__", "valuesByLocaleId", "x6PfALCgy_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "MenuItemFonts", "getFonts", "Z5aW2k3RB_default", "serializationHash", "variantClassNames", "transition1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "getProps", "align", "height", "id", "textColor", "width", "props", "createLayoutDependency", "variants", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "variant", "ZmT46usVX", "odLrH8wIa", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "variantClassNames", "layoutDependency", "scopingClassNames", "cx", "serializationHash", "router", "useRouter", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "SmartComponentScopedContainer", "Z5aW2k3RB_default", "getLocalizedValue", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "css", "Framerx6PfALCgy", "withCSS", "x6PfALCgy_default", "addPropertyControls", "ControlType", "addFonts", "MenuItemFonts", "getBorderStyle", "e", "t", "o", "d", "r", "i", "h", "b", "borderControls", "ControlType", "getFocusStyle", "color", "width", "style", "offset", "result", "focusControls", "ControlType", "getHoverStyle", "fillColor", "textColor", "borderColor", "hoverControls", "ControlType", "getPaddingStyle", "padding", "paddingPerSide", "paddingTop", "paddingRight", "paddingBottom", "paddingLeft", "paddingControls", "ControlType", "getRadiusStyle", "radius", "radiusPerCorner", "radiusTopLeft", "radiusTopRight", "radiusBottomRight", "radiusBottomLeft", "result", "radiusControls", "ControlType", "className", "IconType", "Icon", "type", "color", "image", "size", "p", "CaretType", "Caret", "LocaleSelector", "withCSS", "font", "fillColor", "textColor", "icon", "caret", "title", "gap", "border", "hover", "focus", "style", "props", "id", "ae", "activeLocale", "locales", "setLocale", "useLocaleInfo", "_activeLocale_id", "activeLocaleId", "lastActiveLocaleId", "setLastActiveLocaleId", "ye", "selectedLocaleId", "setSelectedLocaleId", "selectedLocale", "locale", "handleChange", "event", "localeId", "_selectedLocale_name", "u", "className", "getPaddingStyle", "getRadiusStyle", "getBorderStyle", "getHoverStyle", "getFocusStyle", "addPropertyControls", "ControlType", "paddingControls", "radiusControls", "borderControls", "hoverControls", "focusControls", "LocaleSelector_default", "R59UUiNVK_0_exports", "__export", "__FramerMetadata__", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "v0", "v1", "v2", "v3", "v4", "v5", "v6", "v7", "__FramerMetadata__", "valuesByLocaleId", "R59UUiNVK_0_exports", "getLocalizedValue", "key", "locale", "values", "value", "LogoFonts", "getFonts", "W4JrbG6G8_default", "MenuMenuFonts", "x6PfALCgy_default", "LocaleSelectorFonts", "LocaleSelector_default", "SmartComponentScopedContainerWithFXWithOptimizedAppearEffect", "withOptimizedAppearEffect", "withFX", "SmartComponentScopedContainer", "ThemeSwitcherFonts", "ThemeSwitcher", "SearchFonts", "Search_default", "ButtonFonts", "LNCJ8JrMb_default", "MenuHamburgerMenuFonts", "sDquhqjHT_default", "MenuItemFonts", "Z5aW2k3RB_default", "LogoControls", "getPropertyControls", "MenuMenuControls", "cycleOrder", "serializationHash", "variantClassNames", "addPropertyOverrides", "overrides", "variants", "nextOverrides", "variant", "transition1", "transition2", "transition3", "transition4", "animation", "animation1", "Transition", "value", "children", "config", "re", "MotionConfigContext", "transition", "contextValue", "se", "p", "Variants", "motion", "x", "humanReadableEnumMap", "humanReadableEnumMap1", "humanReadableVariantMap", "getProps", "alignMenu", "bGBlur", "bgBorder", "buttonColor", "buttonLink", "buttonText", "buttonTextColor", "desktopBG", "height", "id", "logoVariant", "mobileBG", "newTab", "showButton", "showMenu", "showSearch", "showThemeSwitcher", "textColor", "width", "props", "createLayoutDependency", "Component", "Y", "ref", "fallbackRef", "pe", "refBinding", "defaultLayoutId", "ae", "activeLocale", "setLocale", "useLocaleInfo", "componentViewport", "useComponentViewport", "style", "className", "layoutId", "ewfFJItNT", "Cof0RMUzO", "ORnOR2pUN", "fjP7WXjeu", "oqjnlG1pR", "BeZsA273t", "v06jigF6i", "sGHTFWZo5", "eGOhp_OqC", "zzroHIlLa", "KDPaGeBIL", "UTTJR9foI", "dbTkB554q", "FFcnuU4Ek", "EdKYuwXXP", "t4qtipNl7", "restProps", "baseVariant", "classNames", "clearLoadingGesture", "gestureHandlers", "gestureVariant", "isLoading", "setGestureState", "setVariant", "useVariantState", "layoutDependency", "activeVariantCallback", "delay", "useActiveVariantCallback", "onTap1d62pie", "args", "E6NV4Gf2fquv5vp", "E6NV4Gf2ftv5rva", "scopingClassNames", "cx", "router", "useRouter", "isDisplayed", "isDisplayed1", "isDisplayed2", "isDisplayed3", "LayoutGroup", "u", "ResolveLinks", "resolvedLinks", "ComponentViewportProvider", "getLocalizedValue", "resolvedLinks1", "resolvedLinks2", "resolvedLinks3", "resolvedLinks4", "css", "FramerR59UUiNVK", "withCSS", "R59UUiNVK_default", "addPropertyControls", "ControlType", "addFonts"]
}
